/* ============================================
   Professional Dog Grooming — Demo by 06830 Studio
   ============================================ */

:root {
  --bg: #faf6ef;
  --bg-card: #fffcf7;
  --bg-accent: #f3ede1;
  --bg-warm: #f7efdf;
  --ink: #2c2418;
  --ink-soft: #5a4f40;
  --ink-light: #8a8070;
  --line: #e8e0d0;
  --line-soft: #efe8d7;
  --green: #6b8e6f;
  --green-deep: #51735a;
  --green-soft: #e0ebde;
  --gold: #c89b6c;
  --gold-deep: #a87f52;
  --gold-soft: #f6e6cf;
  --rose: #c47a6a;
  --shadow-sm: 0 1px 2px rgba(44, 36, 24, 0.05), 0 2px 8px rgba(44, 36, 24, 0.05);
  --shadow-md: 0 4px 12px rgba(44, 36, 24, 0.08), 0 12px 32px rgba(44, 36, 24, 0.06);
  --shadow-lg: 0 8px 24px rgba(44, 36, 24, 0.1), 0 24px 64px rgba(44, 36, 24, 0.08);
  --shadow-glow: 0 10px 40px rgba(107, 142, 111, 0.15);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 36px;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--green-deep); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--gold-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.13;
  letter-spacing: -0.018em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 3.8rem); font-weight: 500; }
h1 em, h2 em { font-style: italic; color: var(--green-deep); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 4.2vw, 2.8rem); }
h3 { font-size: 1.22rem; }

p { margin: 0 0 1em; }
ul { padding: 0; margin: 0; list-style: none; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin: 0 0 0.85em;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ DEMO BANNER (sticky top) ============ */
.demo-banner {
  background: linear-gradient(95deg, #2c2418 0%, #3d3322 100%);
  color: var(--bg);
  padding: 9px 0;
  font-size: 0.85rem;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(200, 155, 108, 0.3);
}
.demo-banner-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}
.demo-pill {
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  padding: 3px 10px;
  border-radius: 4px;
  flex-shrink: 0;
}
.demo-text {
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(250, 246, 239, 0.92);
}
.demo-text strong { color: var(--gold); font-weight: 600; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  padding: 13px 22px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn-lg {
  padding: 16px 30px;
  font-size: 1rem;
}
.btn-full { width: 100%; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 600;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--ink);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.brand-stack {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-text {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink);
}
.brand-sub {
  font-size: 0.74rem;
  color: var(--ink-light);
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  border-radius: 1px;
  transition: transform 0.2s ease;
}

/* ============ HERO ============ */
.hero {
  padding: clamp(56px, 8vw, 110px) 0 clamp(48px, 7vw, 80px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 155, 108, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  position: relative;
}
.hero-text h1 { margin-bottom: 0.55em; }
.hero-sub {
  font-size: 1.18rem;
  color: var(--ink-soft);
  margin-bottom: 2em;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1.6em;
}
.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--ink-light);
  margin: 0;
}
.hero-meta .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(107, 142, 111, 0.18);
  animation: pulse 2s infinite ease-in-out;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}
.hero-image {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--bg-accent);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-tag {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: var(--bg-card);
  padding: 12px 18px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}
.rating-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
}
.rating-text {
  font-size: 0.84rem;
  color: var(--ink-soft);
}
.rating-text strong { color: var(--ink); font-weight: 600; }

