/* =====================================================================
   Tierarztpraxis Linda Reißlandt — premium one-page site
   Plain CSS · warm & calming · sage-green + terracotta on cream
   ===================================================================== */

/* ----------------------------- Tokens ----------------------------- */
:root {
  /* Surfaces */
  --cream-50:  #fcfaf6;
  --cream-100: #f6efe3;
  --cream-200: #efe5d4;
  --sand:      #e6d8c1;
  --white:     #ffffff;

  /* Brand greens */
  --green:      #2f6f5e;
  --green-700:  #2a6253;
  --green-800:  #1f4a3e;
  --green-900:  #163a30;

  /* Warm accent */
  --terra:      #d8794f;
  --terra-deep: #b85e38;
  --amber:      #e6a94b;

  /* Text */
  --ink:        #20302a;
  --ink-soft:   #566460;
  --ink-mute:   #7c8884;
  --on-dark:    #f3efe7;

  /* Lines */
  --border:     #e7ddcd;
  --border-strong: #ddcfb8;

  /* Effects */
  --radius-sm: 12px;
  --radius:    18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --shadow-sm: 0 1px 2px rgba(31, 74, 62, .06), 0 3px 8px -2px rgba(31, 74, 62, .07);
  --shadow:    0 2px 4px rgba(31, 74, 62, .05), 0 10px 22px -8px rgba(31, 74, 62, .14), 0 20px 44px -16px rgba(31, 74, 62, .12);
  --shadow-lg: 0 6px 12px rgba(31, 74, 62, .07), 0 28px 60px -18px rgba(31, 74, 62, .34), 0 14px 30px -14px rgba(31, 74, 62, .2);
  --ring:      0 0 0 4px rgba(47, 111, 94, .22);

  /* card elevation system */
  --card-bg:         linear-gradient(177deg, #ffffff 0%, #fdfbf6 100%);
  --card-hl:         inset 0 1px 0 rgba(255, 255, 255, .9);
  --shadow-card:     0 1px 2px rgba(31, 74, 62, .05), 0 4px 8px -2px rgba(31, 74, 62, .08), 0 14px 26px -10px rgba(31, 74, 62, .14);
  --shadow-card-hov: 0 2px 6px rgba(31, 74, 62, .07), 0 12px 22px -6px rgba(31, 74, 62, .14), 0 30px 56px -16px rgba(31, 74, 62, .26);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-soft: cubic-bezier(.34, 1.2, .64, 1);

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);

  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-50);
  line-height: 1.65;
  font-size: clamp(16px, 1.05vw, 17px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 6px; }

/* ----------------------------- Layout ----------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding: clamp(64px, 9vw, 128px) 0; }
.section--alt { background: var(--cream-100); }
.section--contact { background: linear-gradient(180deg, var(--cream-100), var(--cream-50)); }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: .82rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--terra-deep); margin-bottom: 18px;
}
.kicker-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--terra); box-shadow: 0 0 0 5px rgba(216,121,79,.16); flex: none; }

.section-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.9rem, 4.6vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -.015em;
  color: var(--green-900);
}
.section-lead { margin-top: 18px; font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-soft); max-width: 64ch; }

/* ----------------------------- Buttons ----------------------------- */
.btn {
  --bg: var(--green-800); --fg: var(--white);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--bg); color: var(--fg);
  border: 1px solid transparent; border-radius: 999px;
  padding: 13px 24px; font-weight: 600; font-size: .98rem; line-height: 1;
  min-height: 48px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease);
  will-change: transform;
}
.btn .ic { width: 18px; height: 18px; }
.btn-primary { box-shadow: 0 10px 24px -12px rgba(31,74,62,.6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(31,74,62,.55); background: var(--green-900); }
.btn-ghost { --bg: transparent; --fg: var(--green-900); border-color: var(--border-strong); }
.btn-ghost:hover { transform: translateY(-2px); background: var(--white); border-color: var(--green); box-shadow: var(--shadow-sm); }
.btn-whatsapp { --bg: #25a567; --fg: #fff; box-shadow: 0 10px 24px -12px rgba(37,165,103,.7); }
.btn-whatsapp:hover { transform: translateY(-2px); background: #1f9159; }
.btn-sm { padding: 10px 18px; min-height: 42px; font-size: .9rem; }
.btn-lg { padding: 16px 30px; min-height: 56px; font-size: 1.04rem; }
.btn-block { width: 100%; }
.btn .ic path, .btn .ic circle, .btn .ic rect { stroke: currentColor; }
.btn-whatsapp .ic path { stroke: none; }

/* svg icon defaults (line icons) */
.ic { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ----------------------------- Header ----------------------------- */
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 200;
  background: var(--green-900); color: #fff; padding: 10px 16px; border-radius: 10px;
  transform: translateY(-150%); transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(252,250,246,.7);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background-color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(252,250,246,.92);
  border-bottom-color: var(--border);
  box-shadow: 0 6px 24px -18px rgba(31,74,62,.4);
}
.header-inner { display: flex; align-items: center; gap: 18px; height: 76px; }

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--green-800); }
.brand-mark {
  display: grid; place-items: center; width: 46px; height: 46px; flex: none;
  border-radius: 13px; box-shadow: 0 8px 18px -8px rgba(31, 74, 62, .5);
  transition: transform .35s var(--ease-soft), box-shadow .35s var(--ease);
}
.brand-mark svg { display: block; filter: drop-shadow(0 1px 1px rgba(0,0,0,.15)); }
.brand:hover .brand-mark { transform: translateY(-1px) rotate(-3deg) scale(1.04); box-shadow: 0 12px 22px -8px rgba(31, 74, 62, .55); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; color: var(--green-900); letter-spacing: -.01em; }
.brand-text small { color: var(--ink-mute); font-size: .76rem; letter-spacing: .02em; }

.site-nav { display: flex; gap: 4px; margin-left: auto; }
.nav-link {
  position: relative; padding: 9px 14px; border-radius: 10px;
  color: var(--ink-soft); font-weight: 500; font-size: .96rem;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav-link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 2px;
  background: var(--terra); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav-link:hover { color: var(--green-900); }
.nav-link:hover::after, .nav-link.is-current::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switch { display: inline-flex; align-items: center; gap: 2px; color: var(--ink-mute); font-weight: 600; font-size: .85rem; }
.lang-btn { background: none; border: 0; color: var(--ink-mute); padding: 6px 4px; border-radius: 6px; transition: color .2s var(--ease); }
.lang-btn.is-active { color: var(--green-900); }
.lang-btn:not(.is-active):hover { color: var(--green); }
.lang-sep { opacity: .5; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 46px; height: 46px; align-items: center; justify-content: center; background: var(--white); border: 1px solid var(--border); border-radius: 12px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--green-900); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------- Hero ----------------------------- */
.hero { position: relative; padding-top: clamp(40px, 6vw, 70px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(46px); opacity: .55; }
.blob-1 { width: 480px; height: 480px; background: radial-gradient(circle, rgba(47,111,94,.32), transparent 70%); top: -160px; right: -120px; animation: float1 18s var(--ease) infinite; }
.blob-2 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(216,121,79,.28), transparent 70%); bottom: -160px; left: -100px; animation: float2 22s var(--ease) infinite; }
.blob-3 { width: 320px; height: 320px; background: radial-gradient(circle, rgba(230,169,75,.22), transparent 70%); top: 30%; left: 44%; animation: float1 26s var(--ease) infinite; }

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px);
  align-items: center; padding-block: clamp(28px, 5vw, 56px) clamp(48px, 7vw, 88px);
}
.hero-title {
  font-family: var(--font-head); font-weight: 500;
  font-size: clamp(2.5rem, 6.6vw, 4.6rem); line-height: 1.02; letter-spacing: -.025em;
  color: var(--green-900); margin: 8px 0 22px;
}
.hero-title span { display: block; }
.accent-line { color: var(--terra-deep); font-style: italic; font-weight: 400; }
.hero-lead { font-size: clamp(1.08rem, 1.7vw, 1.3rem); color: var(--ink-soft); max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 36px; }

