/* ==========================================================================
   Nakama Pet Photography And Bakery — Global Stylesheet
   Design language taken from the approved design sample (Aug 2026).
   Edit design tokens below to adjust the whole site at once.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --cream:        #F1E7D3;   /* page background */
  --cream-soft:   #F7F0E2;   /* alt section background */
  --card:         #FBF6EA;   /* card background */
  --tan:          #DDA65B;   /* header band */
  --tan-soft:     #E8C08A;
  --brown:        #8A5A33;   /* primary accent / buttons */
  --brown-dark:   #6E4526;   /* button hover */
  --ribbon:       #9C6B3F;   /* section label ribbons */
  --footer:       #3E2A1A;   /* footer background */
  --ink:          #2E2013;   /* main text */
  --muted:        #6F5C48;   /* secondary text */
  --gold:         #E8A93C;   /* stars, highlights */
  --line:         #E5D8BE;   /* borders */
  --white:        #FFFFFF;

  /* Brand typefaces. The licensed faces are listed FIRST and used automatically
     once you activate them (see docs/FONTS.md). Until then the browser falls
     back to the closest free Google Font, so the site looks right today.
       Kudryashev Display -> Bodoni Moda   (high-contrast display serif)
       Caslon 540         -> Libre Caslon Text (a true Caslon revival)
       Mervale Script     -> Pinyon Script (vintage formal script)       */
  --font-display: "Kudryashev Display", "Kudryashev Display Sans", "Bodoni Moda", Georgia, serif;
  --font-body:    "Caslon 540", "Caslon540 BT", "Libre Caslon Text", Georgia, serif;
  --font-script:  "Mervale Script Pro", "Mervale Script", "Pinyon Script", cursive;

  --radius:       16px;
  --radius-lg:    24px;
  --shadow:       0 6px 24px rgba(62, 42, 26, 0.10);
  --shadow-soft:  0 3px 12px rgba(62, 42, 26, 0.07);
  --maxw:         1080px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;   /* Caslon runs small — slightly up for comfortable reading */
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--cream);
  /* subtle paw-pad dot pattern, echoing the mockup's background circles */
  background-image:
    radial-gradient(circle at 12% 20%, rgba(138, 90, 51, 0.045) 0 60px, transparent 61px),
    radial-gradient(circle at 78% 12%, rgba(138, 90, 51, 0.04) 0 46px, transparent 47px),
    radial-gradient(circle at 88% 62%, rgba(138, 90, 51, 0.045) 0 70px, transparent 71px),
    radial-gradient(circle at 22% 78%, rgba(138, 90, 51, 0.04) 0 52px, transparent 53px);
  background-attachment: fixed;
}
img, svg { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.18; margin: 0 0 0.5em; font-weight: 600; }
h1 { font-size: clamp(2.2rem, 5.5vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); letter-spacing: -0.005em; }
h3 { font-size: 1.28rem; }
p  { margin: 0 0 1em; }
a  { color: var(--brown); }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.muted { color: var(--muted); }
.center { text-align: center; }

/* ---------- Skip link (accessibility) ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--footer); color: #fff; padding: 10px 16px; z-index: 200;
}
.skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.site-header {
  background: var(--tan);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(62, 42, 26, 0.15);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 20px; max-width: var(--maxw); margin: 0 auto;
}
/* Header logo — emblem only, no wordmark text */
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 70px; width: auto; display: block; transition: transform 0.4s cubic-bezier(.2,.8,.3,1); }
.logo:hover img { transform: rotate(-4deg) scale(1.05); }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  text-decoration: none; color: var(--footer);
  font-weight: 600; font-size: 0.92rem;
  padding: 8px 12px; border-radius: 999px;
  transition: background 0.2s;
}
.site-nav a:hover { background: rgba(255, 255, 255, 0.35); }
.site-nav a.active { background: rgba(255, 255, 255, 0.55); }
.site-nav a.btn { color: #fff; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  padding: 8px; border-radius: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 3px; background: var(--footer);
  margin: 5px 0; border-radius: 2px; transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 12px 24px; border-radius: 10px; border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, transform 0.1s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brown); color: #fff; }
