@font-face {
  font-family: "Open Sans";
  src: url("../fonts/open-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
}

:root {
  --ink: #203229;
  --green: #3b4d37;
  --green-deep: #26382d;
  --green-black: #18271f;
  --sage: #8fb5a6;
  --sage-soft: #dce8e2;
  --sage-pale: #eef4f1;
  --sand: #faf8f4;
  --paper: #fffdfa;
  --stone: #f0ece5;
  --brown: #756f62;
  --clay: #7a7568;
  --line: #d8dfd9;
  --line-dark: rgba(32, 50, 41, 0.18);
  --shadow-sm: 0 12px 32px rgba(26, 42, 34, 0.08);
  --shadow-lg: 0 28px 70px rgba(26, 42, 34, 0.14);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --container: min(1180px, calc(100vw - 40px));
  --narrow: min(760px, calc(100vw - 40px));
  --ease: cubic-bezier(.2, .7, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--sand);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

img {
  height: auto;
}

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

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: .25em;
}

p,
li {
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.035em;
  text-wrap: balance;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

h1 { font-size: clamp(3.1rem, 6vw, 5.7rem); }
h2 { font-size: clamp(2.35rem, 4.4vw, 4.15rem); }
h3 { font-size: clamp(1.55rem, 2.4vw, 2.15rem); }

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

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-140%);
  padding: 12px 18px;
  color: white;
  background: var(--green-black);
  border-radius: 999px;
  font-weight: 700;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.container--narrow {
  width: var(--narrow);
  margin-inline: auto;
}

.section {
  padding-block: clamp(76px, 10vw, 132px);
}

.section--compact {
  padding-block: clamp(58px, 7vw, 92px);
}

.section--paper { background: var(--paper); }
.section--stone { background: var(--stone); }
.section--sage { background: var(--sage-pale); }
.section--green { color: var(--paper); background: var(--green-deep); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--green);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.section--green .eyebrow,
.panel--dark .eyebrow { color: #bfd4ca; }

.section-title {
  max-width: 17ch;
  margin-bottom: 24px;
}

.section-head {
  max-width: 860px;
  margin: 0 auto clamp(44px, 6vw, 74px);
  text-align: center;
}

.section-head .section-title {
  max-width: 18ch;
  margin-inline: auto;
}

.section-head p,
.section-intro {
  max-width: 66ch;
  margin-inline: auto;
  color: var(--brown);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.section--green .section-title,
.section--green .section-head p,
.panel--dark h2,
.panel--dark h3,
.panel--dark p { color: var(--paper); }

.muted { color: var(--brown); }
.small { font-size: .88rem; }
.serif { font-family: "Playfair Display", Georgia, serif; }
.center { text-align: center; }

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

.button-row--center { justify-content: center; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: .91rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

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

.button--primary:hover { background: var(--green-black); }

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

.button--outline {
  color: var(--green);
  border-color: rgba(59, 77, 55, .38);
  background: transparent;
}

.button--outline:hover { border-color: var(--green); background: var(--paper); }

.button--ghost {
  min-height: 44px;
  padding-inline: 16px;
  color: var(--green);
  background: transparent;
}

.button__icon,
.inline-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding-block: 9px;
  color: var(--green);
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform .2s ease;
}

.text-link:hover::after { transform: translateX(4px); }

/* Header */
.site-header {
  position: sticky;
  z-index: 900;
  top: 0;
  border-bottom: 1px solid rgba(32, 50, 41, .10);
  background: rgba(250, 248, 244, .94);
  backdrop-filter: blur(18px);
}

.header-main {
  display: grid;
  min-height: 88px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--ink);
  line-height: 1;
  text-decoration: none;
}

.brand__name {
  font-size: clamp(1.42rem, 2vw, 1.78rem);
  font-weight: 500;
  letter-spacing: .28em;
}

.brand__sub {
  margin-top: 7px;
  color: var(--brown);
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.desktop-nav {
  justify-self: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link,
.nav-trigger {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 11px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link:hover,
.nav-trigger:hover,
.nav-link[aria-current="page"],
.nav-trigger[aria-current="page"] {
  color: var(--green);
  background: var(--sage-pale);
}

.nav-item--has-menu { position: relative; }

.nav-trigger svg {
  width: 14px;
  margin-left: 6px;
  transition: transform .2s ease;
}

.nav-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }

.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: min(720px, 80vw);
  padding: 26px;
  transform: translate(-33%, 10px);
  visibility: hidden;
  opacity: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.mega-menu[data-open="true"] {
  transform: translate(-33%, 0);
  visibility: visible;
  opacity: 1;
}

.mega-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 22px;
}

.mega-heading {
  display: block;
  margin-bottom: 10px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.mega-menu a {
  display: block;
  padding: 5px 0;
  color: var(--brown);
  font-size: .82rem;
  text-decoration: none;
}

.mega-menu a:hover { color: var(--green); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-instagram {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  text-decoration: none;
}

.header-instagram:hover { background: var(--sage-pale); }
.header-instagram svg { width: 19px; height: 19px; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 1.5px;
  content: "";
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle span { margin-block: 4px; }

.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(5.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 850;
  inset: 88px 0 0;
  overflow-y: auto;
  transform: translateY(-12px);
  visibility: hidden;
  opacity: 0;
  background: var(--sand);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

.mobile-menu[data-open="true"] {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

.mobile-menu__inner {
  width: var(--container);
  margin-inline: auto;
  padding-block: 26px 120px;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 6vw, 2rem);
  text-decoration: none;
}

.mobile-menu a[aria-current="page"] {
  color: var(--green);
  font-weight: 600;
}

.mobile-menu__small a {
  border: 0;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: .95rem;
  font-weight: 700;
}

.mobile-menu .button {
  margin-top: 24px;
  color: white;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: .95rem;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(52px, 7vw, 92px) clamp(72px, 9vw, 118px);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -180px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  content: "";
  border-radius: 50%;
  background: rgba(143, 181, 166, .18);
  filter: blur(2px);
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  gap: clamp(38px, 7vw, 90px);
}

.hero-copy { padding-block: 26px; }

.hero h1 {
  max-width: 12ch;
  margin-bottom: 26px;
}

.hero-lead {
  max-width: 54ch;
  margin-bottom: 34px;
  color: var(--brown);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.75;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  color: var(--brown);
  font-size: .84rem;
}

.hero-note::before {
  display: block;
  width: 28px;
  height: 1px;
  content: "";
  background: var(--sage);
}

.hero-media {
  position: relative;
  min-height: 650px;
}

.hero-image-main {
  position: absolute;
  inset: 0 0 42px 13%;
  overflow: hidden;
  border-radius: 170px 170px 34px 34px;
  background: var(--stone);
  box-shadow: var(--shadow-lg);
}

.hero-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-image-small {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 42%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 10px solid var(--sand);
  border-radius: 28px;
  background: var(--stone);
  box-shadow: var(--shadow-sm);
}

.hero-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stamp {
  position: absolute;
  z-index: 3;
  right: -4px;
  bottom: 18px;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  padding: 15px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--green);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--paper);
}

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

.trust-item {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 20px 26px;
  color: var(--brown);
  font-size: .84rem;
  text-align: center;
}

.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item strong { color: var(--ink); }
.trust-item svg { width: 20px; height: 20px; color: var(--green); }

/* Cards and grids */
.need-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.need-card {
  position: relative;
  min-height: 230px;
  padding: 28px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  text-align: center;
  text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}

.need-card:hover {
  z-index: 1;
  transform: translateY(-7px);
  border-color: var(--sage);
  box-shadow: var(--shadow-sm);
}

.need-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--sage-pale);
}

.need-card__icon svg { width: 23px; height: 23px; }

.need-card h3 {
  margin-bottom: 12px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.01em;
}

.need-card p {
  margin: 0;
  color: var(--brown);
  font-size: .83rem;
  line-height: 1.55;
}

.service-showcase {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: white;
  background: var(--green);
  text-decoration: none;
}

.service-card:nth-child(1) { grid-column: span 5; }
.service-card:nth-child(2) { grid-column: span 7; }
.service-card:nth-child(3) { grid-column: 3 / span 8; }

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

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

.service-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(19, 33, 25, .05) 20%, rgba(19, 33, 25, .84) 100%);
}

.service-card__content {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(28px, 4vw, 46px);
}

.service-card__kicker {
  display: block;
  margin-bottom: 10px;
  color: #d5e2dc;
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 12px;
  color: white;
  font-size: clamp(2rem, 3vw, 3rem);
}

.service-card p {
  max-width: 46ch;
  margin: 0 0 18px;
  color: rgba(255,255,255,.82);
  font-size: .93rem;
}

.service-card .text-link { color: white; }

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

.editorial-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(32,50,41,.02);
}

