:root {
  /* Farger */
  --cream: #F3EFE9;
  --cream-dark: #E8E1D7;
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --lavender: #DCDCEA;
  --sage: #C7D2C0;
  --terracotta: #D98E6F;
  --line: #D8D1C7;
  --white: #FFFFFF;

  /* Typografi */
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, 'Helvetica Neue', Arial, sans-serif;

  /* Spacing & form */
  --maxw: 1280px;
  --radius: 14px;
  --section-y: clamp(64px, 9vw, 140px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --container-x: clamp(20px, 4vw, 64px);
  --shadow-soft: 0 24px 60px rgba(26, 26, 26, 0.08);
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img,
video {
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p + p {
  margin-top: 1.1em;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

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

body.menu-open {
  overflow: hidden;
}

main:focus {
  outline: none;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 300;
  background: var(--ink);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 16px;
  transform: translateY(calc(-100% - 24px));
  transition: transform 180ms var(--ease);
}

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

.site-shell {
  min-height: 100vh;
  overflow-x: clip;
}

.container {
  width: min(100% - (var(--container-x) * 2), var(--maxw));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-y);
}

.section--tight {
  padding-block: clamp(44px, 6vw, 92px);
}

.section--cream-dark {
  background: var(--cream-dark);
}

.section--ink {
  background: var(--ink);
  color: var(--white);
}

.section--sage {
  background: var(--sage);
}

.section--lavender {
  background: var(--lavender);
}

.grid {
  display: grid;
  gap: clamp(20px, 3vw, 40px);
}

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

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.stack {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
}

.eyebrow {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section--ink .eyebrow,
.section--ink .text-muted {
  color: rgba(255, 255, 255, 0.72);
}

.text-muted {
  color: var(--ink-soft);
}

.measure {
  max-width: 760px;
}

.measure--narrow {
  max-width: 600px;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  color: var(--ink);
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
}

.section--ink h1,
.section--ink .h1,
.section--ink h2,
.section--ink .h2,
.section--ink h3,
.section--ink .h3 {
  color: var(--white);
}

h1,
.h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
}

h2,
.h2 {
  font-size: clamp(2.1rem, 4.6vw, 4.25rem);
}

h3,
.h3 {
  font-size: clamp(1.65rem, 2.7vw, 2.7rem);
}

h4,
.h4 {
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1rem + 0.45vw, 1.35rem);
  font-weight: 500;
  line-height: 1.28;
}

.lead {
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1rem + 0.55vw, 1.45rem);
  line-height: 1.65;
}

.section--ink .lead {
  color: rgba(255, 255, 255, 0.78);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background: rgba(243, 239, 233, 0);
  color: var(--ink);
  transition:
    background-color 260ms var(--ease),
    box-shadow 260ms var(--ease);
}

.site-header.scrolled {
  background: rgba(243, 239, 233, 0.94);
  box-shadow: 0 1px 0 rgba(26, 26, 26, 0.08), 0 18px 40px rgba(26, 26, 26, 0.06);
  backdrop-filter: blur(16px);
}

.home-page .site-header:not(.scrolled) .desktop-nav {
  color: rgba(255, 255, 255, 0.9);
}

.home-page .site-header:not(.scrolled) .brand-logo {
  filter: brightness(0) invert(1);
}

.home-page .site-header:not(.scrolled) .nav-booking,
.home-page .site-header:not(.scrolled) .menu-toggle {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.nav-shell {
  display: flex;
  min-height: var(--header-h);
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand-logo {
  width: clamp(118px, 11vw, 170px);
  max-height: 52px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  margin-inline: auto;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  color: rgba(26, 26, 26, 0.82);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
}

.desktop-nav a,
.mobile-nav a,
.footer-links a,
.footer-contact a {
  transition: color 180ms var(--ease), opacity 180ms var(--ease);
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

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

.desktop-nav a.active,
.mobile-nav a.active {
  color: var(--ink);
}

.nav-booking {
  min-height: 44px;
  padding-inline: 22px;
}

.menu-toggle,
.menu-close {
  display: none;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  margin-left: auto;
  place-items: center;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
}

.menu-toggle span + span {
  margin-top: 6px;
}

.menu-close {
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  line-height: 1;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--cream);
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition:
    opacity 320ms var(--ease),
    transform 460ms var(--ease);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.mobile-menu__bar {
  display: flex;
  min-height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(16px, 4vw, 28px);
  padding-block: 32px 64px;
}

.mobile-nav a:not(.btn) {
  border-bottom: 1px solid var(--line);
  color: rgba(26, 26, 26, 0.72);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 12vw, 4.8rem);
  font-weight: 500;
  line-height: 1;
  padding-bottom: 14px;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 500;
  gap: 10px;
  line-height: 1;
  padding: 0 24px;
  text-align: center;
  transition:
    background-color 220ms var(--ease),
    border-color 220ms var(--ease),
    color 220ms var(--ease),
    transform 220ms var(--ease);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.circle-arrow:focus-visible,
.menu-toggle:focus-visible,
.menu-close:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
}

.btn--primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.btn--primary:hover {
  background: #333333;
  border-color: #333333;
}

.btn--secondary {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn--secondary:hover {
  background: var(--ink);
  color: var(--white);
}

.section--ink .btn--secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.section--ink .btn--secondary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.circle-arrow {
  display: inline-grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  transition:
    background-color 220ms var(--ease),
    color 220ms var(--ease),
    transform 220ms var(--ease);
}

.circle-arrow--light {
  background: var(--white);
  color: var(--ink);
}

.circle-arrow--dark {
  background: var(--ink);
  color: var(--white);
}

.circle-arrow:hover {
  transform: translate(3px, -3px);
}

.card {
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: var(--radius);
  transition:
    box-shadow 260ms var(--ease),
    transform 260ms var(--ease),
    border-color 260ms var(--ease);
}

.card:hover {
  border-color: rgba(26, 26, 26, 0.12);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.card--cream {
  background: var(--cream);
}

.card--white {
  background: var(--white);
}

.card--lavender {
  background: var(--lavender);
}

.card--sage {
  background: var(--sage);
}

.card--terracotta {
  background: var(--terracotta);
}

.media-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 600ms var(--ease),
    transform 600ms var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding-block: clamp(56px, 8vw, 108px) 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(220px, 1.5fr) minmax(160px, 0.8fr) minmax(180px, 0.8fr);
  gap: clamp(32px, 5vw, 76px);
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 28px;
}

.footer-logo {
  filter: brightness(0) invert(1);
}

.footer-contact {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-col h2 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.75;
}

.footer-links {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.footer-contact a:hover,
.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: clamp(48px, 7vw, 96px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 24px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.home-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.home-hero__video,
.home-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero__video {
  object-fit: cover;
}

.home-hero__overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.28) 44%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.08) 54%);
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  padding-block: calc(var(--header-h) + clamp(56px, 8vw, 96px)) clamp(28px, 6vw, 72px);
}

.home-hero__card {
  display: grid;
  width: min(100%, 740px);
  gap: clamp(18px, 2.2vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(243, 239, 233, 0.16);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
  padding: clamp(24px, 4vw, 52px);
  backdrop-filter: blur(16px);
}

.home-hero h1,
.home-hero .lead {
  color: var(--white);
}

.home-hero .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.home-hero .btn--secondary {
  border-color: rgba(255, 255, 255, 0.78);
  color: var(--white);
}

.home-hero .btn--secondary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.intro-section__inner,
.balance-section__inner,
.signature-section__inner {
  display: grid;
  max-width: 980px;
  gap: clamp(18px, 3vw, 34px);
}

.intro-section__inner {
  margin-inline: auto;
  text-align: center;
}

.intro-section__inner .lead,
.balance-section__inner .lead,
.signature-section__inner .lead {
  max-width: 900px;
}

.section-heading {
  display: grid;
  gap: 18px;
}

.treatment-grid,
.promise-grid {
  display: grid;
  gap: clamp(18px, 2.4vw, 30px);
}

.treatment-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.treatment-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  background: var(--white);
}

.treatment-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-dark);
}

