  [hidden] { display: none !important; }

  :root {
    --cream: #f7f2ea;
    --cream-dark: #efe6d8;
    --surface: #ffffff;
    --ink: #4a3826;
    --text: #4a3826;
    --text-light: #6b5440;
    --rust: #b6592f;
    --rust-dark: #9a4623;
    --olive: #6b7a4f;
    --line: #e0d5c0;
    color-scheme: light;
  }
  :root[data-theme="dark"] {
    --cream: #1c1712;
    --cream-dark: #241d16;
    --surface: #29221a;
    --text: #f0e6d8;
    --text-light: #c3b3a0;
    --rust: #d97a4d;
    --rust-dark: #e69569;
    --olive: #9caf7c;
    --line: #3c3125;
    color-scheme: dark;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.5;
  }

  a { color: inherit; }

  .wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

  /* Header */
  header {
    position: sticky; top: 0; z-index: 50;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px;
    max-width: 1080px; margin: 0 auto;
  }
  .logo {
    font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em;
    text-decoration: none; color: var(--text);
  }
  .logo span { color: var(--rust); }
  nav ul {
    list-style: none; display: flex; gap: 28px; margin: 0; padding: 0;
  }
  nav ul li a {
    text-decoration: none; color: var(--text-light); font-weight: 500; font-size: 0.95rem;
  }
  nav ul li a:hover { color: var(--rust); }
  nav ul li a.nav-cta {
    background: var(--rust); color: #fff; padding: 8px 16px; border-radius: 999px;
  }
  nav ul li a.nav-cta:hover { background: var(--rust-dark); color: #fff; }
  .nav-right { display: flex; align-items: center; gap: 16px; }
  .nav-phone {
    display: none;
  }
  @media (min-width: 720px) {
    .nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--text); text-decoration: none; }
  }
  .theme-toggle-btn {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1.5px solid var(--line); background: var(--surface); color: var(--text);
    font-size: 1.05rem; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0; flex-shrink: 0;
  }
  .theme-toggle-btn:hover { border-color: var(--rust); }
  .mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text); }

  @media (max-width: 720px) {
    nav ul { display: none; }
    .mobile-menu-btn { display: block; }
  }

  /* Hero */
  .hero {
    background: linear-gradient(180deg, var(--cream-dark), var(--cream));
    padding: 64px 24px 56px;
  }
  .hero-inner {
    max-width: 1080px; margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
  }
  @media (max-width: 800px) {
    .hero-inner { grid-template-columns: 1fr; }
  }
  .eyebrow {
    text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem;
    color: var(--olive); font-weight: 700; margin-bottom: 12px;
  }
  h1 {
    font-size: clamp(2rem, 4.5vw, 3rem); margin: 0 0 16px; line-height: 1.1;
  }
  .hero p.lead {
    font-size: 1.15rem; color: var(--text-light); max-width: 46ch; margin: 0 0 28px;
  }
  .btn {
    display: inline-block; padding: 14px 26px; border-radius: 999px;
    background: var(--rust); color: #fff; text-decoration: none; font-weight: 600;
    transition: background 0.15s ease;
  }
  .btn:hover { background: var(--rust-dark); }
  .btn-outline {
    display: inline-block; padding: 12px 24px; border-radius: 999px;
    border: 1.5px solid var(--text); color: var(--text); text-decoration: none; font-weight: 600;
    margin-left: 12px;
  }
  .btn-outline:hover { background: var(--ink); color: #fff; }
  .btn-row { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }

  .badge-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 20px; }

  .google-rating {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px 8px 10px;
    background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
    text-decoration: none; color: var(--text);
    font-size: 0.9rem;
  }
  .google-rating:hover { border-color: var(--rust); }
  .google-g { width: 18px; height: 18px; flex-shrink: 0; }
  .google-stars { color: #f4b400; letter-spacing: 1px; font-size: 0.95rem; }
  .google-rating-text { color: var(--text-light); }
  .google-rating-text strong { color: var(--text); }

  .hero-photo {
    width: 100%;
    border-radius: 18px;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
  }

  /* Sections */
  section { padding: 64px 0; }
  .section-title {
    font-size: 2rem; margin: 0 0 8px;
  }
  .section-sub {
    color: var(--text-light); margin: 0 0 40px; max-width: 60ch;
  }

  /* Services */
  .services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }
  .service-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 24px;
    display: flex; flex-direction: column;
  }
  .service-card .icon {
    font-size: 1.6rem; margin-bottom: 12px; display: block;
  }
  .service-card h3 { margin: 0 0 8px; font-size: 1.1rem; }
  .service-card p { margin: 0; color: var(--text-light); font-size: 0.95rem; }
  .service-card .price { margin-top: auto; padding-top: 12px; font-weight: 700; color: var(--rust); }

  /* Booking */
  .booking-toggle {
    display: inline-flex; gap: 4px; padding: 4px;
    background: var(--cream-dark); border-radius: 999px;
    margin-bottom: 28px;
  }
  .toggle-btn {
    border: none; background: transparent; cursor: pointer;
    padding: 10px 20px; border-radius: 999px;
    font-family: inherit; font-size: 0.95rem; font-weight: 600;
    color: var(--text-light);
  }
  .toggle-btn.active {
    background: var(--rust); color: #fff;
  }
  .booking-note {
    font-weight: 400; font-size: 0.85rem; opacity: 0.85;
  }
  .cal-embed-wrap {
    background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
    overflow: hidden; min-height: 650px;
  }
  .cal-embed-wrap > div { width: 100%; height: 650px; overflow: auto; }

  /* About */
  .about { background: var(--cream-dark); }
  .about-inner {
    display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center;
  }
  @media (max-width: 800px) { .about-inner { grid-template-columns: 1fr; } }
  .about-photo {
    width: 100%;
    border-radius: 18px; aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
  }
  .about p { color: var(--text-light); }

  /* Hours + Contact */
  .info-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  }
  @media (max-width: 800px) { .info-grid { grid-template-columns: 1fr; } }
  .hours-table { width: 100%; border-collapse: collapse; }
  .hours-table tr { border-bottom: 1px solid var(--line); }
  .hours-table td { padding: 10px 0; }
  .hours-table td:last-child { text-align: right; font-weight: 600; }
  .note {
    margin-top: 16px; font-size: 0.85rem; color: var(--text-light); font-style: italic;
  }
  .contact-card {
    background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 28px;
  }
  .contact-card .row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
  .contact-card .row:last-child { margin-bottom: 0; }
  .contact-card .row .icon { font-size: 1.2rem; }
  .contact-card a { text-decoration: none; font-weight: 600; color: var(--text); }
  .contact-card a:hover { color: var(--rust); }

  .map {
    margin-top: 40px; border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
  }
  .map iframe { display: block; width: 100%; height: 320px; border: 0; }

  /* CTA band */
  .cta-band {
    background: var(--ink); color: #fff; text-align: center; padding: 56px 24px;
  }
  .cta-band h2 { margin: 0 0 12px; font-size: 1.8rem; }
  .cta-band p { color: #d9cdbc; margin: 0 0 28px; }

  footer {
    padding: 32px 24px; text-align: center; color: var(--text-light); font-size: 0.9rem;
    border-top: 1px solid var(--line);
  }
  footer a { color: var(--text); font-weight: 600; text-decoration: none; }
  footer p { margin: 6px 0; }

  /* Cookie banner */
  .cookie-banner {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
    background: var(--surface); border-top: 1px solid var(--line);
    padding: 18px 24px; box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  }
  .cookie-banner-inner {
    max-width: 1080px; margin: 0 auto;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  }
  .cookie-banner p { margin: 0; color: var(--text-light); font-size: 0.9rem; max-width: 60ch; }
  .cookie-banner a { color: var(--text); text-decoration: underline; }
  .cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
  .cookie-banner-actions .btn { padding: 10px 18px; }
  .cookie-banner-actions .btn-outline { padding: 9px 16px; margin-left: 0; }

  /* Consent-gated embed placeholder */
  .consent-placeholder {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 14px; text-align: center; padding: 40px 24px;
    background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
    color: var(--text-light); font-size: 0.95rem;
  }
  .consent-placeholder p { max-width: 48ch; margin: 0; }
  .consent-placeholder .btn { font-size: 0.9rem; padding: 10px 20px; }

  /* Legal pages */
  .legal { max-width: 760px; margin: 0 auto; padding: 48px 24px 64px; }
  .legal h1 { font-size: 2rem; margin: 0 0 8px; }
  .legal .updated { color: var(--text-light); font-size: 0.85rem; margin: 0 0 32px; }
  .legal h2 { font-size: 1.2rem; margin: 32px 0 10px; }
  .legal p, .legal li { color: var(--text-light); line-height: 1.7; }
  .legal ul { padding-left: 20px; }
  .legal a { color: var(--text); }

  /* Announcement banner (from Google Sheet) */
  .announcement-banner {
    background: var(--olive); color: #fff; text-align: center;
    padding: 10px 24px; font-size: 0.9rem; font-weight: 600;
  }

  /* Drop-in status badge (from Google Sheet) */
  .dropin-badge {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 8px 14px; border-radius: 999px;
    font-size: 0.85rem; font-weight: 700;
  }
  .dropin-badge::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  }
  .dropin-badge.dropin-open { background: rgba(107, 122, 79, 0.15); color: var(--olive); }
  .dropin-badge.dropin-open::before { background: var(--olive); }
  .dropin-badge.dropin-closed { background: rgba(182, 89, 47, 0.15); color: var(--rust); }
  .dropin-badge.dropin-closed::before { background: var(--rust); }