.editorial-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--stone);
}

.editorial-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.editorial-card:hover .editorial-card__media img { transform: scale(1.03); }

.editorial-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: 28px;
  text-align: center;
}

.editorial-card__tag {
  margin-bottom: 14px;
  color: var(--clay);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.editorial-card h3 { margin-bottom: 14px; }

.editorial-card p {
  margin-bottom: 22px;
  color: var(--brown);
  font-size: .91rem;
}

.editorial-card .text-link { margin-top: auto; }

.feature-panel {
  display: grid;
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--radius-lg);
  grid-template-columns: 1.05fr .95fr;
  background: var(--green-deep);
  box-shadow: var(--shadow-lg);
}

.feature-panel__media {
  min-height: 600px;
  background: var(--green-black);
}

.feature-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-panel__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 84px);
  color: white;
}

.feature-panel h2 {
  max-width: 12ch;
  margin-bottom: 24px;
  color: white;
}

.feature-panel p {
  max-width: 52ch;
  color: rgba(255,255,255,.78);
}

.fact-row {
  display: grid;
  margin: 30px 0 34px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.fact {
  padding: 18px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  text-align: center;
}

.fact strong {
  display: block;
  color: white;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1;
}

.fact span {
  display: block;
  margin-top: 7px;
  color: #bfd4ca;
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

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

.method-step {
  position: relative;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
  text-align: center;
}

.method-step__num {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--sage-pale);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
}

.method-step h3 {
  margin-bottom: 10px;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -.01em;
}

.method-step p {
  max-width: 34ch;
  margin-inline: auto;
  color: var(--brown);
  font-size: .9rem;
}

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

.team-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
}

