:root {
  --navy: #1a2b56;
  --navy-deep: #121f3f;
  --navy-soft: #273a69;
  --beige: #efd9cb;
  --beige-soft: #f3e2d7;
  --beige-light: #f8eee8;
  --paper: #fff9f5;
  --ink: #20242d;
  --muted: #6c6670;
  --line: rgba(26, 43, 86, 0.17);
  --line-light: rgba(255, 249, 245, 0.2);
  --serif: "Cormorant Garamond", Iowan Old Style, Baskerville, Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1320px;
  --header-height: 72px;
  --screen-height: calc(100svh - var(--header-height));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  scroll-snap-type: y proximity;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--beige);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

::selection {
  background: var(--navy);
  color: var(--paper);
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

a {
  text-decoration: none;
}

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

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

main > section {
  scroll-snap-align: start;
  scroll-margin-top: 0;
}

.section {
  position: relative;
  min-height: var(--screen-height);
  padding-block: clamp(30px, 5.2vh, 52px);
}

.section > .container {
  height: 100%;
}

.section--navy {
  background: var(--navy);
  color: var(--paper);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 9px 14px;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--navy);
  border: 1px solid var(--navy);
}

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

.page-progress {
  position: fixed;
  z-index: 130;
  inset: 0 0 auto;
  height: 2px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--navy);
}

/* Header / menu */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(239, 217, 203, 0.97);
}