.hero-trust { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 44px); }
.hero-trust li { display: flex; flex-direction: column; line-height: 1.25; font-size: .9rem; color: var(--ink-soft); }
.hero-trust strong { font-family: var(--font-head); font-size: 1.7rem; font-weight: 600; color: var(--green-900); }
.hero-trust .stars { color: var(--amber); font-size: .8rem; letter-spacing: 1px; }

/* hero visual */
.hero-visual { position: relative; aspect-ratio: 1 / 1.06; max-width: 470px; margin-inline: auto; width: 100%; transform-style: preserve-3d; perspective: 1000px; }
.hero-photo {
  position: absolute; inset: 0; border-radius: 42% 44% 46% 42% / 44% 42% 46% 44%;
  box-shadow: var(--shadow-lg); overflow: hidden; isolation: isolate;
  animation: morph 18s ease-in-out infinite;
  transform: translateZ(0);
  transition: transform .35s var(--ease);
}
.hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 1.2s var(--ease); }
.hero-visual:hover .hero-photo img { transform: scale(1.11); }
.hero-photo::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(160deg, rgba(47,111,94,.12) 0%, transparent 38%, rgba(31,74,62,.32) 100%); }
.hero-photo-ring { position: absolute; inset: 9px; z-index: 2; border: 1.5px solid rgba(255,255,255,.4); border-radius: inherit; pointer-events: none; }
.hero-paw-deco { position: absolute; z-index: 2; color: var(--terra); opacity: .9; filter: drop-shadow(0 6px 14px rgba(216,121,79,.35)); }
.hero-paw-deco svg { width: 100%; height: 100%; }
.hero-paw-deco--1 { width: 42px; height: 42px; top: -6px; left: 8%; animation: bob 5.5s var(--ease) infinite; }

.floating-card {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: 12px;
  background: linear-gradient(177deg, rgba(255,255,255,.96), rgba(253,251,246,.92)); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.7); border-radius: 16px; padding: 12px 16px;
  box-shadow: var(--shadow-lg), var(--card-hl); white-space: nowrap;
}
.floating-card strong { display: block; font-size: .92rem; color: var(--green-900); font-weight: 600; }
.floating-card small { color: var(--ink-mute); font-size: .8rem; }
.fc-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: rgba(47,111,94,.12); color: var(--green); flex: none; }
.fc-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.fc-icon--soft { background: rgba(216,121,79,.16); color: var(--terra-deep); }
.fc-icon--soft svg { fill: currentColor; stroke: none; }
.card-hours { top: 8%; left: -6%; animation: bob 6s var(--ease) infinite; }
.card-paw { bottom: 10%; right: -8%; animation: bob 7s var(--ease) infinite .6s; }

/* marquee */
.marquee { position: relative; z-index: 1; overflow: hidden; border-block: 1px solid var(--border); background: var(--cream-100); padding: 16px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: inline-flex; align-items: center; gap: 22px; white-space: nowrap; animation: marquee 32s linear infinite; font-family: var(--font-head); font-size: 1.2rem; color: var(--green-800); }
.marquee-track .dot { color: var(--terra); }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ----------------------------- Services ----------------------------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); gap: 20px; }
.service-card {
  position: relative; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-card), var(--card-hl);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.service-card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(120% 80% at 50% -20%, rgba(47,111,94,.06), transparent 60%);
  opacity: 0; transition: opacity .35s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card-hov), var(--card-hl); border-color: var(--border-strong); }
