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

  :root {
    --ivory: #FAF7F2;
    --warm-white: #FDFBF7;
    --beige: #F0EAE0;
    --taupe: #C8B89A;
    --gold: #B89A6A;
    --gold-light: #D4B88A;
    --gold-muted: #9C8055;
    --charcoal: #2C2A26;
    --charcoal-soft: #4A4640;
    --text-muted: #8A8278;
    --sage: #8E9E88;
    --sage-light: #C8D4C4;
    --border: rgba(184,154,106,0.2);
    --border-soft: rgba(184,154,106,0.12);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    background: var(--warm-white);
    color: var(--charcoal);
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4, .serif { font-family: 'Cormorant Garamond', Georgia, serif; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(253,251,247,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-soft);
    padding: 0 2rem;
    height: 70px;
    display: flex; align-items: center; justify-content: space-between;
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--charcoal);
    text-decoration: none;
  }
  .nav-logo span { color: var(--gold); }

  .nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal-soft);
    text-decoration: none;
    transition: color 0.25s;
  }
  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    font-size: 0.72rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.14em !important;
    padding: 0.6rem 1.6rem;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    border-radius: 2px;
    transition: all 0.25s !important;
  }
  .nav-cta:hover { background: var(--gold) !important; color: var(--warm-white) !important; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    padding-top: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--ivory);
    overflow: hidden;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 5rem 6rem 7rem;
  }

  .hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    display: flex; align-items: center; gap: 1rem;
  }
  .hero-eyebrow::before {
    content: '';
    display: block; width: 36px; height: 1px;
    background: var(--gold);
  }

  .hero h1 {
    font-size: clamp(3rem, 4.5vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 1.75rem;
    letter-spacing: -0.01em;
  }
  .hero h1 em { font-style: italic; color: var(--gold-muted); }

  .hero-sub {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 400px;
    margin-bottom: 3rem;
  }

  .hero-actions { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }

  .btn-primary {
    display: inline-block;
    background: var(--charcoal);
    color: var(--warm-white);
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s;
  }
  .btn-primary:hover { background: var(--gold-muted); }

  .btn-outline {
    display: inline-block;
    color: var(--charcoal-soft);
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 1rem 0;
    text-decoration: none;
    border-bottom: 1px solid var(--taupe);
    transition: all 0.3s;
  }
  .btn-outline:hover { color: var(--gold); border-color: var(--gold); }

  .hero-image {
    position: relative;
    overflow: hidden;
    background: var(--beige);
  }

  .hero-img-fill {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Placeholder image for hero (warm kitchen feel) */
  .hero-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(160deg, #E8DFD0 0%, #D4C4AE 40%, #C0AB90 100%);
    display: flex; align-items: flex-end; padding: 3rem;
  }
  .hero-badge {
    background: rgba(253,251,247,0.9);
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--gold);
  }
  .hero-badge p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.4;
  }
  .hero-badge span {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-top: 0.5rem;
  }

  /* ── MARQUEE ── */
  .marquee-bar {
    background: var(--charcoal);
    padding: 0.9rem 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .marquee-inner {
    display: inline-flex; gap: 4rem;
    animation: marquee 30s linear infinite;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.06em;
    color: var(--taupe);
  }
  .marquee-inner span { color: var(--gold); margin: 0 1rem; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ── SECTIONS GENERAL ── */
  section { padding: 7rem 0; }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
  .container-narrow { max-width: 780px; margin: 0 auto; padding: 0 2.5rem; }

  .section-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    display: flex; align-items: center; gap: 0.75rem;
  }
  .section-label::after {
    content: '';
    display: block; width: 28px; height: 1px;
    background: var(--gold);
  }

  .section-title {
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--charcoal);
    letter-spacing: -0.01em;
  }
  .section-title em { font-style: italic; color: var(--gold-muted); }

  /* ── INTRO ── */
  .intro-section { background: var(--warm-white); }
  .intro-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 7rem; align-items: center; }

  .intro-image-wrap {
    position: relative;
  }
  .intro-photo {
    width: 100%; aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
  }
  .intro-photo-placeholder {
    width: 100%; aspect-ratio: 4/5;
    background: linear-gradient(145deg, #D8CEBC 0%, #C4B49A 100%);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .intro-photo-placeholder::after {
    content: 'Rebecca\'s photo\00000a goes here';
    white-space: pre;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(44,42,38,0.4);
  }

  .intro-accent {
    position: absolute;
    bottom: -1.5rem; right: -1.5rem;
    width: 60%;
    aspect-ratio: 1;
    border: 1px solid var(--gold);
    border-radius: 2px;
    z-index: -1;
  }

  .intro-content { }
  .intro-content p {
    color: var(--charcoal-soft);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
  }
  .intro-signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    font-style: italic;
    color: var(--gold-muted);
    margin-top: 2rem;
  }

  /* ── OFFER ── */
  .offer-section { background: var(--ivory); }
  .offer-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 6rem; align-items: center; }

  .offer-img-wrap { position: relative; }
  .offer-img-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .offer-img {
    aspect-ratio: 3/4; background: var(--beige); border-radius: 3px;
    display: flex; align-items: flex-end; padding: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 0.9rem; color: rgba(44,42,38,0.4);
  }
  .offer-img:first-child { margin-top: 2.5rem; background: #D0C4B0; }
  .offer-img:last-child { margin-bottom: 2.5rem; background: #BEB0A0; }

  .offer-content .section-title { margin-bottom: 2rem; }
  .offer-content p { color: var(--charcoal-soft); margin-bottom: 1.5rem; font-size: 1.05rem; }

  .kitchen-quote {
    border-left: 3px solid var(--gold);
    padding: 1.25rem 1.75rem;
    margin: 2.5rem 0;
    background: var(--beige);
    border-radius: 0 3px 3px 0;
  }
  .kitchen-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 300;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.5;
    margin: 0;
  }

  /* ── SERVICES ── */
  .services-section { background: var(--warm-white); }
  .services-section .section-title { margin-bottom: 0.75rem; }
  .services-sub {
    color: var(--text-muted); font-size: 1rem;
    max-width: 500px; margin-bottom: 4rem;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5px;
    border: 1.5px solid var(--border);
  }

  .service-card {
    background: var(--warm-white);
    padding: 2.75rem 2.5rem;
    border: 1.5px solid var(--border);
    margin: -1.5px;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--gold);
    transition: height 0.35s ease;
  }
  .service-card:hover { background: var(--ivory); }
  .service-card:hover::before { height: 100%; }

  .service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--taupe);
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
  }

  .service-card h3 {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    line-height: 1.3;
  }
  .service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* ── BEFORE / AFTER ── */
  .ba-section { background: var(--ivory); }
  .ba-header { text-align: center; max-width: 600px; margin: 0 auto 5rem; }
  .ba-header .section-label { justify-content: center; }
  .ba-header .section-label::after { display: none; }
  .ba-header .section-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }

  .ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .ba-card { position: relative; }
  .ba-img {
    width: 100%; aspect-ratio: 4/5;
    object-fit: cover; display: block; border-radius: 3px;
  }
  .ba-img-placeholder {
    width: 100%; aspect-ratio: 4/5;
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
  }
  .ba-img-placeholder.before { background: linear-gradient(145deg, #C8B89A 0%, #B0A080 100%); }
  .ba-img-placeholder.after { background: linear-gradient(145deg, #D4C8B4 0%, #C0AE96 100%); }
  .ba-img-placeholder p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 1rem;
    color: rgba(44,42,38,0.45); text-align: center;
  }

  .ba-label {
    position: absolute; top: 1.5rem; left: 1.5rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--warm-white);
    color: var(--charcoal-soft);
    padding: 0.45rem 1rem;
    border-radius: 2px;
  }

  .ba-cta { text-align: center; margin-top: 3.5rem; }

  /* ── FEELINGS ── */
  .feelings-section { background: var(--charcoal); }
  .feelings-section .section-label { color: var(--taupe); }
  .feelings-section .section-label::after { background: var(--taupe); }
  .feelings-section .section-title { color: var(--ivory); }
  .feelings-section .section-title em { color: var(--gold-light); }

  .feelings-header { max-width: 700px; margin-bottom: 5rem; }
  .feelings-desc { color: rgba(250,247,242,0.55); margin-top: 1.5rem; font-size: 1rem; max-width: 560px; }

  .feelings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1px; }

  .feeling-item {
    padding: 2.5rem 2rem;
    border: 1px solid rgba(184,154,106,0.15);
    text-align: center;
    transition: background 0.3s;
  }
  .feeling-item:hover { background: rgba(184,154,106,0.08); }
  .feeling-word {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    color: var(--taupe);
    display: block; margin-bottom: 0.5rem;
  }
  .feeling-item:hover .feeling-word { color: var(--gold-light); }
  .feeling-desc {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(200,184,154,0.4);
  }

  /* ── PRICING ── */
  .pricing-section { background: var(--warm-white); }
  .pricing-center { text-align: center; }
  .pricing-center .section-label { justify-content: center; }
  .pricing-center .section-label::after { display: none; }
  .pricing-center .section-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }

  .pricing-box {
    display: inline-block;
    margin-top: 4rem;
    border: 1px solid var(--border);
    padding: 4rem 5rem;
    text-align: center;
    position: relative;
  }
  .pricing-box::before, .pricing-box::after {
    content: '';
    position: absolute;
    width: 40px; height: 40px;
    border-color: var(--gold);
    border-style: solid;
  }
  .pricing-box::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
  .pricing-box::after { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

  .pricing-from {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
  }
  .pricing-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    font-weight: 300;
    line-height: 1;
    color: var(--charcoal);
  }
  .pricing-per {
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
  }
  .pricing-note-small {
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    color: var(--taupe);
  }
  .pricing-divider { width: 1px; height: 40px; background: var(--border); margin: 2rem auto; }
  .pricing-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 380px;
    line-height: 1.7;
  }

  /* ── FAQ ── */
  .faq-section { background: var(--ivory); }
  .faq-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 7rem; }
  .faq-sidebar { }
  .faq-sidebar p { color: var(--text-muted); margin-top: 1.5rem; margin-bottom: 2.5rem; }

  .faq-list { }
  .faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.75rem 0;
  }
  .faq-item:first-child { border-top: 1px solid var(--border); }
  .faq-q {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem;
  }
  .faq-q span { flex: 1; }
  .faq-toggle {
    font-family: 'Jost', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0; margin-top: 2px;
    transition: transform 0.3s;
  }
  .faq-item.open .faq-toggle { transform: rotate(45deg); }
  .faq-a {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.75;
    display: none;
  }
  .faq-item.open .faq-a { display: block; }

  /* ── CTA BANNER ── */
  .cta-section { background: var(--beige); text-align: center; padding: 8rem 0; }
  .cta-section .section-label { justify-content: center; }
  .cta-section .section-label::after { display: none; }
  .cta-section .section-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.25rem, 4vw, 4rem);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.2;
    margin: 1.5rem auto 2rem;
    max-width: 700px;
  }
  .cta-title em { font-style: italic; color: var(--gold-muted); }
  .cta-sub { color: var(--text-muted); margin-bottom: 3rem; max-width: 500px; margin-left: auto; margin-right: auto; }

  /* ── BOOKING FORM ── */
  .booking-section { background: var(--warm-white); }
  .booking-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 7rem; align-items: start; }
  .booking-info { padding-top: 1rem; }
  .booking-info p { color: var(--text-muted); margin: 1.5rem 0; }

  .booking-detail {
    margin-top: 3rem;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
  }
  .booking-detail h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 1rem;
  }
  .booking-detail ul { list-style: none; }
  .booking-detail li {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
    border-bottom: 1px solid var(--border-soft);
  }
  .booking-detail li::before {
    content: '—';
    position: absolute; left: 0;
    color: var(--gold); font-size: 0.7rem;
    top: 0.6rem;
  }

  .booking-form { }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { margin-bottom: 1.25rem; }
  .form-group label {
    display: block;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 0.9rem 1.1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--charcoal);
    transition: border-color 0.25s;
    outline: none;
    -webkit-appearance: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--gold); }
  .form-group textarea { resize: vertical; min-height: 100px; }

  .file-upload {
    border: 1px dashed var(--taupe);
    border-radius: 2px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s;
  }
  .file-upload:hover { border-color: var(--gold); background: var(--ivory); }
  .file-upload p { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.25rem; }
  .file-upload .icon { font-size: 1.5rem; color: var(--taupe); margin-bottom: 0.5rem; }

  .form-submit {
    width: 100%;
    background: var(--charcoal);
    color: var(--warm-white);
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1.1rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 1rem;
  }
  .form-submit:hover { background: var(--gold-muted); }

  .form-privacy {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--charcoal);
    padding: 5rem 0 3rem;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
  }

  .footer-brand .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--ivory);
    margin-bottom: 0.25rem;
  }
  .footer-brand .tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.82rem;
    font-weight: 300;
    font-style: italic;
    color: var(--taupe);
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
  }
  .footer-brand .brand-words {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(200,184,154,0.4);
  }
  .footer-brand p {
    font-size: 0.85rem;
    color: rgba(200,184,154,0.5);
    line-height: 1.7;
    max-width: 280px;
    margin-top: 1.5rem;
  }

  .footer-col h5 {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 1.5rem;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 0.75rem; }
  .footer-col a {
    font-size: 0.88rem;
    color: rgba(250,247,242,0.45);
    text-decoration: none;
    transition: color 0.25s;
  }
  .footer-col a:hover { color: var(--gold-light); }

  .footer-bottom {
    border-top: 1px solid rgba(184,154,106,0.12);
    padding-top: 2rem;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-bottom p {
    font-size: 0.75rem;
    color: rgba(200,184,154,0.3);
  }
  .footer-insta {
    font-size: 0.75rem;
    color: var(--taupe);
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: color 0.25s;
  }
  .footer-insta:hover { color: var(--gold-light); }

  .footer-admin {
    font-size: 0.65rem;
    color: var(--taupe);
    text-decoration: none;
    opacity: 0.4;
    letter-spacing: 0.06em;
    transition: opacity 0.25s;
  }
  .footer-admin:hover { opacity: 1; }

  /* ── DECORATIVE ELEMENTS ── */
  .gold-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    margin: 0 auto 3rem;
  }

  /* ── SCROLL ANIMATIONS ── */
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── BOOK PAGE ── */
  .book-hero {
    padding-top: calc(70px + 5rem);
    padding-bottom: 5rem;
    background: var(--ivory);
    text-align: center;
  }

  .schedule-section {
    background: var(--warm-white);
    padding: 5rem 0;
  }

  .step-label {
    display: flex;
    align-items: flex-start;
    gap: 1.75rem;
    margin-bottom: 3rem;
  }
  .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--border);
    line-height: 1;
    flex-shrink: 0;
    margin-top: -0.5rem;
  }

  .scheduler-placeholder {
    border: 1px dashed var(--taupe);
    border-radius: 4px;
    background: var(--ivory);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
  }
  .scheduler-placeholder-inner {
    text-align: center;
    max-width: 420px;
  }
  .scheduler-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    opacity: 0.5;
  }
  .scheduler-placeholder-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
  }
  .scheduler-placeholder-sub {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
  }

  @media (max-width: 900px) {
    .step-label { gap: 1rem; }
    .step-num { font-size: 2.5rem; }
  }

  @media (max-width: 480px) {
    .book-hero { padding-top: calc(70px + 3rem); padding-bottom: 3rem; }
    .step-label { flex-direction: column; gap: 0.5rem; }
    .step-num { font-size: 2rem; }
  }

  /* ── CALENDAR WIDGET ── */
  .cal-widget {
    background: var(--ivory);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem;
    max-width: 520px;
  }

  .cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
  }

  .cal-month-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: 0.02em;
  }

  .cal-nav {
    background: none;
    border: 1px solid var(--border);
    border-radius: 2px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 1rem;
    color: var(--charcoal-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }
  .cal-nav:hover { border-color: var(--gold); color: var(--gold); }

  .cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 0.5rem;
  }
  .cal-weekdays span {
    text-align: center;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.25rem 0;
  }

  .cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
  }

  .cal-day {
    aspect-ratio: 1;
    border: 1px solid transparent;
    border-radius: 2px;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    transition: all 0.2s;
    background: none;
    padding: 0;
  }
  .cal-day--empty { visibility: hidden; }
  .cal-day--past { color: rgba(44,42,38,0.2); }
  .cal-day--unavailable { color: rgba(44,42,38,0.25); }
  .cal-day--available {
    color: var(--charcoal);
    cursor: pointer;
    background: var(--warm-white);
    border-color: var(--border-soft);
  }
  .cal-day--available:hover { border-color: var(--gold); color: var(--gold); }
  .cal-day--selected {
    background: var(--gold) !important;
    color: var(--warm-white) !important;
    border-color: var(--gold) !important;
  }
  .cal-day--today { font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
  .cal-day--blocked { color: rgba(44,42,38,0.2); background: #f0e8e8; cursor: pointer; }
  .cal-day--blocked:hover { background: #e8d0d0; }

  .cal-loading {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 1.5rem 0;
    font-style: italic;
  }

  .slot-panel {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-soft);
  }
  .slot-panel-label {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
  }
  .slot-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .slot-btn {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 0.5rem 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    font-weight: 300;
    color: var(--charcoal);
    cursor: pointer;
    transition: all 0.2s;
  }
  .slot-btn:hover { border-color: var(--gold); color: var(--gold); }
  .slot-btn--selected {
    background: var(--charcoal) !important;
    border-color: var(--charcoal) !important;
    color: var(--warm-white) !important;
  }

  .cal-selection {
    margin-top: 1.25rem;
    padding: 0.85rem 1.25rem;
    background: var(--beige);
    border-left: 3px solid var(--gold);
    font-size: 0.82rem;
    color: var(--charcoal);
    border-radius: 0 2px 2px 0;
  }

  .slot-confirm-banner {
    background: var(--beige);
    border-left: 3px solid var(--gold);
    padding: 0.85rem 1.25rem;
    font-size: 0.85rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    border-radius: 0 2px 2px 0;
  }

  /* ── SCHEDULE SIDEBAR ── */
  .schedule-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .cal-widget { max-width: none; }

  .schedule-sidebar-photo-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/5;
  }

  .schedule-sidebar-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .schedule-sidebar-content {
    padding: 1.75rem 0 0;
  }

  .schedule-sidebar-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 300;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.6;
    border-left: 3px solid var(--gold);
    padding: 1rem 1.5rem;
    margin: 0 0 1.75rem;
    background: var(--ivory);
    border-radius: 0 3px 3px 0;
  }

  .schedule-sidebar-list {
    list-style: none;
    padding: 0;
  }
  .schedule-sidebar-list li {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
    border-bottom: 1px solid var(--border-soft);
  }
  .schedule-sidebar-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.7rem;
    top: 0.6rem;
  }

  @media (max-width: 900px) {
    .schedule-layout {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    .schedule-sidebar-photo-wrap {
      aspect-ratio: 3/2;
    }
    .schedule-sidebar-photo { object-position: center 20%; }
  }

  /* ── ADMIN ── */
  .admin-login-gate {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ivory);
    padding: 2rem;
    padding-top: 100px;
  }

  .admin-login-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    padding: 3rem 3.5rem;
    max-width: 420px;
    width: 100%;
    border-radius: 4px;
  }

  .admin-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--border);
  }

  .admin-tab {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    padding: 0.75rem 1.5rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
  }
  .admin-tab:hover { color: var(--charcoal); }
  .admin-tab--active { color: var(--gold); border-bottom-color: var(--gold); }

  .admin-bookings-table-wrap { overflow-x: auto; }

  .admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
  }
  .admin-table th {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
  }
  .admin-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-soft);
    vertical-align: top;
    color: var(--charcoal-soft);
  }
  .admin-table tr:hover td { background: var(--ivory); }

  .admin-cancel-btn {
    background: none;
    border: 1px solid rgba(192,57,43,0.3);
    border-radius: 2px;
    padding: 0.3rem 0.75rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c0392b;
    cursor: pointer;
    transition: all 0.2s;
  }
  .admin-cancel-btn:hover { background: #c0392b; color: white; }
  .admin-cancel-btn:disabled { opacity: 0.5; cursor: not-allowed; }

  .schedule-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-soft);
  }
  .schedule-day-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    font-size: 0.88rem;
    color: var(--charcoal-soft);
    cursor: pointer;
  }
  .schedule-day-label input[type="checkbox"] { accent-color: var(--gold); width: 15px; height: 15px; }
  .schedule-times { display: flex; gap: 1rem; align-items: flex-end; }
  .schedule-times input[type="time"] { width: 120px; }

  .admin-cal { max-width: 380px; }

  .blocked-date-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-soft);
    font-size: 0.85rem;
    color: var(--charcoal-soft);
    gap: 1rem;
  }

  @media (max-width: 900px) {
    .admin-cal { max-width: 100%; }
    #tab-block .container > div { grid-template-columns: 1fr; gap: 2.5rem; }
    .schedule-row { flex-wrap: wrap; gap: 0.75rem; }
    .admin-login-card { padding: 2rem 1.5rem; }
    .admin-tabs { overflow-x: auto; }
    .admin-tab { padding: 0.75rem 1rem; white-space: nowrap; }
  }

  /* ── PRICING COLS ── */
  .pricing-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }

  /* ── HAMBURGER ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--charcoal);
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* ── MOBILE ── */
  @media (max-width: 900px) {
    .nav-logo img { height: 38px !important; }
    .nav-hamburger { display: flex; }

    .nav-links {
      display: none;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      position: fixed;
      top: 70px; left: 0; right: 0;
      background: rgba(253,251,247,0.98);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-soft);
      padding: 1rem 2rem 1.5rem;
      z-index: 99;
      box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; border-bottom: 1px solid var(--border-soft); }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links a { display: block; padding: 0.9rem 0; font-size: 0.82rem; }
    .nav-links .nav-cta {
      margin-top: 0.5rem;
      display: inline-block !important;
      padding: 0.7rem 1.6rem !important;
      font-size: 0.72rem !important;
    }

    .hero { grid-template-columns: 1fr; }
    .hero-image { min-height: 60vw; order: -1; }
    .hero-quote-badge { display: none; }
    .hero-content { padding: 3rem 2rem; }

    .intro-grid, .offer-inner, .faq-layout, .booking-grid { grid-template-columns: 1fr; gap: 3rem; }
    .ba-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .intro-image-wrap { overflow: hidden; }
    .intro-accent { display: none; }

    .form-row { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .feelings-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    section { padding: 5rem 0; }
  }

  @media (max-width: 600px) {
    .feelings-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .pricing-box { padding: 3rem 1.75rem; }
    .pricing-cols { grid-template-columns: 1fr; gap: 1.5rem; }
    .pricing-cols > div:nth-child(2) {
      border-left: none !important;
      border-right: none !important;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 1.5rem 0 !important;
    }
  }

  @media (max-width: 480px) {
    .container, .container-narrow { padding: 0 1.25rem; }
    section { padding: 4rem 0; }
    .hero-content { padding: 2.5rem 1.25rem; }
    .hero-image { min-height: 260px; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .btn-primary { width: 100%; text-align: center; }
    .service-card { padding: 2rem 1.5rem; }
    .pricing-box { padding: 2.5rem 1.25rem; }
    .cta-section { padding: 5rem 0; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  }