.team-card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--stone);
}

.team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.team-card__body {
  padding: 26px;
  text-align: center;
}

.team-card h3 { margin-bottom: 6px; font-size: 1.7rem; }
.team-card p { margin: 0; color: var(--brown); font-size: .86rem; }

.gift-split,
.location-split,
.content-split {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: clamp(38px, 7vw, 90px);
}

.gift-card-visual {
  position: relative;
  padding: clamp(20px, 4vw, 46px);
  border-radius: var(--radius-lg);
  background: var(--sage-soft);
}

.gift-card-visual img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
}

.gift-list {
  display: grid;
  margin: 30px 0;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gift-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--brown);
  font-size: .9rem;
}

.gift-list svg { width: 18px; color: var(--green); }

/* Page headers and service pages */
.page-hero {
  padding-block: clamp(52px, 7vw, 86px);
  overflow: hidden;
}

.page-hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(38px, 7vw, 86px);
}

.page-hero h1 {
  max-width: 11ch;
  margin-bottom: 24px;
}

.page-hero p {
  max-width: 56ch;
  margin-bottom: 30px;
  color: var(--brown);
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
}

.page-hero-media {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--stone);
  box-shadow: var(--shadow-sm);
}

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

.breadcrumb {
  padding-top: 18px;
  color: var(--brown);
  font-size: .77rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li + li::before { margin-right: 7px; content: "/"; color: var(--sage); }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--green); }