.btn-primary:hover { background: var(--brown-dark); }
.btn-secondary { background: transparent; color: var(--brown); border-color: var(--brown); }
.btn-secondary:hover { background: var(--brown); color: #fff; }
.btn-light { background: var(--card); color: var(--brown); }
.btn-light:hover { background: #fff; }

/* ---------- Ribbon section labels (from mockup) ---------- */
.ribbon {
  display: inline-block; position: relative;
  background: var(--ribbon); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 6px 18px 6px 14px;
}
.ribbon::after {
  content: ""; position: absolute; right: -10px; top: 0;
  border-top: 13px solid transparent; border-bottom: 13px solid transparent;
  border-left: 10px solid var(--ribbon);
}

/* ---------- Badges on image cards ---------- */
.badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(251, 246, 234, 0.95); color: var(--ink);
  font-size: 0.78rem; font-weight: 700;
  padding: 5px 12px; border-radius: 999px; box-shadow: var(--shadow-soft);
}

/* ---------- Hero ---------- */
.hero { padding: 56px 0 64px; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 48px; align-items: center;
}
.hero-media { position: relative; }
.hero-media .frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
}
.hero-chip {
  position: absolute; right: -14px; bottom: 22px;
  background: var(--card); border-radius: 14px; box-shadow: var(--shadow);
  padding: 10px 16px; font-size: 0.85rem; font-weight: 700; color: var(--footer);
  display: flex; align-items: center; gap: 8px;
}
.hero-copy .ribbon { margin-bottom: 18px; }
.hero-copy h1 { margin-bottom: 0.4em; }
.hero-copy p.lede { font-size: 1.05rem; color: var(--muted); margin-bottom: 1.6em; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Centered hero variant: copy stacked and centered, photo underneath */
.hero-centered { padding: 64px 0 72px; text-align: center; }
.hero-centered .hero-copy { max-width: 720px; margin: 0 auto; }
.hero-centered .hero-copy p.lede { font-size: 1.14rem; }
.hero-centered .hero-actions { justify-content: center; }
.hero-centered .hero-media {
  max-width: 900px; margin: 40px auto 0;
}
/* Buttons sit below the photo on the home page */
.hero-centered .hero-actions { margin-top: 34px; }
/* Crop the hero photo to a wide banner so the copy above stays the focus.
   Swap the ratio here if a portrait-orientation photo suits better. */
.hero-centered .hero-media .frame { aspect-ratio: 16 / 9; }
.hero-centered .hero-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-centered .hero-chip { right: 18px; bottom: 18px; }
@media (max-width: 640px) {
  .hero-centered { padding: 40px 0 52px; }
  .hero-centered .hero-media { margin-top: 32px; }
  .hero-centered .hero-chip { right: 10px; bottom: 10px; font-size: 0.78rem; padding: 8px 12px; }
}

/* ==========================================================================
   Animations — scroll reveals, hovers, ambient motion.
   Every effect is disabled under prefers-reduced-motion (bottom of file).
   ========================================================================== */

/* Scroll-reveal: elements marked data-anim start hidden, .is-visible plays them.
   js/main.js adds .is-visible via IntersectionObserver. The .no-js/.anim-ready
   guard means content stays visible if JavaScript never runs. */
.anim-ready [data-anim] { opacity: 0; will-change: opacity, transform; }
.anim-ready [data-anim="fade-up"]    { transform: translateY(26px); }
.anim-ready [data-anim="fade-down"]  { transform: translateY(-18px); }
.anim-ready [data-anim="fade-left"]  { transform: translateX(34px); }
.anim-ready [data-anim="fade-right"] { transform: translateX(-34px); }
.anim-ready [data-anim="zoom-in"]    { transform: scale(0.94); }

.anim-ready [data-anim].is-visible {
  opacity: 1; transform: none;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.22,.85,.3,1);
}
/* Stagger: delay steps of 90ms */
.anim-ready [data-anim-delay="1"].is-visible { transition-delay: 0.09s; }
.anim-ready [data-anim-delay="2"].is-visible { transition-delay: 0.18s; }
.anim-ready [data-anim-delay="3"].is-visible { transition-delay: 0.27s; }
.anim-ready [data-anim-delay="4"].is-visible { transition-delay: 0.36s; }
.anim-ready [data-anim-delay="5"].is-visible { transition-delay: 0.45s; }
.anim-ready [data-anim-delay="6"].is-visible { transition-delay: 0.54s; }