.service-card:hover::before { opacity: 1; }
.service-ic {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 15px;
  background: linear-gradient(140deg, rgba(47,111,94,.14), rgba(47,111,94,.06));
  color: var(--green); margin-bottom: 18px;
  transition: transform .3s var(--ease-soft), background-color .3s var(--ease);
}
.service-card:hover .service-ic { transform: scale(1.08) rotate(-4deg); background: linear-gradient(140deg, rgba(216,121,79,.18), rgba(216,121,79,.08)); color: var(--terra-deep); }
.service-ic svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.18rem; color: var(--green-900); margin-bottom: 8px; line-height: 1.2; }
.service-card p { color: var(--ink-soft); font-size: .96rem; }

/* ----------------------------- Team ------------------------------ */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(20px, 3vw, 32px); max-width: 760px; margin-inline: auto;
}
.team-card {
  position: relative; background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card), var(--card-hl);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card-hov), var(--card-hl); border-color: var(--border-strong); }
.team-photo { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--cream-100); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .8s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(22,58,48,.28), transparent 42%);
}
.team-info { position: relative; padding: 20px 24px 24px; }
.team-info::before {
  content: ""; position: absolute; top: 0; left: 24px; width: 34px; height: 3px;
  border-radius: 3px; background: var(--terra); transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(216,121,79,.12);
}
.team-info h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.24rem; color: var(--green-900); line-height: 1.2; margin-bottom: 4px; }
.team-role { color: var(--terra-deep); font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

/* ----------------------------- About ----------------------------- */
.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(40px, 6vw, 92px); align-items: center; }
.about-visual { position: relative; padding-bottom: 18px; }
.about-photo {
  aspect-ratio: 4 / 5; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden; isolation: isolate;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 1.1s var(--ease); }
.about-visual:hover .about-photo img { transform: scale(1.09); }
.about-photo::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 55%, rgba(22,58,48,.42) 100%); }
.about-inset {
  position: absolute; bottom: 36px; left: -28px; width: 42%; max-width: 180px; aspect-ratio: 1; z-index: 3;
  border-radius: 20px; overflow: hidden; border: 5px solid var(--cream-50); box-shadow: var(--shadow-lg);
}
.about-inset img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -22px; right: -14px; display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  padding: 14px 18px; box-shadow: var(--shadow);
}
.ab-icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: rgba(230,169,75,.18); color: var(--amber); flex: none; }
.ab-icon svg { width: 22px; height: 22px; fill: currentColor; }
.about-badge strong { display: block; font-size: .92rem; color: var(--green-900); font-weight: 600; }
.about-badge small { color: var(--ink-mute); font-size: .8rem; }

.about-text { color: var(--ink-soft); font-size: 1.06rem; margin-top: 18px; max-width: 56ch; }
.about-points { list-style: none; padding: 0; margin: 26px 0 8px; display: grid; gap: 12px; }
.about-points li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--green-900); }
.check { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(47,111,94,.12); color: var(--green); flex: none; }
.check svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.signature { font-family: var(--font-head); font-style: italic; font-size: 1.9rem; color: var(--terra-deep); margin-top: 22px; }

/* ----------------------------- Stats ----------------------------- */
.stats-band { position: relative; overflow: hidden; background: radial-gradient(120% 140% at 50% -20%, #235044 0%, var(--green-900) 60%); color: var(--on-dark); padding: clamp(44px, 6vw, 72px) 0; box-shadow: inset 0 1px 0 rgba(255,255,255,.06); }
.stats-band::before { content: ""; position: absolute; width: 460px; height: 460px; top: -160px; right: -80px; background: radial-gradient(circle, rgba(216,121,79,.18), transparent 70%); pointer-events: none; }
.stats-band::after { content: ""; position: absolute; width: 380px; height: 380px; bottom: -180px; left: -60px; background: radial-gradient(circle, rgba(47,111,94,.4), transparent 70%); pointer-events: none; }
.stats-row { position: relative; z-index: 1; }
.stat { position: relative; }
.stats-row .stat:not(:last-child)::after { content: ""; position: absolute; top: 12%; right: -12px; height: 76%; width: 1px; background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,.14), rgba(255,255,255,0)); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat strong { display: block; font-family: var(--font-head); font-weight: 500; font-size: clamp(2.2rem, 5vw, 3.4rem); color: #fff; line-height: 1; }
.stat span { display: block; margin-top: 10px; color: rgba(243,239,231,.72); font-size: .95rem; }

/* ----------------------------- Process ----------------------------- */
.steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 26px 28px; box-shadow: var(--shadow-card), var(--card-hl); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hov), var(--card-hl); }
.step-num {
  display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px;
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 600;
  background: linear-gradient(140deg, var(--green), var(--green-800)); color: #fff;
  box-shadow: 0 10px 20px -10px rgba(31,74,62,.6); margin-bottom: 18px;
}
.step h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.24rem; color: var(--green-900); margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: .98rem; }
.steps .step:not(:last-child)::after {
  content: ""; position: absolute; top: 56px; right: -13px; width: 26px; height: 2px; background: var(--border-strong); z-index: 1;
}

