  :root{
    --ink:#2B2624;        /* soft black — text */
    --paper:#F9EFEA;      /* blush ivory — page background */
    --rose:#C4897A;       /* rose gold — buttons, accents */
    --rose-deep:#A96E60;  /* deep rose hover */
    --petal:#F3DCD3;      /* petal — tinted surfaces */
    --porcelain:#F5E6DF;  /* porcelain rose — alternate sections */
    --cocoa:#3A2B26;      /* deep rosewood — form section */
    --muted:#8C7A72;      /* warm rose-gray — secondary text */
    --glass:rgba(58,43,38,.30);        /* dark glass fill */
    --glass-border:rgba(255,255,255,.35);
    --serif:'Fraunces', Georgia, serif;
    --sans:'Figtree', -apple-system, sans-serif;
  }
  *{margin:0;padding:0;box-sizing:border-box}
  html{scroll-behavior:smooth}
  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto}
    *,*::before,*::after{animation:none!important;transition:none!important}
  }
  body{
    font-family:var(--sans);background:var(--paper);color:var(--ink);
    font-size:17px;line-height:1.65;-webkit-font-smoothing:antialiased;
  }
  img{max-width:100%;display:block}
  a{color:inherit}

  /* ── Real &lt;img&gt; cover technique (so photos are real, indexable
     elements instead of CSS-only background-images) ───────────── */
  .cover-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}

  .wrap{max-width:1080px;margin:0 auto;padding:0 24px}
  .eyebrow{
    font-size:12px;letter-spacing:.22em;text-transform:uppercase;
    font-weight:600;color:var(--rose);margin-bottom:14px;
  }
  h1,h2,h3{font-family:var(--serif);font-weight:400;line-height:1.1}
  h1 em,h2 em{font-style:italic;font-weight:340;color:var(--rose)}
  h2{font-size:clamp(30px,5vw,44px);margin-bottom:16px}
  .lede{color:var(--muted);max-width:560px;font-size:18px}

  .btn{
    display:inline-block;background:var(--rose);color:#fff;
    font-family:var(--sans);font-weight:600;font-size:16px;
    padding:16px 32px;border:none;border-radius:999px;
    text-decoration:none;cursor:pointer;
    transition:background .2s ease, transform .15s ease;
  }
  .btn:hover{background:var(--rose-deep)}
  .btn:active{transform:scale(.98)}
  .btn:focus-visible{outline:3px solid var(--petal);outline-offset:2px}
  .btn-secondary{background:transparent;color:var(--rose);border:1.5px solid var(--rose)}
  .btn-secondary:hover{background:var(--rose);color:#fff}

  .glass{
    background:var(--glass);
    -webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);
    border:1px solid var(--glass-border);border-radius:16px;
  }

  /* ── Header (over hero) ─────────────────── */
  header{position:absolute;top:0;left:0;right:0;z-index:10;padding:20px 0}
  header .wrap{display:flex;justify-content:space-between;align-items:center}
  .logo{font-family:var(--serif);font-size:20px;color:#fff;letter-spacing:.02em;white-space:nowrap}
  .logo em{font-style:italic}
  .header-btn{
    background:rgba(255,255,255,.22);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);
    border:1px solid var(--glass-border);color:#fff;font-size:14px;font-weight:600;
    padding:10px 20px;border-radius:999px;text-decoration:none;transition:background .2s;
    white-space:nowrap;
  }
  .header-btn:hover{background:rgba(255,255,255,.32)}
  .header-btn .short{display:none}

  /* ── Hero ───────────────────────────────── */
  .hero{
    position:relative;min-height:92vh;display:flex;align-items:center;justify-content:flex-start;
    padding:110px 24px 70px 7vw;overflow:hidden;
    background:#B08D7C;
  }
  .hero-tint{
    position:absolute;inset:0;z-index:0;
    background-image:
      radial-gradient(ellipse 60% 50% at 78% 18%, rgba(221,176,160,.35) 0%, transparent 60%),
      radial-gradient(ellipse 55% 60% at 12% 82%, rgba(199,150,132,.4) 0%, transparent 65%),
      linear-gradient(160deg,rgba(207,160,144,.28),rgba(165,113,95,.35));
  }
  .hero-photo-mobile{display:none;position:relative;overflow:hidden}
  .hero-panel{position:relative;z-index:1;max-width:600px;text-align:center;padding:40px 36px;color:#fff}
  .hero-panel .eyebrow{color:var(--petal)}
  .hero-panel h1{font-size:clamp(34px,5.5vw,56px);color:#fff;margin-bottom:16px}
  .hero-panel h1 em{color:#fff}
  .hero-panel p{font-size:18px;color:rgba(255,255,255,.95);margin-bottom:24px}
  .hero-panel p strong{font-weight:600}
  .hero-micro{font-size:14px;color:rgba(255,255,255,.75);margin-top:12px}
  .hero-chips{
    position:absolute;bottom:26px;left:0;right:0;z-index:1;
    display:flex;justify-content:center;gap:10px;flex-wrap:wrap;padding:0 20px;
  }
  .chip{
    display:inline-flex;align-items:center;gap:7px;
    background:rgba(255,255,255,.95);
    border:1px solid rgba(255,255,255,.6);color:var(--ink);
    font-size:12px;letter-spacing:.1em;text-transform:uppercase;font-weight:700;
    padding:9px 18px;border-radius:999px;
    box-shadow:0 3px 10px rgba(30,20,15,.22);
  }
  .chip::before{content:"✓";color:var(--rose-deep);font-weight:700}

  /* ── Sections ───────────────────────────── */
  section{padding:84px 0}
  .alt{background:var(--porcelain)}
  .petal-bg{background:var(--petal)}
  .section-cta{text-align:center;margin-top:44px}
  .section-cta .kicker{font-family:var(--serif);font-style:italic;font-size:22px;margin-bottom:16px}

  /* ── Style cards ────────────────────────── */
  .styles-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:44px}
  .style-card{
    position:relative;aspect-ratio:3/4;border-radius:16px;overflow:hidden;
    border:none;cursor:pointer;padding:0;text-align:center;display:block;width:100%;
    background-size:cover;background-position:center;
    transition:transform .25s ease;
  }
  .style-card:hover{transform:translateY(-4px)}
  .style-card:focus-visible{outline:3px solid var(--rose);outline-offset:3px}
  .style-card.empowering{background:#A97E6F}
  .style-card.fashion{background:#8F675B}
  .style-card.express{background:#9C7264}
  .style-card.maternity{background:#B08373}
  .style-label{
    position:absolute;left:10px;right:10px;bottom:10px;padding:12px 10px;z-index:1;
    background:rgba(58,43,38,.32);
    -webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);
    border:1px solid var(--glass-border);border-radius:12px;
  }
  .style-label .name{font-family:var(--serif);font-size:19px;color:#fff;line-height:1.2}
  .style-label .go{font-size:13px;font-weight:600;color:var(--petal);margin-top:4px}

  /* ── Gallery ────────────────────────────── */
  .gallery{display:grid;grid-template-columns:repeat(3,1fr);grid-auto-rows:120px;gap:12px;margin-top:44px}
  .gallery div{position:relative;overflow:hidden;border-radius:14px}
  .g1{grid-row:span 2;background:#A5776A}
  .g2{grid-row:span 3;background:#8E655A}
  .g3{grid-row:span 2;background:#B28578}
  .g4{grid-row:span 3;background:#90675C}
  .g5{grid-row:span 2;background:#9A7063}
  .g6{grid-row:span 3;background:#B78A7C}
  .g7{grid-row:span 2;background:#A97E6F}
  .g8{grid-row:span 3;background:#9C7267}
  .g9{grid-row:span 3;background:#A8786B}
  .g10{grid-row:span 3;background:#8C645A}
  .g11{grid-row:span 3;background:#B4867A}
  .g12{grid-row:span 3;background:#96695E}

  /* ── Meet Nick ──────────────────────────── */
  .meet-grid{display:grid;grid-template-columns:280px 1fr;gap:44px;align-items:center;margin-top:36px}
  .meet-photo{position:relative;overflow:hidden;border-radius:16px;aspect-ratio:3/4;background:#A5776A}
  .meet-photo p{max-width:560px}

  /* ── Experience steps ───────────────────── */
  .steps{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:44px}
  .step{background:#fff;border-radius:16px;overflow:hidden}
  .step-photo{position:relative;overflow:hidden;height:130px}
  .s1{background:#B08D7C}
  .s2{background:#9D7466}
  .s3{background:#8F675B}
  .s4{background:#A87E70}
  .step-body{padding:18px 20px}
  .step-num{font-family:var(--serif);font-style:italic;color:var(--rose);font-size:20px}
  .step h3{font-size:18px;font-family:var(--sans);font-weight:600;margin:4px 0 6px}
  .step p{font-size:14.5px;color:var(--muted)}

  /* ── Quote band ─────────────────────────── */
  .band{
    position:relative;padding:90px 24px;text-align:center;overflow:hidden;
    background:#4A342B;
  }
  .band-tint{position:absolute;inset:0;z-index:0;background:linear-gradient(120deg,rgba(60,40,32,.6),rgba(40,28,22,.7))}
  .band-panel{position:relative;z-index:1;max-width:560px;margin:0 auto;padding:32px 30px;color:#fff}
  .band-panel .q{font-family:var(--serif);font-style:italic;font-size:clamp(22px,3.5vw,30px);line-height:1.35;margin-bottom:12px}
  .band-panel .a{font-size:13px;letter-spacing:.14em;text-transform:uppercase;color:rgba(255,255,255,.8);margin-bottom:20px}

  /* ── Included ───────────────────────────── */
  .included-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px 40px;margin-top:36px;max-width:760px}
  .included-item{display:flex;gap:14px;align-items:flex-start;font-size:16.5px}
  .included-item::before{content:"";flex:0 0 10px;height:10px;border-radius:50%;background:var(--rose);margin-top:9px}
  .price-note{margin-top:32px;color:var(--muted)}
  .price-note strong{color:var(--ink)}

  /* ── Testimonials ───────────────────────── */
  .quotes{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:44px}
  .quote{background:#fff;border:1px solid #e3e1de;border-radius:8px;padding:22px 24px;box-shadow:0 1px 2px rgba(30,20,15,.06)}
  .quote-head{display:flex;gap:12px;align-items:center;margin-bottom:10px}
  .avatar{position:relative;overflow:hidden;display:inline-block;width:44px;height:44px;border-radius:50%;flex-shrink:0}
  .t1{background:#A5776A}
  .t2{background:#8E655A}
  .t3{background:#B28578}
  .name-block{display:flex;flex-direction:column;gap:2px}
  .quote cite{font-style:normal;font-size:14.5px;color:var(--ink);font-weight:600}
  .quote .loc{font-size:12px;color:var(--muted)}
  .rating-row{display:flex;align-items:center;justify-content:space-between;margin:2px 0 12px}
  .stars{display:flex;gap:3px}
  .stars svg{width:15px;height:15px}
  .google-g{width:16px;height:16px;flex-shrink:0}
  .quote p{
    font-family:var(--sans);font-style:normal;font-size:14.5px;line-height:1.55;color:var(--ink);
    display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:4;overflow:hidden
  }
  .quote p.expanded{-webkit-line-clamp:unset;overflow:visible}
  .read-more{
    display:block;background:none;border:none;padding:0;margin-top:8px;
    color:var(--rose);font-family:var(--sans);font-weight:600;font-size:13px;cursor:pointer
  }
  .read-more:hover{color:var(--rose-deep)}

  /* ── FAQ ────────────────────────────────── */
  details{border-bottom:1px solid rgba(43,38,36,.14);padding:22px 4px}
  details:first-of-type{border-top:1px solid rgba(43,38,36,.14)}
  summary{
    font-family:var(--serif);font-size:21px;cursor:pointer;list-style:none;
    display:flex;justify-content:space-between;align-items:center;gap:16px;
  }
  summary::after{content:"+";font-size:26px;color:var(--rose);flex-shrink:0}
  details[open] summary::after{content:"–"}
  details p{margin-top:14px;color:var(--muted);max-width:640px}

  /* ── Form ───────────────────────────────── */
  .form-section{background:var(--cocoa);color:var(--paper)}
  .form-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start}
  .form-section h2{color:var(--paper)}
  .form-section h2 em{color:#E8BFAE}
  .form-section .eyebrow{color:var(--petal)}
  .form-section .lede{color:rgba(249,239,234,.72)}
  .form-perks{margin-top:26px;display:grid;gap:12px}
  .form-perks div{display:flex;gap:12px;align-items:baseline;font-size:15.5px;color:rgba(249,239,234,.85)}
  .form-perks div::before{content:"—";color:#E8BFAE}
  .phone-line{margin-top:30px;font-size:15px;color:rgba(249,239,234,.6)}
  .phone-line a{color:#E8BFAE;font-weight:600}
  .booking-month{margin-top:16px;font-size:14px;font-weight:600;letter-spacing:.02em;color:#E8BFAE}
  form{display:grid;gap:16px}
  label{font-size:13px;letter-spacing:.1em;text-transform:uppercase;font-weight:600;color:rgba(249,239,234,.7)}
  input,select{
    width:100%;padding:15px 16px;border-radius:10px;
    border:1px solid rgba(249,239,234,.25);background:rgba(249,239,234,.06);
    color:var(--paper);font-family:var(--sans);font-size:16px;
  }
  input::placeholder{color:rgba(249,239,234,.4)}
  input:focus,select:focus{outline:2px solid #E8BFAE;outline-offset:1px;border-color:transparent}
  select{appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23E8BFAE' stroke-width='2' fill='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 16px center}
  select option{color:var(--ink)}
  form .btn{width:100%;margin-top:4px}
  .form-fine{font-size:13.5px;color:rgba(249,239,234,.6);text-align:center}
  .thanks{display:none;text-align:center;padding:48px 12px}
  .thanks h3{font-family:var(--serif);font-size:32px;margin-bottom:14px}
  .thanks p{color:rgba(249,239,234,.75)}

  footer{background:var(--cocoa);padding:28px 0 110px;font-size:14px;color:rgba(249,239,234,.55);border-top:1px solid rgba(249,239,234,.12)}
  footer .wrap{display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap}
  footer a{color:rgba(249,239,234,.7)}

  /* ── Sticky mobile CTA ──────────────────── */
  .sticky-cta{
    position:fixed;bottom:0;left:0;right:0;z-index:60;
    display:none;gap:10px;padding:12px 16px;
    background:var(--paper);
    border-top:1px solid rgba(43,38,36,.16);
    box-shadow:0 -6px 20px rgba(43,38,36,.3);
  }
  .sticky-cta a{flex:1;text-align:center;padding:14px 10px;font-size:15px;font-weight:700}
  .sticky-cta .ghost{background:rgba(196,137,122,.14);color:var(--rose-deep);border:2px solid var(--rose-deep)}

  /* ── Mobile ─────────────────────────────── */
  @media (max-width:840px){
    header{padding:14px 0}
    .logo{font-size:15px}
    .header-btn{font-size:12px;padding:8px 14px}
    .header-btn .full{display:none}
    .header-btn .short{display:inline}
    section{padding:60px 0}
    /* Hero photo becomes the hero's own background banner: absolutely positioned
       behind the title, sized independently of document flow. .hero's padding-top
       (below) reserves the matching flow space so hero-desc/hero-chips start
       right after the photo instead of overlapping it. */
    .hero-photo-mobile{
      display:block;position:absolute;top:0;left:0;right:0;height:82vh;z-index:0;
      background-image:url('/images/confident-womens-portrait-photography-chicago-hero.jpg');
      background-size:auto 160%;background-position:87% top;
    }
    /* The div's background-image above is just a fallback; the real, visible
       photo is the indexable <img class="cover-img"> painted on top of it.
       object-fit:cover alone can't zoom past "fill the box", and a plain crop
       puts her face right where the headline needs to sit — so it's zoomed in
       further with a transform, anchored at the top (transform-origin y:0) so
       the extra headroom above her head grows too, pushing her face down and
       clear of the title instead of just cropping tighter around it in place. */
    .hero-photo-mobile img.cover-img{
      object-position:87% center;
      transform:scale(1.6);transform-origin:87% 0%;
    }
    .hero-photo-mobile::after{
      content:"";position:absolute;inset:0;
      background:linear-gradient(160deg,rgba(20,14,12,.66) 0%,rgba(20,14,12,.4) 26%,rgba(20,14,12,.08) 48%,rgba(20,14,12,0) 62%);
    }
    .hero{
      position:relative;
      min-height:auto;padding:82vh 18px 60px;justify-content:flex-start;flex-direction:column;
      background-image:linear-gradient(160deg,#CFA090,#A5715F);
    }
    .hero > img.cover-img{display:none}
    /* Mobile hero reorder: title overlaid on the photo (absolute, top-left), then
       the info box, then bullets. hero-panel's own box disappears (display:contents)
       so its two inner blocks (hero-title / hero-desc) become direct order-able
       flex/positioned children of .hero. */
    .hero-panel{display:contents}
    .hero-title{
      position:absolute;top:0;left:0;right:0;z-index:2;
      padding:52px 22px 0;max-width:600px;
    }
    .hero-desc{
      order:1;max-width:600px;margin-top:0;
      background:var(--glass);
      -webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);
      border:1px solid var(--glass-border);border-radius:16px;
      padding:28px 22px;
    }
    .hero-chips{position:static;margin-top:22px;bottom:auto;order:2}
    .styles-grid{grid-template-columns:1fr 1fr;gap:12px}
    .gallery{grid-template-columns:1fr 1fr;grid-auto-rows:110px;gap:10px}
    .g2,.g4,.g6,.g8,.g9,.g10,.g11,.g12{grid-row:span 2}
    .steps{grid-template-columns:1fr 1fr}
    .quotes{grid-template-columns:1fr}
    .included-grid{grid-template-columns:1fr}
    .form-grid{grid-template-columns:1fr;gap:40px}
    .sticky-cta.visible{display:flex}
    .chip{font-size:14px;padding:9px 16px}
    .meet-grid{grid-template-columns:1fr;gap:24px}
    .meet-photo{aspect-ratio:4/3;width:280px;margin:0 auto}
    .meet-photo img{object-position:50% 20%}
  }

  /* ═════════ Multi-page additions (2026-09) ═════════ */
  ::selection{background:var(--petal);color:var(--ink)}
  a:focus-visible,button:focus-visible,summary:focus-visible{outline:3px solid var(--rose-deep);outline-offset:3px;border-radius:4px}
  a.logo{text-decoration:none}
  header .wrap{max-width:1240px;gap:24px}
  header.on-hero{background:linear-gradient(180deg,rgba(28,18,14,.55) 0%,rgba(28,18,14,.22) 65%,rgba(28,18,14,0) 100%);padding-bottom:34px}
  .site-nav{display:flex;align-items:center;gap:28px}
  .nav-links{display:flex;gap:24px;list-style:none;align-items:center}
  .nav-links a{font-size:15px;font-weight:500;text-decoration:none;color:#fff;padding:6px 0;border-bottom:1.5px solid transparent;transition:border-color .2s ease}
  .nav-links a:hover,.nav-links a[aria-current="page"]{border-bottom-color:currentColor}
  .menu-toggle{display:none;width:44px;height:44px;border-radius:999px;border:1px solid var(--glass-border);background:rgba(255,255,255,.18);color:#fff;cursor:pointer;align-items:center;justify-content:center}
  .menu-toggle svg{width:20px;height:20px}
  .menu-toggle .i-close{display:none}
  header.nav-open .menu-toggle .i-open{display:none}
  header.nav-open .menu-toggle .i-close{display:block}

  /* Solid header for inner pages (no photo behind it) */
  header.solid{position:relative;background:var(--paper);border-bottom:1px solid rgba(43,38,36,.1)}
  header.solid .logo{color:var(--ink)}
  header.solid .logo em{color:var(--rose-deep)}
  header.solid .nav-links a{color:var(--ink)}
  header.solid .header-btn{background:var(--cocoa);border-color:var(--cocoa);color:var(--paper);-webkit-backdrop-filter:none;backdrop-filter:none}
  header.solid .header-btn:hover{background:#2A1E1A}
  header.solid .menu-toggle{border-color:rgba(43,38,36,.2);background:transparent;color:var(--ink)}

  @media (max-width:1180px){
    .menu-toggle{display:inline-flex}
    .site-nav{gap:10px}
    .nav-links{
      display:none;position:absolute;top:100%;left:0;right:0;z-index:20;
      flex-direction:column;align-items:stretch;gap:0;
      background:var(--cocoa);padding:8px 24px 24px;
      box-shadow:0 18px 30px rgba(30,20,15,.28);
    }
    header.nav-open .nav-links{display:flex}
    .nav-links a,header.solid .nav-links a{
      display:block;color:var(--paper);font-family:var(--serif);font-size:22px;font-weight:400;
      padding:14px 0;border-bottom:1px solid rgba(249,239,234,.12)
    }
    .nav-links a[aria-current="page"]{color:#E8BFAE;border-bottom-color:rgba(249,239,234,.12)}
  }

  /* Inner pages */
  .page-head{padding:56px 0 64px}
  .crumbs{font-size:14px;color:#6A5A53;margin-bottom:22px}
  .crumbs a{color:#6A5A53;text-underline-offset:3px}
  .crumbs span[aria-hidden]{margin:0 8px}
  .page-intro{display:grid;grid-template-columns:1.15fr .85fr;gap:56px;align-items:center}
  .page-head h1{font-size:clamp(38px,5.4vw,60px);margin-bottom:20px;text-wrap:balance}
  .page-head h1 em{font-style:italic;font-weight:340;color:var(--rose-deep)}
  .page .lede,.prose p,.page .step p,.page details p{color:#6A5A53}
  .page .form-section .lede{color:rgba(249,239,234,.72)}
  .page .lede{font-size:19px;max-width:600px}
  .page-head .btn{margin-top:28px}
  .intro-photo{position:relative;overflow:hidden;border-radius:16px;aspect-ratio:4/5;background:#A5776A}
  .page h2 em{color:var(--rose-deep)}
  .page section h2{text-wrap:balance}
  .prose{max-width:680px}
  .prose p{margin-bottom:18px;font-size:17.5px}
  .prose p:last-child{margin-bottom:0}
  .two-col{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:start;margin-top:36px}
  .use-list{list-style:none;display:grid;gap:0;margin-top:8px}
  .use-list li{padding:18px 0;border-top:1px solid rgba(43,38,36,.14)}
  .use-list li:last-child{border-bottom:1px solid rgba(43,38,36,.14)}
  .use-list strong{display:block;font-family:var(--serif);font-weight:400;font-size:22px;margin-bottom:4px}
  .use-list span{color:#6A5A53;font-size:16px}
  .photo-row{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:40px}
  .photo-row figure{position:relative;overflow:hidden;border-radius:14px;aspect-ratio:4/5;background:#A5776A}
  .price-block{margin-top:40px;padding:36px 0 0;border-top:1px solid rgba(43,38,36,.14);display:grid;grid-template-columns:auto 1fr;gap:40px;align-items:center;max-width:820px}
  .price-block .from{font-family:var(--serif);font-size:clamp(48px,7vw,76px);line-height:1;color:var(--ink)}
  .price-block .from small{display:block;font-family:var(--sans);font-size:14px;letter-spacing:.08em;text-transform:uppercase;color:#6A5A53;margin-bottom:8px}
  .price-block p{color:#6A5A53}
  .single-quote{max-width:760px;margin:0 auto;text-align:center}
  .single-quote blockquote{font-family:var(--serif);font-style:italic;font-size:clamp(22px,3vw,30px);line-height:1.4}
  .single-quote cite{display:block;margin-top:18px;font-style:normal;font-size:15px;font-weight:600;color:#6A5A53}
  .more-link{display:inline-block;margin-top:28px;font-weight:600;color:var(--rose-deep);text-underline-offset:4px}

  /* Style overview (pricing page) */
  .style-list{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:40px}
  .style-item figure{position:relative;overflow:hidden;border-radius:14px;aspect-ratio:3/4;background:#A5776A;margin-bottom:16px}
  .style-item h3{font-size:24px;margin-bottom:6px}
  .style-item p{font-size:15.5px;color:#6A5A53}
  .style-item button{margin-top:10px;background:none;border:none;padding:6px 0;font-family:var(--sans);font-weight:600;font-size:15px;color:var(--rose-deep);cursor:pointer;text-decoration:underline;text-underline-offset:4px}

  /* Gallery page */
  .jump{display:flex;flex-wrap:wrap;gap:10px;margin-top:28px}
  .jump a{font-size:15px;font-weight:600;text-decoration:none;padding:10px 18px;border-radius:999px;border:1.5px solid rgba(43,38,36,.2);color:var(--ink)}
  .jump a:hover{border-color:var(--ink)}
  .masonry{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:36px}
  .masonry figure{margin:0;border-radius:14px;overflow:hidden;background:#A5776A;aspect-ratio:4/5}
  .masonry img{width:100%;height:100%;object-fit:cover}
  .gallery-group + .gallery-group{margin-top:72px}
  .gallery-group h2{margin-bottom:8px}

  /* Contact */
  .contact-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:48px;align-items:stretch;margin-top:8px}
  .contact-card dl{display:grid;gap:26px}
  .contact-card dt{font-size:13px;letter-spacing:.1em;text-transform:uppercase;font-weight:600;color:#6A5A53;margin-bottom:6px}
  .contact-card dd{font-family:var(--serif);font-size:24px;line-height:1.35}
  .contact-card dd a{text-underline-offset:4px}
  .contact-card dd small{display:block;font-family:var(--sans);font-size:15.5px;color:#6A5A53;margin-top:4px}
  .map{border-radius:16px;overflow:hidden;min-height:380px;background:var(--petal)}
  .map iframe{width:100%;height:100%;min-height:380px;border:0;display:block}

  /* Footer (multi-page) */
  footer.site-footer{padding:56px 0 36px}
  .site-footer .foot-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:40px;width:100%}
  .site-footer .foot-brand{font-family:var(--serif);font-size:22px;color:var(--paper);margin-bottom:10px}
  .site-footer .foot-brand em{font-style:italic;color:#E8BFAE}
  .site-footer p{line-height:1.7}
  .site-footer h2{font-family:var(--sans);font-size:13px;letter-spacing:.1em;text-transform:uppercase;font-weight:600;color:rgba(249,239,234,.7);margin-bottom:12px}
  .site-footer ul{list-style:none;display:grid;gap:6px}
  .site-footer a{text-decoration:none;color:rgba(249,239,234,.82)}
  .site-footer a:hover{color:#fff;text-decoration:underline;text-underline-offset:3px}
  .site-footer .legal{margin-top:40px;padding-top:20px;border-top:1px solid rgba(249,239,234,.12);font-size:13.5px}

  @media (min-width:841px){
    /* Gallery: explicit columns so all three columns end level (11 rows each). */
    .gallery{grid-auto-flow:dense}
    .g1,.g4,.g8,.g11{grid-column:1}
    .g2,.g5,.g9,.g12{grid-column:2}
    .g3,.g6,.g7,.g10{grid-column:3}
    .g7{grid-row:span 3}
  }
  @media (max-width:840px){
    footer.site-footer{padding-bottom:110px}
    .page-head{padding:32px 0 48px}
    .page-intro,.two-col,.contact-grid{grid-template-columns:1fr;gap:32px}
    .intro-photo{aspect-ratio:4/3}
    .photo-row{grid-template-columns:1fr 1fr}
    .style-list{grid-template-columns:1fr 1fr;gap:20px 12px}
    .price-block{grid-template-columns:1fr;gap:16px}
    .site-footer .foot-grid{grid-template-columns:1fr 1fr}
    .site-footer .foot-grid > div:first-child{grid-column:1 / -1}
    .masonry{grid-template-columns:1fr 1fr;gap:10px}
  }
  @media (max-width:840px){
    header.on-hero{padding-bottom:20px}
    .hero-title{padding-top:80px}
    .menu-toggle{width:40px;height:40px}
  }
  /* Small-text links on light backgrounds need a darker rose than --rose-deep (AA) */
  .more-link,.style-item button{color:#8A5445}
  .page .form-section h2 em{color:#E8BFAE}
  header.solid .logo em{color:#8A5445}
  /* Footer: darker than the cocoa form section so the two never read as one block */
  footer.site-footer{background:#1F1512;border-top:none}
  .site-footer .legal{border-top-color:rgba(249,239,234,.1)}