.site-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.wordmark {
  display: inline-flex;
  position: relative;
  z-index: 102;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

.wordmark__name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.wordmark__role {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-cta {
  display: none;
}

.menu-toggle {
  display: block;
  position: relative;
  z-index: 103;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--navy);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 18px;
  height: 1px;
  background: var(--paper);
  transition: transform 300ms var(--ease);
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.site-header.nav-open .menu-toggle span:first-child {
  transform: rotate(45deg);
}

.site-header.nav-open .menu-toggle span:last-child {
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  position: fixed;
  z-index: 101;
  inset: var(--header-height) 0 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding: 5vh max(32px, calc((100vw - var(--container)) / 2));
  transform: translateY(-18px);
  visibility: hidden;
  background: var(--navy);
  color: var(--paper);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease, transform 420ms var(--ease), visibility 280ms;
}

.site-header.nav-open .site-nav {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.site-nav a,
.site-nav__contact {
  display: block;
  width: min(100%, 850px);
  padding: clamp(10px, 2vh, 18px) 0;
  border-bottom: 1px solid rgba(255, 249, 245, 0.16);
  background: none;
  color: inherit;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(36px, 6vh, 64px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  text-align: left;
  transition: padding 300ms var(--ease), color 300ms ease;
}

.site-nav a:hover,
.site-nav__contact:hover {
  padding-left: 18px;
  color: var(--beige);
}

/* Type / UI */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(12px, 2vh, 22px);
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: inherit;
}

.section-heading h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 7vh, 66px);
  font-weight: 500;
  letter-spacing: -0.048em;
  line-height: 0.96;
}

.section-heading h2 em {
  font-weight: 400;
}

.section-number {
  margin-bottom: 12px;
  color: rgba(26, 43, 86, 0.48);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.section-number--light {
  color: rgba(26, 43, 86, 0.48);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 18px 0 21px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 280ms var(--ease), background 280ms ease, color 280ms ease, border-color 280ms ease;
}

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

.button__arrow {
  margin-left: 28px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  transition: transform 280ms var(--ease);
}

.button:hover .button__arrow {
  transform: translate(3px, -3px);
}

.button--primary {
  background: var(--navy);
  color: var(--paper);
}

.button--primary:hover {
  background: var(--navy-soft);
}

.button--secondary {
  border-color: rgba(26, 43, 86, 0.45);
  background: transparent;
  color: var(--navy);
}

.button--secondary:hover {
  border-color: var(--navy);
  background: rgba(255, 249, 245, 0.35);
}

.button--light {
  background: var(--navy);
  color: var(--paper);
}

.button--outline-light {
  border-color: rgba(255, 249, 245, 0.62);
  background: transparent;
  color: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 0 6px;
  border-bottom: 1px solid currentColor;
  background: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.text-link span {
  font-size: 17px;
  transition: transform 280ms var(--ease);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.slider-controls {
  display: flex;
  gap: 8px;
}

.slider-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--paper);
  cursor: pointer;
  font-size: 18px;
  transition: transform 250ms var(--ease), background 250ms ease;
}

.slider-controls button:hover {
  transform: translateY(-2px);
  background: var(--navy-soft);
}

/* Hero */
.hero {
  position: relative;
  height: var(--screen-height);
  min-height: 620px;
  overflow: hidden;
  background: var(--beige);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  height: 100%;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
  padding: clamp(24px, 4vh, 38px) clamp(34px, 5vw, 72px) clamp(20px, 3.4vh, 34px) 0;
  animation: hero-copy-in 850ms var(--ease) both;
}

.hero__eyebrow {
  margin-bottom: clamp(16px, 2.4vh, 25px);
}

.hero h1 {
  margin-bottom: clamp(17px, 2.4vh, 27px);
  font-family: var(--serif);
  font-size: clamp(46px, 7.2vh, 66px);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.93;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: clamp(18px, 2.7vh, 29px);
  color: rgba(26, 43, 86, 0.7);
  font-size: clamp(13px, 1.9vh, 16px);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero__signature {
  display: none;
}

.hero-visual {
  --badge-x: 0px;
  --badge-y: 0px;
  --badge-scroll: 0px;
  position: relative;
  height: 100%;
  min-height: 0;
  animation: hero-visual-in 1050ms 100ms var(--ease) both;
}

.hero-visual::before {
  position: absolute;
  inset: 8% -8% 3%;
  background: radial-gradient(ellipse at 50% 56%, rgba(255, 249, 245, 0.92) 0, rgba(248, 238, 232, 0.46) 42%, transparent 72%);
  content: "";
}

.hero-visual::after {
  position: absolute;
  z-index: 5;
  inset: auto -8% -2px;
  height: 34%;
  background: linear-gradient(to bottom, rgba(239, 217, 203, 0), rgba(239, 217, 203, 0.72) 50%, var(--beige) 86%);
  content: "";
  pointer-events: none;
}

.hero-visual__halo {
  display: none;
}

.hero-visual__orbit {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(26, 43, 86, 0.11);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-visual__orbit--one {
  width: min(46vw, 560px);
  aspect-ratio: 1;
}

.hero-visual__orbit--two {
  width: min(31vw, 380px);
  aspect-ratio: 1;
}

.hero-visual__photo {
  position: absolute;
  z-index: 3;
  inset: 1% 0 0;
  width: 100%;
  height: 100%;
  max-width: none;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 74%, rgba(0, 0, 0, 0.94) 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 74%, rgba(0, 0, 0, 0.94) 82%, transparent 100%);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 16px 22px rgba(18, 31, 63, 0.08));
}

.hero-visual__name {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(26, 43, 86, 0.055);
  font-family: var(--serif);
  font-size: clamp(72px, 10vw, 150px);
  line-height: 0.8;
  text-align: center;
  writing-mode: initial;
}

.hero-visual__caption {
  display: flex;
  position: absolute;
  z-index: 6;
  right: 4%;
  bottom: 7%;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 9px;
  background: var(--paper);
  color: var(--navy);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translate3d(var(--badge-x), calc(var(--badge-y) + var(--badge-scroll)), 0);
  transition: transform 500ms var(--ease);
  will-change: transform;
}

.hero-visual__caption svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero__footer {
  display: flex;
  align-items: center;
  height: 34px;
  color: rgba(26, 43, 86, 0.5);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 34px;
  height: 1px;
  margin-right: 11px;
  background: var(--line);
}

.hero__counter {
  margin-left: auto;
}

.quick-facts {
  height: 84px;
  border-top: 1px solid var(--line);
  background: var(--beige-soft);
}

.quick-facts .container,
.quick-facts__list {
  height: 100%;
}

.quick-facts__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-facts__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  border-left: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.38;
}

.quick-facts__list li:last-child {
  border-right: 1px solid var(--line);
}

.quick-facts__number {
  flex: 0 0 auto;
  color: rgba(26, 43, 86, 0.42);
  font-size: 8px;
  letter-spacing: 0.1em;
}

/* About */
.about {
  background: var(--beige-light);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
}

.about-portrait {
  position: relative;
  height: 100%;
  max-height: 610px;
  overflow: hidden;
  background: transparent;
}

.about-portrait::after {
  position: absolute;
  z-index: 4;
  right: -4%;
  bottom: -2px;
  left: -4%;
  height: 28%;
  background: linear-gradient(to bottom, rgba(248, 238, 232, 0), var(--beige-light) 86%);
  content: "";
  pointer-events: none;
}

.about-portrait::before {
  position: absolute;
  top: 12%;
  right: 8%;
  bottom: 8%;
  left: 8%;
  border: 1px solid rgba(26, 43, 86, 0.1);
  border-radius: 50% 50% 8px 8px;
  content: "";
}

.about-portrait__arch {
  display: none;
}

.about-portrait__number {
  position: absolute;
  z-index: 0;
  top: 1%;
  left: 2%;
  color: rgba(26, 43, 86, 0.06);
  font-family: var(--serif);
  font-size: clamp(120px, 18vh, 190px);
  line-height: 1;
}

.about-portrait img {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 77%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0, #000 77%, transparent 100%);
}

.about-portrait__caption {
  position: absolute;
  z-index: 5;
  right: 7%;
  bottom: 7%;
  margin: 0;
  padding: 9px 12px;
  background: var(--paper);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.about__content .section-heading h2 {
  max-width: 700px;
  font-size: clamp(40px, 6.6vh, 61px);
}

.about__text {
  max-width: 690px;
  margin-top: clamp(18px, 3vh, 30px);
  color: rgba(26, 43, 86, 0.7);
  font-size: clamp(13px, 1.8vh, 15px);
  line-height: 1.55;
}

.about__text p {
  margin-bottom: 12px;
}

.about__principle {
  display: grid;
  grid-template-columns: 38px 1fr;
  max-width: 660px;
  margin-top: clamp(16px, 2.5vh, 26px);
  padding-top: clamp(14px, 2vh, 21px);
  border-top: 1px solid var(--line);
}

.about__principle-mark {
  font-family: var(--serif);
  font-size: 46px;
  line-height: 0.75;
}

.about__principle p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 3.5vh, 31px);
  font-style: italic;
  line-height: 1.05;
}