/* ----------------------------- Reviews ----------------------------- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.review-card { position: relative; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-card), var(--card-hl); display: flex; flex-direction: column; gap: 14px; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.review-card::after { content: "\201C"; position: absolute; top: 8px; right: 22px; font-family: var(--font-head); font-size: 5rem; line-height: 1; color: var(--terra); opacity: .14; pointer-events: none; }
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hov), var(--card-hl); }
.review-card .stars { color: var(--amber); letter-spacing: 2px; font-size: 1.05rem; }
.review-card blockquote { font-size: 1.05rem; color: var(--ink); line-height: 1.6; }
.review-card figcaption { display: flex; flex-direction: column; gap: 1px; margin-top: auto; }
.review-card figcaption strong { color: var(--green-900); }
.review-card figcaption span { color: var(--ink-mute); font-size: .88rem; }

/* ----------------------------- Contact ----------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 16px; }
.contact-list li { display: flex; align-items: center; gap: 14px; }
.ci-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; background: var(--white); border: 1px solid var(--border); color: var(--green); flex: none; box-shadow: var(--shadow-sm); }
.ci-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.contact-list small { display: block; color: var(--ink-mute); font-size: .8rem; letter-spacing: .02em; }
.contact-list a { font-weight: 600; color: var(--green-900); transition: color .2s var(--ease); }
.contact-list a:hover { color: var(--terra-deep); }

.contact-quick { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }

.hours-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-card), var(--card-hl); }
.hours-card h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; color: var(--green-900); }
.hours-note { color: var(--ink-soft); font-size: .92rem; margin: 4px 0 14px; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { text-align: left; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: .96rem; }
.hours-table th { color: var(--ink-soft); font-weight: 600; }
.hours-table td { color: var(--green-900); text-align: right; font-variant-numeric: tabular-nums; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: 0; }
.hours-disclaimer { margin-top: 12px; font-size: .8rem; color: var(--ink-mute); }

/* booking form */
.booking-form { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(24px, 3.5vw, 40px); box-shadow: var(--shadow-lg), var(--card-hl); }
.booking-form h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.5rem; color: var(--green-900); }
.form-sub { color: var(--ink-soft); margin: 6px 0 22px; font-size: .96rem; }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--green-900); margin-bottom: 7px; }
.field label .opt { color: var(--ink-mute); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; font: inherit; color: var(--ink);
  background: #fffdf9; border: 1.5px solid var(--border); border-radius: 12px;
  box-shadow: inset 0 2px 4px rgba(31,74,62,.04);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
  min-height: 48px;
}
.field textarea { min-height: 92px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); background: var(--white); box-shadow: var(--ring); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23566460' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 40px; }

.field-error { display: none; color: var(--terra-deep); font-size: .82rem; margin-top: 6px; font-weight: 500; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--terra-deep); background: #fdf3ee; }
.field.has-error .field-error { display: block; }
.field-error--block { margin-top: -6px; margin-bottom: 12px; }
.field-error--block.is-visible { display: block; }

.check-field { display: flex; align-items: flex-start; gap: 11px; font-size: .9rem; color: var(--ink-soft); margin: 6px 0 8px; cursor: pointer; line-height: 1.45; }
.check-field input { width: 20px; height: 20px; margin-top: 1px; accent-color: var(--green); flex: none; cursor: pointer; }

.form-success { margin-top: 16px; padding: 14px 16px; background: rgba(47,111,94,.1); border: 1px solid rgba(47,111,94,.3); color: var(--green-900); border-radius: 12px; font-weight: 500; font-size: .95rem; }
.form-hint { margin-top: 14px; font-size: .82rem; color: var(--ink-mute); text-align: center; }

/* map */
.map-band { height: clamp(300px, 40vw, 440px); background: var(--cream-100); }
.map-band iframe { width: 100%; height: 100%; border: 0; filter: saturate(.9); }

