/* ==========================================================================
   Fur & Fable — Grooming Studio
   Design system + layout
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --brand:        #0E5C55;
  --brand-600:    #0A4740;
  --brand-300:    #7FC9C0;
  --mint:         #E6F6F2;
  --mint-2:       #CDEDE6;
  --accent:       #FF7A59;
  --accent-600:   #E85F3D;
  --sun:          #FFC24B;

  /* Neutrals */
  --ink:          #17120E;
  --ink-2:        #4A3F37;
  --muted:        #7C6C60;
  --line:         rgba(23, 18, 14, .12);
  --line-soft:    rgba(23, 18, 14, .07);
  --cream:        #FFF9F3;
  --paper:        #FFFFFF;

  /* Type */
  --display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --body: "Outfit", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Space & shape */
  --wrap: 1160px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 10vw, 8.5rem);
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 36px;

  /* Elevation */
  --sh-1: 0 1px 2px rgba(23,18,14,.05), 0 4px 14px -8px rgba(23,18,14,.14);
  --sh-2: 0 2px 6px rgba(23,18,14,.05), 0 18px 40px -22px rgba(14,92,85,.34);
  --sh-3: 0 30px 70px -34px rgba(14,92,85,.45);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --header-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  font-family: var(--body);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }
ul, ol { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.02em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 1.4rem + 4.6vw, 4.35rem); }
h2 { font-size: clamp(1.95rem, 1.3rem + 2.6vw, 3rem); }
h3 { font-size: clamp(1.15rem, 1.05rem + .4vw, 1.35rem); }
p  { text-wrap: pretty; }

:where(a, button, summary, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection { background: var(--brand); color: #fff; }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.i {
  width: 1.15em; height: 1.15em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.i.flip { transform: scaleX(-1); }

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap-narrow { max-width: 820px; }

.section { padding-block: var(--section-y); }
.section-tint {
  background: linear-gradient(180deg, var(--mint) 0%, #EFF9F6 100%);
  border-block: 1px solid var(--line-soft);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}
.section-head h2 { margin-bottom: .8rem; }
.section-sub { color: var(--muted); font-size: 1.06rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1rem;
}
.eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,122,89,.18);
}
.eyebrow-light { color: var(--brand-300); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -100px; left: 1rem;
  z-index: 200;
  padding: .7rem 1.1rem;
  background: var(--brand);
  color: #fff;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  text-decoration: none;
  font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 120;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--brand), var(--accent) 70%, var(--sun));
  transition: width .12s linear;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .8rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  font-size: .96rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              background-color .25s var(--ease), color .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .i { transition: transform .3s var(--ease); }
.btn:hover .i { transform: translateX(3px); }
.btn:hover .i.flip { transform: scaleX(-1) translateX(3px); }

.btn-primary {
  background: var(--brand);
  box-shadow: 0 14px 30px -14px rgba(14,92,85,.85);
}
.btn-primary:hover { background: var(--brand-600); box-shadow: 0 20px 38px -16px rgba(14,92,85,.9); }

.btn-ghost {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--sh-1);
}
.btn-ghost:hover { border-color: rgba(14,92,85,.4); color: var(--brand-600); }

.btn-light {
  background: #fff;
  color: var(--brand-600);
  box-shadow: 0 16px 34px -18px rgba(0,0,0,.5);
}
.btn-light:hover { background: var(--cream); }

