
    :root {
      --cream: #f7f3ee;
      --ink: #1c1a18;
      --gold: #c4974a;
      --gold-light: #e8c98a;
      --stone: #7a7268;
      --forest: #283428;
      --warm-white: #faf8f5;
      --charcoal: #2e2c2a;
    }
    *,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
    html{scroll-behavior:smooth;font-size:16px}
    body{font-family:'Jost',sans-serif;background:var(--warm-white);color:var(--ink);overflow-x:hidden}
    img{max-width:100%;display:block}
    a{text-decoration:none;color:inherit}

    /* ── NOISE TEXTURE OVERLAY ── */
    body::before{
      content:'';position:fixed;inset:0;
      background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events:none;z-index:800;opacity:0.4;
    }

    /* ── NAV ── */
    nav{
      position:fixed;top:0;left:0;right:0;z-index:100;
      padding:1.4rem 5vw;
      display:flex;align-items:center;justify-content:space-between;
      transition:all 0.4s ease;
    }
    nav.scrolled{
      background:rgba(247,243,238,0.97);
      backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(196,151,74,0.15);
      padding:0.9rem 5vw;
    }
    .nav-logo{
      font-family:'Playfair Display',serif;
      font-size:1.25rem;font-weight:500;
      color:#fff;transition:color 0.4s;
      letter-spacing:0.02em;
    }
    nav.scrolled .nav-logo{color:var(--ink)}
    .nav-links{display:flex;gap:2.5rem;list-style:none;align-items:center}
    .nav-links a{
      font-size:0.72rem;font-weight:400;
      letter-spacing:0.16em;text-transform:uppercase;
      color:rgba(255,255,255,0.82);transition:color 0.3s;
    }
    nav.scrolled .nav-links a{color:var(--stone)}
    .nav-links a:hover{color:var(--gold)}
    .nav-cta{
      padding:0.6rem 1.5rem;
      border:1px solid rgba(255,255,255,0.5);
      border-radius:1px;color:#fff !important;
      transition:all 0.3s !important;
    }
    nav.scrolled .nav-cta{
      background:var(--gold);border-color:var(--gold);
      color:#fff !important;
    }
    .nav-cta:hover{background:rgba(255,255,255,0.15) !important}
    nav.scrolled .nav-cta:hover{background:#a67c38 !important;border-color:#a67c38 !important}
    .ham{display:none;flex-direction:column;gap:5px;cursor:pointer;z-index:101;background:none;border:none;padding:0}
    .ham span{width:22px;height:1px;background:#fff;display:block;transition:background 0.4s}
    nav.scrolled .ham span{background:var(--ink)}
    .nav-links.open ~ .ham span{background:var(--ink)}
    @media(max-width:768px){
      .nav-links{display:none}
      .ham{display:flex}
      .nav-links.open{
        display:flex;flex-direction:column;
        position:fixed;top:0;left:0;right:0;bottom:0;
        width:100vw;height:100vh;
        background:var(--cream);align-items:center;
        justify-content:center;gap:2.5rem;z-index:100;
        padding:2rem;
      }
      .nav-links.open a{font-size:1.1rem;color:var(--ink) !important;letter-spacing:0.1em}
      .nav-links.open .nav-cta{
        background:var(--gold);color:#fff !important;padding:0.85rem 2.2rem;
        border-radius:2px;font-size:0.95rem;letter-spacing:0.12em;
        border-color:var(--gold);
      }
    }

    /* ── HERO ── */
    .hero{
      height:100vh;min-height:640px;position:relative;
      display:flex;flex-direction:column;justify-content:flex-end;
      overflow:hidden;
    }
    .hero-track{
      position:absolute;inset:0;
      display:flex;transition:transform 1.2s cubic-bezier(0.77,0,0.18,1);
    }
    .hero-slide{
      min-width:100%;height:100%;flex-shrink:0;
      background-size:cover;background-position:center;
    }
    .hero-vignette{
      position:absolute;inset:0;
      background:linear-gradient(
        to top,
        rgba(20,18,14,0.88) 0%,
        rgba(20,18,14,0.3) 45%,
        rgba(20,18,14,0.1) 100%
      );
    }
    .hero-content{
      position:relative;z-index:2;
      padding:0 5vw clamp(3rem,7vh,5.5rem);
    }
    .hero-tag{
      display:inline-flex;align-items:center;gap:0.7rem;
      font-size:0.68rem;font-weight:400;letter-spacing:0.25em;
      text-transform:uppercase;color:var(--gold-light);
      margin-bottom:1.2rem;
      opacity:0;animation:riseIn 0.9s 0.2s forwards;
    }
    .hero-tag::before{content:'';width:32px;height:1px;background:var(--gold)}
    .hero h1{
      font-family:'Playfair Display',serif;
      font-size:clamp(2.8rem,6.5vw,5.5rem);
      font-weight:500;line-height:1.1;
      color:#fff;max-width:820px;
      margin-bottom:1.4rem;
      opacity:0;animation:riseIn 0.9s 0.4s forwards;
    }
    .hero h1 em{font-style:italic;color:var(--gold-light)}
    .hero-sub{
      font-size:1rem;font-weight:300;color:rgba(255,255,255,0.75);
      max-width:480px;line-height:1.7;margin-bottom:2.2rem;
      opacity:0;animation:riseIn 0.9s 0.6s forwards;
    }
    .hero-btns{
      display:flex;gap:1rem;flex-wrap:wrap;
      opacity:0;animation:riseIn 0.9s 0.8s forwards;
    }
    .btn-gold{
      padding:0.85rem 2.2rem;background:var(--gold);color:#fff;
      font-size:0.72rem;font-weight:500;letter-spacing:0.16em;
      text-transform:uppercase;border-radius:1px;
      transition:background 0.3s,transform 0.2s;display:inline-block;
    }
    .btn-gold:hover{background:#a67c38;transform:translateY(-2px)}
    .btn-outline-white{
      padding:0.85rem 2.2rem;border:1px solid rgba(255,255,255,0.45);
      color:#fff;font-size:0.72rem;font-weight:400;
      letter-spacing:0.16em;text-transform:uppercase;
      border-radius:1px;transition:all 0.3s;display:inline-block;
    }
    .btn-outline-white:hover{border-color:#fff;background:rgba(255,255,255,0.08)}
    .hero-nav{
      position:absolute;bottom:2rem;right:5vw;
      display:flex;align-items:center;gap:0.8rem;z-index:3;
    }
    .hero-dot{
      width:28px;height:2px;background:rgba(255,255,255,0.3);
      cursor:pointer;transition:all 0.3s;
    }
    .hero-dot.active{background:var(--gold);width:44px}
    @keyframes riseIn{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}

    /* ── TICKER ── */
    .ticker{
      background:var(--forest);
      padding:0.75rem 0;overflow:hidden;
    }
    .ticker-track{
      display:flex;gap:0;white-space:nowrap;
      animation:tick 30s linear infinite;
    }
    .ticker-item{
      display:inline-flex;align-items:center;gap:1.5rem;
      padding:0 2.5rem;
      font-size:0.68rem;font-weight:400;letter-spacing:0.2em;
      text-transform:uppercase;color:rgba(255,255,255,0.6);
    }
    .ticker-dot{color:var(--gold);font-size:0.5rem}
    @keyframes tick{from{transform:translateX(0)}to{transform:translateX(-50%)}}

    /* ── SECTION BASICS ── */
    .section{padding:clamp(4rem,8vw,7rem) 5vw}
    .section-dark{background:var(--forest);color:#fff}
    .section-cream{background:var(--cream)}
    .section-ink{background:var(--charcoal);color:#fff}
    .label{
      font-size:0.65rem;font-weight:500;letter-spacing:0.28em;
      text-transform:uppercase;color:var(--gold);
      display:flex;align-items:center;gap:0.7rem;margin-bottom:0.9rem;
    }
    .label::before{content:'';width:24px;height:1px;background:var(--gold)}
    h2{font-family:'Playfair Display',serif;font-weight:500;line-height:1.15;font-size:clamp(2rem,4vw,3.2rem)}
    h3{font-family:'Playfair Display',serif;font-weight:400;font-size:clamp(1.3rem,2vw,1.7rem);line-height:1.2}
    .divider{width:40px;height:1px;background:var(--gold);margin:1.2rem 0 2rem}

    /* ── ABOUT SPLIT ── */
    .about-wrap{
      display:grid;grid-template-columns:1fr 1fr;
      gap:clamp(3rem,7vw,8rem);align-items:center;
    }
    .about-img-wrap{position:relative}
    .about-img-main{
      width:100%;aspect-ratio:3/4;object-fit:cover;
      border-radius:2px;display:block;
    }
    .about-img-accent{
      position:absolute;bottom:-2rem;right:-2rem;
      width:48%;aspect-ratio:1;object-fit:cover;
      border-radius:2px;
      border:6px solid var(--warm-white);
    }
    .about-text p{font-size:0.95rem;font-weight:300;line-height:1.85;color:var(--stone);margin-bottom:1rem}
    .stats{
      display:grid;grid-template-columns:repeat(3,1fr);
      gap:1.5rem;margin-top:2.5rem;
      padding-top:2.5rem;border-top:1px solid rgba(196,151,74,0.2);
    }
    .stat-num{
      font-family:'Playfair Display',serif;font-size:2.6rem;
      font-weight:400;color:var(--gold);line-height:1;display:block;
    }
    .stat-label{font-size:0.72rem;letter-spacing:0.1em;color:var(--stone);margin-top:0.3rem}
    @media(max-width:860px){
      .about-wrap{grid-template-columns:1fr}
      .about-img-accent{right:1rem}
    }

    /* ── SERVICES ── */
    .services-intro{
      display:grid;grid-template-columns:1fr 1fr;
      gap:4rem;align-items:end;margin-bottom:4rem;
    }
    .services-intro p{font-size:0.92rem;font-weight:300;line-height:1.85;color:var(--stone)}
    .svc-grid{
      display:grid;grid-template-columns:repeat(3,1fr);
      border:1px solid rgba(196,151,74,0.15);
    }
    .svc-card{
      padding:0;border-right:1px solid rgba(196,151,74,0.15);
      border-bottom:1px solid rgba(196,151,74,0.15);
      overflow:hidden;transition:background 0.3s;
      cursor:pointer;
    }
    .svc-card:hover{background:var(--cream)}
    .svc-img{width:100%;aspect-ratio:4/3;object-fit:cover;display:block;transition:transform 0.6s ease}
    .svc-card:hover .svc-img{transform:scale(1.04)}
    .svc-body{padding:1.8rem 1.6rem}
    .svc-num{
      font-family:'Playfair Display',serif;font-size:2rem;font-weight:400;
      color:rgba(196,151,74,0.25);line-height:1;display:block;margin-bottom:0.8rem;
    }
    .svc-card h3{font-size:1.15rem;margin-bottom:0.6rem}
    .svc-card p{font-size:0.83rem;font-weight:300;line-height:1.7;color:var(--stone)}
    @media(max-width:900px){
      .services-intro{grid-template-columns:1fr;gap:1.5rem}
      .svc-grid{grid-template-columns:repeat(2,1fr)}
    }
    @media(max-width:560px){
      .svc-grid{grid-template-columns:repeat(2,1fr);gap:0.8rem}
      .svc-body{padding:1rem 0.9rem}
      .svc-num{font-size:1.4rem;margin-bottom:0.4rem}
      .svc-card h3{font-size:0.95rem;margin-bottom:0.3rem}
      .svc-card p{font-size:0.72rem;line-height:1.5}
    }

    /* ── FULL BLEED IMAGE ── */
    .full-bleed{
      height:clamp(300px,45vw,550px);
      position:relative;overflow:hidden;
    }
    .full-bleed-img{
      width:100%;height:100%;object-fit:cover;
      display:block;transition:transform 8s ease;
    }
    .full-bleed:hover .full-bleed-img{transform:scale(1.05)}
    .full-bleed-overlay{
      position:absolute;inset:0;
      background:linear-gradient(135deg,rgba(40,52,40,0.85) 0%,rgba(40,52,40,0.4) 60%,transparent 100%);
      display:flex;align-items:center;padding:5vw;
    }
    .full-bleed-text{max-width:560px;color:#fff}
    .full-bleed-text h2{color:#fff;margin-bottom:1rem}
    .full-bleed-text p{font-size:0.92rem;font-weight:300;line-height:1.8;color:rgba(255,255,255,0.8);margin-bottom:1.8rem}

    /* ── PROCESS ── */
    .process-grid{
      display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;
      margin-top:3.5rem;position:relative;
    }
    .process-grid::before{
      content:'';position:absolute;top:22px;left:8%;right:8%;
      height:1px;background:linear-gradient(to right,transparent,var(--gold),transparent);
    }
    .process-step{text-align:center}
    .step-num{
      width:44px;height:44px;border-radius:50%;border:1px solid var(--gold);
      display:flex;align-items:center;justify-content:center;
      margin:0 auto 1.3rem;font-family:'Playfair Display',serif;
      font-size:1rem;color:var(--gold);background:var(--warm-white);position:relative;z-index:1;
    }
    .process-step h3{font-size:1rem;margin-bottom:0.5rem}
    .process-step p{font-size:0.82rem;font-weight:300;line-height:1.7;color:var(--stone)}
    @media(max-width:768px){
      .process-grid{grid-template-columns:repeat(2,1fr)}
      .process-grid::before{display:none}
    }

    /* ── GALLERY ── */
    .gallery-tabs{
      display:flex;gap:0;border-bottom:1px solid rgba(196,151,74,0.2);
      margin-bottom:2.5rem;overflow-x:auto;
    }
    .tab{
      padding:0.75rem 1.6rem;font-size:0.68rem;font-weight:500;
      letter-spacing:0.16em;text-transform:uppercase;
      background:none;border:none;border-bottom:2px solid transparent;
      cursor:pointer;color:var(--stone);white-space:nowrap;
      transition:all 0.3s;margin-bottom:-1px;
    }
    .tab.active{color:var(--ink);border-bottom-color:var(--gold)}
    .tab:hover{color:var(--ink)}
    .tab-panel{display:none}
    .tab-panel.active{display:block}
    .masonry{columns:3;column-gap:10px}
    .g-item{
      break-inside:avoid;margin-bottom:10px;
      position:relative;overflow:hidden;cursor:pointer;
      border-radius:1px;
    }
    .g-item img{width:100%;display:block;transition:transform 0.5s ease}
    .g-item:hover img{transform:scale(1.05)}
    .g-cap{
      position:absolute;bottom:0;left:0;right:0;
      padding:1.5rem 0.9rem 0.7rem;
      background:linear-gradient(to top,rgba(20,18,14,0.75),transparent);
      color:#fff;font-size:0.72rem;letter-spacing:0.06em;
      opacity:0;transition:opacity 0.3s;
    }
    .g-item:hover .g-cap{opacity:1}
    .ba-grid{
      display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.5rem;
    }
    .ba-pair{border-radius:2px;overflow:hidden;background:#fff;box-shadow:0 2px 16px rgba(0,0,0,0.07)}
    .ba-pair img{width:100%;display:block}
    .ba-info{padding:1rem 1.2rem;font-size:0.8rem;color:var(--stone)}
    .ba-info strong{display:block;color:var(--ink);font-weight:500;margin-bottom:0.2rem}
    @media(max-width:768px){.masonry{columns:2}}
    @media(max-width:480px){
      .masonry{columns:1}
      .gallery-tabs{flex-wrap:wrap;overflow-x:visible;justify-content:center;gap:0}
      .tab{padding:0.55rem 0.9rem;font-size:0.6rem;letter-spacing:0.1em}
    }

    /* ── VENETIAN CTA ── */
    .venetian-cta{
      display:grid;grid-template-columns:1fr 1fr;min-height:500px;
    }
    .venetian-img{
      position:relative;overflow:hidden;
    }
    .venetian-img img{width:100%;height:100%;object-fit:cover;display:block}
    .venetian-text{
      background:var(--forest);
      padding:clamp(3rem,6vw,5rem);
      display:flex;flex-direction:column;justify-content:center;
    }
    .venetian-text h2{color:#fff;margin-bottom:1rem}
    .venetian-text p{font-size:0.9rem;font-weight:300;line-height:1.85;color:rgba(255,255,255,0.65);margin-bottom:1.2rem}
    .venetian-text .label{color:var(--gold-light)}
    .venetian-text .label::before{background:var(--gold)}
    @media(max-width:768px){
      .venetian-cta{grid-template-columns:1fr}
      .venetian-img{min-height:280px}
    }

    /* ── LOCATIONS ── */
    .loc-grid{
      display:grid;grid-template-columns:repeat(3,1fr);
      gap:1px;background:rgba(255,255,255,0.06);
      margin-top:3rem;
    }
    .loc-card{
      background:rgba(255,255,255,0.03);
      padding:2.2rem 1.6rem;
      transition:background 0.3s;
    }
    .loc-card:hover{background:rgba(255,255,255,0.07)}
    .loc-icon{font-size:1.4rem;margin-bottom:1rem;display:block}
    .loc-card h3{color:#fff;font-size:1.2rem;margin-bottom:0.5rem}
    .loc-card p{font-size:0.82rem;font-weight:300;color:rgba(255,255,255,0.5);line-height:1.65}
    .loc-seo{
      display:grid;grid-template-columns:1fr 1fr;gap:3rem;
      margin-top:4rem;padding-top:3rem;
      border-top:1px solid rgba(255,255,255,0.08);
    }
    .loc-seo h3{color:#fff;font-size:1.2rem;margin-bottom:0.8rem}
    .loc-seo p{font-size:0.85rem;font-weight:300;color:rgba(255,255,255,0.5);line-height:1.8}
    @media(max-width:900px){.loc-grid{grid-template-columns:repeat(2,1fr)}}
    @media(max-width:540px){
      .loc-grid{grid-template-columns:1fr}
      .loc-seo{grid-template-columns:1fr;gap:2rem}
    }

    /* ── REVIEWS ── */
    .reviews-head{
      display:flex;align-items:flex-end;
      justify-content:space-between;gap:2rem;flex-wrap:wrap;
    }
    .google-link{
      display:inline-flex;align-items:center;gap:0.5rem;
      background:var(--cream);border:1px solid rgba(196,151,74,0.25);
      padding:0.7rem 1.3rem;border-radius:2px;font-size:0.75rem;
      font-weight:500;letter-spacing:0.08em;
      color:var(--ink);transition:background 0.3s;
    }
    .google-link:hover{background:#fff}
    .review-grid{
      display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;
      margin-top:3rem;
    }
    .review-card{
      background:var(--cream);padding:2rem;
      border-radius:2px;border:1px solid rgba(196,151,74,0.12);
      position:relative;
    }
    .review-card::before{
      content:'"';position:absolute;top:1rem;right:1.5rem;
      font-family:'Playfair Display',serif;font-size:5rem;
      line-height:1;color:rgba(196,151,74,0.1);
    }
    .stars{color:var(--gold);letter-spacing:2px;font-size:0.85rem;margin-bottom:0.9rem}
    .review-text{
      font-size:0.88rem;font-weight:300;line-height:1.75;
      font-style:italic;color:#4a4540;margin-bottom:1.2rem;
    }
    .review-author{
      font-size:0.72rem;font-weight:500;letter-spacing:0.1em;
      text-transform:uppercase;color:var(--stone);
    }
    .rating-box{
      margin-top:3rem;background:var(--cream);
      border:1px solid rgba(196,151,74,0.15);
      padding:2rem 2.5rem;display:flex;
      align-items:center;gap:2.5rem;flex-wrap:wrap;
      border-radius:2px;
    }
    .big-rating{
      font-family:'Playfair Display',serif;font-size:5rem;
      font-weight:400;color:var(--gold);line-height:1;
    }
    .rating-box p{font-size:0.88rem;font-weight:300;color:var(--stone);line-height:1.7}
    .rating-box strong{display:block;font-weight:500;color:var(--ink);margin-bottom:0.3rem}
    @media(max-width:900px){.review-grid{grid-template-columns:repeat(2,1fr)}}
    @media(max-width:540px){.review-grid{grid-template-columns:1fr}}

    /* ── BLOG ── */
    .blog-grid{
      display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;
      margin-top:3rem;
    }
    .blog-card{
      background:#fff;border-radius:2px;overflow:hidden;
      border:1px solid rgba(196,151,74,0.1);
      transition:box-shadow 0.3s,transform 0.3s;
      cursor:pointer;
    }
    .blog-card:hover{box-shadow:0 8px 32px rgba(0,0,0,0.1);transform:translateY(-3px)}
    .blog-img{
      width:100%;aspect-ratio:16/9;object-fit:cover;
      display:block;transition:transform 0.5s ease;
    }
    .blog-card:hover .blog-img{transform:scale(1.04)}
    .blog-body{padding:1.6rem}
    .blog-tag{
      font-size:0.62rem;font-weight:500;letter-spacing:0.2em;
      text-transform:uppercase;color:var(--gold);margin-bottom:0.6rem;display:block;
    }
    .blog-card h3{
      font-family:'Playfair Display',serif;font-size:1.15rem;
      font-weight:500;line-height:1.35;margin-bottom:0.7rem;
      color:var(--ink);
    }
    .blog-card p{font-size:0.82rem;font-weight:300;color:var(--stone);line-height:1.7;margin-bottom:1rem}
    .blog-meta{
      font-size:0.72rem;color:var(--stone);letter-spacing:0.04em;
      padding-top:1rem;border-top:1px solid rgba(196,151,74,0.12);
      display:flex;justify-content:space-between;
    }
    .read-more{
      font-size:0.68rem;font-weight:500;letter-spacing:0.14em;
      text-transform:uppercase;color:var(--gold);
      display:inline-flex;align-items:center;gap:0.4rem;
      transition:gap 0.2s;
    }
    .read-more:hover{gap:0.7rem}
    @media(max-width:900px){.blog-grid{grid-template-columns:repeat(2,1fr)}}
    @media(max-width:540px){.blog-grid{grid-template-columns:1fr}}

    /* ── CONTACT ── */
    .contact-wrap{
      display:grid;grid-template-columns:1fr 1fr;
      gap:clamp(2.5rem,6vw,6rem);align-items:start;
    }
    .contact-info p{font-size:0.92rem;font-weight:300;color:var(--stone);line-height:1.8;margin-bottom:2rem}
    .c-detail{display:flex;align-items:flex-start;gap:1rem;margin-bottom:1.3rem}
    .c-icon{
      width:38px;height:38px;background:var(--cream);
      border-radius:50%;display:flex;align-items:center;justify-content:center;
      flex-shrink:0;font-size:0.95rem;
    }
    .c-text{font-size:0.85rem;font-weight:300;color:var(--stone)}
    .c-text strong{display:block;font-weight:500;color:var(--ink);font-size:0.88rem;margin-bottom:0.2rem}
    .c-text a{color:var(--stone);transition:color 0.2s}
    .c-text a:hover{color:var(--gold)}
    .map-frame{
      width:100%;aspect-ratio:16/9;border:none;
      border-radius:2px;margin-top:2rem;display:block;
    }
    .form{display:flex;flex-direction:column;gap:1rem}
    .form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
    .fg{display:flex;flex-direction:column;gap:0.35rem}
    .fg label{
      font-size:0.65rem;font-weight:500;letter-spacing:0.16em;
      text-transform:uppercase;color:var(--stone);
    }
    .fg input,.fg select,.fg textarea{
      padding:0.85rem 1rem;
      border:1px solid rgba(196,151,74,0.2);
      border-radius:1px;background:#fff;
      font-family:'Jost',sans-serif;font-size:0.9rem;
      color:var(--ink);outline:none;transition:border-color 0.3s;
    }
    .fg input:focus,.fg select:focus,.fg textarea:focus{border-color:var(--gold)}
    .fg textarea{resize:vertical;min-height:110px}
    .form-submit{
      padding:1rem 2.5rem;background:var(--gold);color:#fff;
      border:none;border-radius:1px;font-family:'Jost',sans-serif;
      font-size:0.72rem;font-weight:500;letter-spacing:0.16em;
      text-transform:uppercase;cursor:pointer;
      transition:background 0.3s,transform 0.2s;align-self:flex-start;
    }
    .form-submit:hover{background:#a67c38;transform:translateY(-2px)}
    .success-msg{
      display:none;color:var(--forest);font-size:0.88rem;
      margin-top:0.5rem;padding:0.8rem 1rem;
      background:rgba(40,52,40,0.08);border-radius:2px;
    }
    @media(max-width:768px){
      .contact-wrap{grid-template-columns:1fr}
      .form-row{grid-template-columns:1fr}
    }

    /* ── FOOTER ── */
    footer{
      background:#111;color:rgba(255,255,255,0.45);
      padding:4rem 5vw 2rem;
    }
    .footer-top{
      display:grid;grid-template-columns:2fr 1fr 1fr 1fr;
      gap:3rem;margin-bottom:3rem;padding-bottom:2.5rem;
      border-bottom:1px solid rgba(255,255,255,0.07);
    }
    .footer-brand a{
      font-family:'Playfair Display',serif;font-size:1.3rem;
      color:#fff;display:block;margin-bottom:0.9rem;
    }
    .footer-brand p{font-size:0.82rem;line-height:1.75;max-width:260px}
    .footer-col h4{
      font-size:0.65rem;font-weight:500;letter-spacing:0.2em;
      text-transform:uppercase;color:#fff;margin-bottom:1.1rem;
    }
    .footer-col ul{list-style:none}
    .footer-col li{margin-bottom:0.6rem}
    .footer-col a{font-size:0.82rem;color:rgba(255,255,255,0.42);transition:color 0.3s}
    .footer-col a:hover{color:var(--gold)}
    .footer-bottom{
      display:flex;justify-content:space-between;
      align-items:center;flex-wrap:wrap;gap:1rem;
      font-size:0.72rem;
    }
    .footer-bottom a{color:rgba(255,255,255,0.3)}
    .footer-bottom a:hover{color:var(--gold)}
    @media(max-width:900px){.footer-top{grid-template-columns:1fr 1fr}}
    @media(max-width:480px){.footer-top{grid-template-columns:1fr;gap:2rem}}

    /* ── LIGHTBOX ── */
    .lb{
      display:none;position:fixed;inset:0;
      background:rgba(10,9,8,0.95);z-index:9998;
      align-items:center;justify-content:center;
    }
    .lb.open{display:flex}
    .lb-inner{display:flex;flex-direction:column;align-items:center;max-width:90vw}
    .lb img{max-width:100%;max-height:88vh;object-fit:contain;border-radius:1px}
    .lb-cap{display:none;width:100%;padding:1rem 1.2rem;background:rgba(255,255,255,0.95);color:var(--ink);font-size:0.85rem;font-weight:300;line-height:1.6;border-radius:0 0 2px 2px}
    .lb-cap strong{display:block;font-weight:500;margin-bottom:0.15rem}
    .lb-cap.visible{display:block}
    .lb-close{
      position:absolute;top:1.5rem;right:2rem;
      color:#fff;font-size:1.8rem;cursor:pointer;
      opacity:0.6;transition:opacity 0.2s;line-height:1;
    }
    .lb-close:hover{opacity:1}

    /* ── SCROLL REVEAL ── */
    .reveal.hidden{opacity:0;transform:translateY(24px);transition:opacity 0.7s ease,transform 0.7s ease}
    .reveal.visible{opacity:1;transform:translateY(0);transition:opacity 0.7s ease,transform 0.7s ease}
    .d1{transition-delay:0.1s}.d2{transition-delay:0.2s}.d3{transition-delay:0.3s}

    /* ── ARTICLE MODALS ── */
    .article-modal{
      display:none;position:fixed;inset:0;z-index:9000;
      overflow-y:auto;
    }
    .article-modal.open{display:block}
    .modal-overlay{
      position:fixed;inset:0;background:rgba(10,9,8,0.7);
      backdrop-filter:blur(4px);
    }
    .modal-content{
      position:relative;z-index:1;
      max-width:820px;margin:2rem auto;
      background:var(--warm-white);border-radius:3px;
      overflow:hidden;box-shadow:0 24px 80px rgba(0,0,0,0.3);
    }
    .modal-close{
      position:absolute;top:1.2rem;right:1.5rem;
      background:rgba(0,0,0,0.4);border:none;color:#fff;
      width:36px;height:36px;border-radius:50%;
      font-size:0.9rem;cursor:pointer;z-index:10;
      transition:background 0.2s;display:flex;
      align-items:center;justify-content:center;
    }
    .modal-close:hover{background:rgba(0,0,0,0.7)}
    .modal-hero{
      height:320px;background-size:cover;background-position:center;
      position:relative;display:flex;align-items:flex-end;
    }
    .modal-hero-overlay{
      position:absolute;inset:0;
      background:linear-gradient(to top,rgba(20,18,14,0.85) 0%,rgba(20,18,14,0.2) 60%,transparent 100%);
    }
    .modal-hero-text{
      position:relative;z-index:1;padding:2rem 2.5rem;
    }
    .modal-hero-text h1{
      font-family:'Playfair Display',serif;
      font-size:clamp(1.5rem,3vw,2.2rem);
      font-weight:500;color:#fff;line-height:1.2;margin-top:0.4rem;
    }
    .modal-meta{font-size:0.75rem;color:rgba(255,255,255,0.55);margin-top:0.5rem;letter-spacing:0.06em}
    .modal-body{padding:2.5rem clamp(1.5rem,5vw,3rem) 3rem}
    .article-content p{
      font-size:0.95rem;font-weight:300;line-height:1.9;
      color:#3a3835;margin-bottom:1.2rem;
    }
    .article-content h3{
      font-family:'Playfair Display',serif;font-size:1.3rem;
      font-weight:500;color:var(--ink);
      margin:2rem 0 0.8rem;
    }
    .article-content strong{font-weight:500;color:var(--ink)}
    .article-content a{color:var(--gold);text-decoration:underline}
    .article-content em{font-style:italic}
    .article-cta{
      margin-top:3rem;padding:2rem;
      background:var(--cream);border-radius:2px;
      border-left:3px solid var(--gold);
    }
    .article-cta h3{font-family:'Playfair Display',serif;font-size:1.2rem;margin-bottom:0.6rem}
    .article-cta p{font-size:0.88rem;font-weight:300;color:var(--stone);line-height:1.75;margin-bottom:1.2rem}
    .article-cta a.btn-gold{display:inline-block}
    .article-cta a:not(.btn-gold){color:var(--gold)}
    @media(max-width:640px){
      .modal-content{margin:0}
      .modal-hero{height:240px}
      .modal-hero-text{padding:1.5rem}
      .modal-body{padding:1.5rem}
    }

  
    /* ── MULTI-PAGE ADDITIONS ── */
    .page-hero{
      position:relative;height:50vh;min-height:340px;max-height:480px;
      background-size:cover;background-position:center;
      display:flex;align-items:flex-end;
    }
    .page-hero-overlay{
      position:absolute;inset:0;
      background:linear-gradient(to top,rgba(28,26,24,0.85) 0%,rgba(28,26,24,0.3) 60%,rgba(28,26,24,0.1) 100%);
    }
    .page-hero-text{
      position:relative;z-index:2;padding:2.5rem clamp(1.5rem,5vw,5rem) 2.5rem;
      max-width:680px;
    }
    .page-hero-text h1{
      font-family:'Playfair Display',serif;font-size:clamp(1.8rem,4vw,2.6rem);
      color:#fff;margin-bottom:0.5rem;line-height:1.2;
    }
    .page-hero-text .breadcrumb{
      font-size:0.72rem;letter-spacing:0.14em;text-transform:uppercase;
      color:rgba(255,255,255,0.5);margin-bottom:1rem;
    }
    .page-hero-text .breadcrumb a{color:var(--gold-light);transition:color 0.3s}
    .page-hero-text .breadcrumb a:hover{color:var(--gold)}
    .page-body{
      max-width:760px;margin:0 auto;
      padding:3rem clamp(1.5rem,5vw,3rem) 4rem;
    }
    .page-body p{
      font-size:0.92rem;font-weight:300;line-height:1.9;
      color:var(--stone);margin-bottom:1.4rem;
    }
    .page-body h3{
      font-family:'Playfair Display',serif;font-size:1.15rem;
      margin:2.2rem 0 0.8rem;color:var(--ink);
    }
    .page-body strong{font-weight:500;color:var(--ink)}
    .page-body a{color:var(--gold);text-decoration:underline}
    .page-body em{font-style:italic}
    .page-cta{
      background:var(--cream);border-radius:4px;padding:2rem;
      margin-top:2.5rem;border-left:3px solid var(--gold);
    }
    .page-cta h3{font-family:'Playfair Display',serif;font-size:1.2rem;margin-bottom:0.6rem;color:var(--ink)}
    .page-cta p{font-size:0.88rem;font-weight:300;color:var(--stone);line-height:1.75;margin-bottom:1.2rem}
    .page-cta a.btn-gold{display:inline-block}
    .blog-list-card{
      display:grid;grid-template-columns:280px 1fr;gap:0;
      background:#fff;border-radius:4px;overflow:hidden;
      box-shadow:0 1px 8px rgba(0,0,0,0.06);
      transition:box-shadow 0.3s,transform 0.3s;margin-bottom:1.5rem;
    }
    .blog-list-card:hover{box-shadow:0 8px 32px rgba(0,0,0,0.1);transform:translateY(-3px)}
    .blog-list-card img{width:100%;height:100%;object-fit:cover;display:block}
    .blog-list-card .blog-body{padding:1.6rem}
    @media(max-width:700px){.blog-list-card{grid-template-columns:1fr}}
    .loc-hero-grid{
      display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
      gap:1.2rem;margin-top:2rem;
    }
    .loc-hero-card{
      background:#fff;border-radius:4px;padding:1.5rem;
      box-shadow:0 1px 8px rgba(0,0,0,0.06);transition:all 0.3s;
    }
    .loc-hero-card:hover{box-shadow:0 6px 24px rgba(0,0,0,0.1);transform:translateY(-2px)}
    .loc-hero-card h3{font-size:1.05rem;margin-bottom:0.5rem}
    .loc-hero-card p{font-size:0.82rem;font-weight:300;color:var(--stone);line-height:1.7}

    /* Fix: ensure btn-gold always has white text regardless of parent */
    .page-body .btn-gold,
    .article-cta .btn-gold,
    .page-cta .btn-gold,
    a.btn-gold {
      color: #fff !important;
      text-decoration: none !important;
    }