/* ============ TRUST STRIP ============ */
.trust {
  background: var(--ink);
  color: var(--bg);
  padding: 36px 0;
  border-top: 1px solid rgba(200, 155, 108, 0.2);
  border-bottom: 1px solid rgba(200, 155, 108, 0.2);
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.trust-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.trust-num small {
  font-size: 0.55em;
  color: rgba(200, 155, 108, 0.7);
  margin-left: 2px;
  letter-spacing: 0.03em;
}
.trust-label {
  font-size: 0.85rem;
  color: rgba(250, 246, 239, 0.72);
  letter-spacing: 0.01em;
  line-height: 1.4;
  max-width: 220px;
  margin: 0 auto;
}

/* ============ STORY ============ */
.story {
  padding: clamp(72px, 10vw, 120px) 0;
}
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.story-image {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--bg);
  border-radius: var(--r-md);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.story-badge-num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.story-badge-sub {
  font-size: 0.78rem;
  color: var(--ink-light);
  letter-spacing: 0.04em;
}
.story-text h2 { margin-bottom: 0.85em; }
.story-text p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.72;
}
.signature {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink);
  font-size: 1.08rem;
  margin-top: 1.5em;
  padding-top: 1.5em;
  border-top: 1px solid var(--line);
}
.story-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 2.2em;
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 16px;
  background: var(--bg-warm);
  border-radius: var(--r-md);
  text-align: center;
  border: 1px solid var(--line-soft);
}
.pillar-icon {
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.pillar strong {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ink);
  font-weight: 600;
}
.pillar span {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* ============ SERVICES ============ */
.services {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--bg-accent);
  position: relative;
}
.section-head {
  max-width: 700px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 { margin-bottom: 0.6em; }
.section-sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.65;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.service-tag {
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--green-deep);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
}
.service-card h3 {
  font-size: 1.18rem;
  margin: 0;
}
.service-price {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ink-light);
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.service-price strong {
  color: var(--green-deep);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.service-price span {
  font-size: 0.85rem;
  margin-left: 4px;
}
.service-desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.55;
}
.service-inc {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-top: 4px;
}
.service-inc li {
  position: relative;
  padding-left: 20px;
}
.service-inc li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-deep);
  font-weight: 600;
}
.service-card-feature {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.service-card-feature:hover { border-color: var(--gold); }
.service-card-feature h3 { color: var(--bg); }
.service-card-feature .service-price {
  color: rgba(250, 246, 239, 0.6);
  border-bottom-color: rgba(250, 246, 239, 0.15);
}
.service-card-feature .service-price strong { color: var(--gold); }
.service-card-feature .service-desc { color: rgba(250, 246, 239, 0.82); }
.service-quote {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
}
.service-quote:hover { color: var(--gold-soft); }

.service-card-cta {
  background: linear-gradient(140deg, var(--green) 0%, var(--green-deep) 100%);
  color: var(--bg);
  border-color: var(--green-deep);
  text-align: center;
  gap: 10px;
}
.service-card-cta:hover { border-color: var(--gold); }
.service-card-cta h3 { color: var(--bg); }
.service-card-cta p { color: rgba(250, 246, 239, 0.92); font-size: 0.95rem; }
.service-card-cta .btn-primary {
  background: var(--bg);
  color: var(--green-deep);
  border-color: var(--bg);
  margin-top: 6px;
}
.service-card-cta .btn-primary:hover {
  background: var(--ink);
  color: var(--bg);
}
.service-card-cta .btn-ghost {
  background: transparent;
  color: var(--bg);
  border-color: rgba(250, 246, 239, 0.5);
}
.service-card-cta .btn-ghost:hover {
  background: var(--bg);
  color: var(--green-deep);
}
.service-or {
  font-size: 0.78rem;
  color: rgba(250, 246, 239, 0.7);
  letter-spacing: 0.04em;
}

/* Pricing FAQ block */
.pricing-faq {
  max-width: 780px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow-sm);
}
.pricing-faq h3 {
  font-size: 1.4rem;
  margin-bottom: 0.7em;
}
.pricing-faq p { color: var(--ink-soft); }
.pricing-factors {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 22px;
}
.pricing-factors li {
  padding-left: 22px;
  position: relative;
  color: var(--ink-soft);
  line-height: 1.55;
}
.pricing-factors li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.pricing-promise {
  background: var(--green-soft);
  border-left: 3px solid var(--green);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 0;
  color: var(--ink);
}
.pricing-promise em { color: var(--green-deep); font-style: italic; }

/* ============ BOOK ============ */
.book {
  padding: clamp(72px, 10vw, 120px) 0;
}
.book-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: flex-start;
}
.book-text h2 { margin-bottom: 0.7em; }
.book-text > p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.book-perks {
  margin-top: 1.6em;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.book-perks li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.perk-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.book-perks li div {
  display: flex;
  flex-direction: column;
}
.book-perks li strong {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  color: var(--ink);
  font-weight: 600;
}
.book-perks li span {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.book-alt {
  margin-top: 1.8em;
  font-size: 0.95rem;
  color: var(--ink-light);
}
.book-alt a { font-weight: 600; }

.book-form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.book-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.005em;
}
.form-label em.req {
  color: var(--rose);
  font-style: normal;
  margin-left: 2px;
}
.form-help {
  font-size: 0.8rem;
  color: var(--ink-light);
  margin-top: 2px;
}
.book-form input,
.book-form select,
.book-form textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 13px 14px;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  resize: vertical;
}
.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(107, 142, 111, 0.18);
}
.book-form .full { width: 100%; }
.form-fineprint {
  font-size: 0.85rem;
  color: var(--ink-light);
  text-align: center;
  margin: 0;
}

.book-success {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 56px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.success-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  background: var(--green);
  color: var(--bg);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.2rem;
  font-weight: 600;
}
.book-success h3 { font-size: 1.5rem; }
.book-success p { color: var(--ink-soft); margin-bottom: 20px; }

/* ============ REVIEWS ============ */
.reviews {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--ink);
  color: var(--bg);
}
.reviews .eyebrow { color: var(--gold); }
.reviews h2 { color: var(--bg); }
.reviews .section-sub { color: rgba(250, 246, 239, 0.7); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: rgba(250, 246, 239, 0.04);
  border: 1px solid rgba(250, 246, 239, 0.1);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.review:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 155, 108, 0.4);
}
.review-wide { grid-column: span 2; }
.stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 2.5px;
}
.review p {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--bg);
  margin: 0;
  font-style: italic;
}
.review cite {
  font-style: normal;
  font-size: 0.88rem;
  color: rgba(250, 246, 239, 0.55);
  letter-spacing: 0.02em;
}
.reviews-note {
  text-align: center;
  color: rgba(250, 246, 239, 0.45);
  font-size: 0.85rem;
  margin-top: 36px;
}