/* States / mosaic */
.states {
  background: var(--beige);
}

.states .container {
  display: flex;
  flex-direction: column;
}

.states__intro {
  display: grid;
  grid-template-columns: 48px 1fr 0.65fr;
  align-items: end;
  gap: 26px;
  margin-bottom: clamp(16px, 2.6vh, 26px);
}

.states__intro .section-number {
  margin-bottom: 5px;
}

.states__intro .section-heading h2 {
  font-size: clamp(38px, 6vh, 56px);
}

.states__note {
  max-width: 280px;
  margin: 0 0 5px auto;
  font-family: var(--serif);
  font-size: clamp(18px, 2.8vh, 24px);
  font-style: italic;
  line-height: 1.1;
}

.states__list {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  min-height: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.state-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto 1fr;
  gap: 10px;
  min-height: 0;
  padding: clamp(16px, 2.7vh, 26px);
  border: 1px solid rgba(26, 43, 86, 0.08);
  border-radius: 16px;
  background: var(--paper);
  transition: transform 320ms var(--ease), background 320ms ease;
}

.state-row:nth-child(2),
.state-row:nth-child(5) {
  background: var(--beige-light);
}

.state-row:hover {
  transform: translateY(-3px);
  background: #fffdfb;
}

.state-row__number {
  color: rgba(26, 43, 86, 0.4);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.state-row__text {
  grid-column: 2;
  align-self: end;
  font-family: var(--serif);
  font-size: clamp(21px, 3.1vh, 29px);
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.state-row__mark {
  display: none;
}

/* Method */
.method {
  overflow: hidden;
  background: var(--paper);
  color: var(--navy);
}

.method__grid {
  display: grid;
  position: relative;
  place-items: center;
}

.method-visual {
  position: absolute;
  top: 50%;
  right: -7%;
  width: min(42vh, 390px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  opacity: 0.38;
}

.method-visual__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(26, 43, 86, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.method-visual__ring--one {
  width: 100%;
  height: 100%;
}

.method-visual__ring--two {
  width: 70%;
  height: 70%;
}

.method-visual__ring--three {
  width: 38%;
  height: 38%;
  background: var(--beige);
}

.method-visual__word {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(40px, 6vh, 58px);
  font-style: italic;
}

.method-visual__label {
  display: none;
}

.method__content {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  margin-inline: auto;
  text-align: center;
}

.method__content .section-number,
.method__content .eyebrow {
  justify-content: center;
}

.method .eyebrow::before {
  display: none;
}

.method__content .section-heading h2 {
  max-width: 950px;
  margin-inline: auto;
  font-size: clamp(40px, 6.4vh, 60px);
}

.method__text {
  margin-top: clamp(18px, 3vh, 30px);
  color: rgba(26, 43, 86, 0.7);
}

.method__text p {
  max-width: 850px;
  margin: 0 auto;
  padding: clamp(8px, 1.35vh, 13px) 24px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(12px, 1.75vh, 14px);
  line-height: 1.45;
}

.method__note {
  max-width: 730px;
  margin: clamp(16px, 2.4vh, 25px) auto 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(19px, 3vh, 25px);
  font-style: italic;
  line-height: 1.15;
}

/* Formats carousel */
.formats {
  overflow: hidden;
  background: var(--beige-light);
}

.formats .container {
  display: flex;
  flex-direction: column;
}

.formats__heading {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: end;
  gap: 48px;
  margin-bottom: clamp(16px, 2.5vh, 25px);
}

.formats__heading .section-heading h2 {
  font-size: clamp(38px, 5.8vh, 54px);
}

.formats__aside {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 3px;
}

.formats__aside > p {
  max-width: 380px;
  margin: 0;
  color: rgba(26, 43, 86, 0.65);
  font-size: clamp(12px, 1.7vh, 14px);
  line-height: 1.5;
}

.services {
  display: flex;
  flex: 1;
  gap: 12px;
  min-height: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.services::-webkit-scrollbar {
  display: none;
}

.service-row {
  display: flex;
  flex: 0 0 calc(50% - 6px);
  flex-direction: column;
  min-width: 0;
  height: 100%;
  max-height: 490px;
  padding: clamp(18px, 2.8vh, 27px);
  border: 1px solid rgba(26, 43, 86, 0.09);
  border-radius: 18px;
  background: var(--paper);
  scroll-snap-align: start;
  transition: transform 320ms var(--ease), background 320ms ease;
}

.service-row:hover {
  background: #fffdfb;
}

.service-row__title {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  margin-bottom: clamp(10px, 1.8vh, 17px);
}

.service-row__number {
  padding-top: 5px;
  color: rgba(26, 43, 86, 0.42);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 4.2vh, 38px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.service-row__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
}

.service-row__description {
  margin-bottom: 10px;
  color: rgba(26, 43, 86, 0.69);
  font-size: clamp(11px, 1.65vh, 13px);
  line-height: 1.42;
}

.service-row__note {
  margin-bottom: 9px;
  padding-left: 10px;
  border-left: 1px solid var(--navy);
  color: rgba(26, 43, 86, 0.6);
  font-size: 10px;
  line-height: 1.35;
}

.service-row__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
  margin: auto 0 12px;
  border-top: 1px solid var(--line);
}

.service-row__facts > div {
  display: grid;
  grid-template-columns: minmax(70px, 0.42fr) 1fr;
  gap: 7px;
  padding: clamp(7px, 1.2vh, 10px) 0;
  border-bottom: 1px solid var(--line);
}

.service-row__facts dt {
  color: rgba(26, 43, 86, 0.45);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.service-row__facts dd {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(13px, 1.9vh, 16px);
  font-weight: 600;
  line-height: 1.2;
}

.service-row__cta {
  align-self: flex-start;
  font-size: 11px;
}

.service-row--aqua {
  background: var(--beige-soft);
}

/* Aqua split */
.aqua {
  isolation: isolate;
  overflow: hidden;
  background: var(--beige);
  color: var(--navy);
}

.aqua__watermark {
  position: absolute;
  z-index: -1;
  right: -1vw;
  bottom: -0.2em;
  color: rgba(26, 43, 86, 0.035);
  font-family: var(--serif);
  font-size: min(22vw, 300px);
  font-style: italic;
  line-height: 1;
}

.aqua__grid {
  display: grid;
  grid-template-columns: minmax(350px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(45px, 7vw, 100px);
}

.aqua__visual {
  position: relative;
  height: 100%;
  max-height: 550px;
  border: 1px solid rgba(26, 43, 86, 0.08);
  border-radius: 18px;
  background: var(--paper);
}

.aqua-drop {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(38vh, 360px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.aqua-drop__core,
.aqua-drop__ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.aqua-drop__core {
  z-index: 2;
  width: 34%;
  height: 34%;
  border-radius: 58% 58% 52% 14%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--navy);
  box-shadow: 0 24px 55px rgba(18, 31, 63, 0.12);
}

.aqua-drop__ripple {
  border: 1px solid rgba(26, 43, 86, 0.18);
  animation: breathe 5.5s ease-in-out infinite;
}

.aqua-drop__ripple--one {
  width: 58%;
  height: 58%;
}

.aqua-drop__ripple--two {
  width: 80%;
  height: 80%;
  animation-delay: -1.5s;
}

.aqua-drop__ripple--three {
  width: 100%;
  height: 100%;
  animation-delay: -3s;
}

.aqua__visual p {
  position: absolute;
  z-index: 3;
  right: 7%;
  bottom: 6%;
  margin: 0;
  color: rgba(26, 43, 86, 0.48);
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  line-height: 1.02;
  text-align: right;
}

.aqua__visual--placeholder {
  display: grid;
  place-items: center;
}

.aqua__visual--placeholder p {
  position: static;
  max-width: 390px;
  margin: 0;
  color: rgba(26, 43, 86, 0.24);
  font-family: var(--sans);
  font-size: clamp(17px, 2.5vh, 23px);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.aqua__content .section-heading h2 {
  max-width: 700px;
  font-size: clamp(39px, 6.3vh, 59px);
}

.aqua__text {
  max-width: 680px;
  margin-top: clamp(15px, 2.5vh, 24px);
  color: rgba(26, 43, 86, 0.68);
  font-size: clamp(12px, 1.75vh, 14px);
  line-height: 1.48;
}

.aqua__text p {
  margin-bottom: 9px;
}

.aqua__details {
  margin: clamp(13px, 2vh, 20px) 0;
  border-top: 1px solid var(--line);
}

.aqua__details > div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 12px;
  padding: clamp(6px, 1.1vh, 9px) 0;
  border-bottom: 1px solid var(--line);
}

.aqua__details span {
  color: rgba(26, 43, 86, 0.45);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.aqua__details strong {
  font-family: var(--serif);
  font-size: clamp(14px, 2vh, 17px);
  font-weight: 600;
  line-height: 1.2;
}

/* Process cards */
.process {
  background: var(--beige-light);
}

.process .container {
  display: flex;
  flex-direction: column;
}

.process__heading {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 25px;
  margin-bottom: clamp(18px, 3vh, 29px);
}

.process__heading .section-heading h2 {
  font-size: clamp(39px, 5.8vh, 54px);
}

.process__steps {
  display: grid;
  flex: 1;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  min-height: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-step {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: clamp(18px, 2.8vh, 27px);
  border: 1px solid rgba(26, 43, 86, 0.08);
  border-radius: 17px;
  background: var(--paper);
}

.process-step__number {
  color: rgba(26, 43, 86, 0.42);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.process-step__line {
  display: block;
  width: 30px;
  height: 1px;
  margin: clamp(24px, 4.6vh, 42px) 0;
  background: var(--navy);
}

.process-step__placeholder {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  color: rgba(26, 43, 86, 0.2);
  font-size: clamp(11px, 1.65vh, 14px);
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.process-step h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(24px, 3.7vh, 34px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
}

.process-step p {
  margin: 0;
  color: rgba(26, 43, 86, 0.63);
  font-size: clamp(11px, 1.55vh, 13px);
  line-height: 1.45;
}

/* Materials gallery */
.materials {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.materials__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  align-items: stretch;
  gap: clamp(38px, 6vw, 82px);
}

.materials__intro {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.materials__intro .section-heading h2 {
  font-size: clamp(39px, 6vh, 56px);
}

.materials__intro > p:last-of-type {
  max-width: 360px;
  margin-top: clamp(16px, 2.5vh, 25px);
  color: rgba(26, 43, 86, 0.63);
  font-size: clamp(12px, 1.7vh, 14px);
}

.materials__controls {
  margin-top: auto;
}

.materials__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}

.video-list {
  display: flex;
  flex: 1;
  gap: 10px;
  min-height: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.video-list::-webkit-scrollbar {
  display: none;
}

.video-item {
  display: flex;
  position: relative;
  flex: 0 0 calc(50% - 5px);
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
  padding: clamp(18px, 3vh, 30px);
  overflow: hidden;
  border-radius: 17px;
  background: var(--beige-soft);
  scroll-snap-align: start;
}

.video-item:nth-child(odd) {
  background: var(--navy);
  color: var(--paper);
}

.video-item::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(18vh, 140px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.17;
}

.video-item::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-42%, -50%);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid currentColor;
  content: "";
  opacity: 0.58;
}

.video-item__number {
  position: absolute;
  top: 20px;
  left: 22px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0.52;
}

.video-item__title {
  position: relative;
  z-index: 2;
  max-width: 92%;
  font-family: var(--serif);
  font-size: clamp(23px, 3.7vh, 34px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.video-item__type {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.48;
}

.video-item__arrow {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 23px;
  font-size: 20px;
}

.podcasts {
  margin-top: 10px;
  padding: 12px 17px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--beige-light);
}

.podcasts__label {
  margin-bottom: 7px;
  color: rgba(26, 43, 86, 0.45);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.podcasts ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.podcasts li {
  font-family: var(--serif);
  font-size: clamp(13px, 1.9vh, 16px);
  line-height: 1.15;
}

/* FAQ */
.faq {
  background: var(--beige-soft);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
}

.faq__intro .section-heading h2 {
  font-size: clamp(39px, 6vh, 56px);
}

.faq__intro .text-link {
  margin-top: clamp(22px, 3.5vh, 34px);
}

.faq__list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  width: 100%;
  grid-template-columns: 34px 1fr 22px;
  align-items: center;
  gap: 10px;
  min-height: clamp(56px, 8vh, 70px);
  padding: 9px 2px;
  background: none;
  cursor: pointer;
  text-align: left;
}

.faq-item__number {
  color: rgba(26, 43, 86, 0.42);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.faq-item__question {
  font-family: var(--serif);
  font-size: clamp(18px, 2.7vh, 24px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.06;
}

.faq-item__icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-item__icon::before,
.faq-item__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 1px;
  transform: translate(-50%, -50%);
  background: currentColor;
  content: "";
  transition: transform 300ms var(--ease);
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-item__icon::after {
  transform: translate(-50%, -50%);
}

.faq-item__answer {
  padding: 0 30px 14px 44px;
}

.faq-item__answer p {
  max-width: 650px;
  margin: 0;
  color: rgba(26, 43, 86, 0.65);
  font-size: 12px;
  line-height: 1.45;
}

/* Contact */
.contact {
  display: grid;
  place-items: center;
  overflow: hidden;
}

.contact::before,
.contact::after {
  position: absolute;
  border: 1px solid rgba(255, 249, 245, 0.09);
  border-radius: 50%;
  content: "";
}

.contact::before {
  top: -35vh;
  left: -15vw;
  width: 60vh;
  height: 60vh;
}

.contact::after {
  right: -12vw;
  bottom: -42vh;
  width: 72vh;
  height: 72vh;
}

.contact__inner {
  position: relative;
  z-index: 1;
  height: auto !important;
  text-align: center;
}

.contact__kicker {
  margin-bottom: clamp(18px, 3vh, 30px);
  color: rgba(255, 249, 245, 0.56);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact h2 {
  max-width: 1040px;
  margin: 0 auto clamp(18px, 3vh, 30px);
  font-family: var(--serif);
  font-size: clamp(48px, 8.5vh, 78px);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.92;
}

.contact__text {
  max-width: 700px;
  margin: 0 auto clamp(22px, 3.5vh, 35px);
  color: rgba(255, 249, 245, 0.68);
  font-size: clamp(12px, 1.8vh, 15px);
}

.contact__actions {
  display: flex;
  justify-content: center;
  gap: 9px;
}

.contact__actions .button {
  min-width: 225px;
}

.contact .button--light {
  background: var(--beige-light);
  color: var(--navy);
}

.contact__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(22px, 3.5vh, 35px);
  color: rgba(255, 249, 245, 0.45);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact__meta i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

/* Footer */
.site-footer {
  padding: 42px 0 24px;
  background: var(--beige);
}

.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 38px;
}

.wordmark--footer .wordmark__name {
  font-size: 35px;
}

.wordmark--footer .wordmark__role {
  margin-top: 4px;
}

.site-footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.25;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: end;
  gap: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: rgba(26, 43, 86, 0.5);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.55;
  text-transform: uppercase;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__legal-links {
  display: flex;
  gap: 20px;
}

/* Contact drawer */
.contact-dialog {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy);
}

.contact-dialog::backdrop {
  background: rgba(18, 31, 63, 0.68);
}

.contact-dialog[open] {
  display: flex;
  justify-content: flex-end;
}

.contact-dialog__panel {
  position: relative;
  width: min(100%, 550px);
  height: 100%;
  overflow-y: auto;
  padding: clamp(52px, 8vh, 82px) clamp(28px, 5vw, 64px);
  background: var(--beige-light);
  animation: drawer-in 500ms var(--ease) both;
}

.contact-dialog__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 28px;
}

.contact-dialog h2 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(48px, 8vh, 68px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.contact-dialog__text {
  color: rgba(26, 43, 86, 0.68);
}

.contact-dialog__intent {
  margin: 22px 0 0;
  padding: 12px 0;
  border-block: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
}

.contact-dialog__actions {
  display: grid;
  gap: 9px;
  margin-top: 32px;
}

.contact-dialog__note {
  margin-top: 24px;
  color: rgba(26, 43, 86, 0.48);
  font-size: 10px;
}

/* Motion */
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 560ms var(--ease), transform 560ms var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
}

@keyframes hero-visual-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}

@keyframes drawer-in {
  from {
    transform: translateX(100%);
  }
}

@keyframes breathe {
  0%,
  100% {
    opacity: 0.62;
    transform: translate(-50%, -50%) scale(0.985);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.025);
  }
}

@media (min-width: 861px) and (min-height: 680px) {
  .about,
  .states,
  .method,
  .formats,
  .aqua,
  .process,
  .materials,
  .faq,
  .contact {
    height: var(--screen-height);
    min-height: 0;
    overflow: hidden;
  }
}

@media (max-width: 1080px) {
  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(350px, 0.96fr);
  }

  .hero h1 {
    font-size: clamp(43px, 6.6vh, 59px);
  }

  .about__grid,
  .aqua__grid {
    gap: 44px;
  }

  .service-row__facts {
    grid-template-columns: 1fr;
  }

  .service-row__facts > div {
    padding-block: 6px;
  }

  .materials__grid,
  .faq__grid {
    gap: 42px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 64px;
  }

  html {
    scroll-snap-type: y proximity;
  }

  .container {
    width: calc(100% - 36px);
  }

  .section {
    min-height: var(--screen-height);
    padding-block: 28px;
  }

  .wordmark__name {
    font-size: 23px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .menu-toggle span {
    left: 13px;
    width: 16px;
  }

  .site-nav {
    padding-inline: 26px;
  }

  .site-nav a,
  .site-nav__contact {
    font-size: clamp(32px, 7.3vh, 48px);
  }

  .hero {
    height: auto;
    min-height: var(--screen-height);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    height: auto;
    min-height: calc(var(--screen-height) - 34px);
  }

  .hero__content {
    min-height: calc(var(--screen-height) - 34px);
    padding: 44px 0 30px;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(46px, 8.4vw, 64px);
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-visual__photo {
    inset-inline: 4%;
    width: 92%;
  }

  .quick-facts {
    height: auto;
  }

  .quick-facts__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-facts__list li {
    min-height: 68px;
    border-bottom: 1px solid var(--line);
  }

  .about__grid {
    grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
    gap: 28px;
  }

  .about-portrait {
    max-height: 520px;
  }

  .states__list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .states__list::-webkit-scrollbar {
    display: none;
  }

  .state-row {
    flex: 0 0 44%;
    scroll-snap-align: start;
  }

  .method-visual {
    right: -18%;
  }

  .service-row {
    flex-basis: calc(72% - 6px);
  }

  .aqua__grid {
    grid-template-columns: 0.74fr 1.26fr;
    gap: 28px;
  }

  .process__steps {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .process__steps::-webkit-scrollbar {
    display: none;
  }

  .process-step {
    flex: 0 0 44%;
    scroll-snap-align: start;
  }

  .materials__grid,
  .faq__grid {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 30px;
  }

  .video-item {
    flex-basis: 74%;
  }

  .podcasts ul {
    grid-template-columns: 1fr;
  }

  .podcasts li:nth-child(n + 2) {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 32px);
  }

  .section {
    padding-block: 24px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 8px;
  }

  .eyebrow::before {
    width: 20px;
  }

  .section-heading h2 {
    font-size: clamp(35px, 10.4vw, 45px);
  }

  .hero {
    height: var(--screen-height);
    min-height: 0;
  }

  .hero__grid {
    grid-template-rows: minmax(0, 1fr) 260px;
    height: 100%;
    min-height: 0;
  }

  .hero__content {
    min-height: 0;
    padding: 18px 0 12px;
  }

  .hero h1 {
    margin-bottom: 12px;
    font-size: clamp(36px, 10.2vw, 43px);
    line-height: 0.92;
  }

  .hero__lead {
    margin-bottom: 13px;
    font-size: 11px;
    line-height: 1.43;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__actions .button {
    width: 100%;
    min-height: 44px;
    font-size: 10px;
  }

  .hero-visual {
    min-height: 0;
    height: 260px;
    overflow: hidden;
  }

  .hero-visual::after {
    height: 46%;
  }

  .hero-visual__photo {
    inset: -4px 0 auto;
    width: auto;
    height: 340px;
    margin-inline: auto;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 62%, rgba(0, 0, 0, 0.9) 74%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 62%, rgba(0, 0, 0, 0.9) 74%, transparent 100%);
  }

  .hero-visual__caption {
    right: 2%;
    bottom: 7%;
    min-height: 42px;
    padding-inline: 14px;
    font-size: 9px;
  }

  .hero__counter {
    display: none;
  }

  .quick-facts {
    display: none;
  }

  .quick-facts__list li {
    padding: 12px 10px;
    font-size: 9px;
  }

  .about {
    height: auto;
  }

  .about__grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .about-portrait {
    width: 100%;
    height: 245px;
    flex: 0 0 245px;
  }

  .about-portrait::before {
    top: 5%;
    bottom: 2%;
  }

  .about-portrait__number {
    font-size: 100px;
  }

  .about-portrait__caption {
    right: 4%;
    bottom: 3%;
  }

  .about__content .section-heading h2 {
    font-size: clamp(34px, 9.7vw, 42px);
  }

  .about__text {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.45;
  }

  .about__text p {
    margin-bottom: 7px;
  }

  .about__principle {
    grid-template-columns: 28px 1fr;
    margin-top: 10px;
    padding-top: 10px;
  }

  .about__principle-mark {
    font-size: 36px;
  }

  .about__principle p {
    font-size: 20px;
  }

  .states .container,
  .formats .container,
  .process .container {
    height: calc(var(--screen-height) - 48px);
  }

  .states__intro {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-bottom: 15px;
  }

  .states__intro .section-number {
    display: none;
  }

  .states__intro .section-heading h2 {
    font-size: 40px;
  }

  .states__note {
    margin: 0;
    font-size: 17px;
  }

  .state-row {
    flex-basis: 78%;
    padding: 20px;
  }

  .state-row__text {
    font-size: 27px;
  }

  .method__content .section-heading h2 {
    font-size: clamp(34px, 9.5vw, 42px);
  }

  .method__text {
    margin-top: 12px;
  }

  .method__text p {
    padding: 7px 4px;
    font-size: 11px;
  }

  .method__note {
    margin-top: 12px;
    font-size: 18px;
  }

  .method-visual {
    right: -45%;
    opacity: 0.2;
  }

  .formats__heading {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-bottom: 13px;
  }

  .formats__heading .section-heading h2 {
    font-size: 39px;
  }

  .formats__aside {
    align-items: center;
    gap: 12px;
  }

  .formats__aside > p {
    max-width: 190px;
    font-size: 10px;
  }

  .slider-controls button {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  .service-row {
    flex-basis: 88%;
    max-height: none;
    padding: 18px;
  }

  .service-row h3 {
    font-size: 29px;
  }

  .service-row__description {
    font-size: 10px;
  }

  .service-row__facts {
    grid-template-columns: 1fr;
  }

  .service-row__facts > div {
    grid-template-columns: 88px 1fr;
    padding-block: 5px;
  }

  .service-row__facts dd {
    font-size: 13px;
  }

  .service-row__cta {
    font-size: 10px;
  }

  .aqua {
    height: auto;
  }

  .aqua__grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .aqua__visual {
    width: 100%;
    height: 210px;
    flex: 0 0 210px;
  }

  .aqua-drop {
    width: 185px;
  }

  .aqua__visual--placeholder p {
    max-width: 270px;
    font-size: 14px;
  }

  .aqua__content .section-heading h2 {
    font-size: 36px;
  }

  .aqua__text {
    margin-top: 10px;
    font-size: 11px;
  }

  .aqua__details {
    margin-block: 10px;
  }

  .aqua__details > div {
    padding-block: 5px;
  }

  .aqua__content .button {
    width: 100%;
  }

  .process__heading {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-bottom: 14px;
  }

  .process__heading .section-number {
    display: none;
  }

  .process__heading .section-heading h2 {
    font-size: 40px;
  }

  .process-step {
    flex-basis: 78%;
  }

  .process-step h3 {
    font-size: 29px;
  }

  .materials {
    height: auto;
  }

  .materials__grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .materials__intro {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .materials__intro .section-number,
  .materials__intro > p {
    display: none;
  }

  .materials__intro .section-heading h2 {
    font-size: 39px;
  }

  .materials__controls {
    margin: 0;
  }

  .materials__content {
    min-height: 540px;
  }

  .video-list {
    min-height: 410px;
  }

  .video-item {
    flex-basis: 86%;
  }

  .video-item__title {
    font-size: 28px;
  }

  .podcasts {
    padding: 10px 13px;
  }

  .podcasts li {
    font-size: 13px;
  }

  .faq {
    height: auto;
  }

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq__intro .section-number {
    display: none;
  }

  .faq__intro .section-heading h2 {
    font-size: 39px;
  }

  .faq__intro .text-link {
    margin-top: 13px;
  }

  .faq-item button {
    min-height: 57px;
  }

  .faq-item__question {
    font-size: 18px;
  }

  .faq-item__answer {
    padding: 0 10px 12px 38px;
  }

  .contact h2 {
    font-size: clamp(42px, 11.5vw, 52px);
  }

  .contact__text {
    font-size: 12px;
  }

  .contact__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact__actions .button {
    width: 100%;
    min-width: 0;
  }

  .contact__meta {
    flex-wrap: wrap;
  }

  .site-footer__top {
    flex-direction: column;
    gap: 28px;
    padding-bottom: 28px;
  }

  .site-footer__contacts {
    align-items: flex-start;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .site-footer__legal-links {
    flex-direction: column;
    gap: 4px;
  }
}

@media (min-width: 861px) and (max-height: 700px) {
  :root {
    --header-height: 64px;
  }

  .section {
    padding-block: 26px;
  }

  .hero {
    min-height: 570px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .service-row h3 {
    font-size: 28px;
  }

  .service-row__description,
  .aqua__text,
  .about__text {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-visual__photo {
    transform: none !important;
  }
}