.category-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 52px;
}

.category-nav a {
  padding: 10px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brown);
  background: var(--paper);
  font-size: .81rem;
  font-weight: 700;
  text-decoration: none;
}

.category-nav a:hover { color: white; border-color: var(--green); background: var(--green); }

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.treatment-card {
  display: grid;
  min-height: 260px;
  align-content: start;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.treatment-card__num {
  margin-bottom: 26px;
  color: var(--sage);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
}

.treatment-card h3 { margin-bottom: 14px; }
.treatment-card p { color: var(--brown); font-size: .93rem; }
.treatment-card .text-link { margin-top: auto; }

.technology-list {
  display: grid;
  gap: 16px;
}

.technology-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  grid-template-columns: 200px 1fr;
  background: var(--paper);
}

.technology-card__side {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  color: var(--green);
  background: var(--sage-pale);
  text-align: center;
}

.technology-card__side span:first-child {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
}

.technology-card__side span:last-child {
  margin-top: 10px;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.technology-card__body {
  display: grid;
  padding: clamp(30px, 5vw, 54px);
  grid-template-columns: 1fr 1fr;
  gap: 22px 42px;
}

.technology-card__body h2,
.technology-card__body > p,
.technology-card__body .button-row { grid-column: 1 / -1; }
.technology-card__body h2 { margin-bottom: 0; font-size: clamp(2rem, 3vw, 3rem); }
.technology-card__body > p { max-width: 72ch; margin: 0; color: var(--brown); }

.tech-detail {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.tech-detail strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.tech-detail p { margin: 0; color: var(--brown); font-size: .87rem; }

.technology-card--fhos .technology-card__side {
  color: var(--green);
  background: var(--sage-pale);
}

.technology-card--fhos { border-color: var(--line); }

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--green);
  background: var(--sage-pale);
  font-size: .76rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.comparison-table td { color: var(--brown); font-size: .88rem; }
.comparison-table tr:last-child td { border-bottom: 0; }

.accordion-list {
  max-width: 920px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

.accordion-list details { border-bottom: 1px solid var(--line); }
.accordion-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  list-style: none;
}

.accordion-list summary::-webkit-details-marker { display: none; }
.accordion-list summary::after {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  content: "+";
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  line-height: 27px;
  text-align: center;
}

.accordion-list details[open] summary::after { content: "–"; }
.accordion-content { max-width: 72ch; padding: 0 0 28px; color: var(--brown); }
.accordion-content p:last-child { margin-bottom: 0; }

/* Treatment detail */
.detail-hero {
  padding-block: clamp(48px, 7vw, 86px) clamp(72px, 9vw, 110px);
}

.detail-hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr .84fr;
  gap: clamp(40px, 8vw, 100px);
}

.detail-hero h1 { max-width: 13ch; margin-bottom: 24px; }
.detail-hero .hero-lead { margin-bottom: 30px; }

