

  *,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}
  :root{
    --forest:      #163126;
    --forest-light:#1e3d30;
    --forest-muted:#2a5040;
    --ivory:       #f9f5ee;
    --cream:       #f0e9d8;
    --beige:       #F4EFE5;
    --warm-white:  #faf8f3;
    --gold:        #c4a96b;
    --gold-light:  #d4bc89;
    --gold-muted:  #a8904f;
    --text-dark:   #1a1f16;
    --text-muted:  #5a5a50;
    --text-light:  #8a8a7a;
    --matte-black: #0d0d0b;
  }
  html{scroll-behavior:smooth;}
  body{font-family:'Jost',sans-serif;background:var(--warm-white);color:var(--text-dark);overflow-x:hidden;}
  h1,h2,h3,h4{font-family:'Cormorant Garamond',serif;font-weight:400;}

  /* ══════════════════════════════════════════════
     NAVBAR
  ══════════════════════════════════════════════ */
  nav{
    position:fixed;top:0;left:0;right:0;z-index:100;
    background:transparent;
    overflow:visible;
    transition:background 0.55s ease, box-shadow 0.45s ease;
  }
  nav.scrolled{
    background:rgba(244,239,229,0.97);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    box-shadow:0 1px 0 rgba(196,169,107,0.15);
  }
  .nav-inner{
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    padding:1.2rem 3rem;
    gap:2rem;
    overflow:visible;
  }

  /* Navbar logo: true RGBA transparent PNG — no blend modes, no filters */
  .nav-brand{text-decoration:none;display:flex;align-items:center;justify-content:flex-start;overflow:visible;}
  .nav-logo-img{
    display:block;
    height:80px;
    width:auto;
    object-fit:contain;
    object-position:center;
    overflow:visible;
    transition:opacity 0.3s;
  }
  .nav-brand:hover .nav-logo-img{opacity:0.75;}

  .nav-center{display:flex;flex-direction:column;align-items:center;gap:0.3rem;}
  .nav-links{display:flex;gap:3rem;list-style:none;align-items:center;}
  .nav-links a{
    font-family:'Jost',sans-serif;font-weight:300;font-size: 0.72rem;
    letter-spacing:0.22em;text-transform:uppercase;
    color:var(--forest);text-decoration:none;opacity:0.78;
    transition:opacity 0.3s,color 0.3s;
  }
  .nav-links a:hover{opacity:1;color:var(--gold-muted);}
  .nav-sublabel{display:flex;align-items:center;gap:0.9rem;}
  .nav-sublabel-rule{display:block;width:26px;height:1px;background:rgba(196,169,107,0.5);}
  .nav-sublabel-text{
    font-family:'Jost',sans-serif;font-weight:400;font-size: 0.72rem;
    letter-spacing:0.52em;text-transform:uppercase;color:rgba(130,115,85,0.90);
  }
  .nav-right{display:flex;justify-content:flex-end;}
  .nav-cta{
    font-family:'Jost',sans-serif;font-weight:400;font-size: 0.72rem;
    letter-spacing:0.22em;text-transform:uppercase;
    color:#fff;background:var(--forest);border:none;
    padding:0.9rem 1.8rem;cursor:pointer;white-space:nowrap;
    transition:background 0.3s,letter-spacing 0.4s;
  }
  .nav-cta:hover{background:var(--forest-light);letter-spacing:0.28em;}

  /* ══════════════════════════════════════════════
     HERO
  ══════════════════════════════════════════════ */
  .hero{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    /* overflow:visible so logo is never clipped at edges */
    overflow:visible;
    background:#F4EFE5;
  }
  /* Palm shadow contained separately so hero can be overflow:visible */
  .hero-bg-clip {
    position:absolute;
    inset:0;
    overflow:hidden;
    pointer-events:none;
    z-index:0;
  }

  /* Palm shadow */
  .hero-palm{
    position:absolute;left:-3%;top:-8%;width:40%;height:118%;
    pointer-events:none;z-index:0;
    background:
      radial-gradient(ellipse  9% 75% at 36% 58%, rgba(22,49,38,0.13) 0%, transparent 100%),
      radial-gradient(ellipse 62% 22% at 68% 13%, rgba(22,49,38,0.10) 0%, transparent 100%),
      radial-gradient(ellipse 72% 18% at 78% 28%, rgba(22,49,38,0.09) 0%, transparent 100%),
      radial-gradient(ellipse 76% 17% at 82% 43%, rgba(22,49,38,0.08) 0%, transparent 100%),
      radial-gradient(ellipse 70% 17% at 80% 57%, rgba(22,49,38,0.07) 0%, transparent 100%),
      radial-gradient(ellipse 64% 18% at 74% 70%, rgba(22,49,38,0.06) 0%, transparent 100%),
      radial-gradient(ellipse 52% 22% at 62% 83%, rgba(22,49,38,0.05) 0%, transparent 100%);
    filter:blur(22px);
  }

  /*
   * WATERMARK — genuine RGBA transparent PNG at 5% opacity.
   * True alpha: no blend modes, no filters.
   * The forest green mark shows softly through the low opacity.
   */
  .hero-watermark{
    position:absolute;
    top:50%;left:50%;
    transform:translate(-50%,-50%);
    width:min(86vw,880px);
    height:auto;
    object-fit:contain;
    object-position:center;
    overflow:visible;
    opacity:0.045;
    pointer-events:none;
    z-index:1;
  }

  /* Hero content */
  .hero-content{
    position:relative;z-index:2;
    text-align:center;
    display:flex;flex-direction:column;align-items:center;
    padding:9rem 2rem 8rem;
    width:100%;max-width:1000px;
    overflow:visible;
  }

  /*
   * HERO LOGO — genuine RGBA transparent PNG.
   * No blend mode, no filter, no container.
   * Forest green mark floats directly on the beige background.
   */
  .hero-logo-wrap{
    margin-bottom:2.2rem;
    opacity:0;
    overflow:visible;
    display:flex;
    align-items:center;
    justify-content:center;
    animation:fadeUp 1.2s cubic-bezier(0.16,1,0.3,1) 0.15s forwards;
  }
  .hero-logo-img{
    display:block;
    height:172px;
    width:auto;
    object-fit:contain;
    object-position:center;
    overflow:visible;
    margin:0 auto;
  }

  /* Headline */
  .hero-title{
    display:block;opacity:0;
    animation:fadeUp 1.4s cubic-bezier(0.16,1,0.3,1) 0.32s forwards;
  }
  .hero-title-line1{
    display:block;
    font-family:'Cormorant Garamond',serif;font-weight:400;
    font-size:clamp(4rem,9vw,9.5rem);
    line-height:0.95;color:var(--forest);letter-spacing:-0.01em;
  }
  .hero-title-line2{
    display:block;
    font-family:'Cormorant Garamond',serif;font-style:italic;font-weight:400;
    font-size:clamp(4rem,9vw,9.5rem);
    line-height:0.95;color:var(--forest);letter-spacing:-0.01em;
  }
  .hero-divider-group{
    display:flex;align-items:center;justify-content:center;
    width:200px;margin:2.8rem auto 2.5rem;
    opacity:0;animation:fadeUp 1.4s cubic-bezier(0.16,1,0.3,1) 0.5s forwards;
  }
  .hero-divider-rule{flex:1;height:1px;background:var(--gold-muted);opacity:0.5;}
  .hero-divider-diamond{
    width:6px;height:6px;background:var(--gold-muted);opacity:0.62;
    transform:rotate(45deg);margin:0 0.7rem;flex-shrink:0;
  }
  .hero-subtitle{
    font-family:'Jost',sans-serif;font-weight:300;
    font-size: 0.86rem;letter-spacing:0.13em;
    color:var(--text-muted);line-height:2.0;
    opacity:0;animation:fadeUp 1.4s cubic-bezier(0.16,1,0.3,1) 0.58s forwards;
  }
  .hero-actions{
    display:flex;align-items:center;justify-content:center;
    gap:3.5rem;margin-top:3.2rem;flex-wrap:wrap;
    opacity:0;animation:fadeUp 1.4s cubic-bezier(0.16,1,0.3,1) 0.74s forwards;
  }
  .btn-primary{
    font-family:'Jost',sans-serif;font-weight:400;font-size: 0.72rem;
    letter-spacing:0.26em;text-transform:uppercase;
    color:#fff;background:var(--forest);border:none;
    padding:1.15rem 2.8rem;cursor:pointer;
    transition:background 0.4s,letter-spacing 0.4s cubic-bezier(0.16,1,0.3,1);
    text-decoration:none;display:inline-block;
  }
  .btn-primary:hover{background:var(--forest-light);letter-spacing:0.32em;}
  .btn-text-link{
    font-family:'Jost',sans-serif;font-weight:300;font-size: 0.72rem;
    letter-spacing:0.26em;text-transform:uppercase;
    color:var(--text-muted);text-decoration:none;
    display:inline-flex;align-items:center;gap:0.9rem;
    background:none;border:none;cursor:pointer;transition:color 0.3s;
  }
  .btn-text-link::after{
    content:'';display:block;width:26px;height:1px;background:currentColor;
    transition:width 0.45s cubic-bezier(0.16,1,0.3,1);
  }
  .btn-text-link:hover{color:var(--forest);}
  .btn-text-link:hover::after{width:46px;}
  .btn-ghost{
    font-family:'Jost',sans-serif;font-weight:300;font-size: 0.72rem;
    letter-spacing:0.22em;text-transform:uppercase;color:var(--text-muted);
    background:transparent;border:1px solid rgba(22,49,38,0.2);
    padding:1.15rem 2.8rem;cursor:pointer;transition:all 0.3s;
    text-decoration:none;display:inline-block;
  }
  .btn-ghost:hover{border-color:var(--forest);color:var(--forest);}
  .hero-area-tag{
    font-family:'Jost',sans-serif;font-weight:400;font-size: 0.72rem;
    letter-spacing:0.5em;text-transform:uppercase;
    color:rgba(90,90,80,0.42);margin-top:4.5rem;
    opacity:0;animation:fadeUp 1.4s cubic-bezier(0.16,1,0.3,1) 1.02s forwards;
  }
  .hero-scroll-cue{
    position:absolute;bottom:2.5rem;left:50%;transform:translateX(-50%);
    z-index:3;opacity:0;animation:fadeIn 2s ease 2.2s forwards;
  }
  .hero-scroll-thread{
    width:1px;height:52px;
    background:linear-gradient(to bottom,rgba(196,169,107,0.5),transparent);
    transform-origin:top;animation:threadDrop 3.2s ease-in-out infinite;
  }
  @keyframes threadDrop{0%{transform:scaleY(0);opacity:0;}20%{opacity:1;}100%{transform:scaleY(1);opacity:0;}}
  @keyframes fadeIn{from{opacity:0;}to{opacity:1;}}
  @keyframes fadeUp{from{opacity:0;transform:translateY(22px);}to{opacity:1;transform:translateY(0);}}

  section{position:relative;}
  .section-eyebrow{font-family:'Jost',sans-serif;font-weight:400;font-size: 0.72rem;letter-spacing:0.38em;text-transform:uppercase;color:rgba(130,115,85,0.90);margin-bottom:1rem;}
  .section-title{font-family:'Cormorant Garamond',serif;font-weight:400;font-size:clamp(2.2rem,5vw,3.8rem);color:var(--forest);line-height:1.15;margin-bottom:1.5rem;}
  .section-body{font-family:'Jost',sans-serif;font-weight:300;font-size: 0.88rem;letter-spacing:0.04em;line-height:1.95;color:var(--text-muted);max-width:540px;}
  .gold-divider{width:36px;height:1px;background:rgba(196,169,107,0.35);margin:0 auto 2rem;}
  .reveal{opacity:0;transform:translateY(28px);transition:opacity 0.9s ease,transform 0.9s ease;}
  .reveal.visible{opacity:1;transform:translateY(0);}

  
  @media(min-width:901px) and (max-width:1100px){
    .nav-logo-img{height:68px;}
  }
  @media(max-width:900px){
    .nav-inner{grid-template-columns:auto auto;padding:1rem 1.5rem;}
    .nav-center{display:none;}
    .nav-right{justify-content:flex-end;}
    .nav-cta{padding:0.8rem 1.2rem;font-size: 0.72rem;}
    .nav-logo-img{height:60px;}
    .hero-content{padding:8rem 1.5rem 6rem;}
    .hero-logo-img{height:118px;}
    .hero-title-line1,.hero-title-line2{font-size:clamp(3.2rem,13vw,6rem);}
    .hero-actions{gap:2.5rem;}
    .hero-palm{width:55%;filter:blur(24px);}
    .hero-watermark{width:92vw;}
  }


  /* ══════════════════════════════════════════════
     GLOBAL LOGO RENDERING — prevents all cropping
  ══════════════════════════════════════════════ */
  .logo-img,
  .nav-logo-img,
  .hero-logo-img,
  .hero-watermark,
  .cta-logo,
  .footer-logo {
    display: block;
    width: auto;
    object-fit: contain;
    object-position: center;
    overflow: visible;
  }

  .logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    width: auto;
    height: auto;
    min-width: fit-content;
    min-height: fit-content;
  }

  /* Every element in the logo chain must not clip */
  nav,
  .nav-inner,
  .nav-brand,
  .hero-content,
  .hero-logo-wrap,
  .cta-inner,
  footer,
  .footer-inner,
  .footer-brand {
    overflow: visible !important;
  }



  /* ══════════════════════════════════════════════════
     SERVICES — ATELIER
  ══════════════════════════════════════════════════ */
  .services-atelier {
    background: var(--warm-white);
    padding: 8rem 0;
  }

  .svc-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 7rem;
    padding: 0 5rem;
  }

  .section-title-lg {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    color: var(--forest);
    line-height: 1.15;
    margin-bottom: 1.4rem;
  }
  .section-title-lg em { font-style: italic; }

  .svc-intro-body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
  }

  /* Category */
  .svc-category {
    padding: 5rem 0;
    border-top: 1px solid rgba(196,169,107,0.15);
  }

  .svc-category-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5rem;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 0 7rem;
    align-items: start;
  }

  .svc-cat-header {
    position: sticky;
    top: 8rem;
  }

  .svc-cat-eyebrow {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.72rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: rgba(130,115,85,0.90);
    margin-bottom: 0.7rem;
  }

  .svc-cat-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--forest);
    line-height: 1.15;
    margin-bottom: 2rem;
  }

  .svc-cat-rule {
    width: 32px;
    height: 1px;
    background: rgba(196,169,107,0.4);
  }

  /* Service list */
  .svc-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .svc-item {
    padding: 2.2rem 0;
    border-bottom: 1px solid rgba(30,51,37,0.06);
    transition: padding-left 0.4s cubic-bezier(0.16,1,0.3,1);
  }
  .svc-item:last-child { border-bottom: none; }
  .svc-item:hover { padding-left: 0.6rem; }

  .svc-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--forest);
    margin-bottom: 0.55rem;
    letter-spacing: 0.01em;
  }

  .svc-desc {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    line-height: 1.85;
    color: var(--text-muted);
    max-width: 520px;
  }

  /* Enhancements */
  .svc-enhancements {
    padding: 5rem 5rem;
    text-align: center;
    border-top: 1px solid rgba(196,169,107,0.15);
    max-width: 1100px;
    margin: 0 auto;
  }

  .svc-enh-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  .svc-enh-divider span:not(.svc-enh-label) {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: rgba(196,169,107,0.35);
  }
  .svc-enh-label {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.72rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold-muted);
  }

  .svc-list--center { align-items: center; }
  .svc-list--center .svc-item { text-align: center; border: none; padding: 0; }
  .svc-list--center .svc-item:hover { padding-left: 0; }
  .svc-list--center .svc-desc { margin: 0 auto; }

  /* ══════════════════════════════════════════════════
     EXPERIENCE
  ══════════════════════════════════════════════════ */
  .experience {
    background: var(--forest);
    padding: 8rem 4rem;
  }

  /* ══════════════════════════════════════════════════
     ABOUT
  ══════════════════════════════════════════════════ */

  /* ══════════════════════════════════════════════════
     ATELIER POLICIES
  ══════════════════════════════════════════════════ */
  .atelier-policies {
    background: var(--warm-white);
    padding: 8rem 4rem;
  }

  .policies-inner {
    max-width: 900px;
    margin: 0 auto;
  }

  .policies-header {
    text-align: center;
    margin-bottom: 5rem;
  }

  .policies-intro {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
  }

  .policies-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .policy-item {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 0 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(30,51,37,0.07);
    align-items: start;
  }
  .policy-item:last-child { border-bottom: none; }

  .policy-diamond {
    font-size: 0.72rem;
    color: rgba(196,169,107,0.5);
    padding-top: 0.25rem;
    letter-spacing: 0.05em;
  }

  .policy-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.15rem;
    color: var(--forest);
    margin-bottom: 0.5rem;
  }

  .policy-body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 0.83rem;
    letter-spacing: 0.04em;
    line-height: 1.85;
    color: var(--text-muted);
  }

  /* ══════════════════════════════════════════════════
     SERVICE AREAS
  ══════════════════════════════════════════════════ */
  .service-areas {
    background: var(--beige);
    padding: 7rem 4rem;
    text-align: center;
  }

  .areas-inner {
    max-width: 780px;
    margin: 0 auto;
  }

  .areas-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
  }

  .areas-dot {
    color: var(--gold-muted);
    margin: 0 0.3em;
    font-style: normal;
  }

  .areas-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--gold-muted);
    margin-bottom: 2rem;
  }

  .areas-rule {
    width: 36px;
    height: 1px;
    background: rgba(196,169,107,0.35);
    margin: 0 auto 2rem;
  }

  .areas-body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 0.86rem;
    letter-spacing: 0.05em;
    line-height: 1.9;
    color: var(--text-muted);
  }

  /* ══════════════════════════════════════════════════
     CTA
  ══════════════════════════════════════════════════ */
  .cta-section {
    background: var(--forest);
    padding: 10rem 4rem;
    text-align: center;
    position: relative;
    overflow: visible;
  }

  .cta-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .cta-logo {
    display: block;
    height: 90px;
    width: auto;
    object-fit: contain;
    overflow: visible;
    margin: 0 auto 3rem;
    filter: brightness(0) invert(1);
    opacity: 0.45;
  }

  .cta-headline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--ivory);
    line-height: 1.15;
    margin-bottom: 0;
  }
  .cta-headline em { font-style: italic; }

  .cta-body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 0.86rem;
    letter-spacing: 0.06em;
    line-height: 1.9;
    color: rgba(235,227,211,0.65);
    max-width: 480px;
    margin: 0 auto 3.5rem;
  }

  .cta-actions { display: flex; justify-content: center; }

  .btn-primary--ivory {
    background: transparent !important;
    border: 1px solid rgba(235,227,211,0.35) !important;
    color: var(--ivory) !important;
    letter-spacing: 0.3em !important;
  }
  .btn-primary--ivory:hover {
    background: rgba(235,227,211,0.08) !important;
    border-color: rgba(196,169,107,0.5) !important;
    letter-spacing: 0.36em !important;
  }

  /* ══════════════════════════════════════════════════
     FOOTER
  ══════════════════════════════════════════════════ */
  footer {
    background: var(--matte-black);
    padding: 5rem 4rem;
  }

  .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 160px 1fr 220px;
    gap: 3rem;
    align-items: center;
  }

  .footer-logo {
    display: block;
    height: 90px;
    width: auto;
    object-fit: contain;
    overflow: visible;
    filter: brightness(0) invert(1);
    opacity: 0.45;
  }

  .footer-copy { text-align: center; }

  .footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: rgba(235,227,211,0.55);
    margin-bottom: 0.6rem;
  }

  .footer-regions {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(196,169,107,0.45);
    margin-bottom: 1rem;
  }

  .footer-legal {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: rgba(235,227,211,0.25);
  }

  .footer-contact { text-align: right; }

  .footer-contact-label {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.72rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(196,169,107,0.45);
    margin-bottom: 0.8rem;
  }

  .footer-link {
    display: block;
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: rgba(235,227,211,0.45);
    text-decoration: none;
    transition: color 0.3s;
    margin-bottom: 0.4rem;
  }
  .footer-link:hover { color: rgba(235,227,211,0.75); }

  .footer-link--phone {
    font-size: 0.72rem;
    color: rgba(196,169,107,0.45);
  }
  .footer-link--phone:hover { color: rgba(196,169,107,0.75); }

  /* ══════════════════════════════════════════════════
     RESPONSIVE
  ══════════════════════════════════════════════════ */
  @media(max-width:900px) {
    .svc-category { padding: 4rem 0; }
    .svc-category-inner {
      grid-template-columns: 1fr;
      gap: 2.5rem 0;
      padding: 0 1.5rem;
    }
    .svc-cat-header { position: static; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .footer-logo { margin: 0 auto; }
    .footer-contact { text-align: center; }
    .svc-enhancements { padding: 4rem 1.5rem; }
    .atelier-policies { padding: 6rem 1.5rem; }
    .service-areas { padding: 5rem 1.5rem; }
    .cta-section { padding: 7rem 1.5rem; }
  }


  /* ══════════════════════════════════════════════════
     OUR PHILOSOPHY
  ══════════════════════════════════════════════════ */
  .philosophy {
    background: var(--warm-white);
    padding: 9rem 4rem;
    text-align: center;
    border-top: 1px solid rgba(196,169,107,0.12);
  }

  .philosophy-inner {
    max-width: 700px;
    margin: 0 auto;
  }

  .philosophy-rule-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    margin-bottom: 4rem;
  }
  .philosophy-rule-top span:not(.philosophy-lozenge) {
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: rgba(196,169,107,0.3);
  }
  .philosophy-lozenge {
    width: 5px;
    height: 5px;
    background: rgba(196,169,107,0.45);
    transform: rotate(45deg);
    flex-shrink: 0;
  }

  .philosophy-lead {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.5rem, 3.2vw, 2.1rem);
    color: var(--forest);
    line-height: 1.55;
    letter-spacing: 0.01em;
    margin-bottom: 3rem;
  }

  .philosophy-body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 0.86rem;
    letter-spacing: 0.06em;
    line-height: 2.0;
    color: var(--text-muted);
    margin-bottom: 1.6rem;
  }
  .philosophy-body:last-of-type { margin-bottom: 0; }

  .philosophy-rule-bottom {
    margin: 3.5rem auto 0;
    width: 36px;
    height: 1px;
    background: rgba(196,169,107,0.3);
  }

  /* ══════════════════════════════════════════════════
     THE ATELIER STANDARD
  ══════════════════════════════════════════════════ */
  .atelier-standard {
    background: var(--beige);
    padding: 7rem 4rem;
    border-top: 1px solid rgba(196,169,107,0.12);
  }

  .standard-inner {
    max-width: 1000px;
    margin: 0 auto;
  }

  .standard-header {
    text-align: center;
    margin-bottom: 4.5rem;
  }

  .standard-item {
    border-left: 1px solid rgba(196,169,107,0.25);
    padding-left: 1.4rem;
  }

  .standard-mark {
    display: block;
    width: 16px;
    height: 1px;
    background: rgba(196,169,107,0.5);
    margin-bottom: 1rem;
  }

  .standard-text {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    line-height: 1.7;
    color: var(--text-muted);
  }

  @media(max-width:900px) {
    .philosophy { padding: 6rem 1.5rem; }
    .atelier-standard { padding: 5rem 1.5rem; }
  }


  /* ══════════════════════════════════════════════════
     FOUNDER PORTRAIT — editorial presence section
  ══════════════════════════════════════════════════ */
  .founder {
    background: var(--warm-white);
    padding: 9rem 4rem;
    border-top: 1px solid rgba(196,169,107,0.1);
  }

  .founder-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    color: var(--forest);
    line-height: 1.55;
    letter-spacing: 0.01em;
    margin-bottom: 2.8rem;
  }

  /* Portrait — breathes freely, no container */

  .founder-portrait {
    display: block;
    width: 100%;
    height: auto;
    /* Slight upward crop: show from chin area, let image breathe at top */
    object-fit: cover;
    object-position: center 15%;
    /* Tall editorial format */
    max-height: 680px;
    /* CSS editorial filter — warm, soft, cinematic */
    filter: contrast(0.99) saturate(0.96) brightness(1.01) sepia(0.03);
    /* Subtle fade only at the very bottom edge — presence first, blend second */
    -webkit-mask-image: linear-gradient(to bottom, black 86%, rgba(0,0,0,0.55) 94%, transparent 100%);
            mask-image: linear-gradient(to bottom, black 86%, rgba(0,0,0,0.55) 94%, transparent 100%);
  }

  @media(max-width:900px) {
    .founder-portrait {
      max-height: 460px;
    }
    .founder { padding: 6rem 1.5rem; }
  }

  .founder-cred-rule {
    width: 28px;
    height: 1px;
    background: rgba(196,169,107,0.3);
    margin-bottom: 1.5rem;
  }


  /* ── Hero signature line ── */
  .hero-signature {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    letter-spacing: 0.18em;
    color: rgba(30,51,37,0.48);
    margin-top: 2.8rem;
    opacity: 0;
    animation: fadeUp 1.6s cubic-bezier(0.16,1,0.3,1) 1.1s forwards;
  }

  /* ── Softer global transitions ── */
  .svc-item { transition: padding-left 0.55s cubic-bezier(0.16,1,0.3,1); }
  .btn-primary { transition: background 0.5s ease, letter-spacing 0.55s cubic-bezier(0.16,1,0.3,1); }
  .btn-text-link::after { transition: width 0.55s cubic-bezier(0.16,1,0.3,1); }
  .nav-links a { transition: opacity 0.4s ease, color 0.4s ease; }
  .reveal { transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.16,1,0.3,1); }


  /* ══════════════════════════════════════════════════
     PRIVATE BOOKING INQUIRY
  ══════════════════════════════════════════════════ */
  .booking-inquiry {
    background: var(--warm-white);
    padding: 9rem 4rem;
    border-top: 1px solid rgba(196,169,107,0.12);
  }

  .booking-inner {
    max-width: 720px;
    margin: 0 auto;
  }

  .booking-header {
    text-align: center;
    margin-bottom: 4.5rem;
  }

  .booking-header .section-eyebrow { margin-bottom: 0.8rem; }

  .booking-intro {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 0.86rem;
    letter-spacing: 0.06em;
    line-height: 1.9;
    color: var(--text-muted);
    max-width: 480px;
    margin: 1.2rem auto 0;
  }

  /* Form */
  .booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem 3rem;
  }

  .booking-field {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .booking-field--full {
    grid-column: 1 / -1;
  }

  .booking-label {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.72rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold-muted);
  }

  .booking-input,
  .booking-select,
  .booking-textarea {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(30,51,37,0.18);
    padding: 0.7rem 0;
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 0.84rem;
    letter-spacing: 0.05em;
    color: var(--forest);
    outline: none;
    border-radius: 0;
    transition: border-color 0.35s ease;
    width: 100%;
  }

  .booking-input::placeholder,
  .booking-textarea::placeholder {
    color: rgba(30,51,37,0.28);
    font-style: italic;
  }

  .booking-input:focus,
  .booking-select:focus,
  .booking-textarea:focus {
    border-bottom-color: rgba(196,169,107,0.6);
  }

  /* ── Custom service selector ─────────────────── */
  .svc-selector {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .svc-selector-group {}

  .svc-selector-group-label {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.72rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: rgba(196,169,107,0.65);
    margin-bottom: 0.9rem;
    display: block;
  }

  .svc-selector-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
  }

  .svc-pill {
    display: inline-block;
    cursor: pointer;
    padding: 0.55rem 1.2rem;
    border: 1px solid rgba(30,51,37,0.13);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 0.74rem;
    letter-spacing: 0.09em;
    color: rgba(30,51,37,0.55);
    background: transparent;
    transition:
      border-color 0.35s ease,
      color 0.35s ease,
      background 0.35s ease;
    user-select: none;
    -webkit-user-select: none;
  }

  .svc-pill:hover {
    border-color: rgba(196,169,107,0.4);
    color: var(--forest);
  }
  .svc-pill:focus {
    outline: 2px solid rgba(196,169,107,0.7);
    outline-offset: 2px;
  }
  .svc-pill:focus:not(:focus-visible) { outline: none; }

  .svc-pill.selected {
    border-color: rgba(196,169,107,0.65);
    color: var(--forest);
    background: rgba(196,169,107,0.07);
  }

  /* Hidden real input that carries the value */