.treatment-card__media img {
  transition: transform 480ms var(--ease);
}

.treatment-card:hover .treatment-card__media img {
  transform: scale(1.035);
}

.treatment-card__body {
  display: grid;
  min-height: 330px;
  align-content: start;
  gap: 18px;
  padding: clamp(20px, 2.4vw, 30px);
}

.treatment-card h3,
.promise-card h3 {
  font-size: clamp(1.7rem, 2.1vw, 2.25rem);
}

.treatment-card p,
.promise-card p,
.trust-layout__content p {
  color: var(--ink-soft);
}

.treatment-card .circle-arrow {
  align-self: end;
  margin-top: auto;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
}

.trust-layout__media {
  min-height: clamp(460px, 62vw, 720px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-dark);
}

.trust-layout__content {
  display: grid;
  gap: clamp(18px, 2.6vw, 32px);
}

.trust-layout__content .btn {
  justify-self: start;
}

.balance-section {
  border-block: 1px solid rgba(26, 26, 26, 0.08);
}

.balance-section__inner {
  max-width: 1040px;
}

.promise-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.promise-card {
  display: grid;
  min-height: 370px;
  align-content: start;
  gap: 18px;
  padding: clamp(24px, 3vw, 40px);
}

.promise-card .btn {
  align-self: end;
  justify-self: start;
  margin-top: auto;
}

.consultation-section {
  padding-block: clamp(24px, 5vw, 72px);
}

.consultation-block {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 78px);
  align-items: end;
  border-radius: var(--radius);
  background: var(--terracotta);
  padding: clamp(28px, 5vw, 72px);
}