.btn-lg { padding: 1rem 1.75rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 249, 243, .72);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line-soft);
  box-shadow: 0 10px 30px -24px rgba(23,18,14,.5);
  background: rgba(255, 249, 243, .9);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  flex: none;
}
.logo-mark {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--brand), #14786E);
  color: #fff;
  box-shadow: 0 10px 22px -12px rgba(14,92,85,.95);
}
.logo-mark svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-family: var(--display); font-size: 1.1rem; color: var(--ink); letter-spacing: -.01em; }
.logo-text em {
  font-style: normal;
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav ul { display: flex; align-items: center; gap: 1.6rem; }
.nav a {
  position: relative;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .2s var(--ease);
}
.nav ul a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav ul a:hover { color: var(--brand); }
.nav ul a:hover::after,
.nav ul a.is-current::after { transform: scaleX(1); }
.nav ul a.is-current { color: var(--brand); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle .i { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(3rem, 7vw, 6rem) clamp(3.5rem, 8vw, 6.5rem);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .55;
}
.blob-a {
  width: 46vw; height: 46vw;
  min-width: 320px; min-height: 320px;
  top: -12%; right: -10%;
  background: radial-gradient(circle at 30% 30%, #9BE3D6, transparent 68%);
}
.blob-b {
  width: 40vw; height: 40vw;
  min-width: 280px; min-height: 280px;
  bottom: -18%; left: -12%;
  background: radial-gradient(circle at 60% 40%, #FFD7A8, transparent 66%);
}
.grain {
  position: absolute; inset: 0;
  opacity: .3;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.hero-copy { max-width: 620px; }
.hero h1 { margin-bottom: 1.3rem; }

.hl {
  position: relative;
  display: inline-block;
  color: var(--brand);
  font-style: italic;
  white-space: nowrap;
}
.hl-swash {
  position: absolute;
  left: -2%;
  bottom: -.34em;
  width: 104%;
  height: .38em;
  stroke: var(--accent);
  stroke-width: 5;
  fill: none;
  stroke-linecap: round;
  opacity: .85;
  stroke-dasharray: 210;
  stroke-dashoffset: 210;
}
.in .hl-swash, .hero-copy .in .hl-swash { animation: swash .9s .35s var(--ease) forwards; }
@keyframes swash { to { stroke-dashoffset: 0; } }

.lede {
  font-size: clamp(1.05rem, 1rem + .35vw, 1.2rem);
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.75rem; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 4vw, 2.75rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.hero-stats dt {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .25rem;
}
.hero-stats dd {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: .35rem;
  line-height: 1.1;
}
.hero-stats dd span {
  font-family: var(--body);
  font-size: .8rem;
  font-weight: 400;
  color: var(--muted);
}
.hero-stats .star { width: 1.05rem; height: 1.05rem; fill: var(--sun); stroke: none; }

/* Hero portrait */
.hero-visual { position: relative; display: grid; place-items: center; }
.portrait-card {
  position: relative;
  width: min(100%, 480px);
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, #FFFFFF, #FFF3E6);
  padding: clamp(.85rem, 2vw, 1.15rem);
  box-shadow: var(--sh-3);
  border: 1px solid rgba(255,255,255,.9);
  animation: float 7s ease-in-out infinite;
}
.dog-portrait {
  width: 100%;
  height: auto;
  border-radius: calc(var(--r-xl) - 12px);
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-.35deg); }
  50%      { transform: translateY(-12px) rotate(.35deg); }
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .7rem .95rem;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--r-md);
  box-shadow: var(--sh-2);
}
.float-card p { display: flex; flex-direction: column; line-height: 1.3; }
.float-card strong { font-size: .86rem; color: var(--ink); font-weight: 600; }
.float-card span { font-size: .76rem; color: var(--muted); }

.float-rating {
  top: 8%; left: -6%;
  flex-direction: column;
  align-items: flex-start;
  gap: .35rem;
  animation: float 6s .6s ease-in-out infinite;
}
.float-slot {
  bottom: 7%; right: -5%;
  animation: float 6.6s .3s ease-in-out infinite;
}
.pulse {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #2FBF71;
  box-shadow: 0 0 0 0 rgba(47,191,113,.6);
  animation: pulse 2s infinite;
  flex: none;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 11px rgba(47,191,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(47,191,113,0); }
}

.stars { display: flex; gap: 2px; color: var(--sun); }
.stars .i { width: .95rem; height: .95rem; fill: currentColor; stroke: none; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--brand);
  color: var(--mint);
  padding-block: .95rem;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.08);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  width: max-content;
  animation: scroll-x 38s linear infinite;
}
.marquee-track span {
  font-family: var(--display);
  font-size: clamp(1rem, .9rem + .5vw, 1.35rem);
  letter-spacing: .01em;
  white-space: nowrap;
  opacity: .92;
}
.marquee-track span:nth-child(even) { color: var(--sun); opacity: .75; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ---------- Service cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.service-card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-2);
  border-color: rgba(14,92,85,.22);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  margin-bottom: 1.15rem;
  border-radius: 16px;
  background: var(--mint);
  color: var(--brand);
  transition: background-color .35s var(--ease), color .35s var(--ease), transform .45s var(--ease);
}
.service-icon .i { width: 25px; height: 25px; }
.service-card:hover .service-icon {
  background: var(--brand);
  color: #fff;
  transform: rotate(-6deg) scale(1.05);
}
.service-card h3 { margin-bottom: .55rem; }
.service-card p { color: var(--muted); font-size: .97rem; }
.service-meta {
  margin-top: 1.1rem;
  padding-top: .9rem;
  border-top: 1px dashed var(--line);
  font-size: .82rem !important;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--brand) !important;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.85rem 1.6rem;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
}
.step-num {
  display: inline-block;
  font-family: var(--display);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--brand-300);
  margin-bottom: .6rem;
}
.step h3 { margin-bottom: .5rem; }
.step p { color: var(--muted); font-size: .97rem; }