/* Header shrinks and deepens its shadow once the page scrolls */
.site-header {
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(62, 42, 26, 0.28); }
.site-header.scrolled .logo img { height: 48px; }
.logo img { transition: height 0.3s ease, transform 0.4s cubic-bezier(.2,.8,.3,1); }

/* Buttons lift and glow */
.btn { transition: background 0.25s, color 0.25s, transform 0.18s cubic-bezier(.2,.8,.3,1), box-shadow 0.25s; }
.btn-primary:hover, .btn-secondary:hover, .btn-light:hover {
  transform: translateY(-2px); box-shadow: 0 8px 18px rgba(62, 42, 26, 0.22);
}
.btn:active { transform: translateY(1px); box-shadow: none; }

/* Cards lift; their images gently zoom */
.service-card .media img, .menu-card .media img, .gallery-grid .frame img {
  transition: transform 0.6s cubic-bezier(.22,.85,.3,1);
}
.service-card:hover .media img,
.menu-card:hover .media img,
.gallery-grid .frame:hover img { transform: scale(1.06); }

.price-card, .menu-card, .value-tile, .step, .testimonial, .review-card {
  transition: transform 0.28s cubic-bezier(.2,.8,.3,1), box-shadow 0.28s;
}
.price-card:hover, .menu-card:hover, .value-tile:hover,
.step:hover, .testimonial:hover, .review-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow);
}
.price-card.featured:hover { transform: translateY(-7px); }

/* Service card arrow slides on hover */
.service-card .link::after { display: inline-block; transition: transform 0.25s ease; }
.service-card:hover .link::after { transform: translateX(5px); }

/* Ribbon labels brighten slightly on hover (no overflow clipping — the
   ::after arrow point must stay visible outside the box) */
.ribbon { transition: background 0.25s ease, transform 0.25s ease; }
.ribbon:hover { background: var(--brown); transform: translateX(2px); }
.ribbon::after { transition: border-left-color 0.25s ease; }
.ribbon:hover::after { border-left-color: var(--brown); }