/* ----------------------------- Footer ----------------------------- */
.site-footer { background: var(--green-900); color: var(--on-dark); padding-top: clamp(56px, 7vw, 88px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 48px; }
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer .brand-mark { box-shadow: 0 8px 18px -8px rgba(0, 0, 0, .5); }
.site-footer .brand-text strong { color: #fff; }
.site-footer .brand-text small { color: rgba(243,239,231,.6); }
.footer-tag { color: rgba(243,239,231,.66); max-width: 38ch; font-size: .96rem; }
.footer-col h4 { font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: #fff; margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; color: rgba(243,239,231,.7); padding: 5px 0; font-size: .94rem; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--amber); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); margin-top: 0; }
.footer-bottom p { color: rgba(243,239,231,.55); font-size: .86rem; }

/* ----------------------------- Mobile action bar ----------------------------- */
.mobile-bar { display: none; }

/* ----------------------------- Reveal animation ----------------------------- */
.reveal { opacity: 0; transform: translateY(22px) scale(.99); transition: opacity .65s var(--ease), transform .75s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ----------------------------- Scroll progress ----------------------------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 150;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--green), var(--terra));
  box-shadow: 0 0 12px rgba(216,121,79,.5);
}

/* ----------------------------- Film grain ----------------------------- */
.grain {
  position: fixed; inset: -50%; z-index: 300; pointer-events: none; opacity: .04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ----------------------------- Custom cursor ----------------------------- */
.has-cursor { cursor: none; }
/* interactive elements keep their native cursor (hand / caret) */
.has-cursor a, .has-cursor button, .has-cursor [data-magnetic], .has-cursor select, .has-cursor label, .has-cursor .lang-btn { cursor: pointer; }
.has-cursor input[type="text"], .has-cursor input[type="email"], .has-cursor input[type="tel"], .has-cursor textarea { cursor: text; }
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; z-index: 400; pointer-events: none; border-radius: 50%; mix-blend-mode: difference; }
.cursor-dot { width: 9px; height: 9px; background: #fff; transform: translate(-50%, -50%); transition: opacity .25s var(--ease); }
.cursor-ring {
  width: 40px; height: 40px; border: 1.6px solid rgba(255,255,255,.9);
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease), background-color .3s var(--ease), border-color .3s var(--ease), opacity .25s var(--ease);
}
.cursor-ring.is-hover { width: 66px; height: 66px; background: rgba(255,255,255,.14); border-color: #fff; }
.cursor-ring.is-down { width: 32px; height: 32px; }
/* buttons / links / inputs → hide the custom cursor and show the native pointer */
.cursor-ring.is-min, .cursor-dot.is-min { opacity: 0; }
.cursor-dot.is-hidden, .cursor-ring.is-hidden { opacity: 0; }

/* magnetic + parallax helpers */
[data-magnetic] { transition: transform .35s var(--ease-soft); }
[data-parallax] { will-change: transform; }

/* heading underline flourish */
.section-title { position: relative; }

/* ----------------------------- Keyframes ----------------------------- */
@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-26px, 24px) scale(1.06); } }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(24px, -22px) scale(1.08); } }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes morph {
  0%,100% { border-radius: 40% 44% 46% 42% / 44% 42% 46% 44%; }
  33% { border-radius: 46% 40% 42% 48% / 40% 48% 42% 46%; }
  66% { border-radius: 42% 48% 40% 46% / 48% 42% 46% 40%; }
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ----------------------------- Responsive ----------------------------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-visual { order: -1; max-width: 360px; margin-bottom: 8px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 420px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .site-nav {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; gap: 2px;
    background: var(--cream-50); border-bottom: 1px solid var(--border);
    padding: 14px var(--gutter) 22px; margin: 0;
    transform: translateY(-130%); transition: transform .38s var(--ease); box-shadow: var(--shadow);
    max-height: calc(100dvh - 76px); overflow-y: auto;
  }
  .site-nav.is-open { transform: translateY(0); }
  .nav-link { padding: 14px 8px; font-size: 1.05rem; border-bottom: 1px solid var(--border); }
  .nav-link::after { display: none; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .stats-row .stat::after { display: none !important; }
  .steps { grid-template-columns: 1fr; }
  .steps .step:not(:last-child)::after { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .floating-card { padding: 10px 13px; }
  .card-hours { left: -2%; }
  .card-paw { right: -2%; }
  .about-inset { width: 38%; left: -10px; bottom: 24px; border-width: 4px; }
  .hero-paw-deco--1 { width: 32px; height: 32px; }

}

@media (max-width: 420px) {
  .hero-trust { gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

/* ----------------------------- Reduced motion ----------------------------- */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .blob, .card-hours, .card-paw, .hero-photo, .marquee-track, .hero-paw-deco { animation: none !important; }
  .btn:hover, .service-card:hover, .btn-ghost:hover { transform: none; }
  .grain { display: none; }
  * { scroll-behavior: auto !important; }
}

/* Coarse pointer / touch — no custom cursor */
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
  .has-cursor, .has-cursor a, .has-cursor button { cursor: auto; }
}

/* =====================================================================
   PREMIUM REFINEMENT LAYER
   ===================================================================== */

/* ---- Typography: more editorial rhythm ---- */
body { line-height: 1.72; letter-spacing: -.004em; }
.section-title { font-size: clamp(2.15rem, 5vw, 3.7rem); line-height: 1.03; letter-spacing: -.028em; }
.section-title em, .accent-line { font-style: italic; font-weight: 400; }
.section-lead { font-size: clamp(1.08rem, 1.5vw, 1.3rem); line-height: 1.62; color: var(--ink-soft); }
.kicker { font-size: .78rem; letter-spacing: .22em; }
.hero-title { letter-spacing: -.032em; }
p { text-wrap: pretty; }
.section-title, .hero-title, .apollo-campaign-title { text-wrap: balance; }

/* ---- Editorial section index numbers ---- */
main { counter-reset: sec; }
.section-head { counter-increment: sec; position: relative; }
.section-head::before {
  content: counter(sec, decimal-leading-zero);
  position: absolute; top: -.55em; right: 0;
  font-family: var(--font-head); font-weight: 500; font-style: italic;
  font-size: clamp(3.4rem, 9vw, 7rem); line-height: 1;
  color: var(--terra); opacity: .1; pointer-events: none; user-select: none;
}
@media (max-width: 600px){ .section .section-head::before { font-size: 3.6rem; top: -.4em; opacity: .08; } }

/* ---- Scroll-driven heading line reveal (mask) ---- */
.line-mask { display: block; overflow: hidden; padding-bottom: .04em; }
.line-mask > span { display: block; transform: translateY(105%); transition: transform .9s var(--ease); }
.line-mask.is-in > span { transform: translateY(0); }

/* ---- Button micro-interactions: sheen + arrow drift ---- */
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn-primary::after, .btn-whatsapp::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 32%, rgba(255,255,255,.22) 50%, transparent 68%);
  transform: translateX(-130%); transition: transform .7s var(--ease);
}
.btn-primary:hover::after, .btn-whatsapp:hover::after { transform: translateX(130%); }
.btn:hover .ic { transform: translateX(3px); }
.btn .ic { transition: transform .3s var(--ease-soft); }

/* link underline grow */
.contact-list a, .footer-col a { background-image: linear-gradient(var(--terra), var(--terra)); background-size: 0% 1.5px; background-position: 0 100%; background-repeat: no-repeat; transition: background-size .35s var(--ease), color .2s var(--ease); }
.contact-list a:hover, .footer-col a:hover { background-size: 100% 1.5px; }

/* ---- Image reveal (clip wipe + slow zoom) ---- */
.img-reveal { clip-path: inset(0 0 100% 0); transition: clip-path 1.15s var(--ease); }
.img-reveal.is-revealed { clip-path: inset(0 0 0 0); }
.img-reveal img { transform: scale(1.22); transition: transform 1.6s var(--ease); }
.img-reveal.is-revealed img { transform: scale(1.03); }

/* ---- Service cards: editorial numbering + accent ---- */
.services-grid { counter-reset: svc; }
.service-card { counter-increment: svc; overflow: hidden; }
.service-card > h3, .service-card > p, .service-ic { position: relative; z-index: 1; }
.service-card .service-num {
  position: absolute; top: 20px; right: 22px; z-index: 1;
  font-family: var(--font-head); font-style: italic; font-size: 1rem; color: var(--ink-mute);
  opacity: .55; transition: color .3s var(--ease), opacity .3s var(--ease);
}
.service-card .service-num::before { content: counter(svc, decimal-leading-zero); }
.service-card:hover .service-num { color: var(--terra-deep); opacity: 1; }
.service-card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--green), var(--terra)); transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.service-card:hover::after { transform: scaleX(1); }