/* Time select — keep native but style it cleanly */
  .booking-select-wrap {
    position: relative;
  }

  .booking-select-wrap::after {
    content: '';
    position: absolute;
    right: 0.2rem;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 5px;
    height: 5px;
    border-right: 1px solid rgba(196,169,107,0.45);
    border-bottom: 1px solid rgba(196,169,107,0.45);
    pointer-events: none;
  }

  .booking-select {
    cursor: pointer;
    padding-right: 1.4rem;
    color: var(--forest);
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
  }

  .booking-select option {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    color: var(--forest);
    background: var(--warm-white);
  }

  .booking-textarea {
    resize: none;
    min-height: 80px;
    border: none;
    border-bottom: 1px solid rgba(30,51,37,0.18);
    padding-top: 0.7rem;
  }

  /* Submit */
  .booking-submit-wrap {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    margin-top: 1.2rem;
  }

  .booking-submit {
    appearance: none;
    background: transparent;
    border: 1px solid rgba(30,51,37,0.22);
    color: var(--forest);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 0.72rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    padding: 1.1rem 3.2rem;
    cursor: pointer;
    transition: border-color 0.45s ease, letter-spacing 0.45s ease, color 0.45s ease;
  }

  .booking-submit:hover {
    border-color: rgba(196,169,107,0.55);
    color: rgba(30,51,37,0.7);
    letter-spacing: 0.46em;
  }

  .booking-note {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    line-height: 1.85;
    color: rgba(30,51,37,0.38);
    text-align: center;
    max-width: 480px;
  }

  /* Success state */
  .booking-success {
    display: none;
    text-align: center;
    padding: 3rem 0;
  }

  .booking-success.visible { display: block; }
  .booking-form.hidden { display: none; }

  .booking-success-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.8rem;
    color: var(--forest);
    margin-bottom: 1rem;
  }

  .booking-success-body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 0.84rem;
    letter-spacing: 0.06em;
    line-height: 1.9;
    color: var(--text-muted);
  }

  @media(max-width:700px) {
    .booking-form { grid-template-columns: 1fr; }
    .booking-field--full { grid-column: 1; }
    .booking-inquiry { padding: 6rem 1.5rem; }
  }


  /* ══════════════════════════════════════════════════
     ATELIER POLICIES (legal/operational)
  ══════════════════════════════════════════════════ */
  .atelier-policies-legal {
    background: var(--warm-white);
    padding: 8rem 4rem;
    border-top: 1px solid rgba(196,169,107,0.1);
  }

  .policies-legal-inner {
    max-width: 860px;
    margin: 0 auto;
  }

  .policies-legal-header {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .policies-legal-intro {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 0.84rem;
    letter-spacing: 0.05em;
    line-height: 1.95;
    color: var(--text-muted);
    text-align: center;
    max-width: 580px;
    margin: 0 auto 4.5rem;
  }

  .policies-legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 5rem;
  }

  .policy-legal-item {}

  .policy-legal-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.05rem;
    color: var(--forest);
    letter-spacing: 0.02em;
    margin-bottom: 0.65rem;
  }

  .policy-legal-body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 0.79rem;
    letter-spacing: 0.04em;
    line-height: 1.9;
    color: rgba(30,51,37,0.58);
  }

  .policies-legal-rule {
    width: 28px;
    height: 1px;
    background: rgba(196,169,107,0.3);
    margin: 0 auto 4.5rem;
  }

  @media(max-width:900px) {
    .policies-legal-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .atelier-policies-legal { padding: 6rem 1.5rem; }
  }

  .footer-nav-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    grid-column: 1 / -1;
    border-top: 1px solid rgba(235,227,211,0.07);
    padding-top: 2.5rem;
    margin-top: 1.5rem;
  }

  .footer-link--nav {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(235,227,211,0.3);
    display: inline;
    margin-bottom: 0;
  }

  .footer-link--nav:hover { color: rgba(235,227,211,0.6); }

  /* Footer 3-col → needs 1 more row for nav links */
  @media(max-width:900px) {
    .footer-nav-links { padding-top: 2rem; margin-top: 0; }
  }


  /* ── Privacy minimal ── */
  .privacy-minimal {
    background: var(--beige);
    padding: 5rem 4rem;
    border-top: 1px solid rgba(196,169,107,0.1);
  }
  .privacy-inner { max-width: 720px; margin: 0 auto; }
  .privacy-body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    line-height: 1.95;
    color: var(--text-muted);
    margin-top: 1rem;
  }
  .privacy-link {
    color: var(--forest);
    text-decoration: none;
    border-bottom: 1px solid rgba(30,51,37,0.2);
    transition: border-color 0.3s;
  }
  .privacy-link:hover { border-color: rgba(196,169,107,0.6); }
  @media(max-width:900px) { .privacy-minimal { padding: 4rem 1.5rem; } }


  /* ── Gel note ── */
  .svc-gel-note {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 4rem 5rem;
    text-align: center;
  }
  .svc-gel-body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    line-height: 1.95;
    color: rgba(30,51,37,0.42);
  }
  @media(max-width:900px){ .svc-gel-note { padding: 0 1.5rem 4rem; } }


