/* ==========================================================================
   The Waggers Den — design system
   Palette is drawn from the hand-drawn logo: cream paper, greige, warm brown
   ink, and the tan of the little dog. Terracotta carries every booking CTA.
   ========================================================================== */

:root {
  /* --- colour ------------------------------------------------------------ */
  --paper:        #FBF6EE;
  --paper-deep:   #F4EADC;
  --card:         #FFFFFF;
  --greige:       #D2C9B7;
  --greige-soft:  #E8E2D6;

  --ink:          #2C201A;
  --brown:        #4A372A;
  --muted:        #7A6858;

  --tan:          #C8975A;
  --tan-soft:     #E8C89B;
  --terracotta:   #B4562F;
  --terracotta-d: #953F1E;
  --sage:         #7C8A6B;
  --whatsapp:     #1FA855;

  --star:         #E0A526;

  /* --- type -------------------------------------------------------------- */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* --- shape & depth ----------------------------------------------------- */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(44, 32, 26, .05), 0 2px 8px rgba(44, 32, 26, .04);
  --shadow:    0 2px 4px rgba(44, 32, 26, .04), 0 8px 24px rgba(44, 32, 26, .07);
  --shadow-lg: 0 4px 12px rgba(44, 32, 26, .06), 0 20px 48px rgba(44, 32, 26, .11);

  --ring: 0 0 0 3px rgba(180, 86, 47, .28);

  /* --- rhythm ------------------------------------------------------------ */
  --wrap: 1180px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --section-y: clamp(3.75rem, 9vw, 7rem);

  --header-h: 68px;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, .96rem + .18vw, 1.075rem);
  line-height: 1.68;
  color: var(--brown);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Paper grain — very subtle, keeps large cream fields from feeling flat. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .38;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 28, "WONK" 1;
  color: var(--ink);
  line-height: 1.13;
  letter-spacing: -.018em;
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.3rem, 1.5rem + 3.6vw, 4.15rem); font-weight: 600; }
h2 { font-size: clamp(1.85rem, 1.3rem + 2.3vw, 3rem);   font-weight: 600; }
h3 { font-size: clamp(1.25rem, 1.1rem + .7vw, 1.6rem);  font-weight: 600; }
h4 { font-size: clamp(1.05rem, 1rem + .3vw, 1.2rem);    font-weight: 600; }

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--terracotta); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--terracotta-d); }

strong { font-weight: 650; color: var(--ink); }

ul, ol { margin: 0 0 1.15em; padding-left: 1.25em; }
li { margin-bottom: .4em; }
li::marker { color: var(--tan); }

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -110%);
  z-index: 200;
  background: var(--ink); color: #fff;
  padding: .7rem 1.25rem; border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { transform: translate(-50%, 0); color: #fff; }

/* ==========================================================================
   Layout primitives
   ========================================================================== */

.wrap {
  width: min(100% - var(--gutter) * 2, var(--wrap));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.wrap--narrow { max-width: 780px; }
.wrap--mid    { max-width: 950px; }

section { position: relative; }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4.25rem); }
.section--paper { background: var(--paper-deep); }
.section--ink   { background: var(--ink); color: #EDE4D8; }
.section--ink h2, .section--ink h3 { color: #fff; }

.stack > * + * { margin-top: 1.15rem; }

.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); }
/* Explicitly two-up: auto-fit would slip to three columns at wide sizes and
   orphan the last card of a four-card set. */
.grid-2 { grid-template-columns: 1fr; }
@media (min-width: 760px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }

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

/* ==========================================================================
   Type helpers
   ========================================================================== */

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .76rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: var(--tan);
}
.center .eyebrow::after {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: var(--tan);
}

.lede {
  font-size: clamp(1.06rem, 1rem + .4vw, 1.28rem);
  line-height: 1.62;
  color: var(--muted);
  max-width: 62ch;
}

.section-head { margin-bottom: clamp(2rem, 4.5vw, 3.25rem); }