.detail-facts {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.detail-fact {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.detail-fact:last-child { border-bottom: 0; }
.detail-fact span { display: block; color: var(--brown); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.detail-fact strong { display: block; margin-top: 5px; color: var(--ink); font-family: "Playfair Display", Georgia, serif; font-size: 1.25rem; font-weight: 500; }

.prose-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .65fr);
  gap: clamp(44px, 8vw, 100px);
}

.prose {
  max-width: 760px;
}

.prose h2 { margin: 58px 0 20px; font-size: clamp(2rem, 3.6vw, 3.15rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 36px 0 14px; font-family: "Open Sans", sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: -.01em; }
.prose p,
.prose li { color: var(--brown); }
.prose ul { padding-left: 1.25em; }
.prose a { color: var(--green); }

.side-card {
  position: sticky;
  top: 116px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--sage-pale);
}

.side-card h3 { margin-bottom: 14px; }
.side-card p { color: var(--brown); font-size: .9rem; }
.side-card .button { width: 100%; margin-top: 8px; }

.faq-list {
  max-width: 900px;
  margin-inline: auto;
}

/* Location */
.location-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.location-info { padding: clamp(34px, 6vw, 66px); }
.location-info h2 { max-width: 12ch; margin-bottom: 20px; }
.location-info > p { color: var(--brown); }

.contact-lines { margin: 30px 0; border-top: 1px solid var(--line); }
.contact-line {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 28px 1fr;
  gap: 12px;
}
.contact-line svg { width: 20px; margin-top: 3px; color: var(--green); }
.contact-line strong { display: block; }
.contact-line span { display: block; color: var(--brown); font-size: .82rem; }

.map-panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--sage-soft);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
}

.map-preview {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px;
  color: white;
  background: linear-gradient(rgba(26,42,34,.42), rgba(26,42,34,.62)), url("../img/clinica-2622.webp") center / cover;
  text-align: center;
}

.map-preview h3 { max-width: 14ch; margin-bottom: 12px; color: white; font-size: clamp(2rem, 4vw, 3.3rem); }
.map-preview p { max-width: 46ch; margin-bottom: 24px; color: rgba(255,255,255,.84); }
.map-preview[data-hidden="true"] { display: none; }

.map-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

/* Instagram and blog */
.instagram-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}

.instagram-header h2 { max-width: 12ch; margin: 0; }

.instagram-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  grid-template-rows: 250px 250px;
  gap: 12px;
}

.instagram-grid a {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--stone);
}

.instagram-grid a:first-child { grid-row: 1 / 3; }
.instagram-grid a:nth-child(4) { grid-column: 2 / 4; }
.instagram-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.instagram-grid a:hover img { transform: scale(1.035); }

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