/* ---- Statement / pull-quote band ---- */
.statement {
  position: relative; overflow: hidden; background: var(--green-900); color: var(--on-dark);
  padding: clamp(72px, 11vw, 150px) 0; text-align: center;
}
.statement::before, .statement::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(216,121,79,.2), transparent 70%);
}
.statement::before { width: 520px; height: 520px; top: -180px; left: -120px; }
.statement::after { width: 440px; height: 440px; bottom: -200px; right: -120px; background: radial-gradient(circle, rgba(47,111,94,.5), transparent 70%); }
.statement-inner { position: relative; z-index: 1; max-width: 980px; margin-inline: auto; }
.statement-quote {
  font-family: var(--font-head); font-weight: 400; font-style: italic;
  font-size: clamp(1.7rem, 4.4vw, 3.1rem); line-height: 1.22; letter-spacing: -.02em; color: #fff;
}
.statement-quote b { font-style: normal; font-weight: 500; color: var(--amber); }
.statement-mark { font-family: var(--font-head); font-size: clamp(4rem, 10vw, 7rem); line-height: .6; color: var(--terra); opacity: .55; display: block; margin-bottom: .1em; }
.statement-by { margin-top: 30px; display: inline-flex; align-items: center; gap: 12px; color: rgba(243,239,231,.7); font-size: .95rem; }
.statement-by span[aria-hidden="true"] { width: 34px; height: 1px; background: rgba(255,255,255,.3); flex: none; }
.statement-by > span:not([aria-hidden]) { white-space: nowrap; }

/* ---- CTA band ---- */
.cta-band { position: relative; overflow: hidden; padding: clamp(28px, 4vw, 48px) 0; }
.cta-inner {
  position: relative; overflow: hidden; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-800) 55%, var(--green-900) 100%);
  padding: clamp(40px, 6vw, 76px) clamp(28px, 5vw, 76px); color: #fff;
  display: grid; grid-template-columns: 1.4fr auto; gap: 32px; align-items: center;
  box-shadow: var(--shadow-lg);
}
.cta-inner::after {
  content: ""; position: absolute; right: -40px; bottom: -60px; width: 320px; height: 320px; opacity: .12;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Ccircle cx='12' cy='15' r='3.4'/%3E%3Ccircle cx='7.5' cy='10.5' r='1.7'/%3E%3Ccircle cx='16.5' cy='10.5' r='1.7'/%3E%3Ccircle cx='9.5' cy='7.5' r='1.5'/%3E%3Ccircle cx='14.5' cy='7.5' r='1.5'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-copy { position: relative; z-index: 1; }
.cta-copy h2 { font-family: var(--font-head); font-weight: 500; font-size: clamp(1.7rem, 3.6vw, 2.8rem); line-height: 1.08; letter-spacing: -.02em; }
.cta-copy p { color: rgba(243,239,231,.82); margin-top: 12px; font-size: 1.08rem; max-width: 46ch; }
.cta-actions { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 12px; }
.cta-actions .btn-primary { background: #fff; color: var(--green-900); }
.cta-actions .btn-primary:hover { background: var(--cream-100); }
.cta-actions .btn-ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.cta-actions .btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
@media (max-width: 760px){ .cta-inner { grid-template-columns: 1fr; gap: 24px; } .cta-actions { flex-direction: row; flex-wrap: wrap; } }

/* ---- Hero scroll cue ---- */
.scroll-cue { position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); z-index: 2; display: inline-flex; flex-direction: column; align-items: center; gap: 8px; color: var(--ink-mute); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; }
.scroll-cue .mouse { width: 22px; height: 34px; border: 1.5px solid var(--border-strong); border-radius: 12px; position: relative; }
.scroll-cue .mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 6px; background: var(--green); border-radius: 2px; transform: translateX(-50%); animation: scrollwheel 1.8s var(--ease) infinite; }
@keyframes scrollwheel { 0% { opacity: 0; transform: translate(-50%, 0); } 30% { opacity: 1; } 60% { opacity: 1; transform: translate(-50%, 9px); } 100% { opacity: 0; transform: translate(-50%, 9px); } }
@media (max-width: 980px){ .scroll-cue { display: none; } }

/* ---- Decorative paw watermark on alt sections ---- */
.section--alt { position: relative; overflow: hidden; }
.paw-watermark { position: absolute; z-index: 0; color: var(--green); opacity: .04; pointer-events: none; }
.paw-watermark svg { width: 100%; height: 100%; fill: currentColor; }
.section--alt > .container { position: relative; z-index: 1; }

/* ---- Smooth-scroll wrapper hint ---- */
html.has-smooth { scroll-behavior: auto; }