.script-accent {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "SOFT" 60, "WONK" 1;
  color: var(--terracotta);
  font-weight: 500;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  --btn-bg: var(--terracotta);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .92rem 1.6rem;
  border: 1.5px solid transparent;
  border-radius: 100px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font: inherit; font-weight: 650; font-size: .975rem;
  letter-spacing: .002em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(44,32,26,.1), 0 6px 18px rgba(180,86,47,.22);
  transition: transform .18s cubic-bezier(.2,.7,.3,1), box-shadow .18s, background-color .18s;
}
.btn:hover {
  --btn-bg: var(--terracotta-d);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(44,32,26,.12), 0 12px 26px rgba(180,86,47,.3);
}
.btn:active { transform: translateY(0); }

.btn svg { flex: none; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--brown);
  border-color: rgba(74,55,42,.24);
  box-shadow: none;
}
.btn--ghost:hover {
  --btn-bg: rgba(74,55,42,.05);
  --btn-fg: var(--ink);
  border-color: rgba(74,55,42,.4);
  box-shadow: 0 4px 14px rgba(44,32,26,.08);
}

.btn--wa { --btn-bg: var(--whatsapp); box-shadow: 0 1px 2px rgba(44,32,26,.1), 0 6px 18px rgba(31,168,85,.24); }
.btn--wa:hover { --btn-bg: #178C46; box-shadow: 0 2px 4px rgba(44,32,26,.12), 0 12px 26px rgba(31,168,85,.3); }

.btn--light { --btn-bg: #fff; --btn-fg: var(--ink); box-shadow: 0 2px 6px rgba(0,0,0,.14), 0 12px 30px rgba(0,0,0,.18); }
.btn--light:hover { --btn-bg: #fff; --btn-fg: var(--terracotta); }

.btn--lg { padding: 1.06rem 2rem; font-size: 1.045rem; }
.btn--sm { padding: .62rem 1.1rem; font-size: .875rem; }
.btn--block { display: flex; width: 100%; }

.btn-row {
  display: flex; flex-wrap: wrap; gap: .8rem;
  margin-top: 1.9rem;
}
.center .btn-row { justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .42rem;
  font-weight: 640; text-decoration: none;
  color: var(--terracotta);
}
.link-arrow::after {
  content: "→";
  transition: transform .18s cubic-bezier(.2,.7,.3,1);
}
.link-arrow:hover::after { transform: translateX(4px); }

/* ==========================================================================
   Header / navigation
   ========================================================================== */

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 246, 238, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(74, 55, 42, .09);
  transition: box-shadow .25s, background-color .25s;
}
.header.is-stuck { box-shadow: 0 1px 0 rgba(74,55,42,.06), 0 8px 28px rgba(44,32,26,.07); }

.header__inner {
  min-height: var(--header-h);
  display: flex; align-items: center; gap: 1rem;
}

.brand {
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none; color: var(--ink);
  margin-right: auto;
  flex: none;
}
.brand img { width: 44px; height: auto; }
.brand__name {
  font-family: var(--font-display);
  font-variation-settings: "SOFT" 40, "WONK" 1;
  font-weight: 600; font-size: 1.14rem; line-height: 1.1;
  letter-spacing: -.015em;
}
.brand__tag {
  display: block;
  font-family: var(--font-body);
  font-size: .625rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--tan);
  margin-top: 1px;
}

.nav { display: none; }
.nav ul {
  display: flex; align-items: center; gap: .15rem;
  list-style: none; margin: 0; padding: 0;
}
.nav a {
  display: block;
  padding: .5rem .68rem;
  border-radius: 100px;
  font-size: .92rem; font-weight: 550;
  color: var(--brown);
  text-decoration: none;
  transition: background-color .16s, color .16s;
}
.nav a:hover { background: rgba(74,55,42,.06); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--terracotta); font-weight: 680; }

