:root {
  --aqs-ink: #153a36;
  --aqs-deep: #0d2c2a;
  --aqs-cream: #f5f0df;
  --aqs-paper: #fffdf7;
  --aqs-water: #72cbc7;
  --aqs-lime: #d8e888;
  --aqs-coral: #de6d52;
  --aqs-clay: #c99770;
  --aqs-muted: #526966;
  --aqs-line: rgba(21, 58, 54, 0.22);
  --aqs-gutter: clamp(20px, 5vw, 78px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.aqs-page {
  margin: 0;
  overflow-x: hidden;
  color: var(--aqs-ink);
  background: var(--aqs-cream);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

.aqs-page img {
  display: block;
  max-width: 100%;
}

.aqs-page a {
  color: inherit;
  text-decoration: none;
}

.aqs-page a:focus-visible,
.aqs-page button:focus-visible {
  outline: 3px solid #b8442d;
  outline-offset: 4px;
}

.aqs-program-tabs button:focus-visible {
  outline-color: var(--aqs-water);
  outline-offset: -4px;
}

.aqs-skip {
  position: absolute;
  z-index: 1000;
  top: 8px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--aqs-paper);
  background: var(--aqs-deep);
  transform: translateY(-160%);
}

.aqs-skip:focus {
  transform: translateY(0);
}

.aqs-preview {
  position: relative;
  z-index: 20;
  padding: 8px var(--aqs-gutter);
  border-bottom: 1px solid rgba(21, 58, 54, 0.28);
  color: #173d38;
  background: #ffdc74;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.aqs-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  padding: 0 var(--aqs-gutter);
  border-bottom: 1px solid var(--aqs-line);
  background: rgba(245, 240, 223, 0.96);
}

.aqs-wordmark {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  width: max-content;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.aqs-wordmark span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50% 50% 44% 56%;
  color: var(--aqs-deep);
  background: var(--aqs-water);
  font-size: 12px;
  font-weight: 900;
}

.aqs-header nav {
  display: flex;
  gap: 32px;
  font-size: 13px;
  font-weight: 650;
}

.aqs-header nav a,
.aqs-header-link {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.aqs-header nav a:hover,
.aqs-header-link:hover {
  border-color: currentColor;
}

.aqs-header-link {
  justify-self: end;
  color: #153a36;
  font-size: 13px;
  font-weight: 850;
}

.aqs-eyebrow {
  margin: 0 0 18px;
  color: #8e3f2d;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.aqs-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  min-height: 840px;
  padding: clamp(58px, 7vw, 102px) var(--aqs-gutter) 70px;
  background:
    radial-gradient(circle at 12% 16%, rgba(216, 232, 136, 0.55) 0 9%, transparent 9.2%),
    linear-gradient(90deg, var(--aqs-cream) 0 65%, #ede1c8 65% 100%);
}

.aqs-hero-copy {
  z-index: 2;
  align-self: center;
  max-width: 710px;
  padding-right: clamp(28px, 5vw, 76px);
}

.aqs-hero h1 {
  max-width: 760px;
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 6.3vw, 104px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.aqs-lead {
  max-width: 570px;
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.17;
}

.aqs-hero-copy > p:not(.aqs-eyebrow):not(.aqs-lead) {
  max-width: 640px;
  margin: 0 0 13px;
  color: #405a57;
  font-size: 16px;
}

.aqs-hero-copy > .aqs-next {
  color: var(--aqs-ink);
  font-weight: 720;
}

.aqs-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 38px;
}

.aqs-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid var(--aqs-ink);
  border-radius: 999px;
  font-weight: 820;
}

.aqs-button-main {
  color: #102f2c;
  background: var(--aqs-water);
}

.aqs-button-main span {
  margin-left: 10px;
}

.aqs-button:hover {
  transform: translateY(-2px);
}

.aqs-quick {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 650px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--aqs-line);
  border-radius: 20px;
  background: var(--aqs-line);
}

.aqs-quick div {
  padding: 16px 18px;
  background: rgba(255, 253, 247, 0.62);
}

.aqs-quick dt {
  color: #405955;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aqs-quick dd {
  margin: 6px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.aqs-hero-photo {
  position: relative;
  align-self: stretch;
  min-height: 650px;
  overflow: hidden;
  border-radius: 260px 260px 24px 24px;
  background: var(--aqs-water);
  box-shadow: 28px 28px 0 rgba(201, 151, 112, 0.55);
}

.aqs-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aqs-hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(13, 44, 42, 0.72));
}

.aqs-hero-photo p {
  position: absolute;
  z-index: 2;
  right: 36px;
  bottom: 26px;
  margin: 0;
  color: var(--aqs-paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.12;
  text-align: right;
}

.aqs-hero-photo p strong {
  font-size: 34px;
  font-weight: 500;
}

.aqs-sun {
  position: absolute;
  z-index: 3;
  top: 28px;
  right: 32px;
  width: 76px;
  height: 76px;
  border: 14px solid var(--aqs-lime);
  border-radius: 50%;
}

.aqs-programs {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(460px, 1.15fr) minmax(250px, 0.68fr);
  gap: clamp(28px, 4vw, 64px);
  padding: 110px var(--aqs-gutter);
  color: var(--aqs-paper);
  background: var(--aqs-deep);
}

.aqs-section-intro h2,
.aqs-first h2,
.aqs-price-heading h2,
.aqs-rooms h2,
.aqs-visit h2,
.aqs-team h2,
.aqs-contacts h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.aqs-section-intro h2 {
  font-size: clamp(43px, 4vw, 68px);
}

.aqs-section-intro > p:last-child {
  margin: 30px 0 0;
  color: #bfd0cc;
}

.aqs-programs .aqs-eyebrow {
  color: #ffa38d;
}

.aqs-program-selector {
  overflow: hidden;
  border: 1px solid rgba(255, 253, 247, 0.25);
  border-radius: 32px;
}

.aqs-program-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255, 253, 247, 0.2);
}