/* ═══ V2 REFINEMENTS — preserve original visual system ═══ */
:root{--text-muted:#484b43;--text-light:#686b61;--gold-muted:#9b7d3f;}
body{font-weight:400;}
.nav-links a{font-weight:400;opacity:.9}.nav-sublabel-text{font-weight:400}.hero-subtitle,.btn-text-link,.btn-ghost{font-weight:400}.hero-area-tag{font-weight:400;color:rgba(60,63,55,.68)}
.nav-right{align-items:center;gap:1.15rem}.nav-whatsapp{font-size:.58rem;letter-spacing:.18em;text-transform:uppercase;color:var(--forest);text-decoration:none;border-bottom:1px solid rgba(155,125,63,.55);padding:.35rem 0;font-weight:400}.nav-whatsapp:hover{color:var(--gold-muted)}
.btn-whatsapp{color:var(--forest)}
.svc-title-row{display:flex;align-items:baseline;justify-content:space-between;gap:1.5rem}.svc-price{font-family:'Cormorant Garamond',serif;font-size:1.15rem;letter-spacing:.06em;color:var(--gold-muted);white-space:nowrap;font-weight:600}.svc-desc{color:#454940!important;font-weight:400!important}.svc-category--facial{background:rgba(240,233,216,.36)}
.enhancement-grid{display:grid;grid-template-columns:1fr 1fr;gap:4.5rem;max-width:980px;margin:3rem auto 0}.enh-col{min-width:0}.enh-kicker{font-family:'Jost',sans-serif;text-transform:uppercase;letter-spacing:.24em;font-size:.63rem;color:var(--gold-muted);margin:2rem 0 1rem;font-weight:500}.enh-col p:not(.enh-kicker){position:relative;padding:1rem 5.5rem 1rem 0;border-bottom:1px solid rgba(196,169,107,.18)}.enh-col strong{font-family:'Cormorant Garamond',serif;font-size:1.28rem;font-weight:500;color:var(--forest);display:block}.enh-col span{position:absolute;right:0;top:1rem;font-family:'Cormorant Garamond',serif;font-size:1.18rem;color:var(--gold-muted);font-weight:600}.enh-col small{display:block;margin-top:.35rem;font-size:.78rem;line-height:1.65;color:#55594f;font-weight:400}
.membership-badges{display:flex;align-items:center;gap:1.25rem;margin-top:1.8rem}.membership-badges img{width:92px;height:92px;object-fit:contain;background:#fff;padding:.35rem;filter:saturate(.75)}
.client-reflections{padding:8rem 2rem;background:var(--ivory)}.reflections-inner{max-width:1120px;margin:auto}.reflections-header{max-width:660px;margin-bottom:4rem}.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}.review-card{margin:0;padding:2rem;border-top:1px solid rgba(155,125,63,.5);background:rgba(255,255,255,.34)}.review-stars{letter-spacing:.15em;color:var(--gold-muted);font-size:.82rem;margin-bottom:1.2rem}.review-card p{font-family:'Cormorant Garamond',serif;font-size:1.35rem;line-height:1.55;color:var(--forest);font-weight:500}.review-card footer{background:none!important;padding:0!important;margin-top:1.4rem!important;font-size:.67rem!important;letter-spacing:.12em!important;text-transform:uppercase;color:#62665c!important;font-family:'Jost',sans-serif!important}.reviews-note{text-align:center;margin-top:2.4rem;font-size:.68rem;letter-spacing:.18em;text-transform:uppercase;color:#5c6056;font-weight:500}
.btn-whatsapp-ivory{font-family:'Jost',sans-serif;font-weight:500;font-size:.6rem;letter-spacing:.22em;text-transform:uppercase;color:var(--cream);border:1px solid rgba(240,233,216,.45);padding:1.05rem 2rem;text-decoration:none;display:inline-block;margin-left:1rem}.cta-phone{margin-top:1.8rem}.cta-phone a{color:rgba(240,233,216,.82);text-decoration:none;letter-spacing:.14em;font-size:.72rem}
.footer-contact{gap:.35rem}.footer-link{font-weight:400!important}
@media(max-width:900px){.nav-whatsapp{display:none}.svc-title-row{align-items:flex-start;flex-direction:column;gap:.35rem}.svc-price{font-size:1.05rem}.enhancement-grid,.reviews-grid{grid-template-columns:1fr;gap:1.5rem}.membership-badges img{width:78px;height:78px}.btn-whatsapp-ivory{margin:1rem 0 0}.client-reflections{padding:5.5rem 1.5rem}}


/* ═══ V2.1 QUIET-LUXURY CORRECTIONS — surgical refinements only ═══ */
:root{
  --gold-muted:#927437;
  --text-muted:#3f443c;
  --text-light:#5b6057;
}

/* crisp micro-type */
.section-eyebrow,.svc-cat-eyebrow,.svc-selector-group-label,.booking-label,.footer-contact-label,.footer-link--nav{
  font-weight:400 !important;
}
.section-eyebrow{color:#6f6249 !important;}
.svc-cat-eyebrow{color:#766749 !important;}
.booking-label{color:#6b5e45 !important;}

/* nav brand: monogram only, proportionally larger */
.nav-logo-img{height:72px !important;}
.nav-inner{padding-top:.8rem;padding-bottom:.8rem;}
.nav-sublabel{display:none !important;}
@media(max-width:900px){.nav-logo-img{height:58px !important;}}

/* hero: one quiet watermark, less redundancy */
.hero-watermark{opacity:.028 !important;filter:none !important;}
.hero-logo-img{height:142px !important;}
.hero-subtitle{font-family:'Cormorant Garamond',serif !important;font-style:italic;font-size:1.18rem !important;letter-spacing:.015em !important;line-height:1.55 !important;color:#314238 !important;}
.hero-area-tag{color:#5a584f !important;font-weight:400 !important;}

/* services: key transactional info must be readable */
.svc-price{color:var(--forest) !important;font-weight:600 !important;}
.svc-title-row{display:grid !important;grid-template-columns:minmax(0,1fr) auto auto;align-items:baseline !important;column-gap:1.15rem;}
.svc-reserve{font-family:'Jost',sans-serif;font-size:.58rem;letter-spacing:.16em;text-transform:uppercase;color:#74633f;text-decoration:none;white-space:nowrap;border-bottom:1px solid rgba(146,116,55,.42);padding-bottom:.12rem;font-weight:500;}
.svc-reserve:hover{color:var(--forest);border-color:var(--forest);}
.svc-desc{color:#3d433c !important;}

/* founder copy and credentials */
.membership-label{margin-top:2rem;font-family:'Jost',sans-serif;font-size:.58rem;letter-spacing:.32em;text-transform:uppercase;color:#6d634f;font-weight:500;}
.membership-badges{gap:1rem;margin-top:1rem;}
.membership-badges img{width:auto !important;height:62px !important;background:transparent !important;padding:0 !important;filter:grayscale(1) opacity(.62) contrast(1.1) !important;}

/* territory section */
.areas-title{max-width:980px;margin-left:auto;margin-right:auto;line-height:1.16;}
.areas-body{color:#43483f !important;font-weight:400 !important;}
.areas-tagline{color:#866a32 !important;}

/* booking: first decision is category; details appear only when requested */
.booking-intro,.booking-note{color:#454b43 !important;font-weight:400 !important;}
.booking-input,.booking-select,.booking-textarea{color:#27362e !important;font-weight:400 !important;border-bottom-color:rgba(22,49,38,.35) !important;}
.booking-input::placeholder,.booking-textarea::placeholder{color:rgba(39,54,46,.58) !important;}
.svc-category-pills{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.7rem;}
.svc-category-pill,.svc-curate-pill{appearance:none;background:#fbf8f1;border:1px solid rgba(22,49,38,.28);color:#274035;font-family:'Jost',sans-serif;font-size:.72rem;letter-spacing:.1em;padding:.8rem 1rem;cursor:pointer;transition:.25s ease;font-weight:400;}
.svc-category-pill:hover,.svc-category-pill.active,.svc-curate-pill:hover,.svc-curate-pill.selected{background:var(--forest);border-color:var(--forest);color:#f8f4eb;}
.svc-category-panel{padding-top:1.2rem;}
.svc-category-panel[hidden]{display:none !important;}
.svc-pill{border-color:rgba(22,49,38,.30) !important;color:#33443a !important;background:rgba(255,255,255,.46) !important;font-weight:400 !important;}
.svc-pill:hover{border-color:#7e6a3e !important;color:#18352a !important;background:#f6f0e5 !important;}
.svc-pill.selected{background:#e9dfca !important;border-color:#927437 !important;color:#163126 !important;}
.svc-curate-pill{width:100%;margin-top:.9rem;font-family:'Cormorant Garamond',serif;font-style:italic;font-size:1.02rem;letter-spacing:.02em;text-transform:none;}
.booking-submit{background:var(--forest) !important;border-color:var(--forest) !important;color:#f8f4eb !important;font-weight:500 !important;}
.booking-submit:hover{background:#1d4233 !important;color:#fff !important;}
.booking-response-promise{font-family:'Cormorant Garamond',serif;font-style:italic;font-size:1.02rem;color:#314238;margin-top:-.9rem;}
.booking-trust{font-family:'Jost',sans-serif;font-size:.61rem;letter-spacing:.18em;text-transform:uppercase;color:#655c49;font-weight:500;margin-top:-1.7rem;}

/* CTA: restore visual weight and readable contrast */
.cta-logo{width:auto !important;height:118px !important;opacity:.78 !important;margin:0 auto 2.2rem !important;}
.cta-section .section-eyebrow{color:rgba(248,244,235,.72) !important;}
.cta-body{color:rgba(248,244,235,.76) !important;}
.cta-phone a{color:#f1e9d8 !important;font-weight:500 !important;}

/* Footer: restore matte-black ending and stronger brand proportion */
footer{background:var(--matte-black) !important;border-top:1px solid rgba(196,169,107,.16) !important;padding:4.8rem 4rem 3.2rem !important;}
.footer-inner{max-width:1240px !important;grid-template-columns:1fr 1.45fr 1fr !important;align-items:center !important;column-gap:3rem !important;}
.footer-logo{height:116px !important;width:auto !important;opacity:.88 !important;}
.footer-tagline{color:#d8c190 !important;font-size:1.04rem !important;}
.footer-regions{color:rgba(240,233,216,.72) !important;font-weight:400 !important;line-height:1.8;}
.footer-legal{color:rgba(240,233,216,.48) !important;}
.footer-contact-label{color:#c8ae72 !important;}
.footer-link{color:rgba(240,233,216,.72) !important;}
.footer-link--nav{color:rgba(240,233,216,.62) !important;}
.footer-nav-links{border-top-color:rgba(240,233,216,.12) !important;}

@media(max-width:900px){
  .hero-logo-img{height:118px !important;}
  .svc-title-row{grid-template-columns:1fr auto !important;row-gap:.45rem;}
  .svc-reserve{grid-column:1 / -1;justify-self:start;}
  .svc-category-pills{grid-template-columns:repeat(2,minmax(0,1fr));}
  .membership-badges img{height:54px !important;}
  .cta-logo{height:96px !important;}
  footer{padding:4rem 1.5rem 2.5rem !important;}
  .footer-inner{grid-template-columns:1fr !important;}
  .footer-logo{height:104px !important;margin:auto !important;}
}


/* ── Prevent horizontal drift on mobile ───────────────────────── */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
* { min-width: 0; }
img, svg, video { max-width: 100%; }
@media (max-width: 900px) {
  .hero-watermark,
  .hero-watermark-text {
    max-width: 100%;
    overflow: hidden;
  }
  .svc-selector,
  .booking-form,
  .founder-inner,
  .nav-inner {
    max-width: 100%;
  }
  table { max-width: 100%; display: block; overflow-x: auto; }
}


/* ── Mobile viewport lock (in-app browsers: Instagram, FB, WhatsApp) ── */
html {
  overflow-x: hidden;
  width: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  overflow-x: clip;
  width: 100%;
  position: relative;
  overscroll-behavior-x: none;
  touch-action: pan-y;
}

/* ═══════════════════════════════════════════════════════════════
   MOTION SYSTEM — scroll progress, active nav, floating reserve
   ═══════════════════════════════════════════════════════════════ */

/* Anchor offset so sections don't hide under the fixed navbar */
section[id] { scroll-margin-top: 96px; }
@media (max-width: 900px) { section[id] { scroll-margin-top: 74px; } }

/* ── Scroll progress: a hairline of gold ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 9999;
  background: transparent;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(196,169,107,0.35), #c4a96b);
  transition: width 0.12s linear;
}

/* ── Active nav state ── */
.nav-links a {
  position: relative;
  transition: color 0.5s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -7px;
  width: 0; height: 1px;
  background: #c4a96b;
  transform: translateX(-50%);
  transition: width 0.55s cubic-bezier(0.16,1,0.3,1);
}
.nav-links a.is-active::after { width: 100%; }
.nav-links a.is-active { color: #163126; }

/* ── Floating reserve button ── */
.float-reserve {
  position: fixed;
  right: 2rem; bottom: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.9rem;
  background: #163126;
  color: #F4EFE5;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid rgba(196,169,107,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1),
              visibility 0.7s,
              background 0.4s ease;
}
.float-reserve.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.float-reserve:hover { background: #1e3f2f; }
@media (max-width: 900px) {
  .float-reserve {
    right: 1.1rem; bottom: 1.1rem;
    padding: 0.85rem 1.5rem;
    font-size: 0.72rem;
  }
}

/* ── Staggered section entrances ── */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s cubic-bezier(0.16,1,0.3,1),
              transform 0.72s cubic-bezier(0.16,1,0.3,1);
}
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.55s; }

/* ── Respect reduced-motion preferences ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
  .float-reserve { transition: opacity 0.2s ease; }
}

/* ═══════════════════════════════════════════════════════════════
   FAQ — Questions, Answered
   ═══════════════════════════════════════════════════════════════ */
.faq-section {
  background: #F4EFE5;
  padding: 7rem 2rem 7.5rem;
}
.faq-inner {
  max-width: 860px;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 3.4rem;
}
.faq-header-rule {
  width: 46px;
  height: 1px;
  background: rgba(196,169,107,0.55);
  margin: 1.5rem auto 1.6rem;
}
.faq-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(63,68,60,0.72);
  max-width: 520px;
  margin: 0 auto;
}

/* ── Items ── */
.faq-item {
  border-bottom: 1px solid rgba(196,169,107,0.28);
}
.faq-item:first-child {
  border-top: 1px solid rgba(196,169,107,0.28);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  padding: 1.5rem 0.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.22rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  color: #163126;
  transition: color 0.4s ease;
}
.faq-q:hover { color: #8a7644; }
.faq-q:focus-visible {
  outline: 1px solid rgba(196,169,107,0.7);
  outline-offset: 4px;
}

/* Gold plus/minus mark */
.faq-mark {
  position: relative;
  flex: none;
  width: 13px;
  height: 13px;
}
.faq-mark::before,
.faq-mark::after {
  content: "";
  position: absolute;
  background: #b69a5e;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease;
}
.faq-mark::before {
  top: 6px; left: 0;
  width: 13px; height: 1px;
}
.faq-mark::after {
  left: 6px; top: 0;
  width: 1px; height: 13px;
}
.faq-q[aria-expanded="true"] .faq-mark::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-q[aria-expanded="true"] { color: #8a7644; }

/* ── Answers ── */
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.62s cubic-bezier(0.16,1,0.3,1),
              opacity 0.5s ease;
  opacity: 0;
}
.faq-a[hidden] { display: block; }
.faq-a.is-open { opacity: 1; }
.faq-a p {
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.95;
  color: rgba(63,68,60,0.88);
  padding: 0 2.6rem 1.9rem 0.2rem;
  margin: 0;
}

/* ── Footer prompt ── */
.faq-footer {
  text-align: center;
  margin-top: 3.4rem;
}
.faq-footer-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.02rem;
  color: rgba(63,68,60,0.66);
  margin-bottom: 0.9rem;
}
.faq-footer-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #163126;
  text-decoration: none;
  border-bottom: 1px solid rgba(196,169,107,0.6);
  padding-bottom: 4px;
  transition: color 0.4s ease, border-color 0.4s ease;
}
.faq-footer-link:hover {
  color: #8a7644;
  border-color: #b69a5e;
}

@media (max-width: 900px) {
  .faq-section { padding: 5rem 1.4rem 5.5rem; }
  .faq-q { font-size: 1.08rem; padding: 1.3rem 0.1rem; }
  .faq-a p { padding: 0 0.6rem 1.6rem 0.1rem; font-size: 0.88rem; }
  .faq-intro { font-size: 0.98rem; }
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY — A Considered Setting
   ═══════════════════════════════════════════════════════════════ */
.gallery-section {
  background: #FAF8F4;
  padding: 7rem 2rem 7.5rem;
}
.gallery-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.gallery-header {
  text-align: center;
  margin-bottom: 3.6rem;
}
.gallery-header-rule {
  width: 46px;
  height: 1px;
  background: rgba(196,169,107,0.55);
  margin: 1.5rem auto 1.6rem;
}
.gallery-intro {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.06rem;
  line-height: 1.85;
  color: rgba(63,68,60,0.72);
  max-width: 540px;
  margin: 0 auto;
}

/* ── Asymmetric editorial grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  grid-auto-flow: dense;
}
.g-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #EFE9DD;
}
.g-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.97) contrast(0.99);
  transition: transform 1.6s cubic-bezier(0.16,1,0.3,1),
              filter 0.9s ease;
}
.g-item:hover img {
  transform: scale(1.035);
  filter: saturate(1.02) contrast(1.0);
}

/* Explicit placement — an editorial rhythm with no gaps */
.gallery-grid { grid-auto-flow: row; }
.g-item { aspect-ratio: auto; height: 100%; }
.g-pos1 { grid-column: 1;         grid-row: 1 / span 2; min-height: 640px; }
.g-pos2 { grid-column: 2 / span 2; grid-row: 1; aspect-ratio: 16 / 10; }
.g-pos3 { grid-column: 2;          grid-row: 2; aspect-ratio: 1 / 1; }
.g-pos4 { grid-column: 3;          grid-row: 2; aspect-ratio: 1 / 1; }
.g-pos5 { grid-column: 1 / span 3; grid-row: 3; aspect-ratio: 21 / 8; }

/* ── Caption: appears on hover, quiet and gold-ruled ── */
.g-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.6rem 1.5rem 1.35rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #F4EFE5;
  background: linear-gradient(to top, rgba(22,49,38,0.82) 0%, rgba(22,49,38,0.45) 55%, transparent 100%);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
              transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.g-item:hover figcaption,
.g-item:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* Touch devices: captions always legible, no hover to rely on */
@media (hover: none) {
  .g-item figcaption { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .gallery-section { padding: 5rem 1.4rem 5.5rem; }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
  .g-pos1, .g-pos2, .g-pos3, .g-pos4, .g-pos5 {
    grid-column: 1 !important;
    grid-row: auto !important;
    aspect-ratio: 4 / 3 !important;
    min-height: 0 !important;
  }
  .g-item figcaption {
    font-size: 0.88rem;
    padding: 2rem 1.1rem 1.1rem;
  }
  .gallery-intro { font-size: 0.98rem; }
}


/* Focal points so nothing important is cropped away */
.g-pos1 img { object-position: center 62%; }
.g-pos2 img { object-position: center 45%; }
.g-pos5 img { object-position: center 58%; }

/* ═══════════════════════════════════════════════════════════════
   LANGUAGE SWITCH — EN · ES
   ═══════════════════════════════════════════════════════════════ */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 1.4rem;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.2rem 0.1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(63,68,60,0.5);
  transition: color 0.45s ease;
  position: relative;
}
.lang-btn::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: #b69a5e;
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.lang-btn:hover { color: #163126; }
.lang-btn.is-active { color: #163126; }
.lang-btn.is-active::after { transform: scaleX(1); }
.lang-sep {
  font-size: 0.72rem;
  color: rgba(182,154,94,0.6);
  line-height: 1;
}
@media (max-width: 900px) {
  .lang-switch { margin-right: 0.8rem; gap: 0.3rem; }
  .lang-btn { font-size: 0.72rem; letter-spacing: 0.14em; }
}


/* Language switch — keep clear of the nav links at all widths */
.nav-actions, .nav-right { gap: 1.1rem; }
.lang-switch {
  margin-right: 0.9rem;
  padding-left: 1.1rem;
  border-left: 1px solid rgba(182,154,94,0.3);
  flex: none;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .lang-switch { padding-left: 0.8rem; margin-right: 0.6rem; }
}
@media (max-width: 900px) {
  .lang-switch { border-left: none; padding-left: 0; }
}


/* Nav layout: three explicit tracks so nothing ever collides */
#navbar .nav-inner {
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center;
  column-gap: 1.2rem;
  max-width: 1500px;
  margin: 0 auto;
}
#navbar .nav-center { min-width: 0; justify-self: center; }
#navbar .nav-links { flex-wrap: nowrap; }
#navbar .nav-links a { white-space: nowrap; }
@media (max-width: 1320px) {
  #navbar .nav-links { gap: 1.35rem !important; }
  #navbar .nav-links a { font-size: 0.72rem; letter-spacing: 0.16em; }
}
@media (max-width: 1150px) {
  #navbar .nav-links { gap: 1rem !important; }
  #navbar .nav-links a { font-size: 0.72rem; letter-spacing: 0.12em; }
}


/* Keep the nav list inside its track — Spanish labels run longer than English */
@media (min-width: 901px) { #navbar .nav-center { overflow: visible; display: flex; justify-content: center; } }
#navbar .nav-links {
  max-width: 100%;
  gap: clamp(0.7rem, 1.55vw, 2rem) !important;
  margin: 0;
  padding: 0;
}
#navbar .nav-links a { font-size: clamp(0.55rem, 0.72vw, 0.68rem); }


/* Below 1080px the full nav no longer fits — hide links, keep brand + actions */
@media (max-width: 1080px) and (min-width: 901px) {
  #navbar .nav-links { gap: 0.75rem !important; }
  #navbar .nav-links a { font-size: 0.72rem; letter-spacing: 0.08em; }
}


/* Mobile: the link list stays hidden, as originally designed */
@media (max-width: 900px) {
  #navbar .nav-center { display: none !important; }
}


/* 901–1000px: tighten further so Spanish labels clear the switch */
@media (max-width: 1000px) and (min-width: 901px) {
  #navbar .nav-links { gap: 0.55rem !important; }
  #navbar .nav-links a { font-size: 0.72rem; letter-spacing: 0.06em; }
  .lang-switch { padding-left: 0.55rem; margin-right: 0.45rem; }
}

/* ═══════════════════════════════════════════════════════════════
   MEMBERSHIP BADGES — mark + typographic name (always legible)
   ═══════════════════════════════════════════════════════════════ */
.membership-badges {
  display: flex !important;
  flex-wrap: wrap;
  align-items: stretch !important;
  gap: 2.2rem !important;
  margin-top: 1.6rem !important;
}
.member-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-left: 1.1rem;
  border-left: 1px solid rgba(182,154,94,0.45);
}
.membership-badges img {
  width: 42px !important;
  height: 42px !important;
  object-fit: contain !important;
  background: none !important;
  padding: 0 !important;
  filter: none !important;
  opacity: 0.9;
  flex: none;
}
.member-badge-text {
  display: flex;
  flex-direction: column;
  gap: 0.16rem;
  line-height: 1.25;
}
.member-badge-name {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(30,51,37,0.9);
  max-width: 12.5rem;
}
.member-badge-role {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(130,115,85,0.95);
}
@media (max-width: 900px) {
  .membership-badges { gap: 1.4rem !important; }
  .member-badge { padding-left: 0.85rem; gap: 0.7rem; }
  .membership-badges img { width: 36px !important; height: 36px !important; }
  .member-badge-name { font-size: 0.72rem; letter-spacing: 0.1em; max-width: 10.5rem; }
  .member-badge-role { font-size: 0.76rem; }
}

/* Panel note under Finishes & Enhancements */
.svc-panel-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.82rem;
  color: rgba(130,115,85,0.95);
  margin-top: 0.6rem;
}

/* ═══════════════════════════════════════════════════════════════
   TRUST STRIP — who is coming into your home
   ═══════════════════════════════════════════════════════════════ */
.trust-strip { background: #F4EFE5; padding: 6rem 2rem; }
.trust-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 0.72fr 1fr;
  gap: 4rem; align-items: center;
}
.trust-portrait { overflow: hidden; }
.trust-portrait img {
  width: 100%; display: block; aspect-ratio: 4/5; object-fit: cover;
  object-position: center 22%;
  filter: contrast(0.99) saturate(0.95) sepia(0.03);
}
.trust-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 400; line-height: 1.22; color: #163126;
  margin: 0.7rem 0 1.1rem;
}
.trust-body {
  font-family: 'Jost', sans-serif; font-size: 0.94rem; font-weight: 300;
  line-height: 1.9; color: rgba(63,68,60,0.9); max-width: 34rem;
}
.trust-credentials { list-style: none; margin: 1.6rem 0 1.5rem; padding: 0; }
.trust-credentials li {
  font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(30,51,37,0.85);
  padding: 0.55rem 0 0.55rem 1.4rem; position: relative;
  border-bottom: 1px solid rgba(182,154,94,0.25);
}
.trust-credentials li:last-child { border-bottom: none; }
.trust-credentials li::before {
  content: ""; position: absolute; left: 0; top: 0.85rem;
  width: 5px; height: 5px; background: #b69a5e; transform: rotate(45deg);
}
@media (max-width: 900px) {
  .trust-strip { padding: 4rem 1.4rem; }
  .trust-inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .trust-portrait {
    max-width: 78%;
    margin: 0 auto;
  }
  .trust-portrait img {
    aspect-ratio: 4 / 5;
    object-position: center 18%;
  }
  .trust-body { font-size: 0.9rem; }
  .trust-credentials li { font-size: 0.72rem; letter-spacing: 0.12em; }
}

/* ═══════════════════════════════════════════════════════════════
   SIGNATURES — three hero rituals, price anchored high→low
   ═══════════════════════════════════════════════════════════════ */
.signatures { background: #FAF8F4; padding: 7rem 2rem 6.5rem; }
.signatures-inner { max-width: 1180px; margin: 0 auto; }
.signatures-header { text-align: center; margin-bottom: 3.4rem; }
.signatures-rule { width: 46px; height: 1px; background: rgba(196,169,107,0.55); margin: 1.4rem auto 1.5rem; }
.signatures-intro {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.06rem; line-height: 1.85; color: rgba(63,68,60,0.75);
  max-width: 34rem; margin: 0 auto;
}
.signature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem;
  align-items: stretch;
}
.signature-card {
  display: flex; flex-direction: column;
  background: #FFFDF9;
  border: 1px solid rgba(182,154,94,0.28);
  padding: 2.6rem 2rem 2.2rem;
  transition: border-color 0.6s ease, transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.signature-card:hover { border-color: rgba(182,154,94,0.6); transform: translateY(-4px); }
.signature-card--featured {
  background: #163126;
  border-color: #163126;
}
.signature-kicker {
  font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(130,115,85,0.95); margin-bottom: 0.9rem;
}
.signature-card--featured .signature-kicker { color: #c4a96b; }
.signature-name {
  font-family: 'Cormorant Garamond', serif; font-size: 1.55rem;
  font-weight: 400; line-height: 1.24; color: #163126; margin-bottom: 0.5rem;
}
.signature-card--featured .signature-name { color: #F4EFE5; }
.signature-meta {
  font-family: 'Jost', sans-serif; font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.1em; color: #163126; margin-bottom: 1.1rem;
}
.signature-card--featured .signature-meta { color: #c4a96b; }
.signature-desc {
  font-family: 'Jost', sans-serif; font-size: 0.86rem; font-weight: 300;
  line-height: 1.85; color: rgba(63,68,60,0.88); flex: 1;
}
.signature-card--featured .signature-desc { color: rgba(244,239,230,0.85); }
.signature-cta {
  margin-top: 1.6rem; align-self: flex-start;
  font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #163126; text-decoration: none;
  border-bottom: 1px solid rgba(182,154,94,0.7); padding-bottom: 4px;
  transition: color 0.4s ease, border-color 0.4s ease;
}
.signature-card--featured .signature-cta { color: #F4EFE5; border-color: rgba(196,169,107,0.8); }
.signature-cta:hover { color: #8a7644; border-color: #b69a5e; }
.signature-card--featured .signature-cta:hover { color: #c4a96b; }
.signatures-note {
  text-align: center; margin-top: 2.8rem;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1rem; color: rgba(63,68,60,0.72);
}
.signatures-all { display: block; text-align: center; margin-top: 1.1rem; }
@media (max-width: 900px) {
  .signatures { padding: 4.5rem 1.4rem 4.5rem; }
  .signature-grid { grid-template-columns: 1fr; gap: 1.1rem; }
  .signature-card { padding: 2.1rem 1.5rem 1.8rem; }
  .signature-name { font-size: 1.38rem; }
  .signatures-intro { font-size: 0.98rem; }
}

/* Optional-field marker */
.label-optional {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 0.78rem; letter-spacing: 0.02em; text-transform: none;
  color: rgba(130,115,85,0.85); margin-left: 0.4rem;
}

/* Two paths: form or WhatsApp */
.booking-or {
  display: flex; align-items: center; gap: 1rem;
  margin: 1.5rem auto 1.3rem; max-width: 15rem;
}
.booking-or::before, .booking-or::after {
  content: ""; flex: 1; height: 1px; background: rgba(182,154,94,0.4);
}
.booking-or span {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 0.92rem; color: rgba(63,68,60,0.7);
}
.booking-whatsapp {
  display: inline-block;
  padding: 1rem 2.4rem;
  border: 1px solid rgba(22,49,38,0.45);
  background: none; color: #163126; text-decoration: none;
  font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: background 0.5s ease, color 0.5s ease, border-color 0.5s ease;
}
.booking-whatsapp:hover { background: #163126; color: #F4EFE5; border-color: #163126; }
@media (max-width: 900px) {
  .booking-whatsapp { padding: 0.9rem 1.6rem; font-size: 0.72rem; letter-spacing: 0.14em; }
}

/* ═══ SERVICES ACCORDION ═══ */
.svc-accordion { max-width: 1000px; margin: 0 auto; border-bottom: 1px solid rgba(182,154,94,0.3); }
.svc-accordion:first-of-type { border-top: 1px solid rgba(182,154,94,0.3); }
.svc-acc-trigger {
  width: 100%; background: none; border: none; cursor: pointer;
  display: grid; grid-template-columns: 1fr auto auto; align-items: center;
  gap: 1.2rem; text-align: left; padding: 1.9rem 0.2rem;
  position: relative;
}
.svc-acc-eyebrow {
  grid-column: 1; grid-row: 1;
  display: block; font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.24em; text-transform: uppercase; color: rgba(130,115,85,0.95);
  margin-bottom: 0.4rem;
}
.svc-acc-title {
  grid-column: 1; grid-row: 2;
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 400; color: #163126; line-height: 1.15;
}
.svc-acc-count {
  grid-column: 2; grid-row: 1 / span 2;
  font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(63,68,60,0.7);
}
.svc-acc-mark { grid-column: 3; grid-row: 1 / span 2; position: relative; width: 14px; height: 14px; }
.svc-acc-mark::before, .svc-acc-mark::after {
  content: ""; position: absolute; background: #b69a5e;
  transition: transform 0.55s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease;
}
.svc-acc-mark::before { top: 6px; left: 0; width: 14px; height: 1px; }
.svc-acc-mark::after  { left: 6px; top: 0; width: 1px; height: 14px; }
.svc-acc-trigger[aria-expanded="true"] .svc-acc-mark::after { transform: rotate(90deg); opacity: 0; }
.svc-acc-trigger:hover .svc-acc-title { color: #8a7644; }
.svc-acc-panel { overflow: hidden; max-height: 0; transition: max-height 0.62s cubic-bezier(0.16,1,0.3,1); }
.svc-acc-panel[hidden] { display: block; }
.svc-acc-panel .svc-list { padding-bottom: 1.6rem; }
@media (max-width: 900px) {
  .svc-acc-trigger { padding: 1.5rem 0.1rem; gap: 0.8rem; }
  .svc-acc-count { display: none; }
  .svc-acc-title { font-size: 1.35rem; }
}


/* ═══ DESIRE — pausa cinematográfica ═══ */
.desire {
  position: relative; min-height: 72vh; display: flex;
  align-items: center; justify-content: center; overflow: hidden;
  background: #6f8578 url('/images/gallery/ritual-tray.jpg') center 55%/cover no-repeat;
}
.desire-overlay { position: absolute; inset: 0; background: rgba(22,49,38,0.52); }
.desire-content { position: relative; text-align: center; padding: 2rem; }
.desire-line {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.3;
  color: #F4EFE5; letter-spacing: 0.01em;
}
@media (max-width: 900px) { .desire { min-height: 56vh; } }

/* ═══ FOUNDER: nombre y rol ═══ */
.trust-name {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.3rem; font-weight: 500; color: #163126;
  margin-top: 1.6rem;
}
.trust-role {
  font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(63,68,60,0.85); margin-top: 0.3rem;
}

/* ═══ STANDARD (fusionado) ═══ */
.atelier-standard { background: #F4EFE5; padding: 6.5rem 2rem; }
.std-inner { max-width: 1060px; margin: 0 auto; }
.std-header { text-align: center; margin-bottom: 3rem; }
.std-rule { width: 46px; height: 1px; background: rgba(196,169,107,0.55); margin: 1.4rem auto 1.5rem; }
.std-intro { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:1.06rem;
  line-height:1.85; color:rgba(63,68,60,0.78); max-width:34rem; margin:0 auto; }
.std-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.6rem 2.4rem; margin-bottom:3.4rem; }
.std-item { display:flex; gap:0.9rem; align-items:baseline; padding-top:1rem; border-top:1px solid rgba(182,154,94,0.3); }
.std-num { font-family:'Jost',sans-serif; font-size:0.72rem; letter-spacing:0.14em; color:#b69a5e; }
.std-item p { font-family:'Jost',sans-serif; font-size:0.88rem; font-weight:300; line-height:1.6; color:rgba(30,51,37,0.9); }
.std-dazzle { max-width:44rem; margin:0 auto; text-align:center; padding-top:2.6rem; border-top:1px solid rgba(182,154,94,0.35); }
.std-dazzle-title { font-family:'Cormorant Garamond',serif; font-size:1.9rem; font-weight:400; color:#163126; margin:0.5rem 0 1rem; }
.std-dazzle-body { font-family:'Jost',sans-serif; font-size:0.9rem; font-weight:300; line-height:1.95; color:rgba(63,68,60,0.9); }
@media (max-width:900px){ .atelier-standard{padding:4.5rem 1.4rem;} .std-grid{grid-template-columns:1fr; gap:0.9rem;} }

/* ═══ REVIEWS: protagonista + pareja ═══ */
.reflections-inner { max-width:1060px; margin:0 auto; }
.reflections-header { text-align:center; margin-bottom:2.8rem; }
.reflections-rule { width:46px; height:1px; background:rgba(196,169,107,0.55); margin:1.4rem auto 0; }
.review-hero { max-width:44rem; margin:0 auto 3rem; text-align:center; border:none; }
.review-hero-stars { color:#b69a5e; letter-spacing:0.3em; font-size:0.9rem; margin-bottom:1.2rem; }
.review-hero-text { font-family:'Cormorant Garamond',serif; font-size:clamp(1.35rem,2.6vw,1.85rem);
  line-height:1.55; color:#163126; margin-bottom:1.2rem; }
.review-hero-attr { font-family:'Jost',sans-serif; font-style:normal; font-size:0.72rem;
  letter-spacing:0.2em; text-transform:uppercase; color:rgba(130,115,85,0.95); }
.review-pair { display:grid; grid-template-columns:1fr 1fr; gap:2.4rem; }
.review-small { border-top:1px solid rgba(182,154,94,0.35); padding-top:1.4rem; margin:0; }
.review-small-text { font-family:'Jost',sans-serif; font-size:0.88rem; font-weight:300;
  line-height:1.9; color:rgba(63,68,60,0.9); margin-bottom:0.9rem; }
.review-small-attr { font-family:'Jost',sans-serif; font-style:normal; font-size:0.72rem;
  letter-spacing:0.16em; text-transform:uppercase; color:rgba(130,115,85,0.95); }
.reflections-rating { text-align:center; margin-top:2.6rem; font-family:'Jost',sans-serif;
  font-size:0.76rem; letter-spacing:0.22em; color:#163126; }
@media (max-width:900px){ .review-pair{grid-template-columns:1fr; gap:1.6rem;} }

/* ═══ EXPERIENCE — la secuencia narrativa ═══ */
.experience-sequence { background: #FAF8F4; padding: 6.5rem 2rem; }
.exp-seq-inner { max-width: 940px; margin: 0 auto; }
.exp-seq-header { text-align: center; margin-bottom: 3.2rem; }
.exp-seq-rule { width: 46px; height: 1px; background: rgba(196,169,107,0.55); margin: 1.4rem auto 1.4rem; }
.exp-seq-intro {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.06rem; color: rgba(63,68,60,0.78);
}
.exp-seq-list { list-style: none; margin: 0; padding: 0; }
.exp-seq-step {
  display: grid; grid-template-columns: 3.4rem 1fr; gap: 1rem;
  padding: 2rem 0; border-top: 1px solid rgba(182,154,94,0.3);
}
.exp-seq-step:last-child { border-bottom: 1px solid rgba(182,154,94,0.3); }
.exp-seq-num {
  font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.2em; color: #b69a5e; padding-top: 0.45rem;
}
.exp-seq-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
  font-weight: 400; color: #163126; margin-bottom: 0.5rem; line-height: 1.25;
}
.exp-seq-body {
  font-family: 'Jost', sans-serif; font-size: 0.9rem; font-weight: 300;
  line-height: 1.92; color: rgba(63,68,60,0.9); max-width: 40rem;
}
@media (max-width: 900px) {
  .experience-sequence { padding: 4.5rem 1.4rem; }
  .exp-seq-step { grid-template-columns: 2.4rem 1fr; gap: 0.7rem; padding: 1.6rem 0; }
  .exp-seq-title { font-size: 1.3rem; }
  .exp-seq-body { font-size: 0.86rem; }
}

/* ═══ 3. Contraste: subir la línea de zonas del hero ═══ */
.hero-area-tag { color: rgba(63,68,60,0.78) !important; }

/* ═══════════════════════════════════════════════════════════════
   MÓVIL: margen lateral único para toda la página
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .trust-strip,
  .signatures,
  .client-reflections,
  .atelier-standard,
  .experience-sequence,
  .service-areas,
  .gallery-section,
  .faq-section,
  .booking-inquiry,
  .cta-section,
  .privacy-section,
  .atelier-policies-legal,
  .services-section {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  /* los acordeones del menú alinean con el resto */
  .svc-category-inner { padding-left: 0 !important; padding-right: 0 !important; }
}

/* ═══════════════════════════════════════════════════════════════
   MÓVIL: barra fija Reservar | WhatsApp
   ═══════════════════════════════════════════════════════════════ */
.mobile-bar { display: none; }
@media (max-width: 900px) {
  .float-reserve { display: none !important; }

  .mobile-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 950;
    background: rgba(244,239,230,0.97);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(182,154,94,0.4);
    transform: translateY(105%);
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }
  .mobile-bar.is-visible { transform: translateY(0); }

  .mobile-bar a {
    display: flex; align-items: center; justify-content: center;
    padding: 1.05rem 0.5rem;
    font-family: 'Jost', sans-serif; font-size: 0.72rem; font-weight: 400;
    letter-spacing: 0.18em; text-transform: uppercase;
    text-decoration: none;
  }
  .mobile-bar .mb-reserve { background: #163126; color: #F4EFE5; }
  .mobile-bar .mb-whatsapp { color: #163126; }
  .mobile-bar .mb-whatsapp svg { width: 15px; height: 15px; margin-right: 0.45rem; fill: #163126; }

  /* espacio para que la barra no tape el final de la página */
  body { padding-bottom: 3.6rem; }
}

/* ═══ CTA final: dos acciones del mismo peso ═══ */
.cta-actions {
  display: flex !important;
  flex-wrap: wrap;
  align-items: stretch !important;
  justify-content: center;
  gap: 1rem !important;
}
.cta-actions > a {
  flex: 0 1 auto;
  min-width: 15rem;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.05rem 2rem !important;
  line-height: 1.35;
}
@media (max-width: 900px) {
  .cta-actions {
    flex-direction: column;
    gap: 0.85rem !important;
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-actions > a { width: 100%; min-width: 0; }
}
.cta-actions > a { box-sizing: border-box; border-width: 1px; }
@media (min-width: 901px) { .cta-actions > a { min-width: 17rem; } }
/* Ambos CTA finales comparten exactamente la misma escala tipográfica */
.cta-actions > a,
.cta-actions .btn-primary--ivory,
.cta-actions .btn-whatsapp-ivory {
  font-family: 'Jost', sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
}
@media (min-width: 901px) { .cta-actions > a { min-width: 17rem !important; } }

/* ═══════════════════════════════════════════════════════════════
   iOS: evitar el zoom automático al enfocar un campo
   Safari amplía la página si el input mide menos de 16px y no vuelve
   a su escala — dejando el contenido posterior fuera de encuadre.
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .booking-input,
  .booking-textarea,
  .booking-select,
  #booking input,
  #booking select,
  #booking textarea {
    font-size: 16px !important;
  }
}

/* Red de seguridad: nada rompe el encuadre en móvil */
@media (max-width: 900px) {
  .booking-success,
  .booking-success-title,
  .booking-success-body,
  .booking-intro,
  .booking-header p,
  #booking p,
  #booking h2 {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }
  .booking-success-title { font-size: 1.45rem !important; line-height: 1.35; }
  .booking-success-body  { font-size: 0.88rem !important; line-height: 1.85; }
}
.enh-note {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 0.82rem; color: rgba(130,115,85,0.95);
  margin: -0.2rem 0 0.6rem;
}


/* ═══ Mensaje de confirmación: siempre dentro del encuadre ═══ */
.booking-success {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  overflow-wrap: break-word;
}
.booking-success-title,
.booking-success-body {
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
  text-wrap: balance;
}
@media (max-width: 900px) {
  .booking-success-title {
    font-size: clamp(1.15rem, 5.2vw, 1.5rem) !important;
    line-height: 1.32;
  }
  .booking-success-body {
    font-size: clamp(0.8rem, 3.6vw, 0.9rem) !important;
    line-height: 1.8;
  }
  /* el encabezado de la sección también se adapta */
  #booking .section-title-lg { font-size: clamp(1.6rem, 7.5vw, 2.4rem) !important; }
  #booking .booking-intro,
  #booking .booking-header p { font-size: clamp(0.82rem, 3.6vw, 0.94rem) !important; }
}

/* ═══ Navbar: nunca se sale del encuadre, ni en pantallas estrechas ═══ */
@media (max-width: 900px) {
  #navbar .nav-inner {
    grid-template-columns: auto 1fr auto !important;
    column-gap: 0.5rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    max-width: 100%;
    overflow: hidden;
  }
  #navbar .nav-right {
    display: flex; align-items: center; gap: 0.6rem;
    min-width: 0; justify-self: end;
  }
  #navbar .nav-cta,
  #navbar .btn-primary {
    white-space: nowrap;
    padding: 0.75rem 1rem !important;
    font-size: clamp(0.58rem, 2.8vw, 0.72rem) !important;
    letter-spacing: 0.14em !important;
  }
  #navbar .nav-logo-img { height: 44px !important; }
  .lang-switch { margin-right: 0.4rem !important; }
}
@media (max-width: 360px) {
  #navbar .nav-logo-img { height: 38px !important; }
  #navbar .nav-cta, #navbar .btn-primary { padding: 0.7rem 0.75rem !important; letter-spacing: 0.1em !important; }
  .lang-btn { font-size: 0.55rem !important; letter-spacing: 0.1em !important; }
}


/* ═══ Acordeones del menú: mismo margen que el resto de la página ═══ */
@media (max-width: 900px) {
  .services-section,
  #services {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .svc-accordion {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .svc-acc-trigger {
    padding-left: 0 !important;
    padding-right: 0 !important;
    gap: 1rem;
  }
  /* el signo + no se pega al borde */
  .svc-acc-mark { margin-right: 0; }
  .svc-acc-panel .svc-list,
  .svc-acc-panel .svc-item { padding-left: 0; padding-right: 0; }
}


/* ═══ Introducción del menú: usar el ancho disponible en móvil ═══ */
@media (max-width: 900px) {
  .svc-intro-body,
  .svc-intro,
  .services-intro {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .svc-intro-inner,
  .svc-header,
  .services-header { max-width: 100% !important; }
}


/* ═══════════════════════════════════════════════════════════════
   V11.4 — DESKTOP QA FIXES
   1) true centered Client Reflections header
   2) safe rectangular cinematic image section; no black oval artifact
   ═══════════════════════════════════════════════════════════════ */

/* Client Reflections: center the entire heading block, not only its text */
.client-reflections .reflections-header {
  width: 100% !important;
  max-width: 760px !important;
  margin: 0 auto 2.8rem !important;
  text-align: center !important;
}

.client-reflections .reflections-header .section-eyebrow,
.client-reflections .reflections-header .section-title-lg,
.client-reflections .reflections-header .section-title {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Cinematic desire section: regular rectangular media layer.
   Explicitly neutralize any clipping/mask/radius behavior. */
.desire {
  position: relative !important;
  min-height: 72vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  background: #6f8578 !important;
  border-radius: 0 !important;
  clip-path: none !important;
  -webkit-clip-path: none !important;
  mask: none !important;
  -webkit-mask: none !important;
}

.desire-bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center 55% !important;
  border-radius: 0 !important;
  clip-path: none !important;
  -webkit-clip-path: none !important;
  mask: none !important;
  -webkit-mask: none !important;
  transform: none !important;
}

.desire-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background: rgba(22,49,38,.52) !important;
  border-radius: 0 !important;
  clip-path: none !important;
}

.desire-content {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  text-align: center !important;
  padding: 2rem !important;
}

.desire-line {
  margin: 0 auto !important;
  text-align: center !important;
  color: #F4EFE5 !important;
}

@media (max-width: 900px) {
  .desire { min-height: 56vh !important; }
  .client-reflections .reflections-header {
    max-width: 100% !important;
  }
}


/* ═══════════════════════════════════════════════════════════════
   V11.5 — SINGLE BACKGROUND IMAGE FIX (definitive)
   One image source only. No duplicated image layer.
   ═══════════════════════════════════════════════════════════════ */
#desire.desire,
section#desire {
  position: relative !important;
  width: 100% !important;
  min-height: 72vh !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #53685b !important;
  background-image: url('../images/gallery/ritual-tray.jpg') !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center 58% !important;
  border-radius: 0 !important;
  clip-path: none !important;
  -webkit-clip-path: none !important;
  mask: none !important;
  -webkit-mask: none !important;
}

/* Kill every possible duplicate media layer in this section. */
#desire > img,
#desire .desire-bg,
#desire::before,
#desire::after,
#desire .desire-content::before,
#desire .desire-content::after {
  display: none !important;
  content: none !important;
  background-image: none !important;
}

#desire .desire-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background: rgba(22,49,38,.46) !important;
  pointer-events: none !important;
}

#desire .desire-content {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  min-height: 72vh !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-end !important;
  padding: 5.5rem 8vw !important;
  box-sizing: border-box !important;
  background: transparent !important;
}

#desire .desire-line {
  width: min(34rem, 38vw) !important;
  margin: 0 !important;
  text-align: left !important;
  color: #F4EFE5 !important;
}

@media (max-width: 900px) {
  #desire.desire,
  section#desire {
    min-height: 56vh !important;
    background-position: center 55% !important;
  }
  #desire .desire-content {
    min-height: 56vh !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 3rem 1.5rem !important;
  }
  #desire .desire-line {
    width: min(30rem, 90vw) !important;
    text-align: center !important;
  }
}


/* ═══════════════════════════════════════════════════════════════
   V11.6 — CENTER DESIRE PHRASE ONLY
   Keeps the single continuous image exactly as-is.
   ═══════════════════════════════════════════════════════════════ */

#desire .desire-content {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

#desire .desire-line {
  width: min(42rem, 72vw) !important;
  margin: 0 auto !important;
  text-align: center !important;
}