.header__cta { display: none; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  margin-right: -8px;
  border: 1px solid rgba(74,55,42,.16);
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle:hover { background: rgba(74,55,42,.05); }
.nav-toggle__bars { display: block; width: 19px; height: 13px; position: relative; }
.nav-toggle__bars i {
  position: absolute; left: 0; height: 2px; width: 100%;
  background: currentColor; border-radius: 2px;
  transition: transform .26s cubic-bezier(.2,.7,.3,1), opacity .18s;
}
.nav-toggle__bars i:nth-child(1) { top: 0; }
.nav-toggle__bars i:nth-child(2) { top: 5.5px; }
.nav-toggle__bars i:nth-child(3) { top: 11px; }
[aria-expanded="true"] .nav-toggle__bars i:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
[aria-expanded="true"] .nav-toggle__bars i:nth-child(2) { opacity: 0; }
[aria-expanded="true"] .nav-toggle__bars i:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: var(--header-h) 0 0;
  z-index: 99;
  background: var(--paper);
  padding: 1.5rem var(--gutter) 2.5rem;
  overflow-y: auto;
  transform: translateY(-8px);
  opacity: 0; visibility: hidden;
  transition: opacity .22s, transform .22s, visibility .22s;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }
.drawer ul { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.drawer li + li { border-top: 1px solid rgba(74,55,42,.09); }
/* Scoped to the nav list so the CTA buttons below keep their own styling. */
.drawer ul a {
  display: flex; align-items: center; justify-content: space-between;
  padding: .95rem .25rem;
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 550;
  color: var(--ink); text-decoration: none;
}
.drawer ul a[aria-current="page"] { color: var(--terracotta); }
.drawer ul a::after { content: "→"; color: var(--tan); font-family: var(--font-body); }
.drawer .btn { display: flex; width: 100%; }
.drawer .btn + .btn { margin-top: .7rem; }

@media (min-width: 1060px) {
  .nav, .header__cta { display: block; }
  .nav-toggle { display: none; }
  .drawer { display: none; }
  .brand img { width: 50px; }
}

/* ==========================================================================
   Sticky mobile action bar
   ========================================================================== */

.actionbar {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 95;
  display: grid; grid-template-columns: 1fr 1fr; gap: .55rem;
  padding: .6rem var(--gutter) calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(251,246,238,.93);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-top: 1px solid rgba(74,55,42,.1);
  transform: translateY(102%);
  transition: transform .3s cubic-bezier(.2,.7,.3,1);
}
.actionbar.is-visible { transform: none; }
.actionbar .btn { padding: .78rem .7rem; font-size: .9rem; box-shadow: none; }

@media (min-width: 1060px) { .actionbar { display: none; } }
body { padding-bottom: 0; }
@media (max-width: 1059px) { body.has-actionbar { padding-bottom: 74px; } }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; z-index: 0;
  width: 46vw; height: 46vw; max-width: 620px; max-height: 620px;
  right: -12vw; top: -16vw;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(232,200,155,.5), rgba(232,200,155,0) 68%);
  pointer-events: none;
}

.hero__grid {
  display: grid; gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

/* Text leads on mobile so the headline and booking CTA sit above the fold;
   the photo follows immediately underneath. */
.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  object-position: 50% 22%;
}
@media (min-width: 640px) {
  .hero__media img { aspect-ratio: 4 / 5; object-position: 50% 30%; }
}
.hero__media::before {
  content: "";
  position: absolute; inset: auto -14px -14px auto;
  width: 62%; height: 62%;
  border-radius: var(--r-xl);
  background: var(--greige-soft);
  z-index: -1;
}