.aqs-program-tabs button {
  min-width: 0;
  padding: 17px 12px;
  border: 0;
  border-right: 1px solid rgba(255, 253, 247, 0.14);
  color: #d8e3df;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
}

.aqs-program-tabs button:last-child {
  border-right: 0;
}

.aqs-program-tabs button span {
  display: block;
  margin-bottom: 5px;
  color: #9aafaa;
  font-size: 10px;
}

.aqs-program-tabs button[aria-pressed="true"] {
  color: var(--aqs-deep);
  background: var(--aqs-lime);
}

.aqs-program-tabs button[aria-pressed="true"] span {
  color: #36504c;
}

.aqs-program-stage {
  min-height: 390px;
  padding: clamp(30px, 4vw, 54px);
}

.aqs-program-stage article[hidden] {
  display: none;
}

.aqs-program-number {
  margin: 0 0 50px;
  color: var(--aqs-water);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.aqs-program-stage h3 {
  max-width: 520px;
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 3.5vw, 58px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.aqs-program-stage article > p:not(.aqs-program-number):not(.aqs-program-fact) {
  max-width: 620px;
  color: #cedbd8;
}

.aqs-program-fact {
  display: flex;
  gap: 15px;
  align-items: baseline;
  margin: 30px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 253, 247, 0.2);
}

.aqs-program-fact strong {
  color: var(--aqs-lime);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.aqs-program-fact span {
  color: #9fb3af;
  font-size: 12px;
}

.aqs-program-windows {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: center;
}

.aqs-window {
  margin: 0;
}

.aqs-window img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.aqs-window-tall img {
  border-radius: 120px 120px 18px 18px;
}

.aqs-window-round img {
  border-radius: 50%;
}

.aqs-window figcaption {
  margin-top: 10px;
  color: #a9bbb7;
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.aqs-first {
  display: grid;
  grid-template-columns: minmax(350px, 0.9fr) minmax(480px, 1.1fr);
  min-height: 780px;
  background: var(--aqs-lime);
}

.aqs-first-photo {
  min-height: 640px;
  padding: 70px 0 70px var(--aqs-gutter);
}

.aqs-first-photo img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  border-radius: 26px 220px 26px 26px;
  object-fit: cover;
}

.aqs-first-copy {
  align-self: center;
  padding: 80px var(--aqs-gutter) 80px clamp(40px, 7vw, 110px);
}

.aqs-first h2 {
  margin-bottom: 44px;
  font-size: clamp(52px, 5.2vw, 82px);
}

.aqs-first ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.aqs-first li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(21, 58, 54, 0.35);
}

.aqs-first li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--aqs-ink);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
}

.aqs-first li p {
  margin: 0;
}

.aqs-first-note {
  margin: 24px 0 0;
  padding: 17px 20px;
  border-radius: 14px;
  color: var(--aqs-paper);
  background: var(--aqs-deep);
}

.aqs-prices {
  display: grid;
  grid-template-columns: 0.72fr 1fr 1fr;
  gap: 22px;
  padding: 110px var(--aqs-gutter);
  background: var(--aqs-paper);
}

.aqs-price-heading {
  padding-right: clamp(10px, 3vw, 44px);
}

.aqs-price-heading h2 {
  font-size: clamp(48px, 4.6vw, 76px);
}