/* ---- Cursor-reactive glow (ch.7 "candlelight" that trails the cursor) ---- */
[data-glow] { position: relative; }
.section-glow {
  position: absolute; top: 0; left: 0; width: 420px; height: 420px; z-index: 0;
  margin: -210px 0 0 -210px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(230,169,75,.28), rgba(216,121,79,.1) 45%, transparent 72%);
  opacity: 0; transition: opacity .6s var(--ease); mix-blend-mode: screen; will-change: transform;
}
[data-glow].glow-on .section-glow { opacity: .6; }
.statement-inner, .cta-copy, .cta-actions, .stats-row { position: relative; z-index: 1; }

/* ---- Word-by-word heading reveal ---- */
.split-head .word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .1em; margin-bottom: -.1em; }
.split-head .word > span { display: inline-block; transform: translateY(115%); transition: transform .72s var(--ease); }
.split-head.is-in .word > span { transform: translateY(0); }

/* ---- Animated hairline divider (brass line that draws in) ---- */
.hairline { width: 100%; padding: 6px var(--gutter); }
.hairline > i { display: block; height: 1px; max-width: var(--maxw); margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--border-strong) 18%, var(--terra) 50%, var(--border-strong) 82%, transparent);
  transform: scaleX(0); transition: transform 1.3s var(--ease); opacity: .8; }
.hairline.is-drawn > i { transform: scaleX(1); }

/* ---- Reduced motion for new layer ---- */
@media (prefers-reduced-motion: reduce) {
  .line-mask > span { transform: none !important; }
  .img-reveal { clip-path: none !important; }
  .img-reveal img { transform: scale(1.03) !important; }
  .scroll-cue .mouse::after { animation: none; }
  .btn-primary::after, .btn-whatsapp::after { display: none; }
  .split-head .word > span { transform: none !important; }
  .section-glow { display: none !important; }
  .hairline > i { transform: scaleX(1) !important; }
}

/* =====================================================================
   Themed <select> · Services show-more · Legal pages
   ===================================================================== */

/* ---- Custom themed select ---- */
.cs { position: relative; }
.cs-native { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.cs-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 13px 14px; min-height: 48px; font: inherit; text-align: left; color: var(--ink);
  background: #fffdf9; border: 1.5px solid var(--border); border-radius: 12px;
  box-shadow: inset 0 2px 4px rgba(31, 74, 62, .04);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.cs-trigger:hover { border-color: var(--border-strong); }
.cs.is-open .cs-trigger, .cs-trigger:focus-visible { outline: none; border-color: var(--green); background: #fff; box-shadow: var(--ring); }
.cs-trigger[data-placeholder="true"] .cs-label { color: var(--ink-mute); }
.cs-caret { width: 18px; height: 18px; flex: none; color: var(--ink-soft); transition: transform .25s var(--ease); }
.cs-caret svg { width: 100%; height: 100%; }
.cs.is-open .cs-caret { transform: rotate(180deg); }
.field.has-error .cs-trigger { border-color: var(--terra-deep); background: #fdf3ee; }
.cs-menu {
  position: absolute; left: 0; right: 0; top: calc(100% + 8px); z-index: 30;
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 6px; max-height: 264px; overflow: auto;
  opacity: 0; transform: translateY(-6px) scale(.985); transform-origin: top center; pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.cs.is-open .cs-menu { opacity: 1; transform: none; pointer-events: auto; }
.cs-option { padding: 11px 12px; border-radius: 9px; font-size: .96rem; color: var(--ink); cursor: pointer; transition: background-color .15s var(--ease), color .15s var(--ease); }
.cs-option:hover, .cs-option.is-active { background: rgba(47, 111, 94, .1); color: var(--green-900); }
.cs-option.is-selected { background: rgba(47, 111, 94, .14); color: var(--green-900); font-weight: 600; }

/* ---- Services show-more collapse ---- */
.services-collapse { position: relative; overflow: hidden; transition: max-height .6s var(--ease); }
.services-collapse.is-collapsed::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 90px; pointer-events: none;
  background: linear-gradient(transparent, var(--cream-50));
}
.services-more { display: flex; justify-content: center; margin-top: 30px; }
.services-toggle .t-less { display: none; }
.services-toggle[aria-expanded="true"] .t-more { display: none; }
.services-toggle[aria-expanded="true"] .t-less { display: inline; }
.services-toggle .ic { transition: transform .3s var(--ease); }
.services-toggle[aria-expanded="true"] .ic { transform: rotate(180deg); }

/* ---- Legal pages ---- */
.legal-header {
  position: sticky; top: 0; z-index: 100; background: rgba(252,250,246,.92);
  backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.legal-header .header-inner { justify-content: space-between; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--green-900); font-size: .95rem; }
.legal-back .ic { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.legal-back:hover .ic { transform: translateX(-3px); }
.legal-hero { padding: clamp(48px, 7vw, 96px) 0 clamp(24px, 4vw, 44px); }
.legal-hero h1 { font-family: var(--font-head); font-weight: 500; font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -.025em; color: var(--green-900); line-height: 1.05; }
.legal-hero p { color: var(--ink-soft); margin-top: 12px; font-size: 1.05rem; }
.legal-content { padding-bottom: clamp(56px, 8vw, 110px); max-width: 800px; }
.legal-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 48px); box-shadow: var(--shadow-card), var(--card-hl);
}
.legal-content h2 { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.3rem, 2.6vw, 1.7rem); color: var(--green-900); margin: 36px 0 12px; letter-spacing: -.01em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-weight: 600; font-size: 1.06rem; color: var(--green-900); margin: 22px 0 8px; }
.legal-content p { color: var(--ink-soft); margin-bottom: 14px; }
.legal-content a { color: var(--terra-deep); background-image: linear-gradient(var(--terra), var(--terra)); background-size: 0% 1.5px; background-position: 0 100%; background-repeat: no-repeat; transition: background-size .35s var(--ease); }
.legal-content a:hover { background-size: 100% 1.5px; }
.legal-content ul { margin: 0 0 16px 1.1em; color: var(--ink-soft); }
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: var(--ink); font-weight: 600; }
.legal-divider { height: 1px; background: var(--border); margin: 30px 0; border: 0; }
.legal-address { padding: 16px 18px; background: var(--cream-100); border-radius: 14px; border: 1px solid var(--border); margin: 8px 0 18px; line-height: 1.7; color: var(--ink); }