/* Floating award chip over the hero image */
.hero__badge {
  position: absolute;
  left: clamp(-6px, -1vw, 0px); bottom: clamp(14px, 4vw, 28px);
  display: flex; align-items: center; gap: .7rem;
  padding: .68rem .95rem .68rem .72rem;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  box-shadow: var(--shadow);
  max-width: min(88%, 320px);
}
.hero__badge svg { flex: none; }
.hero__badge b {
  display: block;
  font-family: var(--font-display); font-weight: 600;
  font-size: .95rem; line-height: 1.2; color: var(--ink);
}
.hero__badge span {
  display: block;
  font-size: .74rem; line-height: 1.3; color: var(--muted);
  margin-top: 2px;
}

.hero h1 { margin-bottom: .38em; }
.hero h1 em {
  font-style: italic;
  font-variation-settings: "SOFT" 70, "WONK" 1;
  color: var(--terracotta);
}

.hero__points {
  list-style: none; padding: 0;
  margin: 1.65rem 0 0;
  display: grid; gap: .6rem;
}
.hero__points li {
  display: flex; align-items: flex-start; gap: .6rem;
  margin: 0;
  font-size: .985rem; font-weight: 500;
  color: var(--brown);
}
.hero__points svg { flex: none; margin-top: 3px; }

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.06fr .94fr; gap: clamp(2.5rem, 5vw, 4.5rem); }
  .hero__media { order: 0; }
  .hero__points { grid-template-columns: 1fr 1fr; column-gap: 1.25rem; }
}

/* ==========================================================================
   Trust strip
   ========================================================================== */

.trustbar {
  background: var(--ink);
  color: #E4D9CB;
  padding-block: clamp(1.5rem, 3.5vw, 2.1rem);
}
.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem clamp(1rem, 3vw, 2rem);
}
.trustbar__item { text-align: center; }
.trustbar__item b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.15rem);
  font-weight: 600; color: #fff;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.trustbar__item span {
  display: block;
  font-size: .78rem; font-weight: 550;
  letter-spacing: .07em; text-transform: uppercase;
  color: rgba(228,217,203,.72);
  margin-top: .4rem;
}
@media (min-width: 720px) { .trustbar__grid { grid-template-columns: repeat(4, 1fr); } }

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
  background: var(--card);
  border: 1px solid rgba(74,55,42,.075);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s, border-color .22s;
}
.card--hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(200,151,90,.3);
}
.card h3 { margin-bottom: .45rem; }
.card p { color: var(--muted); font-size: .975rem; }

.card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--paper-deep);
  color: var(--terracotta);
  margin-bottom: 1.15rem;
}
.card__icon svg { width: 26px; height: 26px; }

/* Numbered step cards */
.steps { counter-reset: step; }
.step { position: relative; padding-top: 1.1rem; }
.step__n {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--terracotta); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 14px rgba(180,86,47,.28);
}

/* ==========================================================================
   Feature / split rows
   ========================================================================== */