.article-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  justify-content: end;
  padding: clamp(28px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.article-card:nth-child(1), .article-card:nth-child(4) { grid-column: span 7; }
.article-card:nth-child(2), .article-card:nth-child(3) { grid-column: span 5; }
.article-card:nth-child(5) { grid-column: 3 / span 8; }
.article-card__tag { margin-bottom: auto; color: var(--clay); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.article-card h2 { margin: 36px 0 14px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.article-card p { color: var(--brown); font-size: .91rem; }

.article-header {
  max-width: 920px;
  margin-inline: auto;
  padding-block: clamp(58px, 8vw, 100px);
  text-align: center;
}
.article-header h1 { max-width: 18ch; margin-inline: auto; }
.article-header .hero-lead { margin-inline: auto; }
.article-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; color: var(--brown); font-size: .8rem; }

.article-body {
  max-width: 780px;
  margin-inline: auto;
  padding-bottom: clamp(80px, 10vw, 130px);
}
.article-body h2 { margin: 54px 0 18px; font-size: clamp(2rem, 3.4vw, 3rem); }
.article-body h3 { margin: 34px 0 14px; font-family: "Open Sans", sans-serif; font-size: 1.03rem; font-weight: 700; }
.article-body p,
.article-body li { color: var(--brown); font-size: 1.02rem; line-height: 1.82; }
.article-body a { color: var(--green); }
.article-callout { margin: 42px 0; padding: 28px; border-left: 3px solid var(--sage); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: var(--sage-pale); }
.article-sources { margin-top: 64px; padding-top: 28px; border-top: 1px solid var(--line); }
.article-sources h2 { margin-top: 0; font-family: "Open Sans", sans-serif; font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.article-sources li { font-size: .82rem; }

/* Legal */
.legal-header { padding-block: 58px 36px; }
.legal-header h1 { font-size: clamp(2.8rem, 5vw, 4.5rem); }
.legal-content { max-width: 820px; padding-bottom: 110px; }
.legal-content h2 { margin: 48px 0 16px; font-size: 2rem; }
.legal-content h3 { margin: 30px 0 12px; font-family: "Open Sans", sans-serif; font-size: 1rem; font-weight: 700; }
.legal-content p,
.legal-content li { color: var(--brown); font-size: .94rem; }
.legal-content a { color: var(--green); }

/* CTA, footer, modal */
.cta-band {
  padding-block: clamp(66px, 8vw, 96px);
  color: white;
  background: var(--green);
}

.cta-band__inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 38px;
}

.cta-band h2 { max-width: 17ch; margin-bottom: 12px; color: white; }
.cta-band p { max-width: 58ch; margin: 0; color: rgba(255,255,255,.76); }

.site-footer {
  color: rgba(255,255,255,.74);
  background: var(--green-black);
}

.footer-main {
  display: grid;
  padding-block: 70px 54px;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 54px;
}

.footer-brand .brand__name { color: white; }
.footer-brand .brand__sub { color: rgba(255,255,255,.54); }
.footer-brand p { max-width: 34ch; margin-top: 24px; color: rgba(255,255,255,.63); font-size: .85rem; }

.footer-col h2 {
  margin-bottom: 18px;
  color: white;
  font-family: "Open Sans", sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  margin-bottom: 9px;
  color: rgba(255,255,255,.66);
  font-size: .82rem;
  text-decoration: none;
}
.footer-col a:hover { color: white; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .72rem;
}

.footer-legal { display: flex; flex-wrap: wrap; gap: 15px; }
.footer-legal a { text-decoration: none; }

.floating-contact {
  position: fixed;
  z-index: 700;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  color: white;
  background: var(--green-black);
  box-shadow: 0 14px 34px rgba(18,34,25,.24);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .25s var(--ease), background .25s ease;
}

.floating-contact:hover { transform: translateY(-3px); background: var(--green); }
.floating-contact svg { width: 20px; height: 20px; }

.modal {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  visibility: hidden;
  place-items: center;
  padding: 20px;
  opacity: 0;
  background: rgba(20,34,26,.62);
  backdrop-filter: blur(10px);
  transition: opacity .25s ease, visibility .25s ease;
}

.modal[data-open="true"] { visibility: visible; opacity: 1; }

.modal__panel {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100vh - 40px);
  padding: clamp(30px, 6vw, 58px);
  overflow-y: auto;
  transform: translateY(15px);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  transition: transform .25s var(--ease);
}

.modal[data-open="true"] .modal__panel { transform: translateY(0); }
.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.4rem;
}

.modal h2 { max-width: 14ch; margin-bottom: 14px; }
.modal > p,
.modal__panel > p { color: var(--brown); }

.booking-options { display: grid; margin-top: 30px; grid-template-columns: 1fr 1fr; gap: 14px; }
.booking-option { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--sand); text-decoration: none; }
.booking-option:hover { border-color: var(--sage); box-shadow: var(--shadow-sm); }
.booking-option svg { width: 26px; height: 26px; margin-bottom: 20px; color: var(--green); }
.booking-option strong { display: block; margin-bottom: 7px; color: var(--ink); }
.booking-option span { display: block; color: var(--brown); font-size: .81rem; line-height: 1.55; }

