  :root{
    --ink:#0a0908;
    --ink-deep:#000000;
    --ink-soft:#141210;
    --pink:#e11d84;
    --pink-deep:#9c0f5c;
    --pink-glow:#ff4fa3;
    --gold:#c9a227;
    --gold-light:#e9d18a;
    --cream:#f6f1e6;
    --grey:#9a9289;
    --line:rgba(201,162,39,0.28);
    --radius:2px;
  }

  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth; background:#0a0908;}

  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important;}
  }

  .bg-fixed{
    position:fixed;
    inset:0;
    background:#0a0908;
    z-index:-2;
  }

  body{
    background:#0a0908;
    background:var(--ink);
    color:var(--cream);
    font-family:'Manrope',sans-serif;
    font-weight:400;
    line-height:1.6;
    overflow-x:hidden;
  }

  h1,h2,h3,.serif{
    font-family:'Playfair Display',serif;
    font-weight:600;
    line-height:1.15;
    color:var(--cream);
  }

  a{color:inherit;text-decoration:none;}
  img{max-width:100%;display:block;}
  ul{list-style:none;}

  .wrap{
    max-width:1200px;
    margin:0 auto;
    padding:0 40px;
  }

  .gold-text{color:var(--gold);}
  .grad-text{
    background:linear-gradient(100deg, var(--pink-glow), var(--gold-light));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }

  /* ---------- LOGO ---------- */
  .crest{display:block;}
  .crest .crown-line{fill:none;stroke:var(--gold);stroke-width:3;stroke-linejoin:round;stroke-linecap:round;}
  .crest .jewel{fill:var(--gold-light);}
  .crest .ring{fill:none;stroke:var(--gold);stroke-width:1.4;opacity:0.55;}
  .crest .Lmark{font-family:'Playfair Display',serif;font-style:italic;font-weight:600;fill:url(#crestGrad);}

  .brandmark{display:flex;align-items:center;gap:12px;}
  .brandmark .logo-icon{height:38px;width:auto;}
  .brandmark .wordmark{font-family:'Playfair Display',serif;font-weight:700;font-size:19px;letter-spacing:0.5px;color:#ffffff;text-shadow:0 1px 6px rgba(0,0,0,0.6);}
  .brandmark .wordmark span{color:var(--gold-light);}
  footer .brandmark .logo-icon{height:34px;}

  /* ---------- NAV ---------- */
  header{
    position:fixed;top:0;left:0;right:0;z-index:100;
    padding:26px 0;
    transition:background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
    border-bottom:1px solid transparent;
    background:linear-gradient(to bottom, rgba(5,4,3,0.75) 0%, rgba(5,4,3,0.35) 70%, rgba(5,4,3,0) 100%);
  }
  header.scrolled{
    background:rgba(8,7,6,0.92);
    backdrop-filter:blur(10px);
    padding:16px 0;
    border-bottom:1px solid var(--line);
  }
  nav{
    display:flex;align-items:center;justify-content:space-between;
  }
  .nav-links{
    display:flex;gap:38px;
    font-size:14px;
    letter-spacing:0.3px;
  }
  .nav-links a{
    position:relative;
    color:var(--cream);
    opacity:0.85;
    padding-bottom:4px;
  }
  .nav-links a::after{
    content:'';
    position:absolute;left:0;bottom:0;
    width:0;height:1px;
    background:var(--gold);
    transition:width 0.35s ease;
  }
  .nav-links a:hover::after{width:100%;}
  .nav-links a:hover{opacity:1;}

  .btn{
    display:inline-flex;align-items:center;justify-content:center;
    padding:14px 32px;
    font-family:'Manrope',sans-serif;
    font-size:13.5px;
    font-weight:600;
    letter-spacing:0.4px;
    border-radius:30px;
    cursor:pointer;
    border:1px solid transparent;
    transition:transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }
  .btn-fill{
    background:linear-gradient(100deg, var(--pink), var(--pink-deep));
    color:var(--cream);
  }
  .btn-fill:hover{
    box-shadow:0 0 0 1px var(--gold), 0 10px 30px -8px rgba(225,29,132,0.55);
    transform:translateY(-2px);
  }
  .btn-outline{
    background:transparent;
    border:1px solid var(--gold);
    color:var(--gold-light);
  }
  .btn-outline:hover{
    background:var(--gold);
    color:var(--ink);
  }
  .btn-nav{
    padding:11px 24px;
    font-size:13px;
  }

  .burger{display:none;flex-direction:column;gap:5px;cursor:pointer;background:none;border:none;}
  .burger span{width:24px;height:1.5px;background:var(--gold);display:block;}

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:140px 0 100px;
    overflow:hidden;
  }
  .hero::before{
    content:'';
    position:absolute;
    top:-20%;right:-10%;
    width:900px;height:900px;
    background:radial-gradient(circle, rgba(225,29,132,0.16) 0%, rgba(225,29,132,0) 65%);
    pointer-events:none;
  }
  .hero::after{
    content:'';
    position:absolute;
    bottom:-30%;left:-10%;
    width:700px;height:700px;
    background:radial-gradient(circle, rgba(201,162,39,0.10) 0%, rgba(201,162,39,0) 65%);
    pointer-events:none;
  }
  .hero-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.15fr 0.85fr;
    gap:60px;
    align-items:center;
    width:100%;
  }
  .hero-eyebrow{
    display:flex;align-items:center;gap:14px;
    margin-bottom:28px;
    opacity:0;
    animation:fadeUp 0.9s ease forwards;
    animation-delay:0.15s;
  }
  .hero-eyebrow .rule{width:40px;height:1px;background:var(--gold);}
  .hero-eyebrow span{
    font-family:'Playfair Display',serif;
    font-style:italic;
    font-size:16px;
    color:var(--gold-light);
    letter-spacing:0.3px;
  }
  .hero-textblock{
    background:#08070650;
    background:rgba(8,7,6,0.55);
    border-radius:6px;
    padding:36px 34px;
    margin-left:-34px;
  }
  .hero h1{
    font-size:clamp(38px, 5.4vw, 68px);
    letter-spacing:-0.5px;
    max-width:15ch;
    opacity:0;
    color:#ffffff;
    animation:fadeUp 0.9s ease forwards;
    animation-delay:0.32s;
  }
  .hero h1 .grad-text{
    background:linear-gradient(100deg, var(--pink-glow), var(--gold-light));
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
    color:var(--gold-light);
  }
  .hero p.lead{
    margin-top:26px;
    max-width:46ch;
    font-size:17px;
    color:#cfc7ba;
    opacity:0;
    animation:fadeUp 0.9s ease forwards;
    animation-delay:0.5s;
  }
  .hero-actions{
    margin-top:40px;
    display:flex;gap:18px;flex-wrap:wrap;
    opacity:0;
    animation:fadeUp 0.9s ease forwards;
    animation-delay:0.68s;
  }
  .hero-visual{
    position:relative;
    display:flex;align-items:center;justify-content:center;
    opacity:0;
    animation:crestIn 1.3s ease forwards;
    animation-delay:0.35s;
  }
  .hero-visual .ring-outer{
    position:absolute;
    width:400px;height:400px;
    border:1px solid var(--line);
    border-radius:50%;
  }
  .hero-visual .ring-inner{
    position:absolute;
    width:320px;height:320px;
    border:1px solid rgba(225,29,132,0.22);
    border-radius:50%;
  }
  .hero-crest{width:300px;height:auto;position:relative;z-index:2;}

  @keyframes fadeUp{
    from{opacity:0; transform:translateY(16px);}
    to{opacity:1; transform:translateY(0);}
  }
  @keyframes crestIn{
    from{opacity:0; transform:scale(0.88);}
    to{opacity:1; transform:scale(1);}
  }

  .scroll-cue{
    position:absolute;
    bottom:36px;left:40px;
    display:flex;align-items:center;gap:10px;
    font-size:12px;
    letter-spacing:1px;
    color:var(--grey);
    z-index:2;
  }
  .scroll-cue .line{width:1px;height:34px;background:linear-gradient(var(--gold), transparent);}

  /* ---------- SECTION SHARED ---------- */
  section{padding:130px 0;position:relative;}
  .section-head{max-width:640px;margin-bottom:64px;}
  .section-head h2{font-size:clamp(30px, 3.6vw, 44px);}
  .section-head .lede{
    margin-top:18px;
    font-family:'Playfair Display',serif;
    font-style:italic;
    font-size:18px;
    color:var(--gold-light);
  }

  hr.divider{
    border:none;
    height:1px;
    background:var(--line);
    margin:0;
  }

  /* ---------- SERVICES ---------- */
  .services{background:var(--ink-deep);}
  .service-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:1px;
    background:var(--line);
    border:1px solid var(--line);
  }
  .service-card{
    background:var(--ink-deep);
    padding:52px 46px;
    position:relative;
    transition:background 0.4s ease;
  }
  .service-card:hover{background:#0f0d0b;}
  .service-tag{
    display:inline-block;
    font-family:'Playfair Display',serif;
    font-style:italic;
    font-size:14px;
    color:var(--pink-glow);
    margin-bottom:18px;
  }
  .service-card h3{font-size:27px;margin-bottom:16px;}
  .service-card p{color:#c9c1b4;font-size:15px;margin-bottom:26px;}
  .service-card ul{display:flex;flex-direction:column;gap:11px;}
  .service-card li{
    display:flex;align-items:flex-start;gap:12px;
    font-size:14.5px;
    color:var(--cream);
  }
  .service-card li .dot{
    width:5px;height:5px;
    margin-top:8px;
    background:var(--gold);
    border-radius:50%;
    flex-shrink:0;
  }
  .service-foot{
    margin-top:32px;
    display:inline-flex;align-items:center;gap:10px;
    font-size:13px;
    letter-spacing:0.3px;
    color:var(--gold-light);
    border-bottom:1px solid var(--gold-light);
    padding-bottom:3px;
  }

  /* ---------- ABOUT ---------- */
  .about-grid{
    display:grid;
    grid-template-columns:1.1fr 0.9fr;
    gap:80px;
    align-items:center;
  }
  .about-copy p{
    color:#cfc7ba;
    font-size:16px;
    margin-bottom:20px;
    max-width:58ch;
  }
  .about-values{
    margin-top:34px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px 28px;
  }
  .about-values div{
    display:flex;align-items:center;gap:10px;
    font-size:13.5px;
    color:var(--gold-light);
    letter-spacing:0.2px;
  }
  .about-values div::before{
    content:'';
    width:5px;height:5px;background:var(--pink);border-radius:50%;
    flex-shrink:0;
  }
  .about-frame{
    position:relative;
    aspect-ratio:1/1.1;
    border:1px solid var(--gold);
    display:flex;align-items:center;justify-content:center;
    background:
      radial-gradient(circle at 30% 20%, rgba(225,29,132,0.14), transparent 55%),
      radial-gradient(circle at 70% 80%, rgba(201,162,39,0.10), transparent 55%),
      var(--ink-soft);
  }
  .about-frame::before{
    content:'';
    position:absolute;
    inset:14px;
    border:1px solid rgba(201,162,39,0.35);
  }
  .about-frame .logo-icon{width:180px;height:auto;}

  /* ---------- WHY CHOOSE ---------- */
  .why{background:var(--ink-deep);border-top:1px solid var(--line);border-bottom:1px solid var(--line);}
  .why-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
  }
  .why-item{
    padding:52px 34px;
    border-left:1px solid var(--line);
    transition:background 0.35s ease;
  }
  .why-item:first-child{border-left:none;}
  .why-item:hover{background:rgba(225,29,132,0.04);}
  .why-icon{width:34px;height:34px;margin-bottom:26px;}
  .why-icon svg{width:100%;height:100%;}
  .why-item h3{font-size:19px;margin-bottom:12px;font-weight:600;}
  .why-item p{font-size:14px;color:#b9b1a5;}

  /* ---------- CTA ---------- */
  .cta{
    position:relative;
    text-align:center;
    padding:150px 0;
    overflow:hidden;
  }
  .cta::before{
    content:'';
    position:absolute;
    top:50%;left:50%;
    width:1000px;height:1000px;
    transform:translate(-50%,-50%);
    background:radial-gradient(circle, rgba(225,29,132,0.18) 0%, rgba(225,29,132,0) 60%);
    pointer-events:none;
  }
  .cta-inner{position:relative;z-index:2;max-width:680px;margin:0 auto;}
  .cta h2{font-size:clamp(32px,4.6vw,52px);margin-bottom:16px;}
  .cta .tagline{
    font-family:'Playfair Display',serif;
    font-style:italic;
    color:var(--gold-light);
    font-size:18px;
    margin-bottom:44px;
  }
  .cta-contact{
    margin-top:34px;
    font-size:13.5px;
    letter-spacing:0.3px;
    color:var(--grey);
  }
  .cta-contact a{color:var(--gold-light); border-bottom:1px solid rgba(233,209,138,0.35); padding-bottom:1px;}
  .cta-contact a:hover{color:var(--cream);}

  /* ---------- FOOTER ---------- */
  footer{
    background:var(--ink-deep);
    padding:80px 0 32px;
    border-top:1px solid var(--gold);
  }
  .footer-grid{
    display:grid;
    grid-template-columns:1.4fr 0.8fr 0.8fr 1fr;
    gap:50px;
    padding-bottom:60px;
  }
  .footer-brand p.tag{
    font-family:'Playfair Display',serif;
    font-style:italic;
    color:var(--gold-light);
    margin-top:14px;
    font-size:14.5px;
  }
  .footer-social{
    display:flex;gap:14px;margin-top:26px;
  }
  .footer-social a{
    width:34px;height:34px;
    border:1px solid var(--line);
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    transition:border-color 0.3s ease, background 0.3s ease;
  }
  .footer-social a:hover{border-color:var(--gold); background:rgba(201,162,39,0.08);}
  .footer-social svg{width:14px;height:14px;stroke:var(--gold-light);}

  .footer-col h4{
    font-family:'Manrope',sans-serif;
    font-size:12.5px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--gold);
    margin-bottom:20px;
    font-weight:700;
  }
  .footer-col ul{display:flex;flex-direction:column;gap:12px;}
  .footer-col a, .footer-col p{
    font-size:14px;
    color:#c2bbae;
  }
  .footer-col a:hover{color:var(--gold-light);}

  .footer-legal{
    border-top:1px solid var(--line);
    padding-top:28px;
    display:flex;
    justify-content:space-between;
    gap:30px;
    flex-wrap:wrap;
  }
  .footer-legal p{
    font-size:12px;
    color:#7d766c;
    max-width:760px;
    line-height:1.7;
  }
  .footer-legal .copy{font-size:12px;color:#7d766c;white-space:nowrap;}

  /* ---------- RESPONSIVE ---------- */
  @media (max-width:980px){
    .hero-grid{grid-template-columns:1fr;}
    .hero-visual{order:-1; margin-bottom:20px; transform:scale(0.75);}
    .about-grid{grid-template-columns:1fr; gap:50px;}
    .about-frame{max-width:340px; margin:0 auto;}
    .why-grid{grid-template-columns:1fr 1fr;}
    .why-item:nth-child(3){border-left:none;}
    .why-item{border-bottom:1px solid var(--line);}
    .footer-grid{grid-template-columns:1fr 1fr; gap:40px;}
  }

  @media (max-width:760px){
    .wrap{padding:0 24px;}
    .hero-textblock{margin-left:0; padding:26px 22px;}
    .nav-links{
      position:fixed;top:0;right:0;
      height:100vh;width:78%;max-width:320px;
      background:#08070650;
      background:rgba(8,7,6,0.98);
      backdrop-filter:blur(14px);
      flex-direction:column;
      justify-content:center;
      gap:30px;
      padding:40px;
      transform:translateX(100%);
      transition:transform 0.4s ease;
      border-left:1px solid var(--line);
    }
    .nav-links.open{transform:translateX(0);}
    .nav-links a{font-size:18px;}
    .burger{display:flex;}
    .nav-cta{display:none;}
    section{padding:90px 0;}
    .service-grid{grid-template-columns:1fr;}
    .service-card{padding:40px 28px;}
    .why-grid{grid-template-columns:1fr;}
    .why-item{border-left:none !important; border-bottom:1px solid var(--line);}
    .why-item:last-child{border-bottom:none;}
    .footer-grid{grid-template-columns:1fr; gap:36px;}
    .footer-legal{flex-direction:column;}
    .cta{padding:100px 0;}
  }

  :focus-visible{
    outline:1.5px solid var(--gold-light);
    outline-offset:3px;
  }