
  :root{
    --ink:#3A2E26;
    --blush:#F3D9C4;
    --sage:#74875A;
    --linen:#FBF3E7;
    --gold:#C1673C;
    --white:#FFFFFF;
    --ink-soft:#6E5A4C;
    --sienna:#8B5E45;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--linen);
    color:var(--ink);
    font-family:'Public Sans', sans-serif;
    font-weight:400;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,.serif{ font-family:'Fraunces', serif; font-weight:500; letter-spacing:-0.01em; }
  a{ color:inherit; text-decoration:none; }
  img{max-width:100%; display:block;}
  .wrap{ max-width:1120px; margin:0 auto; padding:0 32px; }
  @media(max-width:640px){ .wrap{padding:0 20px;} }

  /* ---------- NAV ---------- */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(245,239,230,0.88);
    backdrop-filter:blur(8px);
    border-bottom:1px solid rgba(58,46,38,0.08);
  }
  nav.wrap{ display:flex; align-items:center; justify-content:space-between; height:88px; }
  .brand{ font-family:'Fraunces', serif; font-size:1.15rem; font-weight:500; display:flex; align-items:center; }
  .brand span{ color:var(--sage); font-style:italic; }
  .brand img{ height:68px; width:auto; }
  .footer-logo{ height:64px; width:auto; opacity:0.9; margin:0 auto 12px; }
  .nav-links{ display:flex; gap:36px; font-size:0.92rem; }
  .nav-links a{ opacity:0.75; transition:opacity .2s; }
  .nav-links a:hover{ opacity:1; }
  .nav-cta{
    background:var(--gold); color:var(--white); padding:10px 22px;
    border-radius:100px; font-size:0.88rem; transition:background .2s;
  }
  .nav-cta:hover{ background:var(--sienna); }
  .nav-toggle{ display:none; }
  @media(max-width:800px){
    .nav-links{
      display:none; position:absolute; top:100%; left:0; right:0;
      background:var(--linen); flex-direction:column; gap:0;
      border-bottom:1px solid rgba(58,46,38,0.1);
      box-shadow:0 12px 24px rgba(58,46,38,0.08);
    }
    .nav-links.open{ display:flex; }
    .nav-links a{ padding:16px 24px; border-top:1px solid rgba(58,46,38,0.06); opacity:1; }
    .nav-toggle{
      display:flex; align-items:center; justify-content:center;
      width:40px; height:40px; background:none; border:none;
      font-size:1.6rem; color:var(--ink); cursor:pointer;
    }
    .nav-cta{ padding:8px 16px; font-size:0.8rem; }
  }

  /* ---------- HERO ---------- */
  .hero{ position:relative; overflow:hidden; padding:110px 0 90px; }
  .glow{
    position:absolute; top:-180px; right:-160px; width:520px; height:520px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(193,103,60,0.3) 0%, rgba(243,217,196,0.3) 45%, rgba(251,243,231,0) 70%);
    animation:breathe 7s ease-in-out infinite;
    pointer-events:none;
  }
  .glow-sage{
    position:absolute; bottom:-140px; left:-140px; width:420px; height:420px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(116,135,90,0.28) 0%, rgba(116,135,90,0.1) 50%, rgba(251,243,231,0) 70%);
    animation:breathe 8s ease-in-out infinite 1s;
    pointer-events:none;
  }
  @keyframes breathe{ 0%,100%{ transform:scale(1); } 50%{ transform:scale(1.12); } }
  .hero-inner{ position:relative; max-width:680px; }
  .hero-grid{ position:relative; display:grid; grid-template-columns:1.1fr 0.9fr; gap:48px; align-items:center; }
  @media(max-width:860px){ .hero-grid{ grid-template-columns:1fr; } }
  .hero-photo{ position:relative; }
  .hero-photo img{
    width:100%; aspect-ratio:3/4; object-fit:cover; border-radius:20px;
    box-shadow:0 24px 60px rgba(58,46,38,0.18);
  }
  @media(max-width:860px){ .hero-photo{ max-width:340px; margin:0 auto; } }
  .eyebrow{ font-size:0.82rem; letter-spacing:0.08em; text-transform:uppercase; color:var(--sage); font-weight:600; margin-bottom:20px; }
  .hero h1{ font-size:clamp(2.4rem, 5vw, 3.6rem); line-height:1.08; margin-bottom:24px; }
  .hero h1 em{ color:var(--ink-soft); font-style:italic; }
  .hero p.lede{ font-size:1.15rem; color:var(--ink-soft); max-width:520px; margin-bottom:36px; }
  .cta-row{ display:flex; gap:16px; flex-wrap:wrap; }
  .btn{
    display:inline-flex; align-items:center; gap:8px;
    padding:14px 28px; border-radius:100px; font-size:0.95rem; font-weight:500;
    transition:all .2s ease; cursor:pointer; border:1px solid transparent;
  }
  .btn-primary{ background:var(--gold); color:var(--white); }
  .btn-primary:hover{ background:var(--sienna); transform:translateY(-1px); }
  .btn-outline{ border-color:var(--ink); color:var(--ink); }
  .btn-outline:hover{ background:var(--ink); color:var(--white); }

  /* ---------- WAVE DIVIDER (rocking motion) ---------- */
  .wave{ width:100%; height:48px; display:block; }
  .wave path{ stroke:var(--sage); stroke-width:1.5; fill:none; opacity:0.5; }

  /* ---------- INTERIOR PAGE HERO ---------- */
  .page-hero{ padding:70px 0 40px; }
  .page-hero h1{ font-size:clamp(2rem, 4vw, 2.8rem); margin:14px 0 16px; }
  .page-hero .lede{ font-size:1.05rem; color:var(--ink-soft); max-width:520px; }
  .contact-page{ border-radius:0; margin-top:0; }
  .contact-photo-block{ display:flex; flex-direction:column; gap:24px; }
  .contact-photo{ width:140px; height:140px; border-radius:50%; object-fit:cover; border:3px solid var(--white); box-shadow:0 8px 20px rgba(58,46,38,0.15); }
  .calendly-frame{ background:var(--white); border-radius:18px; overflow:hidden; padding:8px; }
  .calendly-frame iframe{ border-radius:12px; display:block; }

  /* ---------- ABOUT ---------- */
  .about{ padding:90px 0; }
  .about-grid{ display:grid; grid-template-columns:1fr 1.1fr; gap:56px; align-items:start; }
  @media(max-width:800px){ .about-grid{ grid-template-columns:1fr; gap:36px; } }
  .photo-frame{
    aspect-ratio:4/5; border-radius:18px; background:linear-gradient(160deg, var(--blush), var(--sage) 60%, var(--gold));
    display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.85);
    font-family:'Fraunces', serif; font-style:italic; font-size:1rem; text-align:center; padding:20px;
    margin-top:38px;
  }
  .about h2{ font-size:2rem; margin-bottom:20px; }
  .about p{ color:var(--ink); margin-bottom:16px; }
  .credentials{ list-style:none; margin-top:28px; display:flex; flex-direction:column; gap:14px; }
  .credentials li{ display:flex; gap:12px; align-items:flex-start; font-size:0.95rem; }
  .credentials .dot{ width:7px; height:7px; border-radius:50%; background:var(--gold); margin-top:8px; flex-shrink:0; }

  /* ---------- ABOUT GALLERY ---------- */
  .about-gallery{ padding:0 0 90px; }
  .gallery-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; }
  @media(max-width:700px){ .gallery-grid{ grid-template-columns:1fr; } }
  .gallery-grid img{ width:100%; aspect-ratio:4/5; object-fit:cover; border-radius:18px; }

  /* ---------- SERVICES ---------- */
  .services{ padding:90px 0; background:var(--white); }
  .section-head{ max-width:560px; margin-bottom:56px; }
  .section-head .eyebrow{ margin-bottom:14px; }
  .section-head h2{ font-size:2.1rem; }
  .pkg-grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(250px, 1fr)); gap:24px; }
  @media(max-width:640px){ .pkg-grid{ grid-template-columns:1fr; } }
  .pkg-card{
    border:1px solid rgba(58,46,38,0.1); border-radius:18px; padding:36px 28px;
    display:flex; flex-direction:column; transition:transform .25s, box-shadow .25s;
    background:var(--linen);
  }
  .pkg-card.featured{ background:var(--gold); color:var(--white); border-color:var(--gold); }
  .pkg-card:hover{ transform:translateY(-6px); box-shadow:0 18px 40px rgba(58,46,38,0.12); }
  .pkg-name{ font-size:1.3rem; margin-bottom:8px; }
  .pkg-tag{ font-size:0.85rem; opacity:0.65; margin-bottom:24px; }
  .pkg-list{ list-style:none; display:flex; flex-direction:column; gap:12px; margin-bottom:32px; flex-grow:1; }
  .pkg-list li{ font-size:0.9rem; padding-left:20px; position:relative; }
  .pkg-text{ font-size:0.9rem; line-height:1.6; margin-bottom:14px; flex-grow:1; }
  .pkg-text:last-of-type{ margin-bottom:20px; }
  .pkg-list li::before{ content:'·'; position:absolute; left:0; opacity:0.6; font-size:1.2em; line-height:1; }
  .pkg-card .btn{ align-self:flex-start; }
  .pkg-card:not(.featured) .btn-outline{ border-color:var(--gold); color:var(--gold); }
  .pkg-card:not(.featured) .btn-outline:hover{ background:var(--gold); color:var(--white); }
  .pkg-card.featured .btn-outline{ border-color:var(--white); color:var(--white); }
  .pkg-card.featured .btn-outline:hover{ background:var(--white); color:var(--gold); }

  /* ---------- TESTIMONIALS ---------- */
  .testimonials{ padding:90px 0; }
  .t-grid{ display:flex; flex-direction:column; gap:24px; max-width:760px; margin:0 auto; }
  .t-card{ background:var(--white); border-radius:18px; padding:32px 28px; }
  .t-name{ font-family:'Fraunces', serif; font-size:1.1rem; font-weight:500; margin-bottom:4px; color:var(--sienna); }
  .t-role{ font-size:0.8rem; opacity:0.55; margin-bottom:14px; }
  .t-quote{ font-family:'Fraunces', serif; font-style:italic; font-size:1.05rem; color:var(--ink-soft); }
  .submit-review{
    background:var(--white); border-radius:24px; padding:48px;
    display:grid; grid-template-columns:0.9fr 1.1fr; gap:56px; align-items:center;
  }
  @media(max-width:800px){ .submit-review{ grid-template-columns:1fr; padding:32px 24px; } }
  .submit-review-text h2{ font-size:1.6rem; margin-bottom:14px; }
  .submit-review-text p{ color:var(--ink-soft); margin-bottom:14px; }
  .submit-review-text p:last-child{ margin-bottom:0; }
  .submit-review .form input, .submit-review .form textarea{
    background:var(--linen); border:1px solid rgba(58,46,38,0.12); color:var(--ink);
  }
  .submit-review .form input::placeholder, .submit-review .form textarea::placeholder{ color:rgba(58,46,38,0.4); }
  .submit-review .form button{ background:var(--gold); color:var(--white); }
  .submit-review .form-note{ opacity:0.5; }
  .consent{ display:flex; align-items:center; gap:8px; font-size:0.85rem; color:var(--ink-soft); }
  .consent input{ width:auto; }
  .contact-pref{ display:flex; flex-wrap:wrap; align-items:center; gap:16px; font-size:0.88rem; }
  .contact-pref-label{ font-size:0.78rem; text-transform:uppercase; letter-spacing:0.05em; opacity:0.6; width:100%; }
  .contact-pref label{ display:flex; align-items:center; gap:6px; }
  .contact-pref input{ width:auto; }

  /* ---------- CONTACT ---------- */
  .contact{
    padding:100px 0 110px; color:var(--ink); border-radius:32px 32px 0 0;
    background:linear-gradient(160deg, var(--blush) 0%, var(--linen) 55%);
  }
  .contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:64px; }
  @media(max-width:800px){ .contact-grid{ grid-template-columns:1fr; gap:40px; } }
  .contact h2{ font-size:2.2rem; margin-bottom:18px; }
  .contact p{ color:var(--ink-soft); margin-bottom:32px; max-width:420px; }
  .contact-options{ display:flex; flex-direction:column; gap:16px; }
  .contact-option{
    display:flex; align-items:center; justify-content:space-between;
    padding:18px 22px; border:1px solid rgba(58,46,38,0.15); border-radius:14px;
    transition:border-color .2s, background .2s;
  }
  .contact-option:hover{ border-color:var(--gold); background:rgba(255,255,255,0.5); }
  .contact-option strong{ font-family:'Fraunces', serif; font-weight:500; }
  .form{ display:flex; flex-direction:column; gap:14px; }
  .form input, .form textarea{
    background:var(--white); border:1px solid rgba(58,46,38,0.15);
    border-radius:10px; padding:14px 16px; color:var(--ink); font-family:inherit; font-size:0.92rem;
  }
  .form input::placeholder, .form textarea::placeholder{ color:rgba(58,46,38,0.4); }
  .form textarea{ min-height:110px; resize:vertical; }
  .form button{
    margin-top:6px; background:var(--gold); color:var(--white); border:none;
    padding:14px; border-radius:10px; font-weight:600; cursor:pointer; transition:opacity .2s;
  }
  .form button:hover{ opacity:0.85; }
  .form-note{ font-size:0.78rem; opacity:0.6; margin-top:4px; }

  footer{ background:var(--ink); color:rgba(255,255,255,0.6); text-align:center; padding:28px 0; font-size:0.82rem; }
  .footer-sub{ font-size:0.78rem; opacity:0.75; display:inline-block; margin-top:6px; }
  .footer-email{ font-size:1.8rem; color:rgba(255,255,255,0.85); display:inline-block; margin-top:12px; transition:color .2s; }
  .footer-email:hover{ color:var(--white); }