/* Hero chip drifts like a slow float */
.hero-chip { animation: floaty 5s ease-in-out infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

/* Paw prints trot across the promise band */
.promise { position: relative; overflow: hidden; }
.promise::after {
  content: "🐾"; position: absolute; right: 22px; top: 18px;
  font-size: 1.6rem; opacity: 0.16; animation: trot 6s ease-in-out infinite;
}
@keyframes trot {
  0%, 100% { transform: translateX(0) rotate(0deg); opacity: 0.16; }
  50%      { transform: translateX(-14px) rotate(-10deg); opacity: 0.28; }
}

/* Form fields ease into focus */
.form-field input, .form-field select, .form-field textarea {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  box-shadow: 0 0 0 4px rgba(221, 166, 91, 0.25);
}

/* Stars twinkle in one by one when a review scrolls into view */
.anim-ready .stars.is-visible span {
  display: inline-block; animation: pop 0.4s cubic-bezier(.2,1.5,.4,1) backwards;
}
.anim-ready .stars.is-visible span:nth-child(1) { animation-delay: 0.05s; }
.anim-ready .stars.is-visible span:nth-child(2) { animation-delay: 0.13s; }
.anim-ready .stars.is-visible span:nth-child(3) { animation-delay: 0.21s; }
.anim-ready .stars.is-visible span:nth-child(4) { animation-delay: 0.29s; }
.anim-ready .stars.is-visible span:nth-child(5) { animation-delay: 0.37s; }
@keyframes pop {
  from { transform: scale(0) rotate(-40deg); opacity: 0; }
  to   { transform: scale(1) rotate(0); opacity: 1; }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero { padding: 52px 0 36px; text-align: center; }
.page-hero .ribbon { margin-bottom: 16px; }
.page-hero p { max-width: 640px; margin: 0 auto; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: 56px 0; }
.section-head { text-align: center; margin-bottom: 40px; }
.section-head .ribbon { margin-bottom: 14px; }

/* ---------- Service cards (home) ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--card); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card .media { position: relative; aspect-ratio: 16 / 10; }
.service-card .media img, .service-card .media svg { width: 100%; height: 100%; object-fit: cover; }
.service-card .body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: 0.35em; }
.service-card p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.service-card .link {
  font-weight: 700; text-decoration: none; font-size: 0.92rem;
}
.service-card .link::after { content: " →"; }

/* ---------- Commitment / promise band ---------- */
.promise {
  background: var(--cream-soft); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 48px 40px; box-shadow: var(--shadow-soft);
}
.value-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.value-tile {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 18px; text-align: center;
  font-weight: 600; font-size: 0.95rem;
}
.value-tile .icon { font-size: 1.5rem; display: block; margin-bottom: 10px; }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial {
  background: var(--card); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-soft); position: relative;
}
.testimonial .quote-mark {
  position: absolute; top: -14px; left: 22px;
  background: #BFD9E8; width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.testimonial .who { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.testimonial .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--tan-soft); color: var(--footer);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-display); font-size: 1.1rem;
}
.testimonial .who strong { display: block; font-size: 0.98rem; }
.testimonial .who span { font-size: 0.82rem; color: var(--muted); }
.testimonial p { font-size: 0.95rem; }
.stars { color: var(--gold); letter-spacing: 3px; font-size: 0.95rem; }

/* ---------- Live reviews (Google widget + Rover) ---------- */
.reviews-tabs {
  display: flex; gap: 8px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 28px;
}
.reviews-tab {
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 700;
  background: var(--card); color: var(--muted);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 22px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}
.reviews-tab:hover { transform: translateY(-2px); border-color: var(--tan); }
.reviews-tab[aria-selected="true"] {
  background: var(--brown); color: #fff; border-color: var(--brown);
}
.reviews-panel[hidden] { display: none; }
.reviews-panel { animation: panelIn 0.45s ease; }
@keyframes panelIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.reviews-source-note {
  text-align: center; font-size: 0.88rem; color: var(--muted); margin-top: 18px;
}
/* Container the Google review widget renders into */
#google-reviews-widget { min-height: 60px; }
.widget-placeholder {
  background: var(--cream-soft); border: 2px dashed var(--line);
  border-radius: var(--radius-lg); padding: 34px 26px; text-align: center;
  color: var(--muted); font-size: 0.94rem;
}
.widget-placeholder strong { color: var(--ink); display: block; margin-bottom: 6px; font-size: 1.05rem; }
.widget-placeholder code {
  background: var(--card); border: 1px solid var(--line); border-radius: 6px;
  padding: 2px 7px; font-size: 0.85em;
}
.review-card {
  background: var(--card); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-soft); border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.review-card .who { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-card .avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: 0 0 auto;
  background: var(--tan-soft); color: var(--footer);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-display); font-size: 1.05rem;
}
.review-card .who strong { display: block; font-size: 0.98rem; }
.review-card .who span { font-size: 0.82rem; color: var(--muted); }
.review-card p { font-size: 0.96rem; flex: 1; }
.source-badge {
  align-self: flex-start; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 999px; margin-top: 12px;
}
.source-badge.rover  { background: #E4F0E4; color: #2F6B3A; }
.source-badge.google { background: #E6EEF9; color: #2A5599; }
.reviews-cta { text-align: center; margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Generic two-column feature ---------- */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.feature-grid .frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); position: relative; }

/* ---------- Pricing cards ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.price-card {
  background: var(--card); border-radius: var(--radius-lg); padding: 30px 26px;
  box-shadow: var(--shadow-soft); border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.price-card.featured { border: 2px solid var(--tan); }
.price-card .tag {
  align-self: flex-start; background: var(--tan); color: var(--footer);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 14px;
}
.price-card .price { font-family: var(--font-display); font-size: 1.9rem; color: var(--brown); margin: 6px 0 2px; }
.price-card .price small { font-size: 0.9rem; color: var(--muted); font-family: var(--font-body); }
.price-card ul { padding-left: 20px; margin: 14px 0 22px; color: var(--muted); font-size: 0.93rem; flex: 1; }
.price-card ul li { margin-bottom: 6px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; counter-reset: step; }
.step { background: var(--card); border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow-soft); }
.step::before {
  counter-increment: step; content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--tan); color: var(--footer);
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.08rem; }
.step p { font-size: 0.92rem; color: var(--muted); margin: 0; }

/* ---------- Menu (bakery) ---------- */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.menu-card {
  background: var(--card); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-soft); display: flex; flex-direction: column;
}
.menu-card .media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.menu-card .media img { width: 100%; height: 100%; object-fit: cover; }
.menu-card .body { padding: 20px 22px 24px; flex: 1; }
.menu-card .row { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.menu-card .price { font-weight: 700; color: var(--brown); white-space: nowrap; }
.menu-card p { color: var(--muted); font-size: 0.92rem; margin: 6px 0 0; }

/* ---------- Small feature pills (menu tags) ---------- */
.pill {
  display: inline-block; background: var(--cream-soft); border: 1px solid var(--line);
  color: var(--muted); font-size: 0.72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 999px; margin: 8px 6px 0 0;
}
.menu-subhead {
  font-family: var(--font-display); font-size: 1.4rem;
  margin: 40px 0 18px; display: flex; align-items: center; gap: 10px;
}
.menu-subhead:first-of-type { margin-top: 0; }

/* ---------- Notice / info box ---------- */
.notice {
  background: var(--cream-soft); border-left: 4px solid var(--tan);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px; font-size: 0.93rem; color: var(--muted);
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--card); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow-soft); border: 1px solid var(--line);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: 0.9rem; }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 11px 14px;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--tan); border-color: var(--tan);
}
.form-actions { margin-top: 22px; }
.hidden { display: none !important; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--brown); color: #fff; border-radius: var(--radius-lg);
  padding: 44px 40px; text-align: center; box-shadow: var(--shadow);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.85); max-width: 560px; margin: 0 auto 24px; }