.aqs-price-heading > p:last-child {
  margin-top: 26px;
  color: var(--aqs-muted);
}

.aqs-price-block {
  overflow: hidden;
  border-radius: 30px;
}

.aqs-price-block > div {
  padding: 28px 30px 23px;
}

.aqs-price-water > div {
  background: var(--aqs-water);
}

.aqs-price-lime > div {
  background: var(--aqs-lime);
}

.aqs-price-block > div p {
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aqs-price-block > div strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 3.7vw, 60px);
  font-weight: 500;
  line-height: 1;
}

.aqs-price-block > div span {
  color: #294642;
  font-size: 12px;
}

.aqs-price-block ul {
  margin: 0;
  padding: 12px 30px;
  list-style: none;
  color: var(--aqs-paper);
  background: var(--aqs-deep);
}

.aqs-price-block li {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 253, 247, 0.16);
}

.aqs-price-block li:last-child {
  border-bottom: 0;
}

.aqs-price-block li span {
  color: #c7d6d2;
}

.aqs-price-block > p {
  min-height: 116px;
  margin: 0;
  padding: 21px 30px;
  color: #425b58;
  background: #eee8d7;
  font-size: 13px;
}

.aqs-price-strip {
  display: grid;
  grid-column: 2 / -1;
  grid-template-columns: 1.4fr repeat(4, minmax(120px, 1fr));
  margin-top: 4px;
  overflow: hidden;
  border: 1px solid var(--aqs-line);
  border-radius: 20px;
}

.aqs-price-strip p {
  margin: 0;
  padding: 20px;
  border-right: 1px solid var(--aqs-line);
}

.aqs-price-strip p:first-child {
  color: var(--aqs-deep);
  background: var(--aqs-coral);
}

.aqs-price-strip p:last-child {
  border-right: 0;
}

.aqs-rooms {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 0.72fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  min-height: 740px;
  padding: 100px var(--aqs-gutter);
  background: #ead9c1;
}

.aqs-rooms-copy {
  max-width: 760px;
}

.aqs-rooms h2 {
  max-width: 750px;
  font-size: clamp(52px, 5.4vw, 88px);
}

.aqs-rooms-copy > p:last-child {
  max-width: 650px;
  margin-top: 32px;
}

.aqs-rooms figure {
  margin: 0;
}

.aqs-rooms figure img {
  width: 100%;
  height: 560px;
  border-radius: 230px 230px 22px 22px;
  object-fit: cover;
  box-shadow: -24px 24px 0 var(--aqs-water);
}

.aqs-rooms figcaption,
.aqs-team figcaption {
  margin-top: 14px;
  color: #385652;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.aqs-visit {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  padding: 100px var(--aqs-gutter);
  color: var(--aqs-deep);
  background: var(--aqs-coral);
}

.aqs-visit::before,
.aqs-visit::after {
  position: absolute;
  border: 1px solid rgba(13, 44, 42, 0.32);
  border-radius: 50%;
  content: "";
}

.aqs-visit::before {
  width: 760px;
  height: 760px;
  top: -180px;
  right: -70px;
}

.aqs-visit::after {
  width: 520px;
  height: 520px;
  top: -60px;
  right: 50px;
}