.cookie-notice {
  position: fixed;
  z-index: 1500;
  right: 18px;
  bottom: 18px;
  width: min(480px, calc(100vw - 36px));
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.cookie-notice[data-hidden="true"] { display: none; }
body.menu-open .cookie-notice { display: none; }
.cookie-notice h2 { margin-bottom: 8px; font-family: "Open Sans", sans-serif; font-size: .96rem; font-weight: 700; letter-spacing: 0; }
.cookie-notice p { margin-bottom: 16px; color: var(--brown); font-size: .79rem; line-height: 1.55; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.cookie-actions .button { min-height: 42px; padding: 10px 15px; font-size: .75rem; }

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.not-found {
  display: grid;
  min-height: calc(100vh - 88px);
  place-items: center;
  padding: 70px 20px;
  text-align: center;
}
.not-found__code { color: var(--sage); font-family: "Playfair Display", serif; font-size: clamp(5rem, 18vw, 12rem); line-height: .8; }
.not-found h1 { margin: 24px 0 16px; font-size: clamp(2.4rem, 5vw, 4rem); }
.not-found p { max-width: 55ch; margin-inline: auto; color: var(--brown); }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .header-main { grid-template-columns: 1fr auto; }
  .header-actions .button,
  .header-instagram { display: none; }
  .menu-toggle { display: grid; }
  .hero-grid { grid-template-columns: minmax(0, .9fr) minmax(390px, 1.1fr); gap: 42px; }
  .hero-media { min-height: 570px; }
  .need-grid { grid-template-columns: repeat(3, 1fr); }
  .need-card:nth-child(4) { grid-column: 1 / 2; }
  .need-card:nth-child(5) { grid-column: 2 / 3; }
  .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-col:last-child { grid-column: 2 / 4; }
}

@media (max-width: 860px) {
  :root { --container: min(100% - 32px, 720px); --narrow: min(100% - 32px, 680px); }
  .section { padding-block: 82px; }
  .hero-grid,
  .page-hero-grid,
  .detail-hero-grid,
  .feature-panel,
  .gift-split,
  .location-split,
  .content-split,
  .prose-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 34px; }
  .hero-copy,
  .page-hero-copy { max-width: 680px; margin-inline: auto; text-align: center; }
  .hero h1,
  .page-hero h1 { margin-inline: auto; }
  .hero-lead,
  .page-hero p { margin-inline: auto; }
  .hero .button-row,
  .page-hero .button-row { justify-content: center; }
  .hero-note { justify-content: center; }
  .hero-media { width: min(620px, 100%); min-height: 600px; margin-inline: auto; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-top: 1px solid var(--line); border-left: 0; }
  .service-card:nth-child(n) { grid-column: 1 / -1; min-height: 430px; }
  .editorial-grid,
  .team-grid { grid-template-columns: 1fr 1fr; }
  .editorial-card:last-child,
  .team-card:last-child { grid-column: 1 / -1; width: calc(50% - 9px); justify-self: center; }
  .feature-panel__media { min-height: 480px; }
  .method-grid { gap: 16px; }
  .page-hero-media { min-height: 460px; }
  .technology-card { grid-template-columns: 140px 1fr; }
  .technology-card__body { grid-template-columns: 1fr; }
  .technology-card__body > * { grid-column: 1; }
  .side-card { position: static; }
  .article-card:nth-child(n) { grid-column: span 6; }
  .article-card:nth-child(5) { grid-column: 3 / span 8; }
  .instagram-grid { grid-template-rows: 210px 210px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: auto; }
  .cta-band__inner { grid-template-columns: 1fr; text-align: center; }
  .cta-band h2,
  .cta-band p { margin-inline: auto; }
  .cta-band .button-row { justify-content: center; }
}