.split {
  display: grid; gap: clamp(1.75rem, 4.5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--flip .split__media { order: 2; }
}
.split__media img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.checklist { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .75rem; }
.checklist li {
  display: flex; align-items: flex-start; gap: .7rem;
  margin: 0; font-size: .99rem;
}
.checklist svg { flex: none; margin-top: 4px; color: var(--sage); }

/* ==========================================================================
   Comparison table (home vs salon)
   ========================================================================== */

.compare {
  display: grid; gap: 1.15rem;
  margin-top: 2rem;
}
@media (min-width: 780px) { .compare { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }

.compare__col {
  border-radius: var(--r-lg);
  padding: clamp(1.35rem, 3vw, 1.9rem);
  border: 1px solid rgba(74,55,42,.1);
  background: var(--card);
}
.compare__col--them { background: transparent; box-shadow: none; }
.compare__col--us {
  border-color: rgba(200,151,90,.42);
  box-shadow: var(--shadow);
  position: relative;
}
.compare__col h3 { font-size: 1.2rem; margin-bottom: 1.1rem; display: flex; align-items: center; gap: .55rem; }
.compare__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .85rem; }
.compare__col li {
  display: flex; align-items: flex-start; gap: .65rem;
  margin: 0; font-size: .96rem; line-height: 1.55;
}
.compare__col li svg { flex: none; margin-top: 4px; }
.compare__col--them li { color: var(--muted); }

/* ==========================================================================
   Services / price tables
   ========================================================================== */

.pricecard {
  background: var(--card);
  border: 1px solid rgba(74,55,42,.08);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.pricecard__head {
  padding: clamp(1.35rem, 3vw, 1.85rem);
  background: var(--paper-deep);
  border-bottom: 1px solid rgba(74,55,42,.08);
}
.pricecard__head h3 { margin-bottom: .3rem; }
.pricecard__head p { margin: 0; font-size: .93rem; color: var(--muted); }
.pricecard__body { padding: clamp(1.1rem, 2.6vw, 1.6rem); }

.pricelist { list-style: none; margin: 0; padding: 0; }
.pricelist li {
  display: flex; align-items: baseline; gap: .75rem;
  padding: .82rem 0;
  margin: 0;
  border-bottom: 1px dashed rgba(74,55,42,.14);
}
.pricelist li:last-child { border-bottom: 0; padding-bottom: 0; }
.pricelist li:first-child { padding-top: 0; }
.pricelist__name { flex: 1; min-width: 0; }
.pricelist__name b { display: block; font-weight: 600; color: var(--ink); font-size: 1rem; }
.pricelist__name small {
  display: block; color: var(--muted); font-size: .855rem;
  line-height: 1.45; margin-top: .18rem;
}
.pricelist__dur {
  font-size: .78rem; color: var(--muted);
  white-space: nowrap;
  background: var(--paper-deep);
  padding: .12rem .5rem; border-radius: 100px;
  margin-left: .4rem;
  display: inline-block;
  vertical-align: 2px;
}
.pricelist__price {
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.08rem;
  color: var(--terracotta);
  white-space: nowrap;
  text-align: right;
}
.pricelist__price small {
  display: block; font-family: var(--font-body);
  font-size: .68rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: -2px;
}

.tag {
  display: inline-block;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .28rem .6rem;
  border-radius: 100px;
  background: rgba(180,86,47,.1);
  color: var(--terracotta);
}
.tag--sage { background: rgba(124,138,107,.14); color: #5C6A4D; }
.tag--tan  { background: rgba(200,151,90,.16); color: #8A6227; }

.note {
  display: flex; gap: .75rem;
  padding: 1.05rem 1.2rem;
  background: rgba(200,151,90,.1);
  border-left: 3px solid var(--tan);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: .93rem;
  color: var(--brown);
}
.note svg { flex: none; color: var(--tan); margin-top: 3px; }
.note p { margin: 0; }
.note + .note { margin-top: .85rem; }

/* ==========================================================================
   Gallery
   ========================================================================== */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr));
  gap: clamp(.6rem, 1.6vw, 1rem);
}
.gallery__item {
  position: relative;
  border: 0; padding: 0; margin: 0;
  background: var(--greige-soft);
  border-radius: var(--r);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-sm);
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.gallery__item:hover img { transform: scale(1.045); }
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,32,26,.32), transparent 42%);
  opacity: 0; transition: opacity .3s;
}
.gallery__item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  background: rgba(28, 20, 16, .93);
  backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 100%; max-height: 82vh;
  border-radius: var(--r);
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
}
.lightbox__cap {
  color: rgba(255,255,255,.82);
  font-size: .9rem; text-align: center;
  margin-top: 1rem; max-width: 60ch;
}
.lightbox__btn {
  position: absolute;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 0; border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: #fff; cursor: pointer;
  font-size: 1.35rem; line-height: 1;
  transition: background-color .18s;
}
.lightbox__btn:hover { background: rgba(255,255,255,.28); }
.lightbox__close { top: clamp(.75rem, 2vw, 1.5rem); right: clamp(.75rem, 2vw, 1.5rem); }
.lightbox__prev { left: clamp(.5rem, 2vw, 1.5rem);  top: 50%; transform: translateY(-50%); }
.lightbox__next { right: clamp(.5rem, 2vw, 1.5rem); top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   Reviews
   ========================================================================== */

.reviews { display: grid; gap: clamp(1rem, 2.5vw, 1.5rem); }
@media (min-width: 760px)  { .reviews { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .reviews--3 { grid-template-columns: repeat(3, 1fr); } }

.review {
  background: var(--card);
  border: 1px solid rgba(74,55,42,.075);
  border-radius: var(--r-lg);
  padding: clamp(1.35rem, 3vw, 1.85rem);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.review__stars { display: flex; gap: 2px; margin-bottom: .9rem; color: var(--star); }
.review__stars svg { width: 17px; height: 17px; }
.review p {
  font-size: 1rem; line-height: 1.62;
  color: var(--brown);
  flex: 1;
}
.review__who {
  display: flex; align-items: center; gap: .65rem;
  margin-top: 1.25rem; padding-top: 1.1rem;
  border-top: 1px solid rgba(74,55,42,.09);
}
.review__avatar {
  width: 38px; height: 38px; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(200, 151, 90, .22);
  color: #7A5220;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  line-height: 1;
}
.review__who b { display: block; font-size: .93rem; color: var(--ink); font-weight: 620; }
.review__who span { display: block; font-size: .78rem; color: var(--muted); }

.review__badges { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .85rem; }
.review__badge {
  font-size: .72rem; font-weight: 640;
  padding: .24rem .58rem;
  border-radius: 100px;
  background: rgba(124,138,107,.13);
  color: #5C6A4D;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq { display: grid; gap: .7rem; }
.faq details {
  background: var(--card);
  border: 1px solid rgba(74,55,42,.085);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq details[open] { border-color: rgba(200,151,90,.4); box-shadow: var(--shadow); }
.faq summary {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.15rem clamp(1.05rem, 2.5vw, 1.5rem);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, .98rem + .2vw, 1.14rem);
  font-weight: 600; color: var(--ink);
  line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none; margin-left: auto; margin-top: 5px;
  width: 11px; height: 11px;
  border-right: 2px solid var(--tan);
  border-bottom: 2px solid var(--tan);
  transform: rotate(45deg);
  transition: transform .25s cubic-bezier(.2,.7,.3,1);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: 9px; }
.faq summary:hover { background: rgba(200,151,90,.05); }
.faq__body {
  padding: 0 clamp(1.05rem, 2.5vw, 1.5rem) 1.35rem;
  color: var(--muted);
  font-size: .975rem;
}
.faq__body > *:first-child { margin-top: 0; }

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  position: relative;
  background: var(--ink);
  color: #EDE4D8;
  border-radius: var(--r-xl);
  padding: clamp(2.25rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3.5rem);
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute; inset: -40% -10% auto auto;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,151,90,.28), transparent 62%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(237,228,216,.82); max-width: 56ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; }

.cta-band__fine {
  margin-top: 1.5rem;
  font-size: .84rem;
  color: rgba(237,228,216,.6);
}

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */

.pagehead {
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2rem, 5vw, 3.25rem);
  background: linear-gradient(180deg, var(--paper-deep), var(--paper));
  border-bottom: 1px solid rgba(74,55,42,.07);
  position: relative; overflow: hidden;
}
.pagehead h1 { font-size: clamp(2rem, 1.4rem + 2.8vw, 3.4rem); margin-bottom: .35em; }
.pagehead .lede { max-width: 60ch; }

.crumbs {
  font-size: .82rem; color: var(--muted);
  margin-bottom: 1.1rem;
}
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.crumbs li { margin: 0; display: flex; gap: .4rem; align-items: center; }
.crumbs li + li::before { content: "/"; color: var(--greige); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--terracotta); text-decoration: underline; }
.crumbs [aria-current] { color: var(--brown); font-weight: 550; }