/* ---------- Calendly embed ---------- */
.calendly-wrap {
  background: var(--card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft); border: 1px solid var(--line);
  overflow: hidden; padding: 8px;
}
.calendly-inline-widget { min-width: 280px; height: 680px; }

/* ---------- Contact info list ---------- */
.contact-list { list-style: none; padding: 0; margin: 0 0 24px; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.contact-list .ico { flex: 0 0 auto; font-size: 1.1rem; }
.contact-list a { text-decoration: none; font-weight: 600; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-grid .frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); position: relative; }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer); color: #E9DCC8; margin-top: 72px; }
.footer-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 48px 20px 28px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px;
}
.footer-inner h4 { color: #fff; font-size: 1.05rem; margin-bottom: 14px; }
.footer-logo { font-family: var(--font-display); font-size: 1.6rem; color: #fff; text-decoration: none; display: inline-block; }
.footer-logo img { height: 110px; width: auto; margin-bottom: 6px; }
.footer-inner p { font-size: 0.9rem; color: #CBB89D; }
.footer-inner ul { list-style: none; padding: 0; margin: 0; }
.footer-inner ul li { margin-bottom: 8px; }
.footer-inner ul a { color: #E9DCC8; text-decoration: none; font-size: 0.92rem; }
.footer-inner ul a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center; padding: 18px 20px; font-size: 0.82rem; color: #A98F6F;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .feature-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .value-tiles { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-chip { right: 8px; }
}
@media (max-width: 640px) {
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--tan);
    flex-direction: column; align-items: stretch; padding: 10px 16px 18px;
    box-shadow: 0 8px 16px rgba(62, 42, 26, 0.2);
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 14px; }
  .nav-toggle { display: block; }
  .logo img { height: 54px; }
  .services-grid, .gallery-grid, .form-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .promise, .cta-band, .form-card { padding: 30px 22px; }
}

/* ==========================================================================
   Reduced motion — honour the visitor's OS setting.
   Everything still appears, it just appears instantly.
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .anim-ready [data-anim] { opacity: 1 !important; transform: none !important; }
  .hero-chip, .promise::after { animation: none !important; }
}

/* Screen-reader-only text (visible to assistive tech and search engines,
   not shown on screen). Used for the home page's descriptive subtitle. */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* Footer column headings — h2 for a correct document outline, styled small */
.footer-inner .footer-head {
  color: #fff; font-size: 1.05rem; margin-bottom: 14px;
  font-family: var(--font-display); line-height: 1.2;
}

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); margin-bottom: 12px;
  box-shadow: var(--shadow-soft); overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item summary {
  cursor: pointer; padding: 18px 22px; font-weight: 700;
  font-family: var(--font-display); font-size: 1.08rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.5rem; color: var(--brown);
  transition: transform 0.25s ease; line-height: 1; flex: 0 0 auto;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 22px 20px; margin: 0; color: var(--muted); font-size: 0.97rem; }

