@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=Instrument+Serif:ital@0;1&display=swap");

:root {
  --ink: #2b2323;
  --cream: #f4efe8;
  --paper: #fffdf9;
  --sage: #879486;
  --sage-deep: #5f6d62;
  --rose: #c88f80;
  --rose-pale: #e8c9c0;
  --line: rgba(43, 35, 35, 0.16);
  --display: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

::selection {
  background: var(--rose-pale);
  color: var(--ink);
}

.site-header {
  align-items: center;
  background: rgba(244, 239, 232, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 92px;
  left: 0;
  padding: 0 clamp(24px, 5vw, 76px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  justify-self: start;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: var(--cream);
  display: flex;
  font-family: var(--display);
  font-size: 26px;
  height: 45px;
  justify-content: center;
  width: 45px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
}

.brand-copy small {
  font-size: 8px;
  letter-spacing: 0.21em;
  margin-top: 5px;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  justify-self: center;
}

.desktop-nav a {
  font-size: 12px;
  letter-spacing: 0.04em;
  position: relative;
}

.desktop-nav a::after {
  background: var(--ink);
  bottom: -6px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  width: 100%;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  align-items: center;
  border-bottom: 1px solid var(--ink);
  display: inline-flex;
  font-size: 12px;
  gap: 16px;
  justify-self: end;
  padding: 10px 0;
}

.header-cta span,
.text-link span,
.treatment-content a span {
  transition: transform 0.25s ease;
}

.header-cta:hover span,
.text-link:hover span,
.treatment-content a:hover span {
  transform: translate(3px, -3px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr);
  min-height: 100svh;
  padding-top: 92px;
}

.hero-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(28px, 6vw, 100px);
  position: relative;
}

.eyebrow {
  align-items: center;
  display: flex;
  font-size: 10px;
  font-weight: 600;
  gap: 10px;
  letter-spacing: 0.17em;
  margin: 0 0 30px;
  text-transform: uppercase;
}

.eyebrow span {
  background: var(--rose);
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(62px, 6.5vw, 104px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.89;
  margin: 0;
  max-width: 760px;
}

.hero h1 em {
  color: var(--sage-deep);
  font-weight: 400;
}

.hero-intro {
  color: rgba(43, 35, 35, 0.7);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  margin: 36px 0 0;
  max-width: 490px;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 34px;
  margin-top: 38px;
}

.button {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  gap: 24px;
  justify-content: center;
  letter-spacing: 0.02em;
  min-height: 54px;
  padding: 0 24px;
}

.button-primary {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--paper);
  transition: background 0.25s ease, color 0.25s ease;
}

.button-primary:hover {
  background: transparent;
  color: var(--ink);
}

.text-link {
  border-bottom: 1px solid var(--line);
  display: inline-flex;
  font-size: 12px;
  gap: 16px;
  padding: 12px 0;
}

.hero-detail {
  align-items: center;
  bottom: 32px;
  display: flex;
  gap: 12px;
  left: clamp(28px, 6vw, 100px);
  position: absolute;
}

.hero-detail span {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  font-size: 9px;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.hero-detail p {
  font-size: 10px;
  line-height: 1.4;
  margin: 0;
  max-width: 180px;
}

.hero-visual {
  margin: 18px 18px 18px 0;
  min-height: calc(100svh - 128px);
  overflow: hidden;
  position: relative;
}

.hero-visual::after {
  background: linear-gradient(180deg, transparent 55%, rgba(28, 22, 22, 0.42));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-visual > img {
  filter: saturate(0.78) sepia(0.06);
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-visual:hover > img {
  transform: scale(1.025);
}

.hero-orbit {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(255, 253, 249, 0.74);
  border-radius: 50%;
  display: flex;
  height: 134px;
  justify-content: center;
  position: absolute;
  right: 32px;
  top: 32px;
  width: 134px;
  z-index: 2;
}

.hero-orbit::after {
  background: var(--rose);
  border-radius: 50%;
  content: "";
  height: 38px;
  position: absolute;
  width: 38px;
}

.hero-orbit span {
  animation: spin 18s linear infinite;
  font-size: 9px;
  letter-spacing: 0.17em;
  position: absolute;
  text-transform: uppercase;
}

.hero-card {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(255, 253, 249, 0.86);
  bottom: 38px;
  display: flex;
  gap: 14px;
  left: 32px;
  padding: 16px 20px;
  position: absolute;
  z-index: 2;
}

.hero-card .pulse {
  background: var(--sage-deep);
  border-radius: 50%;
  height: 8px;
  position: relative;
  width: 8px;
}

.hero-card .pulse::after {
  animation: pulse 2s ease-out infinite;
  border: 1px solid var(--sage-deep);
  border-radius: 50%;
  content: "";
  inset: -5px;
  position: absolute;
}

.hero-card div {
  display: flex;
  flex-direction: column;
}

.hero-card strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
}

.hero-card small {
  font-size: 9px;
  margin-top: 3px;
  opacity: 0.7;
}

.image-credit {
  bottom: 40px;
  color: white;
  font-size: 8px;
  letter-spacing: 0.13em;
  margin: 0;
  position: absolute;
  right: 28px;
  text-transform: uppercase;
  z-index: 2;
}

.intro-band {
  align-items: center;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  gap: clamp(20px, 4vw, 64px);
  justify-content: center;
  min-height: 126px;
  overflow: hidden;
  padding: 28px;
}

.intro-band p {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 46px);
  font-style: italic;
  margin: 0;
  white-space: nowrap;
}

.intro-band span {
  color: var(--rose);
  font-size: 16px;
}

.section-shell {
  padding: 130px clamp(24px, 6vw, 96px);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr minmax(260px, 390px);
  margin-bottom: 64px;
}

.section-heading .eyebrow {
  margin-bottom: 20px;
}

.section-heading h2 {
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 0;
}

.section-heading > p {
  color: rgba(43, 35, 35, 0.65);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  margin: 0 0 5px;
}

.treatment-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.treatment-card {
  background: var(--paper);
  min-width: 0;
  overflow: hidden;
}

.treatment-image {
  height: 440px;
  overflow: hidden;
  position: relative;
}

.treatment-image img {
  filter: saturate(0.75);
  height: 100%;
  object-fit: cover;
  transition: filter 0.45s ease, transform 0.65s ease;
}

.treatment-card:nth-child(2) .treatment-image img {
  object-position: 55% center;
}

.treatment-card:hover .treatment-image img {
  filter: saturate(0.95);
  transform: scale(1.035);
}

.treatment-image > span {
  align-items: center;
  background: rgba(255, 253, 249, 0.9);
  border-radius: 50%;
  display: flex;
  font-size: 9px;
  height: 42px;
  justify-content: center;
  left: 18px;
  position: absolute;
  top: 18px;
  width: 42px;
}

.treatment-content {
  padding: 28px;
}

.treatment-content h3 {
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
  margin: 0;
}

.treatment-content p {
  color: rgba(43, 35, 35, 0.65);
  font-size: 12px;
  line-height: 1.7;
  margin: 14px 0 24px;
}

.treatment-content a {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  font-size: 10px;
  justify-content: space-between;
  padding-top: 16px;
  text-transform: uppercase;
}

.manifesto {
  background: var(--paper);
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  min-height: 780px;
}

.manifesto-image {
  margin: 28px 0 28px 28px;
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

.manifesto-image img {
  filter: saturate(0.68) sepia(0.05);
  height: 100%;
  object-fit: cover;
}

.image-label {
  background: var(--paper);
  bottom: 0;
  font-family: var(--display);
  font-size: 22px;
  font-style: italic;
  left: 0;
  padding: 18px 26px;
  position: absolute;
}

.manifesto-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px clamp(40px, 8vw, 140px);
}

.manifesto-copy blockquote {
  font-family: var(--display);
  font-size: clamp(50px, 5vw, 82px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0;
}

.manifesto-copy > p:not(.eyebrow) {
  color: rgba(43, 35, 35, 0.65);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  margin: 34px 0 26px;
  max-width: 480px;
}

.method {
  align-items: start;
  display: grid;
  gap: clamp(50px, 10vw, 160px);
  grid-template-columns: minmax(330px, 0.9fr) 1.1fr;
}

.method-intro {
  position: sticky;
  top: 140px;
}

.method-intro h2 {
  font-family: var(--display);
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.94;
  margin: 0;
}

.method-intro h2 em {
  color: var(--sage-deep);
  font-weight: 400;
}

.method-intro > p:not(.eyebrow) {
  color: rgba(43, 35, 35, 0.65);
  font-size: 14px;
  line-height: 1.75;
  margin: 30px 0 0;
  max-width: 460px;
}

.method-steps article {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 50px 1fr;
  padding: 38px 0 56px;
}

.method-steps article:last-child {
  border-bottom: 1px solid var(--line);
}

.method-steps article > span {
  color: var(--rose);
  font-size: 10px;
  padding-top: 10px;
}

.method-steps h3 {
  font-family: var(--display);
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 400;
  margin: 0;
}

.method-steps p {
  color: rgba(43, 35, 35, 0.65);
  font-size: 13px;
  line-height: 1.7;
  margin: 14px 0 0;
  max-width: 480px;
}

.technology {
  background: var(--ink);
  color: var(--cream);
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  min-height: 820px;
  padding: 28px;
}

.technology-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(34px, 7vw, 120px);
}

.technology-copy .eyebrow span {
  background: var(--rose);
}

.technology-copy h2 {
  font-family: var(--display);
  font-size: clamp(58px, 6vw, 90px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin: 0;
}

.technology-copy > p:not(.eyebrow) {
  color: rgba(244, 239, 232, 0.64);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  margin: 32px 0;
  max-width: 470px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tags span {
  border: 1px solid rgba(244, 239, 232, 0.24);
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: 0.05em;
  padding: 10px 14px;
  text-transform: uppercase;
}

.technology-image {
  min-height: 764px;
  overflow: hidden;
  position: relative;
}

.technology-image::after {
  background: linear-gradient(180deg, transparent 60%, rgba(21, 17, 17, 0.45));
  content: "";
  inset: 0;
  position: absolute;
}

.technology-image img {
  filter: saturate(0.68) contrast(1.04);
  height: 100%;
  object-fit: cover;
}

.tech-note {
  align-items: flex-end;
  bottom: 38px;
  color: white;
  display: flex;
  justify-content: space-between;
  left: 40px;
  position: absolute;
  right: 40px;
  z-index: 2;
}

.tech-note strong {
  font-family: var(--display);
  font-size: 50px;
  font-weight: 400;
}

.tech-note span {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-menu {
  display: grid;
  gap: clamp(60px, 10vw, 160px);
  grid-template-columns: minmax(300px, 0.75fr) 1.25fr;
}

.service-menu-heading h2 {
  font-family: var(--display);
  font-size: clamp(58px, 6.5vw, 94px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin: 0;
}

.service-menu-heading > p:not(.eyebrow) {
  color: rgba(43, 35, 35, 0.64);
  font-size: 13px;
  line-height: 1.75;
  margin: 30px 0 0;
  max-width: 420px;
}

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

.service-list > a {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 42px minmax(180px, 1fr) minmax(180px, 0.8fr) 28px;
  min-height: 112px;
  transition: background 0.28s ease, padding 0.28s ease;
}

.service-list > a:hover {
  background: var(--paper);
  padding: 0 18px;
}

.service-number {
  color: var(--rose);
  font-size: 9px;
}

.service-list h3 {
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  margin: 0;
}

.service-list p {
  color: rgba(43, 35, 35, 0.6);
  font-size: 11px;
  line-height: 1.5;
  margin: 0;
}

.service-arrow {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  font-size: 11px;
  height: 28px;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  width: 28px;
}

.service-list > a:hover .service-arrow {
  background: var(--ink);
  color: var(--paper);
  transform: rotate(45deg);
}

.promise {
  background: var(--rose-pale);
  padding: 130px clamp(24px, 6vw, 96px);
}

.promise-title {
  max-width: 1040px;
}

.promise-title h2 {
  font-family: var(--display);
  font-size: clamp(58px, 7vw, 102px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin: 0;
}

.promise-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 84px;
}

.promise-grid article {
  border-top: 1px solid rgba(43, 35, 35, 0.25);
  padding: 26px 0;
}

.promise-grid article > span {
  font-size: 9px;
}

.promise-grid h3 {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 400;
  margin: 54px 0 10px;
}

.promise-grid p {
  font-size: 12px;
  margin: 0;
  opacity: 0.68;
}

.contact {
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 860px;
  padding: 28px;
}

.contact-visual {
  min-height: 804px;
  overflow: hidden;
  position: relative;
}

.contact-visual::after {
  background: linear-gradient(180deg, transparent 50%, rgba(28, 23, 23, 0.56));
  content: "";
  inset: 0;
  position: absolute;
}

.contact-visual img {
  filter: saturate(0.68) sepia(0.05);
  height: 100%;
  object-fit: cover;
}

.contact-visual > p {
  bottom: 46px;
  color: white;
  font-family: var(--display);
  font-size: clamp(42px, 4vw, 64px);
  left: 42px;
  line-height: 0.98;
  margin: 0;
  position: absolute;
  z-index: 2;
}

.contact-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(34px, 7vw, 118px);
}

.contact-copy h2 {
  font-family: var(--display);
  font-size: clamp(58px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin: 0;
}

.contact-intro {
  color: rgba(43, 35, 35, 0.64);
  font-size: 13px;
  line-height: 1.75;
  margin: 28px 0 36px;
  max-width: 520px;
}

.booking-form {
  display: grid;
  gap: 22px 16px;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-form label > span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  min-height: 48px;
  outline: 0;
  padding: 0;
  width: 100%;
}

.booking-form input:focus,
.booking-form select:focus {
  border-bottom-color: var(--ink);
}

.booking-form input::placeholder {
  color: rgba(43, 35, 35, 0.42);
}

.full-field {
  grid-column: 1 / -1;
}

.button-contact {
  background: var(--sage-deep);
  border: 1px solid var(--sage-deep);
  color: white;
  cursor: pointer;
  justify-content: space-between;
  margin-top: 12px;
  width: 100%;
}

.button-contact:hover {
  background: transparent;
  color: var(--sage-deep);
}

.form-success {
  align-items: flex-start;
  background: var(--cream);
  display: grid;
  gap: 18px;
  grid-template-columns: 42px 1fr;
  padding: 28px;
  width: 100%;
}

.form-success > span {
  align-items: center;
  background: var(--sage-deep);
  border-radius: 50%;
  color: white;
  display: flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.form-success strong {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
}

.form-success p {
  color: rgba(43, 35, 35, 0.64);
  font-size: 12px;
  line-height: 1.6;
  margin: 8px 0 0;
}

.form-success button {
  background: none;
  border: 0;
  border-bottom: 1px solid var(--ink);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 10px;
  grid-column: 2;
  justify-self: start;
  padding: 0 0 5px;
  text-transform: uppercase;
}

footer {
  align-items: center;
  background: var(--ink);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 180px;
  padding: 38px clamp(24px, 5vw, 76px);
}

.footer-brand .brand-mark {
  background: var(--cream);
  color: var(--ink);
}

footer > p,
footer > a:last-child {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

footer > p {
  opacity: 0.62;
}

footer > a:last-child {
  justify-self: end;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0% { opacity: 0.8; transform: scale(0.8); }
  100% { opacity: 0; transform: scale(1.7); }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 0.9fr;
  }

  .hero h1 {
    font-size: clamp(58px, 7.8vw, 82px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .treatment-image {
    height: 360px;
  }

  .manifesto-copy,
  .contact-copy {
    padding-inline: 52px;
  }

  .method {
    gap: 70px;
  }

  .technology-copy {
    padding-inline: 50px;
  }

  .service-menu {
    gap: 70px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 76px;
    padding: 0 20px;
  }

  .brand-mark {
    font-size: 23px;
    height: 40px;
    width: 40px;
  }

  .brand-copy strong {
    font-size: 21px;
  }

  .header-cta {
    font-size: 10px;
    gap: 8px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-top: 76px;
  }

  .hero-copy {
    min-height: 650px;
    padding: 72px 22px 100px;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 78px);
    line-height: 0.9;
  }

  .hero-intro {
    font-size: 14px;
    margin-top: 28px;
  }

  .hero-actions {
    margin-top: 30px;
  }

  .hero-detail {
    bottom: 26px;
    left: 22px;
  }

  .hero-visual {
    height: 78svh;
    margin: 0;
    min-height: 580px;
  }

  .hero-orbit {
    height: 108px;
    right: 18px;
    top: 18px;
    width: 108px;
  }

  .hero-orbit span {
    font-size: 7px;
  }

  .hero-orbit::after {
    height: 30px;
    width: 30px;
  }

  .hero-card {
    bottom: 24px;
    left: 18px;
  }

  .image-credit {
    display: none;
  }

  .intro-band {
    justify-content: flex-start;
    min-height: 104px;
    padding-inline: 22px;
  }

  .intro-band p:nth-of-type(n+2),
  .intro-band span:nth-of-type(n+2) {
    display: none;
  }

  .intro-band p {
    font-size: 35px;
  }

  .section-shell {
    padding: 96px 20px;
  }

  .section-heading {
    display: block;
    margin-bottom: 44px;
  }

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

  .section-heading > p {
    margin-top: 24px;
  }

  .treatment-grid {
    display: flex;
    margin-right: -20px;
    overflow-x: auto;
    padding-right: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .treatment-grid::-webkit-scrollbar {
    display: none;
  }

  .treatment-card {
    flex: 0 0 84vw;
    scroll-snap-align: start;
  }

  .treatment-image {
    height: 390px;
  }

  .manifesto {
    display: block;
    min-height: auto;
  }

  .manifesto-image {
    height: 590px;
    margin: 0;
    min-height: 0;
  }

  .manifesto-image img {
    object-position: 52% center;
  }

  .manifesto-copy {
    padding: 96px 22px;
  }

  .manifesto-copy blockquote {
    font-size: 58px;
  }

  .method {
    display: block;
  }

  .method-intro {
    position: static;
  }

  .method-intro h2 {
    font-size: 58px;
  }

  .method-steps {
    margin-top: 64px;
  }

  .method-steps article {
    padding-bottom: 42px;
  }

  .technology {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 0;
  }

  .technology-copy {
    min-height: 620px;
    padding: 92px 22px;
  }

  .technology-copy h2 {
    font-size: 62px;
  }

  .technology-image {
    min-height: 650px;
  }

  .tech-note {
    bottom: 28px;
    left: 22px;
    right: 22px;
  }

  .service-menu {
    display: block;
  }

  .service-menu-heading h2 {
    font-size: 62px;
  }

  .service-list {
    margin-top: 64px;
  }

  .service-list > a {
    gap: 14px;
    grid-template-columns: 30px 1fr 28px;
    min-height: 98px;
  }

  .service-list > a:hover {
    padding-inline: 10px;
  }

  .service-list p {
    display: none;
  }

  .service-list h3 {
    font-size: 32px;
  }

  .promise {
    padding: 96px 22px;
  }

  .promise-title h2 {
    font-size: 60px;
  }

  .promise-grid {
    display: block;
    margin-top: 64px;
  }

  .promise-grid h3 {
    margin-top: 32px;
  }

  .contact {
    display: block;
    min-height: auto;
    padding: 0;
  }

  .contact-visual {
    height: 650px;
    min-height: 0;
  }

  .contact-visual > p {
    bottom: 30px;
    font-size: 48px;
    left: 22px;
  }

  .contact-copy {
    padding: 96px 22px;
  }

  .contact-copy h2 {
    font-size: 62px;
  }

  .booking-form {
    display: block;
  }

  .booking-form label {
    margin-bottom: 24px;
  }

  .button-contact {
    margin-top: 8px;
  }

  footer {
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-height: 280px;
    text-align: center;
  }

  footer > a:last-child {
    align-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