/* ==========================================================================
   Award feature
   ========================================================================== */

.award {
  display: grid; gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}
@media (min-width: 900px) { .award { grid-template-columns: .95fr 1.05fr; } }
.award__media { position: relative; }
.award__media img { border-radius: var(--r-lg); box-shadow: var(--shadow-lg); width: 100%; }
.award__ribbon {
  position: absolute; top: -14px; left: -14px;
  background: var(--terracotta); color: #fff;
  font-size: .74rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .5rem .9rem;
  border-radius: 100px;
  box-shadow: var(--shadow);
}
.award__facts {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: grid; gap: .9rem;
}
.award__facts li {
  display: grid; grid-template-columns: auto 1fr; gap: .35rem 1rem;
  align-items: baseline;
  padding-bottom: .9rem; margin: 0;
  border-bottom: 1px solid rgba(74,55,42,.09);
}
.award__facts li:last-child { border-bottom: 0; padding-bottom: 0; }
.award__facts dt, .award__facts .k {
  font-size: .74rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--tan);
  white-space: nowrap;
}
.award__facts .v { color: var(--ink); font-weight: 550; }

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-item {
  display: flex; gap: 1rem;
  padding: 1.25rem;
  background: var(--card);
  border: 1px solid rgba(74,55,42,.08);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
}
.contact-item__icon {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  border-radius: 13px;
  background: var(--paper-deep);
  color: var(--terracotta);
}
.contact-item h3 { font-size: 1.05rem; margin-bottom: .2rem; }
.contact-item p { margin: 0; font-size: .93rem; color: var(--muted); }
.contact-item a { font-weight: 600; }