/* ---------- Pricing tables ---------- */
.tbl-wrap {
  overflow-x: auto; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.price-table { width: 100%; border-collapse: collapse; min-width: 620px; }
.price-table th {
  text-align: left; font-family: var(--font-body);
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--muted);
  padding: 15px 18px; border-bottom: 1px solid var(--line);
  background: var(--cream-soft);
}
.price-table td {
  padding: 15px 18px; border-bottom: 1px solid var(--line-soft, #EFE6D2);
  font-size: 0.94rem; color: var(--muted); vertical-align: top;
}
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table td strong { color: var(--ink); font-weight: 700; }
.price-table .right { text-align: right; }
.price-table .price-cell {
  font-family: var(--font-display); font-size: 1.3rem;
  color: var(--brown); white-space: nowrap; font-weight: 600;
}
.price-table .price-cell.free { color: #2E7D5B; font-size: 1.15rem; }
.price-table tr.highlight { background: rgba(221, 166, 91, 0.11); }
.price-table tr.free-row { background: rgba(46, 125, 91, 0.07); }
.price-table tr:hover { background: rgba(221, 166, 91, 0.07); }
.tag-inline {
  display: inline-block; background: var(--tan); color: var(--footer);
  font-size: 0.63rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 3px 9px; border-radius: 999px;
  margin-left: 7px; vertical-align: middle;
}
.tag-inline.free { background: #CDE7D8; color: #205C42; }

/* ---------- Fee cards (pricing page) ---------- */
.fees-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px; margin-top: 22px;
}
.fee-card {
  background: var(--card); border: 1px solid var(--line);
  border-left: 4px solid var(--tan); border-radius: var(--radius);
  padding: 18px 20px; box-shadow: var(--shadow-soft);
}
.fee-card .fee-amount {
  display: block; font-family: var(--font-display); font-size: 1.6rem;
  color: var(--brown); font-weight: 600; line-height: 1;
}
.fee-card strong { display: block; margin: 6px 0 4px; font-size: 1rem; }
.fee-card p { margin: 0; font-size: 0.88rem; color: var(--muted); }
.price-table .price-cell.ask { color: var(--muted); font-size: 1rem; font-style: italic; }
.menu-card .price.ask { color: var(--muted); font-style: italic; font-weight: 600; }

/* Rate detail line under a price card's headline figure */
.price-card .rate-line {
  font-size: 0.86rem; color: var(--muted);
  margin: -2px 0 12px; padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.price-card .rate-line strong { color: var(--ink); }

/* Treat weight line and tier label on the bakery menu */
.menu-card .weight-note {
  font-size: 0.78rem; color: var(--muted);
  margin: -2px 0 10px; letter-spacing: 0.01em;
}
.menu-subhead .tier-note {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  color: var(--muted); letter-spacing: 0.02em; margin-left: 4px;
}
@media (max-width: 640px) {
  .menu-subhead { flex-wrap: wrap; }
  .menu-subhead .tier-note { flex-basis: 100%; margin-left: 0; }
}

/* Ingredient list on a treat card */
.menu-card .ingredients {
  font-size: 0.83rem; color: var(--muted); line-height: 1.5;
  background: var(--cream-soft); border: 1px solid var(--line);
  border-radius: 10px; padding: 10px 13px; margin: 0 0 12px;
}
.menu-card .ingredients strong { color: var(--ink); font-weight: 700; }