.assure {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(1.75rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(14,92,85,.15);
}
.assure-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .93rem;
  color: var(--ink-2);
}
.assure-item .i { width: 22px; height: 22px; color: var(--brand); flex: none; }
.assure-item strong { color: var(--ink); display: block; }

/* ---------- Before / after compare ---------- */
.compare {
  max-width: 900px;
  margin-inline: auto;
}
.compare-inner {
  position: relative;
  aspect-ratio: 4 / 3;
  max-height: 580px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-3);
  border: 1px solid rgba(255,255,255,.8);
  touch-action: pan-y;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  background: var(--mint-2);
}
.compare-layer { position: absolute; inset: 0; }
.compare-layer .dog-art { width: 100%; height: 100%; }
.compare-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }

.compare-tag {
  position: absolute;
  top: 1rem;
  padding: .35rem .8rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.compare-after  .compare-tag { right: 1rem; background: rgba(14,92,85,.85); color: #fff; }
.compare-before .compare-tag { left: 1rem;  background: rgba(255,255,255,.85); color: var(--ink); }

.compare-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 46px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  cursor: ew-resize;
  background: none;
  border: 0;
}
.handle-line {
  position: absolute;
  top: 0; bottom: 0;
  width: 3px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 0 0 1px rgba(23,18,14,.12), 0 0 22px rgba(0,0,0,.28);
}
.handle-grip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  box-shadow: 0 10px 26px -8px rgba(0,0,0,.5);
  transition: transform .25s var(--ease);
}
.handle-grip .i { width: 16px; height: 16px; stroke-width: 2.4; }
.compare-handle:hover .handle-grip,
.compare-handle:focus-visible .handle-grip { transform: scale(1.08); }
.compare-handle:focus-visible { outline: none; }
.compare-handle:focus-visible .handle-grip { outline: 3px solid var(--accent); outline-offset: 3px; }

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: .9rem;
  max-width: 900px;
  margin: clamp(1.75rem, 4vw, 2.5rem) auto 0;
}
.gallery-strip li {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .7rem .9rem;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  box-shadow: var(--sh-1);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.gallery-strip li:hover { transform: translateY(-3px); border-color: rgba(14,92,85,.25); }
.thumb {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  font-size: 1.5rem;
  flex: none;
}
.thumb-1 { background: #FFEFE2; }
.thumb-2 { background: #E7F6F1; }
.thumb-3 { background: #FFF6DC; }
.thumb-4 { background: #EDF1FA; }
.gallery-strip strong { display: block; font-size: .92rem; color: var(--ink); }
.gallery-strip small { color: var(--muted); font-size: .78rem; }

/* ---------- Pricing ---------- */
.size-toggle {
  display: inline-flex;
  gap: .3rem;
  padding: .35rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  box-shadow: var(--sh-1);
}
.size-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .05rem;
  padding: .6rem 1.35rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: .94rem;
  cursor: pointer;
  transition: background-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.size-btn small { font-size: .68rem; font-weight: 400; letter-spacing: .04em; text-transform: uppercase; opacity: .8; }
.size-btn:hover { color: var(--brand); }
.size-btn.is-active {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 22px -12px rgba(14,92,85,.95);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2.1rem);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.price-card h3 { font-size: 1.2rem; }
.price-note { color: var(--muted); font-size: .9rem; margin-bottom: 1.35rem; }

.price {
  display: flex;
  align-items: baseline;
  gap: .1rem;
  font-family: var(--display);
  font-size: clamp(2.6rem, 2rem + 2vw, 3.4rem);
  line-height: 1;
  color: var(--ink);
  margin: .5rem 0 .35rem;
  letter-spacing: -.03em;
}
.price .cur, .price .plus { font-size: .5em; color: var(--muted); }
.price .amount { display: inline-block; transition: opacity .18s var(--ease), transform .18s var(--ease); }
.price .amount.is-swapping { opacity: 0; transform: translateY(-8px); }

.ticks { display: grid; gap: .6rem; margin-bottom: 1.75rem; }
.ticks li { display: flex; align-items: flex-start; gap: .6rem; font-size: .95rem; color: var(--ink-2); }
.ticks .i { width: 18px; height: 18px; color: var(--brand); margin-top: .18em; flex: none; }
.price-card .btn { margin-top: auto; }

.price-card.is-featured {
  background: linear-gradient(170deg, #FFFFFF 0%, var(--mint) 100%);
  border-color: rgba(14,92,85,.3);
  box-shadow: var(--sh-2);
}
@media (min-width: 900px) {
  .price-card.is-featured { transform: translateY(-16px) scale(1.015); }
  .price-card.is-featured:hover { transform: translateY(-21px) scale(1.015); }
}
.ribbon {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.price-foot {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: 1rem 1.4rem;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.7);
  border: 1px dashed rgba(14,92,85,.35);
  font-size: .95rem;
  color: var(--ink-2);
}
.price-foot .i { color: var(--accent); }
.price-foot strong { color: var(--brand); }

/* ---------- Testimonials ---------- */
.carousel { position: relative; }
.carousel-viewport { overflow: hidden; }
.carousel-track {
  display: flex;
  gap: 1.25rem;
  transition: transform .6s var(--ease);
}
.quote-card {
  flex: 0 0 calc((100% - 2.5rem) / 3);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1);
}
.quote-card blockquote {
  font-family: var(--display);
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -.01em;
  flex: 1;
}
.quote-card footer { display: flex; align-items: center; gap: .7rem; padding-top: 1.1rem; border-top: 1px solid var(--line-soft); }
.quote-card footer strong { display: block; font-size: .92rem; color: var(--ink); }
.quote-card footer small { color: var(--muted); font-size: .78rem; }
.avatar {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--mint-2);
  color: var(--brand-600);
  font-weight: 700;
  flex: none;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin-top: 1.85rem;
}
.round-btn {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  box-shadow: var(--sh-1);
  transition: background-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.round-btn:hover { background: var(--brand); color: #fff; border-color: var(--brand); transform: translateY(-2px); }
.round-btn .i { width: 19px; height: 19px; }

.carousel-dots { display: flex; gap: .45rem; }
.carousel-dots button {
  width: 9px; height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(14,92,85,.22);
  cursor: pointer;
  transition: width .3s var(--ease), background-color .3s var(--ease);
}
.carousel-dots button[aria-selected="true"] { width: 26px; background: var(--brand); }

/* ---------- Booking ---------- */
.section-book {
  position: relative;
  background:
    radial-gradient(1100px 520px at 12% 0%, #14786E 0%, transparent 62%),
    radial-gradient(900px 520px at 100% 100%, #0B3F3A 0%, transparent 60%),
    var(--brand);
  color: #D9EFEA;
  overflow: hidden;
}
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.section-book h2 { color: #fff; margin-bottom: .9rem; }
.section-book .section-sub { color: rgba(217,239,234,.82); }

.contact-list { display: grid; gap: .9rem; margin-top: 2.25rem; }
.contact-list li { display: flex; align-items: center; gap: .9rem; }
.contact-icon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  color: var(--brand-300);
  flex: none;
}
.contact-list small { display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(217,239,234,.62); }
.contact-list a, .contact-list span { color: #fff; text-decoration: none; font-weight: 500; }
.contact-list a:hover { color: var(--sun); text-decoration: underline; text-underline-offset: 3px; }

.book-card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--paper);
  border-radius: var(--r-xl);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.7);
  color: var(--ink-2);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; margin-bottom: 1.05rem; }
.field label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .4rem;
  letter-spacing: .01em;
}
.field .opt { font-weight: 400; color: var(--muted); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .78rem .95rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--cream);
  color: var(--ink);
  font-size: .96rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder, .field textarea::placeholder { color: #A99C91; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(14,92,85,.35); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(14,92,85,.12);
}
.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='%237C6C60' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .85rem center; background-size: 17px; padding-right: 2.4rem; }

.field input.is-invalid, .field select.is-invalid, .field textarea.is-invalid {
  border-color: var(--accent-600);
  background: #FFF6F4;
  box-shadow: 0 0 0 4px rgba(232,95,61,.1);
}
.error {
  min-height: 0;
  font-size: .8rem;
  color: var(--accent-600);
  font-weight: 500;
  margin-top: .35rem;
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.error.is-shown { opacity: 1; transform: none; }

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: var(--muted);
  cursor: pointer;
  margin-bottom: .35rem;
}
.checkbox input { width: 18px; height: 18px; margin-top: .18em; accent-color: var(--brand); flex: none; cursor: pointer; }
.checkbox.is-invalid span { color: var(--accent-600); }
.checkbox.is-invalid input { outline: 2px solid var(--accent-600); outline-offset: 2px; border-radius: 3px; }

.form-foot { text-align: center; font-size: .82rem; color: var(--muted); margin-top: .9rem; }

.form-success { text-align: center; padding: clamp(1.5rem, 4vw, 3rem) 1rem; }
.success-icon {
  display: grid;
  place-items: center;
  width: 66px; height: 66px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--mint-2);
  color: var(--brand);
  animation: pop .5s var(--ease);
}
.success-icon .i { width: 32px; height: 32px; stroke-width: 2.4; }
.form-success h3 { font-size: 1.5rem; margin-bottom: .6rem; }
.form-success p { color: var(--muted); margin-bottom: 1.5rem; }
@keyframes pop { from { transform: scale(.6); opacity: 0; } }

/* ---------- FAQ ---------- */
.accordion { display: grid; gap: .75rem; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  box-shadow: var(--sh-1);
  overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq-item[open] { border-color: rgba(14,92,85,.28); box-shadow: var(--sh-2); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  transition: color .25s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--brand); }
.faq-item summary .i {
  width: 20px; height: 20px;
  color: var(--brand);
  flex: none;
  transition: transform .35s var(--ease);
}
.faq-item[open] summary .i { transform: rotate(180deg); }
.faq-body { padding: 0 1.35rem 1.35rem; }
.faq-body p { color: var(--muted); font-size: .97rem; }
.faq-item[open] .faq-body { animation: slide-down .35s var(--ease); }
@keyframes slide-down { from { opacity: 0; transform: translateY(-6px); } }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--accent) 0%, #FF9A6E 55%, var(--sun) 130%);
  color: #3A1B10;
  padding-block: clamp(3rem, 7vw, 5rem);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band h2 { color: #2E1409; margin-bottom: .4rem; }
.cta-band p { color: rgba(58,27,16,.8); font-weight: 500; }

/* ---------- Footer ---------- */
.site-footer {
  background: #0B3F3A;
  color: rgba(217,239,234,.72);
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem;
  font-size: .93rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(1.75rem, 4vw, 3rem);
}
.logo-light .logo-text strong { color: #fff; }
.logo-light .logo-text em { color: rgba(217,239,234,.6); }
.logo-light .logo-mark { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); box-shadow: none; color: var(--brand-300); }
.footer-blurb { margin: 1.1rem 0 1.35rem; max-width: 34ch; }

.socials { display: flex; gap: .6rem; }
.socials a {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #D9EFEA;
  transition: background-color .25s var(--ease), transform .25s var(--ease), color .25s var(--ease);
}
.socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-3px); }
.socials .i { width: 19px; height: 19px; }

.site-footer h3 {
  color: #fff;
  font-family: var(--body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.site-footer nav ul, .footer-contact { display: grid; gap: .65rem; }
.site-footer a { color: rgba(217,239,234,.72); text-decoration: none; transition: color .2s var(--ease); }
.site-footer a:hover { color: var(--sun); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .84rem;
}
.footer-bottom ul { display: flex; gap: 1.35rem; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  box-shadow: var(--sh-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top .i { width: 20px; height: 20px; transform: rotate(-90deg); }
.to-top:hover { background: var(--brand-600); }

/* ---------- Mobile CTA bar ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 95;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem clamp(1rem, 4vw, 1.4rem);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 30px -22px rgba(23,18,14,.6);
}
.mobile-cta strong { display: block; font-size: .9rem; color: var(--ink); }
.mobile-cta small { color: var(--muted); font-size: .76rem; }
.mobile-cta .btn { padding: .7rem 1.2rem; }

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--rd, 0ms);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero-copy { max-width: 100%; }
  .hero-visual { order: -1; }
  .portrait-card { width: min(100%, 400px); }
  .float-rating { left: -2%; }
  .float-slot { right: -2%; }
  .quote-card { flex-basis: calc((100% - 1.25rem) / 2); }
  .book-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.25rem var(--gutter) 1.85rem;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px -30px rgba(23,18,14,.6);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav ul li { border-bottom: 1px solid var(--line-soft); }
  .nav ul a { display: block; padding: .95rem .25rem; font-size: 1.05rem; }
  .nav ul a::after { display: none; }
  .nav-cta { margin-top: 1.35rem; }
  .nav-toggle { display: inline-flex; }

  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer { padding-bottom: 6.5rem; }
  .to-top { bottom: 5.2rem; }
  .mobile-cta { display: flex; }
  .quote-card { flex-basis: 100%; }
  .float-card { display: none; }
  .compare-inner { aspect-ratio: 1 / 1; }
}

@media (max-width: 560px) {
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 1.25rem 1.75rem; }
  .hero-stats dd { font-size: 1.25rem; }
  .size-toggle { width: 100%; justify-content: space-between; }
  .size-btn { flex: 1; padding-inline: .5rem; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .marquee-track { gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Reduced motion & print
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hl-swash { stroke-dashoffset: 0; animation: none !important; }
  .portrait-card, .float-card, .marquee-track { animation: none !important; }
  .marquee-track { flex-wrap: wrap; width: auto; }
}

@media print {
  .site-header, .to-top, .mobile-cta, .marquee, .scroll-progress, .hero-bg { display: none !important; }
  body { background: #fff; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