.hours { list-style: none; margin: 0; padding: 0; }
.hours li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .68rem 0; margin: 0;
  border-bottom: 1px dashed rgba(74,55,42,.14);
  font-size: .96rem;
}
.hours li:last-child { border-bottom: 0; }
.hours b { color: var(--ink); font-weight: 600; }

.map-embed {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(74,55,42,.08);
  aspect-ratio: 16 / 10;
  background: var(--greige-soft);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--ink);
  color: rgba(228,217,203,.76);
  padding-block: clamp(2.75rem, 6vw, 4.25rem) 2rem;
  font-size: .94rem;
}
.footer a { color: rgba(228,217,203,.86); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }

/* `strong` is dark-ink by default, which disappears on these dark surfaces. */
.footer strong { color: var(--tan-soft); }
.section--ink strong, .cta-band strong { color: #fff; }

.footer__grid {
  display: grid; gap: 2.25rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (min-width: 760px)  { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.7fr 1fr 1fr 1.15fr; gap: 3rem; } }

.footer h4 {
  color: #fff; font-family: var(--font-body);
  font-size: .76rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: .6rem; }

.footer__brand img { width: 116px; margin-bottom: 1.15rem; }
.footer__brand p { color: rgba(228,217,203,.66); font-size: .92rem; max-width: 34ch; }

.footer__social { display: flex; gap: .55rem; margin-top: 1.25rem; }
.footer__social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.09);
  color: #fff;
  transition: background-color .18s, transform .18s;
}
.footer__social a:hover { background: var(--terracotta); transform: translateY(-2px); }

.footer__bottom {
  padding-top: 1.75rem;
  display: flex; flex-wrap: wrap; gap: .75rem 1.5rem;
  justify-content: space-between; align-items: center;
  font-size: .84rem;
  color: rgba(228,217,203,.55);
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

/* Scoped to .js so that a failed/blocked script can never leave the page
   invisible — without JS the content simply renders as normal. */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s cubic-bezier(.2,.7,.3,1), transform .65s cubic-bezier(.2,.7,.3,1);
  }
  .js .reveal.is-in { opacity: 1; transform: none; }
  .reveal-d1 { transition-delay: .08s; }
  .reveal-d2 { transition-delay: .16s; }
  .reveal-d3 { transition-delay: .24s; }
}

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

/* ==========================================================================
   Utilities
   ========================================================================== */

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