@media (max-width: 620px) {
  :root { --container: calc(100vw - 28px); --narrow: calc(100vw - 28px); --radius-lg: 28px; }
  body { font-size: 15.5px; }
  html { scroll-padding-top: 88px; }
  .header-main { min-height: 76px; }
  .mobile-menu { top: 76px; }
  .brand__name { font-size: 1.35rem; letter-spacing: .22em; }
  .brand__sub { font-size: .49rem; }
  .section { padding-block: 60px; }
  .section--compact { padding-block: 48px; }
  .section-head { margin-bottom: 38px; }
  .button-row { flex-direction: column; align-items: stretch; }
  .button-row .button { width: 100%; }
  .hero { padding-block: 28px 72px; }
  .hero-grid { gap: 30px; }
  .hero-copy { padding-block: 10px; }
  .hero h1 { max-width: 11ch; }
  .hero-media { min-height: 480px; }
  .hero-image-main { inset: 0 0 34px 6%; border-radius: 110px 110px 24px 24px; }
  .hero-image-small { width: 43%; border-width: 7px; border-radius: 20px; }
  .hero-stamp { right: -2px; width: 92px; height: 92px; font-size: .56rem; }
  .hero-note { font-size: .76rem; }
  .trust-item { min-height: 76px; }
  .need-grid,
  .editorial-grid,
  .team-grid,
  .method-grid,
  .treatment-grid { grid-template-columns: 1fr; }
  .need-card:nth-child(n),
  .editorial-card:last-child,
  .team-card:last-child { grid-column: auto; width: 100%; }
  .need-card { min-height: 0; padding: 24px; }
  .need-card__icon { margin-bottom: 16px; }
  .service-card:nth-child(n) { min-height: 390px; border-radius: 24px; }
  .feature-panel__media { min-height: 390px; }
  .feature-panel__content { padding: 34px 24px 40px; text-align: center; }
  .feature-panel h2,
  .feature-panel p { margin-inline: auto; }
  .fact-row { gap: 6px; }
  .fact { padding-inline: 5px; }
  .fact strong { font-size: 1.5rem; }
  .fact span { font-size: .56rem; }
  .gift-list { grid-template-columns: 1fr; }
  .page-hero { padding-block: 34px 62px; }
  .page-hero-grid { gap: 30px; }
  .page-hero-media { min-height: 360px; border-radius: 24px; }
  .technology-card { grid-template-columns: 1fr; }
  .technology-card__side { min-height: 118px; flex-direction: row; gap: 12px; }
  .technology-card__side span:last-child { margin-top: 0; }
  .technology-card__body { padding: 28px 22px 32px; }
  .comparison-table { display: block; overflow-x: auto; }
  .detail-hero { padding-block: 34px 62px; }
  .detail-hero h1,
  .article-header h1 { font-size: clamp(2.05rem, 10.5vw, 3rem); overflow-wrap: anywhere; word-break: normal; }
  .detail-fact { padding: 20px 22px; }
  .map-panel,
  .map-panel iframe { min-height: 480px; }
  .instagram-header { align-items: start; flex-direction: column; }
  .instagram-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 290px 180px 180px; }
  .instagram-grid a:first-child { grid-column: 1 / 3; grid-row: 1; }
  .instagram-grid a:nth-child(4) { grid-column: 1 / 3; }
  .article-card:nth-child(n) { grid-column: 1 / -1; min-height: 300px; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand,
  .footer-col:last-child { grid-column: auto; }
  .footer-bottom { align-items: start; flex-direction: column; }
  .booking-options { grid-template-columns: 1fr; }
  .breadcrumb a,
  .footer-col a,
  .footer-legal a { display: inline-flex; min-height: 44px; align-items: center; }
  .footer-col a { margin-bottom: 0; }
  .floating-contact { right: 14px; bottom: 14px; width: auto; padding: 0 17px; justify-content: center; }
  .floating-contact span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .floating-contact::after { content: "WhatsApp"; }
  .cookie-notice { right: 10px; bottom: 10px; width: calc(100vw - 20px); padding: 15px 16px; border-radius: 16px; }
  .cookie-notice h2 { margin-bottom: 5px; font-size: .86rem; }
  .cookie-notice p { margin-bottom: 10px; font-size: .7rem; line-height: 1.42; }
  .cookie-actions { display: grid; grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); gap: 6px; }
  .cookie-actions .button { min-height: 44px; padding: 7px 9px; font-size: .64rem; }
}

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

@media print {
  .site-header,
  .site-footer,
  .floating-contact,
  .cookie-notice,
  .cta-band { display: none !important; }
  body { color: #111; background: white; }
  a { color: inherit; }
}