.consultation-block .eyebrow,
.consultation-block .lead {
  color: rgba(26, 26, 26, 0.78);
}

.consultation-block .btn {
  justify-self: start;
}

.signature-section__inner {
  max-width: 980px;
}

.page-hero {
  padding-block: calc(var(--header-h) + clamp(58px, 7vw, 110px)) clamp(54px, 8vw, 112px);
}

.page-hero--split {
  padding-bottom: clamp(40px, 7vw, 92px);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
}

.page-hero__content {
  display: grid;
  max-width: 840px;
  gap: clamp(18px, 2.6vw, 32px);
}

.page-hero__content--wide {
  max-width: 960px;
}

.page-hero__content .btn {
  justify-self: start;
}

.page-hero__media {
  min-height: clamp(360px, 48vw, 620px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-dark);
}

.feature-band__grid,
.doctor-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
}

.feature-band__media,
.doctor-layout__media {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-dark);
}

.feature-band__media {
  min-height: clamp(360px, 50vw, 620px);
}

.feature-band__content,
.doctor-layout__content {
  display: grid;
  gap: clamp(18px, 2.4vw, 30px);
}

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

.service-item {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(28px, 5vw, 58px);
}

.service-item__number {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 14px;
}

.service-item__body {
  display: grid;
  gap: 22px;
}

.service-item__body p {
  color: var(--ink-soft);
}

.service-item__body .btn {
  justify-self: start;
}

.text-panel {
  display: grid;
  max-width: 980px;
  gap: clamp(18px, 3vw, 32px);
}

.text-panel .btn {
  justify-self: start;
}

.two-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
}

.note-block {
  display: grid;
  gap: 18px;
  min-height: 420px;
  align-content: start;
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 52px);
}

.note-block p {
  color: var(--ink-soft);
}

.note-block--lavender {
  background: var(--lavender);
}

.note-block--sage {
  background: var(--sage);
}

.doctor-layout {
  align-items: start;
}

.doctor-layout__media {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  min-height: clamp(520px, 66vw, 780px);
}

.doctor-layout__subtitle {
  color: var(--ink-soft);
  font-weight: 500;
}

.rich-text {
  display: grid;
  gap: 18px;
}

.rich-text h2 {
  margin-top: 20px;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.rich-text h2:first-child {
  margin-top: 0;
}

.rich-text p {
  color: var(--ink-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 32px);
}

.contact-card {
  display: grid;
  min-height: 250px;
  align-content: start;
  gap: 16px;
  padding: clamp(24px, 3vw, 38px);
}

.contact-card h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.6vw, 2.7rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.contact-card p {
  color: var(--ink-soft);
}

.text-link {
  color: var(--ink);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.map-section {
  padding-bottom: var(--section-y);
}

.map-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream-dark);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  min-height: clamp(360px, 52vw, 620px);
}

.consent-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.consent-aside {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: grid;
  gap: 18px;
  border-radius: var(--radius);
  background: var(--lavender);
  padding: clamp(24px, 3vw, 38px);
}

.consent-aside p {
  color: var(--ink-soft);
}

.consent-aside .btn {
  justify-self: start;
}

.consent-content {
  border-left: 1px solid var(--line);
  padding-left: clamp(24px, 4vw, 56px);
}

@media (max-width: 1120px) {
  .desktop-nav,
  .nav-booking {
    display: none;
  }

  .menu-toggle,
  .menu-close {
    display: inline-grid;
  }
}

@media (max-width: 980px) {
  .grid--4,
  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .treatment-grid,
  .promise-grid,
  .trust-layout,
  .consultation-block,
  .page-hero__grid,
  .feature-band__grid,
  .doctor-layout,
  .service-item,
  .consent-layout {
    grid-template-columns: 1fr;
  }

  .treatment-card__body,
  .promise-card {
    min-height: auto;
  }

  .trust-layout__media {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .page-hero__media,
  .feature-band__media,
  .doctor-layout__media {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .doctor-layout__media,
  .consent-aside {
    position: static;
  }

  .consent-content {
    border-left: 0;
    padding-left: 0;
  }

  .contact-grid,
  .two-note-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 68px;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    white-space: normal;
  }

  .cluster {
    align-items: stretch;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-contact,
  .footer-links {
    gap: 12px;
  }

  .home-hero__inner {
    align-items: flex-end;
    padding-bottom: 20px;
  }

  .home-hero__card {
    border-radius: 12px;
    padding: 22px;
  }

  .intro-section__inner {
    text-align: left;
  }

  .treatment-grid,
  .promise-grid {
    gap: 18px;
  }

  .treatment-card__media {
    aspect-ratio: 16 / 11;
  }

  .consultation-block {
    border-radius: 12px;
    padding: 24px;
  }

  .page-hero {
    padding-block: calc(var(--header-h) + 42px) 54px;
  }

  .note-block,
  .contact-card {
    min-height: auto;
  }

  .service-item {
    gap: 16px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