/* ---- Legal pages: sidebar layout + TOC ---- */
.legal-layout { display: grid; grid-template-columns: 256px 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; padding-bottom: clamp(56px, 8vw, 110px); }
.legal-sidebar { position: sticky; top: 96px; align-self: start; }
.legal-toc-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-card), var(--card-hl); }
.legal-toc-title { display: flex; align-items: center; gap: 9px; font-size: .76rem; letter-spacing: .2em; text-transform: uppercase; color: var(--terra-deep); font-weight: 600; margin-bottom: 14px; }
.legal-toc-title .kicker-dot { width: 7px; height: 7px; }
.legal-toc { display: flex; flex-direction: column; gap: 2px; }
.legal-toc-link { padding: 10px 13px; border-radius: 10px; font-size: .92rem; color: var(--ink-soft); font-weight: 500; line-height: 1.3; transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease); border-left: 2px solid transparent; }
.legal-toc-link:hover { background: rgba(47,111,94,.07); color: var(--green-900); }
.legal-toc-link.is-active { background: rgba(47,111,94,.1); color: var(--green-900); border-left-color: var(--terra); }
.legal-content { display: flex; flex-direction: column; gap: 20px; min-width: 0; max-width: none; padding-bottom: 0; }
.legal-content .legal-card { scroll-margin-top: 96px; }
.legal-content .legal-card h2:first-child { margin-top: 0; }
@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; gap: 22px; }
  .legal-sidebar { position: static; top: auto; }
  .legal-toc { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .legal-toc-link { border-left: 0; border: 1px solid var(--border); }
  .legal-toc-link.is-active { border-color: var(--terra); background: rgba(216,121,79,.1); }
}

/* ---- WhatsApp glyph: always filled, never stroked ---- */
.ic-wa { fill: currentColor; stroke: none; }
.btn-whatsapp .ic-wa, .btn-whatsapp .ic-wa path,
.mb-btn--wa .ic-wa, .mb-btn--wa .ic-wa path { fill: currentColor; stroke: none; }

/* ---- Scroll-to-top button ---- */
.scroll-top {
  position: fixed; right: clamp(18px, 3vw, 32px); bottom: clamp(20px, 3vw, 32px); z-index: 95;
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  background: var(--green-800); color: #fff; border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(16px) scale(.9); pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease-soft), background-color .25s var(--ease);
}
.scroll-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.scroll-top:hover { background: var(--green-900); transform: translateY(-3px); }
.scroll-top:active { transform: translateY(-1px) scale(.96); }
.scroll-top svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 760px) {
  .scroll-top { width: 46px; height: 46px; bottom: calc(18px + env(safe-area-inset-bottom)); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-top { transition: opacity .2s; transform: none; }
  .scroll-top.is-visible { transform: none; }
  .scroll-top:hover { transform: none; }
}

/* ---- Cookie / consent banner ---- */
.cookie-banner {
  position: fixed; left: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px); z-index: 120;
  width: min(420px, calc(100% - 32px));
  display: grid; grid-template-columns: auto 1fr; gap: 14px 14px; align-items: start;
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), var(--card-hl); padding: 20px 22px;
  opacity: 0; transform: translateY(22px) scale(.98);
  transition: opacity .5s var(--ease), transform .55s var(--ease-soft);
}
.cookie-banner.is-visible { opacity: 1; transform: none; }
.cookie-icon { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(216,121,79,.14); color: var(--terra-deep); flex: none; }
.cookie-icon svg { width: 24px; height: 24px; }
.cookie-text { min-width: 0; }
.cookie-title { display: block; font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; color: var(--green-900); margin-bottom: 4px; }
.cookie-body { font-size: .9rem; color: var(--ink-soft); line-height: 1.55; }
.cookie-actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 2px; }
.cookie-more { margin-right: auto; font-size: .88rem; font-weight: 600; color: var(--terra-deep); background-image: linear-gradient(var(--terra), var(--terra)); background-size: 0% 1.5px; background-position: 0 100%; background-repeat: no-repeat; transition: background-size .3s var(--ease); }
.cookie-more:hover { background-size: 100% 1.5px; }
@media (max-width: 760px) {
  .cookie-banner { left: 12px; right: 12px; width: auto; bottom: calc(16px + env(safe-area-inset-bottom)); }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transition: opacity .3s; transform: none; }
  .cookie-banner.is-visible { transform: none; }
}

/* ---- Google Maps consent overlay ---- */
.map-band { position: relative; }
.map-consent { position: absolute; inset: 0; z-index: 1; display: grid; place-items: center; text-align: center; padding: 24px;
  background: radial-gradient(120% 120% at 50% 0%, var(--cream-100), var(--cream-50)); }
.map-consent.is-hidden { display: none; }
.map-consent-inner { max-width: 400px; }
.map-consent-icon { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 15px; background: rgba(47,111,94,.12); color: var(--green); margin-bottom: 14px; }
.map-consent-icon svg { width: 26px; height: 26px; }
.map-consent strong { display: block; font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; color: var(--green-900); }
.map-consent p { color: var(--ink-soft); font-size: .94rem; line-height: 1.55; margin: 8px 0 18px; }