.aqs-visit-card {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.aqs-visit .aqs-eyebrow {
  color: #071d1b;
}

.aqs-visit h2 {
  font-size: clamp(68px, 8vw, 126px);
}

.aqs-visit-card > p:not(.aqs-eyebrow) {
  max-width: 590px;
  font-size: 18px;
}

.aqs-visit dl {
  display: flex;
  gap: 12px;
  max-width: 590px;
  margin: 34px 0;
}

.aqs-visit dl div {
  flex: 1;
  padding: 17px 19px;
  border: 1px solid rgba(13, 44, 42, 0.62);
  border-radius: 16px;
}

.aqs-visit dt {
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aqs-visit dd {
  margin: 6px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

.aqs-visit-card > a {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.aqs-visit-orbit {
  position: absolute;
  z-index: 3;
  top: 226px;
  right: 12vw;
  display: grid;
  width: 180px;
  height: 180px;
  place-content: center;
  border-radius: 50%;
  color: var(--aqs-deep);
  background: var(--aqs-lime);
  text-align: center;
}

.aqs-visit-orbit span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 76px;
  line-height: 0.75;
}

.aqs-visit-orbit small {
  margin-top: 12px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.aqs-team {
  display: grid;
  grid-template-columns: 0.9fr 1.18fr 0.62fr;
  gap: clamp(24px, 4vw, 60px);
  min-height: 790px;
  align-items: center;
  padding: 105px var(--aqs-gutter);
  background: var(--aqs-cream);
}

.aqs-team-copy {
  align-self: start;
  padding-top: 60px;
}

.aqs-team h2 {
  font-size: clamp(54px, 5vw, 84px);
}

.aqs-team-copy > p:not(.aqs-eyebrow) {
  max-width: 520px;
  margin-top: 28px;
  color: var(--aqs-muted);
}

.aqs-team figure {
  margin: 0;
}

.aqs-team-wide img {
  width: 100%;
  height: 510px;
  border-radius: 220px 220px 24px 24px;
  object-fit: cover;
}

.aqs-team-portrait {
  align-self: end;
  margin-bottom: 10px;
}

.aqs-team-portrait img {
  width: 100%;
  height: 420px;
  border-radius: 22px 140px 22px 22px;
  object-fit: cover;
}

.aqs-contacts {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1.18fr);
  gap: clamp(40px, 7vw, 120px);
  align-items: center;
  padding: 100px var(--aqs-gutter);
  color: var(--aqs-paper);
  background: var(--aqs-deep);
}

.aqs-contacts h2 {
  font-size: clamp(48px, 4.6vw, 76px);
}

.aqs-contacts .aqs-eyebrow {
  color: #ffa38d;
}

.aqs-contacts > div:first-child > p:last-child {
  max-width: 520px;
  color: #c1d0cd;
}

.aqs-contact-sheet {
  overflow: hidden;
  border: 1px solid rgba(255, 253, 247, 0.28);
  border-radius: 30px;
}

.aqs-contact-sheet a {
  display: flex;
  gap: 22px;
  align-items: baseline;
  justify-content: space-between;
  padding: 20px 25px;
  border-bottom: 1px solid rgba(255, 253, 247, 0.16);
}

.aqs-contact-sheet a:hover {
  color: var(--aqs-deep);
  background: var(--aqs-water);
}

.aqs-contact-sheet a span {
  color: #a8bcb8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aqs-contact-sheet a:hover span {
  color: var(--aqs-deep);
}

.aqs-contact-sheet a strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 2vw, 30px);
  font-weight: 500;
}

.aqs-contact-sheet > p {
  margin: 0;
  padding: 20px 25px;
  color: #b7cac6;
  font-size: 13px;
}

.aqs-sources {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 45px;
  align-items: start;
  padding: 55px var(--aqs-gutter);
  border-bottom: 1px solid var(--aqs-line);
  background: var(--aqs-paper);
  font-size: 13px;
}

.aqs-sources h2 {
  margin: 0 0 13px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.aqs-sources p {
  margin: 0;
  color: var(--aqs-muted);
}

.aqs-sources a {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-weight: 800;
  white-space: nowrap;
}

.aqs-footer {
  display: flex;
  justify-content: space-between;
  padding: 22px var(--aqs-gutter);
  color: var(--aqs-muted);
  background: var(--aqs-paper);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .aqs-hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.75fr);
  }

  .aqs-programs {
    grid-template-columns: minmax(250px, 0.7fr) minmax(430px, 1.3fr);
  }

  .aqs-program-windows {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .aqs-window img {
    height: 300px;
  }

  .aqs-prices {
    grid-template-columns: 1fr 1fr;
  }

  .aqs-price-heading {
    grid-column: 1 / -1;
    max-width: 780px;
  }

  .aqs-price-strip {
    grid-column: 1 / -1;
  }

  .aqs-team {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .aqs-team-portrait {
    grid-column: 1 / -1;
    width: 32%;
    justify-self: end;
  }
}

@media (max-width: 900px) {
  :root {
    --aqs-gutter: 20px;
  }

  body.aqs-page {
    font-size: 15px;
  }

  .aqs-preview {
    padding: 7px 18px;
    font-size: 10px;
  }

  .aqs-header {
    grid-template-columns: 1fr auto;
    min-height: 66px;
  }

  .aqs-wordmark span {
    width: 36px;
    height: 36px;
  }

  .aqs-header nav {
    display: none;
  }

  .aqs-hero {
    display: flex;
    min-height: 0;
    flex-direction: column-reverse;
    padding: 0 0 60px;
    background: var(--aqs-cream);
  }

  .aqs-hero-photo {
    min-height: 430px;
    margin: 0;
    border-radius: 0 0 150px 0;
    box-shadow: none;
  }

  .aqs-hero-photo p {
    right: auto;
    bottom: 22px;
    left: 20px;
    font-size: 18px;
    text-align: left;
  }

  .aqs-hero-photo p strong {
    font-size: 28px;
  }

  .aqs-sun {
    top: 20px;
    right: 20px;
    width: 62px;
    height: 62px;
    border-width: 11px;
  }

  .aqs-hero-copy {
    max-width: none;
    padding: 52px var(--aqs-gutter) 0;
  }

  .aqs-hero h1 {
    font-size: clamp(49px, 15.5vw, 62px);
    letter-spacing: -0.07em;
  }

  .aqs-lead {
    font-size: 25px;
  }

  .aqs-hero-actions {
    display: grid;
  }

  .aqs-button {
    width: 100%;
  }

  .aqs-quick {
    grid-template-columns: 1fr;
  }

  .aqs-programs {
    display: block;
    padding: 76px var(--aqs-gutter);
  }

  .aqs-section-intro h2 {
    font-size: 47px;
  }

  .aqs-program-selector {
    margin-top: 44px;
    border-radius: 24px;
  }

  .aqs-program-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .aqs-program-tabs button:nth-child(2) {
    border-right: 0;
  }

  .aqs-program-tabs button:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 253, 247, 0.14);
  }

  .aqs-program-stage {
    min-height: 430px;
    padding: 32px 24px;
  }

  .aqs-program-number {
    margin-bottom: 34px;
  }

  .aqs-program-stage h3 {
    font-size: 40px;
  }

  .aqs-program-windows {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 36px;
  }

  .aqs-window img {
    height: 190px;
  }

  .aqs-window figcaption {
    font-size: 8px;
  }

  .aqs-first {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .aqs-first-photo {
    min-height: 0;
    padding: 20px;
  }

  .aqs-first-photo img {
    min-height: 0;
    height: 420px;
    border-radius: 18px 150px 18px 18px;
  }

  .aqs-first-copy {
    padding: 54px var(--aqs-gutter) 70px;
  }

  .aqs-first h2 {
    font-size: 50px;
  }

  .aqs-first li {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .aqs-prices {
    display: block;
    padding: 76px var(--aqs-gutter);
  }

  .aqs-price-heading h2 {
    font-size: 52px;
  }

  .aqs-price-block {
    margin-top: 24px;
  }

  .aqs-price-block > div strong {
    font-size: 48px;
  }

  .aqs-price-strip {
    display: block;
    margin-top: 24px;
  }

  .aqs-price-strip p {
    border-right: 0;
    border-bottom: 1px solid var(--aqs-line);
  }

  .aqs-price-strip p:last-child {
    border-bottom: 0;
  }

  .aqs-rooms {
    display: flex;
    min-height: 0;
    flex-direction: column;
    padding: 76px var(--aqs-gutter) 82px;
  }

  .aqs-rooms h2 {
    font-size: 50px;
  }

  .aqs-rooms figure img {
    height: 470px;
    border-radius: 190px 190px 20px 20px;
    box-shadow: -12px 12px 0 var(--aqs-water);
  }

  .aqs-visit {
    min-height: 790px;
    padding: 76px var(--aqs-gutter) 220px;
  }

  .aqs-visit h2 {
    max-width: 100%;
    font-size: 52px;
    overflow-wrap: anywhere;
  }

  .aqs-visit dl {
    display: grid;
  }

  .aqs-visit-orbit {
    top: auto;
    right: 28px;
    bottom: 32px;
    width: 140px;
    height: 140px;
  }

  .aqs-visit-orbit span {
    font-size: 58px;
  }

  .aqs-team {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 76px var(--aqs-gutter);
  }

  .aqs-team-copy {
    padding-top: 0;
  }

  .aqs-team h2 {
    font-size: 54px;
  }

  .aqs-team-wide img {
    height: 360px;
    border-radius: 150px 150px 18px 18px;
  }

  .aqs-team-portrait {
    width: 62%;
    margin-left: auto;
  }

  .aqs-team-portrait img {
    height: 360px;
  }

  .aqs-contacts {
    display: block;
    padding: 76px var(--aqs-gutter);
  }

  .aqs-contacts h2 {
    font-size: 47px;
  }

  .aqs-contact-sheet {
    margin-top: 38px;
    border-radius: 22px;
  }

  .aqs-contact-sheet a {
    display: block;
  }

  .aqs-contact-sheet a strong {
    display: block;
    margin-top: 7px;
    overflow-wrap: anywhere;
    font-size: 23px;
  }

  .aqs-sources {
    display: block;
    padding: 48px var(--aqs-gutter);
  }

  .aqs-sources > p,
  .aqs-sources > a {
    display: block;
    margin-top: 25px;
  }

  .aqs-sources a {
    width: max-content;
    max-width: 100%;
    white-space: normal;
  }

  .aqs-footer {
    display: grid;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
