  :root{
    --poppy: #CC7A4D;
    --cream: #FAF5EF;
    --taupe: #A69A8D;
    --espresso: #3A322E;
    --blossom: #E1AC98;
    --mustard: #C79A47;
    --slate: #5E7C89;
    --slate-deep: #34464F;
    --heading-font: 'Cormorant Garamond', serif;
    --body-font: 'Lato', sans-serif;
  }
  *{ box-sizing: border-box; margin:0; padding:0; }
  body{
    font-family: var(--body-font);
    color: var(--espresso);
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E"),
      var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    cursor: url('images/flower-cursor.png') 20 18, auto;
  }
  img{ max-width:100%; display:block; }
  a{ text-decoration:none; color:inherit; }

  /* ---------- SCROLL REVEAL ---------- */
  .reveal{ opacity:0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
  .reveal.in-view{ opacity:1; transform:none; }
  .stagger > *{ transition-delay: calc(var(--i, 0) * 90ms); }

  @media (prefers-reduced-motion: reduce){
    .reveal{ opacity:1 !important; transform:none !important; transition:none !important; }
    .hero-glow{ animation:none !important; }
  }

  .site-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 22px 48px;
    background: var(--cream);
    position: relative;
    z-index: 20;
  }
  .site-header .logo img{ height: 46px; width:auto; }
  .nav-menu{ display:flex; align-items:center; gap: 36px; list-style:none; }
  .nav-menu a{
    font-family: var(--body-font);
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--espresso);
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, color .2s ease;
  }
  .nav-menu a:hover{ border-color: var(--poppy); color: var(--poppy); }
  .book-btn{
    font-family: var(--body-font);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    background: var(--poppy);
    padding: 13px 26px;
    border-radius: 2px;
    white-space: nowrap;
    display:inline-block;
    transition: background .2s ease;
  }
  .book-btn:hover{ background: #b7683b; }
  .book-btn.outline{
    background: transparent;
    color: var(--espresso);
    box-shadow: inset 0 0 0 1.5px var(--espresso);
  }
  .book-btn.outline:hover{ background: var(--espresso); color: #fff; }
  .book-btn.on-dark{ color: var(--slate-deep); background: var(--cream); }
  .book-btn.on-dark:hover{ background: #fff; }
  .book-btn.blossom{ background: var(--blossom); color: var(--espresso); }
  .book-btn.blossom:hover{ background: #d89880; }

  .nav-wrap{ display:flex; align-items:center; gap: 32px; }
  .hero-buttons{ display:flex; gap:16px; justify-content:flex-start; flex-wrap:wrap; position:relative; z-index:1; }

  .nav-toggle{ display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; }
  .nav-toggle span{ width:24px; height:2px; background:var(--espresso); display:block; }

  @media (max-width: 900px){
    .nav-wrap{
      position:absolute;
      top: 100%; left:0; right:0;
      background: var(--cream);
      flex-direction:column;
      align-items:flex-start;
      padding: 24px 48px 32px;
      gap:20px;
      display:none;
      box-shadow: 0 12px 20px -12px rgba(58,50,46,0.15);
    }
    .nav-wrap.open{ display:flex; }
    .nav-menu{ flex-direction:column; align-items:flex-start; gap:18px; }
    .nav-toggle{ display:flex; }
  }

  /* ---------- HERO ---------- */
  .hero{ position:relative; text-align:left; padding: 76px 32px 56px; overflow:hidden; max-width:1360px; margin:0 auto; }
  .hero-illustration{
    position:absolute;
    top:50%;
    right:-40px;
    transform: translateY(-50%);
    width:480px;
    max-width:44vw;
    z-index:0;
    opacity:0.92;
    pointer-events:none;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 22%, black 82%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 22%, black 82%, transparent 100%);
    border-radius: 6px;
  }
  @media (max-width: 900px){
    .hero-illustration{ display:none; }
  }
  .hero-glow{ position:absolute; border-radius:50%; filter: blur(70px); z-index:0; pointer-events:none; }
  .hero-glow.one{ width:520px; height:520px; background: var(--blossom); opacity:0.42; top:-220px; left:-160px; animation: drift-one 22s ease-in-out infinite; }
  .hero-glow.two{ width:460px; height:460px; background: var(--taupe); opacity:0.34; bottom:-240px; right:-160px; animation: drift-two 26s ease-in-out infinite; }
  .hero-glow.three{ width:380px; height:380px; background: var(--mustard); opacity:0.32; top:40%; right:6%; animation: drift-three 19s ease-in-out infinite; }
  @keyframes drift-one{
    0%, 100%{ transform: translate(0,0) scale(1); }
    50%{ transform: translate(30px,25px) scale(1.06); }
  }
  @keyframes drift-two{
    0%, 100%{ transform: translate(0,0) scale(1); }
    50%{ transform: translate(-25px,-20px) scale(1.05); }
  }
  @keyframes drift-three{
    0%, 100%{ transform: translate(0,0) scale(1); }
    50%{ transform: translate(-20px,18px) scale(1.08); }
  }
  .hero-eyebrow{
    position:relative; z-index:1;
    font-family: var(--body-font);
    font-size:12px; font-weight:700; letter-spacing:3px; text-transform:uppercase;
    color: var(--poppy); margin-bottom:28px;
  }
  .hero h1{
    position:relative; z-index:1;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: clamp(36px, 4.6vw, 64px);
    line-height: 1.14;
    color: var(--espresso);
    max-width: 620px;
    margin: 0 0 30px;
    letter-spacing: -0.5px;
  }
  .hero h1 em{ font-style: italic; font-weight: 600; color: var(--poppy); }
  .hero p{
    position:relative; z-index:1;
    font-family: var(--body-font);
    font-size: 17px; line-height: 1.8; color: #5b5450;
    max-width: 480px; margin: 0 0 42px;
  }

  /* ---------- PATTERN DIVIDER ---------- */
  .pattern-divider{ display:flex; align-items:center; justify-content:center; gap:13px; padding: 22px 32px; flex-wrap:wrap; }
  .pattern-divider .dash{ width:30px; height:1px; background: var(--taupe); opacity:0.45; }
  .pattern-divider .dot{ width:7px; height:7px; border-radius:50%; flex-shrink:0; }
  .pattern-divider .dot.c-mustard{ background: var(--mustard); }
  .pattern-divider .dot.c-poppy{ background: var(--poppy); }
  .pattern-divider .dot.c-taupe{ background: var(--taupe); }
  .pattern-divider .dot.c-slate{ background: var(--slate); }
  .pattern-divider img{ width:20px; height:20px; flex-shrink:0; }

  /* ---------- INTRODUCTION (centered text block) ---------- */
  .intro-section{ max-width:760px; margin:0 auto; padding: 6px 32px 40px; text-align:center; }
  .intro-section h2{
    font-family: var(--heading-font); font-weight:500;
    font-size: clamp(28px, 3.4vw, 40px); color: var(--espresso); margin-bottom:26px;
  }
  .intro-section p{ font-size:16px; line-height:1.85; color:#5b5450; margin-bottom:20px; }
  .intro-section .service-area{
    font-style:italic; font-size:14px; color: var(--taupe); margin-top:14px;
  }

  /* ---------- EDITORIAL (About / Approach / Budget reuse) ---------- */
  .section-tint-mustard{ background: #F8F0E1; }
  .section-tint-blossom{ background: #FBEDE6; }
  .section-tint-slate{ background: #EEF3F4; }
  .editorial{
    display:grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    gap: 56px; align-items:center; max-width:1240px; margin:0 auto; padding: 40px 48px;
  }
  .editorial.reverse .editorial-copy{ order:2; }
  .editorial.reverse .editorial-frame{ order:1; }
  .editorial-eyebrow{
    font-family: var(--body-font); font-size:12px; font-weight:700; letter-spacing:3px;
    text-transform:uppercase; color: var(--poppy); margin-bottom:22px;
  }
  .editorial-eyebrow.c-slate{ color: var(--slate); }
  .editorial-copy h2{
    font-family: var(--heading-font); font-weight:500;
    font-size: clamp(30px, 3.4vw, 44px); line-height:1.18; color: var(--espresso); margin-bottom:22px;
  }
  .editorial-copy h2 em{ font-style:italic; font-weight:600; color: var(--poppy); }
  .editorial-copy p{ font-family: var(--body-font); font-size:16px; line-height:1.8; color:#5b5450; max-width:460px; margin-bottom:20px; }
  .not-list{ margin: 10px 0 22px; }
  .not-list p{ font-weight:700; color:var(--poppy); font-size:16px; margin-bottom:6px; }
  .approach-payoff{ font-weight:700; color:var(--espresso) !important; }
  .editorial-link{
    font-family: var(--body-font); font-size:13px; font-weight:700; letter-spacing:1px; text-transform:uppercase;
    color: var(--espresso); border-bottom:1.5px solid var(--poppy); padding-bottom:4px;
    transition: color .2s ease, border-color .2s ease;
  }
  .editorial-link:hover{ color: var(--poppy); }
  .editorial-frame{
    position:relative; aspect-ratio: 4 / 4.6; border: 1px solid var(--taupe);
    background: linear-gradient(150deg, #F2E9DE, #EAdfd0);
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px;
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .editorial-frame:hover{ transform: translateY(-5px); box-shadow: 0 22px 36px -20px rgba(58,50,46,0.3); }
  .editorial-frame.t-blossom{ background: linear-gradient(150deg, #F7DDD1, #F0C7B6); border-color: var(--blossom); }
  .editorial-frame.t-mustard{ background: linear-gradient(150deg, #F2E4C4, #E9D29F); border-color: var(--mustard); }
  .editorial-frame.t-slate{ background: linear-gradient(150deg, #D9E4E8, #C3D5DA); border-color: var(--slate); }
  .editorial-frame.t-blossom svg, .editorial-frame.t-mustard svg, .editorial-frame.t-slate svg{ color: var(--espresso); opacity:0.55; }
  .editorial-frame.t-blossom .cap, .editorial-frame.t-mustard .cap, .editorial-frame.t-slate .cap{ color: var(--espresso); opacity:0.65; }
  .editorial-frame svg{ width:34px; height:34px; color: var(--taupe); }
  .editorial-frame .cap{ font-family: var(--body-font); font-size:10px; letter-spacing:2px; text-transform:uppercase; color: var(--taupe); }
  .editorial-frame .room{ font-family: var(--heading-font); font-style:italic; font-size:20px; color: var(--espresso); text-align:center; padding:0 20px; }
  .editorial-frame.has-photo{ overflow:hidden; background:none; }
  .editorial-frame.has-photo img{ width:100%; height:100%; object-fit:cover; object-position: center 15%; display:block; }

  /* ---------- PHILOSOPHY (faded background photo) ---------- */
  .philosophy-section{
    position:relative;
    overflow:hidden;
    padding: 52px 32px;
  }
  .philosophy-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position: center 30%;
    opacity: 0.32;
    z-index:0;
  }
  .philosophy-section::after{
    content:'';
    position:absolute;
    inset:0;
    background: linear-gradient(180deg, var(--cream) 0%, rgba(250,245,239,0.35) 25%, rgba(250,245,239,0.35) 75%, var(--cream) 100%);
    z-index:0;
  }
  .philosophy-inner{
    position:relative;
    z-index:1;
    max-width:640px;
    margin:0 auto;
    text-align:center;
  }
  .philosophy-inner .editorial-eyebrow{ justify-content:center; display:block; }
  .philosophy-inner h2{
    font-family: var(--heading-font); font-weight:500; font-size: clamp(30px,3.4vw,44px);
    line-height:1.18; color: var(--espresso); margin-bottom:22px;
  }
  .philosophy-inner h2 em{ font-style:italic; font-weight:600; color: var(--poppy); }
  .philosophy-inner p{ font-family: var(--body-font); font-size:16px; line-height:1.8; color:#5b5450; margin-bottom:20px; }
  .philosophy-inner .not-list{ margin: 10px 0 22px; }
  .philosophy-inner .not-list p{ font-weight:700; color:var(--poppy); font-size:16px; margin-bottom:6px; }
  .philosophy-inner .approach-payoff{ font-weight:700; color:var(--espresso) !important; }
  .philosophy-inner .editorial-link{ display:inline-block; margin-top:6px; }

  /* ---------- SERVICES ---------- */
  .services-section{ max-width:1240px; margin:0 auto; padding: 40px 48px 32px; text-align:center; }
  .services-section h2{
    font-family: var(--heading-font); font-weight:500; font-size: clamp(28px,3.4vw,42px); color:var(--espresso); margin-bottom:20px;
  }
  .services-section > p{ max-width:620px; margin:0 auto 56px; font-size:16px; line-height:1.8; color:#5b5450; }
  .services-grid{
    display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 26px; text-align:left; align-items:stretch;
  }
  .service-card{
    background: var(--cream); border:1px solid rgba(166,154,141,0.4); border-radius:4px;
    padding: 32px 28px; display:flex; flex-direction:column; height:100%;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  }
  .service-card:hover{ transform: translateY(-6px); box-shadow: 0 22px 34px -20px rgba(58,50,46,0.28); border-color: var(--poppy); }
  .service-card.custom:hover{ border-color: var(--espresso); }
  .service-card.custom{ background: transparent; border-style:dashed; }
  .service-card h3{ font-family: var(--heading-font); font-weight:600; font-size:23px; color:var(--espresso); margin-bottom:10px; }
  .service-card .tag{ font-family: var(--heading-font); font-style:italic; font-size:16px; color:var(--poppy); margin-bottom:16px; }
  .service-card p{ font-size:14.5px; line-height:1.7; color:#5b5450; }
  .service-card .fit{ font-size:13px; line-height:1.6; color:var(--taupe); margin-top:14px; }
  .service-card .fit b{ color:var(--espresso); font-weight:700; }
  .services-section .book-btn{ margin-top:52px; }

  /* involvement indicator */
  .involvement{ display:flex; align-items:center; gap:9px; margin-bottom:18px; }
  .involvement .dots{ display:flex; gap:4px; }
  .involvement .dots span{ width:7px; height:7px; border-radius:50%; background: transparent; box-shadow: inset 0 0 0 1.3px var(--taupe); }
  .involvement .dots span.filled{ background: var(--poppy); box-shadow:none; }
  .involvement .label{ font-family: var(--body-font); font-size:10.5px; letter-spacing:1.5px; text-transform:uppercase; color:var(--taupe); font-weight:700; }

  /* accordion (native details/summary) */
  .service-card details{ margin-top:16px; border-top: 1px solid rgba(166,154,141,0.35); padding-top:14px; }
  .service-card summary{
    list-style:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between;
    font-family: var(--body-font); font-size:12.5px; font-weight:700; letter-spacing:0.5px; color:var(--espresso);
  }
  .service-card summary::-webkit-details-marker{ display:none; }
  .service-card summary::after{
    content:'+'; font-size:16px; color:var(--poppy); font-weight:400; margin-left:8px; transition: transform .2s ease;
  }
  .service-card details[open] summary::after{ content:'\2212'; }
  .service-card .details-body{ padding-top:14px; }
  .service-card .details-body ul{ list-style:none; margin-bottom:12px; }
  .service-card .details-body li{
    font-size:13.5px; line-height:1.7; color:#5b5450; padding-left:14px; position:relative; margin-bottom:5px;
  }
  .service-card .details-body li::before{
    content:''; position:absolute; left:0; top:9px; width:5px; height:5px; border-radius:50%; background:var(--blossom);
  }
  .service-card .details-body p{ margin-bottom:10px; }
  .additional-support{
    max-width:820px; margin: 56px auto 0; padding-top:48px; border-top:1px solid rgba(166,154,141,0.35); text-align:left;
  }
  .additional-support h3{ font-family: var(--heading-font); font-weight:600; font-size:22px; color:var(--espresso); margin-bottom:16px; text-align:center; }
  .additional-support-list{
    display:grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap:8px 32px; margin-bottom:18px;
  }
  .additional-support-list p{
    font-size:14px; color:#5b5450; padding-left:14px; position:relative;
  }
  .additional-support-list p::before{
    content:''; position:absolute; left:0; top:8px; width:5px; height:5px; border-radius:50%; background:var(--mustard);
  }
  .additional-support > p.note{ font-size:14px; font-style:italic; color:var(--taupe); text-align:center; }

  /* ---------- GALLERY ROW (Portfolio) ---------- */
  .gallery-section{ max-width:1280px; margin:0 auto; padding: 40px 48px 48px; }
  .gallery-head{ text-align:center; margin-bottom: 52px; }
  .gallery-head .editorial-eyebrow{ margin-bottom:18px; }
  .gallery-head h2{ font-family: var(--heading-font); font-weight:500; font-size: clamp(28px, 3.2vw, 40px); color: var(--espresso); }
  .gallery-row{ display:grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
  .gallery-frame{
    aspect-ratio: 3 / 3.4; border: 1px solid var(--taupe);
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; padding:16px; text-align:center;
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .gallery-frame:hover{ transform: translateY(-6px); box-shadow: 0 20px 32px -18px rgba(58,50,46,0.35); }
  .gallery-frame.t-poppy{ background: linear-gradient(150deg, #F1DCCB, #E8C4A8); border-color: var(--poppy); }
  .gallery-frame.t-mustard{ background: linear-gradient(150deg, #F2E4C4, #E9D29F); border-color: var(--mustard); }
  .gallery-frame.t-blossom{ background: linear-gradient(150deg, #F7DDD1, #F0C7B6); border-color: var(--blossom); }
  .gallery-frame.t-slate{ background: linear-gradient(150deg, #D9E4E8, #C3D5DA); border-color: var(--slate); }
  .gallery-frame svg{ width:26px; height:26px; color:var(--espresso); opacity:0.55; }
  .gallery-frame .cap{ font-family: var(--body-font); font-size:9px; letter-spacing:2px; text-transform:uppercase; color: var(--espresso); opacity:0.65; }
  .gallery-frame .room{ font-family: var(--heading-font); font-style:italic; font-size:18px; color: var(--espresso); }
  .gallery-desc{ text-align:center; margin-top:14px; }
  .gallery-desc p{ font-size:13.5px; color:#5b5450; line-height:1.6; margin-bottom:8px; }
  .gallery-desc a{ font-size:11.5px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--espresso); border-bottom:1.5px solid var(--poppy); padding-bottom:2px; }

  /* ---------- PROCESS ---------- */
  .process-section{ max-width:1140px; margin:0 auto; padding: 40px 48px 48px; text-align:center; }
  .process-section .editorial-eyebrow{ display:block; }
  .process-section h2{ font-family: var(--heading-font); font-weight:500; font-size: clamp(28px,3.4vw,42px); color:var(--espresso); margin-bottom:56px; }
  .process-grid{ display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:32px; text-align:left; }
  .process-step{ transition: transform .3s ease; }
  .process-step:hover{ transform: translateY(-4px); }
  .process-step .num{ font-family: var(--heading-font); font-style:italic; font-size:44px; color: var(--blossom); margin-bottom:14px; line-height:1; transition: color .3s ease; }
  .process-step:hover .num{ color: var(--poppy); }
  .process-step h3{ font-family: var(--heading-font); font-weight:600; font-size:21px; color:var(--espresso); margin-bottom:10px; }
  .process-step p{ font-size:14.5px; line-height:1.7; color:#5b5450; }

  /* ---------- WHY NICHE DESIGNS ---------- */
  .why-section{ padding: 40px 48px; }
  .why-inner{ max-width:900px; margin:0 auto; text-align:center; }
  .why-inner h2{ font-family: var(--heading-font); font-weight:500; font-size: clamp(28px,3.4vw,42px); color:var(--espresso); margin-bottom:48px; }
  .why-list{ display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px 40px; text-align:left; }
  .why-item{ display:flex; align-items:flex-start; gap:12px; }
  .why-item svg{ width:18px; height:18px; color: var(--slate); flex-shrink:0; margin-top:3px; }
  .why-item p{ font-size:15.5px; color:#4a4642; }

  /* ---------- CONTACT / INTRO CALL ---------- */
  .contact-section{ max-width:680px; margin:0 auto; padding: 40px 32px 48px; text-align:center; }
  .contact-section h2{ font-family: var(--heading-font); font-weight:500; font-size: clamp(30px,3.6vw,46px); color:var(--espresso); margin-bottom:24px; }
  .contact-section p{ font-size:16px; line-height:1.8; color:#5b5450; margin-bottom:18px; }

  /* ---------- FINAL CTA (slate, deep) ---------- */
  .final-cta{ background: var(--slate-deep); padding: 52px 32px; text-align:center; }
  .final-cta h2{ font-family: var(--heading-font); font-weight:500; font-size: clamp(28px,3.6vw,44px); color:#fff; max-width:720px; margin:0 auto 20px; }
  .final-cta p{ font-size:16px; color:rgba(255,255,255,0.82); max-width:520px; margin:0 auto 34px; }

  /* ---------- FOOTER ---------- */
  .site-footer{ background: var(--espresso); color: rgba(250,245,239,0.85); padding: 48px 48px 28px; }
  .footer-inner{ max-width:1140px; margin:0 auto; display:grid; grid-template-columns: 1.3fr 1fr 1fr; gap:40px; margin-bottom:40px; }
  .footer-brand img{ height:38px; margin-bottom:16px; filter: brightness(0) invert(1); opacity:0.92; }
  .footer-brand p{ font-size:13.5px; line-height:1.7; max-width:280px; color:rgba(250,245,239,0.65); }
  .site-footer h4{ font-family: var(--body-font); font-size:11px; letter-spacing:2px; text-transform:uppercase; color: var(--blossom); margin-bottom:16px; }
  .site-footer p, .site-footer a{ font-size:13.5px; line-height:1.9; color:rgba(250,245,239,0.78); }
  .site-footer a:hover{ color:#fff; }
  .footer-bottom{ max-width:1140px; margin:0 auto; padding-top:28px; border-top:1px solid rgba(250,245,239,0.14); display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:12px; color:rgba(250,245,239,0.5); }

  @media (max-width: 1150px) and (min-width: 901px){
    .services-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  }

  @media (max-width: 900px){
    .hero{ padding:96px 24px 64px; }
    .editorial{ grid-template-columns: minmax(0,1fr); gap:36px; padding:56px 26px; }
    .editorial.reverse .editorial-copy{ order:1; }
    .editorial.reverse .editorial-frame{ order:2; }
    .editorial-frame{ aspect-ratio: 4/3.2; }
    .services-section{ padding:56px 26px 40px; }
    .services-grid{ grid-template-columns: minmax(0,1fr); }
    .gallery-section{ padding:56px 26px 64px; }
    .gallery-row{ grid-template-columns: repeat(2, minmax(0,1fr)); gap:16px; }
    .process-section{ padding:56px 26px 64px; }
    .process-grid{ grid-template-columns: minmax(0,1fr); gap:32px; }
    .why-section{ padding:56px 26px; }
    .why-list{ grid-template-columns: minmax(0,1fr); }
    .footer-inner{ grid-template-columns: minmax(0,1fr); gap:32px; }
    .footer-bottom{ flex-direction:column; }
  }

  /* ---------- ABOUT PAGE (full bio) ---------- */
  .about-hero{ padding: 52px 32px 8px; text-align:center; }
  .about-hero .editorial-eyebrow{ justify-content:center; display:block; margin-bottom:20px; }
  .about-hero h1{
    font-family: var(--heading-font); font-weight:500; font-size: clamp(36px,4.4vw,58px);
    color:var(--espresso); max-width:760px; margin:0 auto;
  }
  .about-hero h1 em{ font-style:italic; font-weight:600; color:var(--poppy); }

  .about-layout{
    display:grid;
    grid-template-columns: 300px 1fr;
    gap: 64px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 36px 32px 90px;
    align-items: start;
  }
  .about-photo-col{ position: sticky; top: 100px; }

  .about-portrait{
    max-width:300px; aspect-ratio: 1023/1537; border:1px solid var(--taupe);
    overflow:hidden;
  }
  .about-portrait img{ width:100%; height:100%; object-fit:cover; display:block; }
  .about-portrait svg{ width:36px; height:36px; color:var(--taupe); }
  .about-portrait .cap{ font-family: var(--body-font); font-size:10px; letter-spacing:2px; text-transform:uppercase; color:var(--taupe); }
  .about-portrait .room{ font-family: var(--heading-font); font-style:italic; font-size:20px; color:var(--espresso); }
  .about-photo-col .signoff{ margin-top:22px; text-align:center; }

  .about-body{ max-width:640px; }
  .about-body p{ font-size:16.5px; line-height:1.9; color:#4a4642; margin-bottom:26px; }
  .about-body p.lede{
    font-family: var(--heading-font); font-style:italic; font-size:22px; line-height:1.6;
    color:var(--espresso); margin-bottom:34px;
  }
  .about-body .pull{
    font-family: var(--heading-font); font-style:italic; font-weight:600; font-size:26px; line-height:1.5;
    color:var(--poppy); text-align:center; max-width:520px; margin:44px auto; padding: 0 20px;
  }
  .signoff .name{ font-family: var(--heading-font); font-weight:600; font-size:20px; color:var(--espresso); }
  .signoff .title{ font-size:13px; letter-spacing:1px; text-transform:uppercase; color:var(--taupe); margin-top:4px; }
  .style-block{
    background: #F8F0E1; border-radius:4px; padding: 40px 36px; margin: 48px 0;
    text-align:center;
  }
  .style-block .editorial-eyebrow{ margin-bottom:20px; }
  .style-block p{ text-align:left; }
  .style-block p:last-child{ margin-bottom:0; }

  .about-cta{ text-align:center; padding: 16px 32px 72px; }

  @media (max-width: 900px){
    .about-layout{ grid-template-columns: minmax(0,1fr); gap:32px; padding: 24px 26px 64px; }
    .about-photo-col{ position: static; max-width:260px; margin:0 auto; }
  }

  @media (max-width: 600px){
    .about-body p.lede{ font-size:19px; }
    .about-body .pull{ font-size:22px; }
  }

  /* ---------- PORTFOLIO (single homepage photo + full gallery page) ---------- */
  .portfolio-single{
    max-width: 900px; margin: 44px auto 0; border: 1px solid var(--taupe); overflow:hidden;
  }
  .portfolio-single img{ width:100%; height:auto; display:block; }

  .portfolio-gallery{
    max-width: 880px; margin: 0 auto; padding: 16px 32px 72px;
    display:flex; flex-direction:column; gap:76px;
  }
  .portfolio-photo{ width:100%; height:auto; border:1px solid var(--taupe); margin-bottom:24px; }
  .portfolio-photo-pair{
    display:grid; grid-template-columns: 1fr 1fr; gap:16px; margin-bottom:24px;
  }
  .portfolio-photo-pair img{ width:100%; height:100%; object-fit:cover; border:1px solid var(--taupe); aspect-ratio: 3/4; }
  .portfolio-caption{ text-align:center; }
  .portfolio-caption .editorial-eyebrow{ justify-content:center; display:block; margin-bottom:14px; }
  .portfolio-caption p{ font-size:16px; line-height:1.8; color:#4a4642; max-width:620px; margin:0 auto; }

  @media (max-width: 600px){
    .portfolio-photo-pair{ grid-template-columns: 1fr; }
  }

  /* ---------- MOOD BOARD EXAMPLES ---------- */
  .moodboard-section{ max-width:1100px; margin:0 auto; padding: 16px 32px 72px; }
  .moodboard-head{ text-align:center; margin-bottom:52px; }
  .moodboard-head .editorial-eyebrow{ justify-content:center; display:block; margin-bottom:18px; }
  .moodboard-head h2{ font-family: var(--heading-font); font-weight:500; font-size: clamp(28px,3.2vw,40px); color:var(--espresso); }
  .moodboard-head h2 em{ font-style:italic; font-weight:600; color:var(--poppy); }
  .moodboard-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:36px; }
  .moodboard-card img{ width:100%; height:auto; border:1px solid var(--taupe); display:block; margin-bottom:18px; }
  .moodboard-card .cap-title{ font-family: var(--heading-font); font-style:italic; font-size:20px; color:var(--espresso); text-align:center; margin-bottom:8px; }
  .moodboard-card .cap-desc{ font-size:14.5px; color:#5b5450; text-align:center; line-height:1.7; }

  @media (max-width: 700px){
    .moodboard-grid{ grid-template-columns: 1fr; }
  }