/* ============ FAQ ============ */
.faq {
  padding: clamp(72px, 10vw, 110px) 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 22px;
  transition: border-color 0.18s ease;
}
.faq-item[open] { border-color: var(--green); }
.faq-item summary {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 1.5rem;
  color: var(--green-deep);
  font-weight: 400;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin: 12px 0 4px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ============ VISIT ============ */
.visit {
  padding: clamp(72px, 10vw, 110px) 0;
  background: var(--bg-warm);
}
.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
.visit-text h2 { margin-bottom: 0.5em; }
.visit-info {
  margin: 28px 0 30px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px 20px;
}
.visit-info dt {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  padding-top: 2px;
}
.visit-info dd {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
}
.visit-info .closed {
  color: var(--ink-light);
  font-size: 0.9rem;
  display: inline-block;
  margin-top: 4px;
}
.visit-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.visit-map {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3.2;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-accent);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.visit-map:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.visit-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.95);
}
.visit-map-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--bg-card);
  border-radius: var(--r-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
}
.map-pin { font-size: 1.7rem; line-height: 1; }
.map-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  line-height: 1.3;
}
.map-text strong {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ink);
}
.map-text span {
  font-size: 0.85rem;
  color: var(--ink-light);
}
.map-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-deep);
  white-space: nowrap;
}

/* ============ FINAL CTA ============ */
.final-cta {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 155, 108, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.final-cta .eyebrow { color: var(--gold); }
.final-cta h2 { color: var(--bg); margin-bottom: 0.4em; }
.final-cta p { color: rgba(250, 246, 239, 0.78); font-size: 1.1rem; margin-bottom: 1.8em; }
.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.final-cta .btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.final-cta .btn-primary:hover {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}
.final-cta .btn-ghost {
  background: transparent;
  color: var(--bg);
  border-color: rgba(250, 246, 239, 0.6);
}
.final-cta .btn-ghost:hover {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-accent);
  padding: 56px 0 28px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.footer-col strong {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-col a { color: var(--ink-soft); }
.footer-col a:hover { color: var(--green-deep); }
.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--ink-light);
  text-align: center;
}
.footer-demo {
  background: var(--ink);
  color: var(--gold-soft);
  padding: 10px 16px;
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  line-height: 1.5;
}
.footer-demo strong { color: var(--gold); }
.footer-demo a { color: var(--gold); font-weight: 600; text-decoration: underline; }

/* ============ FLOATING DEMO BADGE ============ */
.demo-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 16px;
  padding: 12px 18px 12px 14px;
  box-shadow: 0 10px 32px rgba(44, 36, 24, 0.25);
  border: 1.5px solid var(--gold);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 320px;
}
.demo-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(44, 36, 24, 0.3);
  color: var(--bg);
}
.demo-float-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.demo-float-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.demo-float-text strong {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
}
.demo-float-text span {
  font-size: 0.76rem;
  color: rgba(250, 246, 239, 0.75);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero-inner,
  .story-inner,
  .book-inner,
  .visit-inner {
    grid-template-columns: 1fr;
  }
  .hero-image {
    order: -1;
    aspect-ratio: 16 / 11;
  }
  .story-image,
  .visit-map {
    aspect-ratio: 16 / 11;
  }
  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .review-wide { grid-column: span 2; }
  .trust-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  body { font-size: 16px; }

  .demo-banner-inner {
    flex-direction: column;
    gap: 8px;
  }
  .demo-text { font-size: 0.78rem; }

  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-toggle { display: flex; }
  .brand-text { font-size: 0.95rem; }
  .brand-sub { font-size: 0.72rem; }
  .nav-inner { height: 68px; }

  .hero { padding-top: 36px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    padding-left: 16px;
    padding-right: 16px;
    gap: 0.4em;
    font-size: 0.95rem;
  }
  .hero-ctas .btn svg { width: 14px; height: 14px; flex-shrink: 0; }

  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review-wide { grid-column: span 1; }
  .story-pillars {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col { align-items: center; }
  .visit-ctas { flex-direction: column; }
  .visit-ctas .btn { width: 100%; }

  .demo-float {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}

/* ============ MOBILE NAV OPEN ============ */
.nav.open .nav-links {
  display: flex;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  flex-direction: column;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 16px 24px 20px;
  gap: 16px;
}
.nav.open .nav-cta {
  display: inline-flex;
  position: absolute;
  top: calc(68px + 175px);
  left: 24px;
  right: 24px;
  width: auto;
}
