:root{
    --navy-950:#0a1224;
    --navy-900:#0d1730;
    --navy-800:#101d3d;
    --navy-700:#16264d;
    --gold-400:#d4a95f;
    --gold-500:#c79544;
    --gold-glow: rgba(212,169,95,0.35);
    --ink-100:#f5f3ee;
    --ink-300:#c9cede;
    --ink-400:#94a0bd;
    --line: rgba(255,255,255,0.08);
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Inter', sans-serif;
    background: var(--navy-950);
    color: var(--ink-100);
    overflow-x:hidden;
  }
  img{ max-width:100%; }

  /* ---------- background texture ---------- */
  .bg-fx{
    position:fixed; inset:0; z-index:0; pointer-events:none;
    background: linear-gradient(180deg, var(--navy-950), var(--navy-900) 55%, var(--navy-950));
  }
  .grain{
    position:fixed; inset:0; z-index:1; pointer-events:none; opacity:0.035; mix-blend-mode:overlay;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  /* ---------- nav ---------- */
  nav{
    position:fixed; top:0; left:0; right:0; z-index:50;
    display:flex; align-items:center; justify-content:space-between;
    padding:22px 56px;
    background: rgba(10,18,36,0.55);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom:1px solid var(--line);
  }
  .brand{ display:flex; align-items:center; gap:14px; text-decoration:none; }
  .brand img{ width:42px; height:42px; border-radius:50%; object-fit:cover; }
  .brand-text{ display:flex; flex-direction:column; line-height:1.15; }
  .brand-text b{ font-size:15px; letter-spacing:0.06em; color:var(--ink-100); }
  .brand-text span{ font-size:10.5px; letter-spacing:0.16em; color:var(--gold-400); font-weight:600; }
  .nav-links{ display:flex; align-items:center; gap:40px; }
  .nav-links a{
    color: var(--ink-300); text-decoration:none; font-size:14.5px; font-weight:500;
    position:relative; padding:4px 0; transition:color .25s ease;
  }
  .nav-links a::after{
    content:''; position:absolute; left:0; bottom:-2px; width:0; height:1px;
    background:var(--gold-400); transition:width .3s ease;
  }
  .nav-links a:hover{ color:var(--ink-100); }
  .nav-links a:hover::after{ width:100%; }
  .nav-cta{
    padding:11px 24px; border-radius:999px; font-size:14px; font-weight:600;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color:#231705; text-decoration:none;
    box-shadow: 0 8px 24px -8px var(--gold-glow);
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .nav-cta:hover{ transform: translateY(-2px); box-shadow: 0 14px 30px -8px var(--gold-glow); }

  /* ---------- hero ---------- */
  header.hero{
    position:relative; z-index:2;
    min-height:100vh;
    display:grid; grid-template-columns: 1.05fr 0.95fr; align-items:start;
    padding:150px 56px 60px;
    gap:40px;
  }
  .eyebrow{
    display:inline-flex; align-items:center; gap:12px;
    font-size:12.5px; letter-spacing:0.22em; font-weight:600; color:var(--gold-400);
    text-transform:uppercase;
    opacity:0; transform:translateY(10px); animation: rise .8s .1s ease forwards;
  }
  .eyebrow::before{ content:''; width:28px; height:1px; background:var(--gold-400); }

  h1{
    font-family:'Fraunces', serif; font-weight:500; font-optical-sizing:auto;
    font-size:clamp(48px, 5.4vw, 84px);
    line-height:1.02; letter-spacing:-0.01em;
    margin:26px 0 24px;
    background: linear-gradient(180deg, #ffffff, #d9dfef 70%);
    -webkit-background-clip:text; background-clip:text; color:transparent;
    opacity:0; transform:translateY(14px); animation: rise .9s .22s ease forwards;
  }
  h1 em{ font-style:italic; color:var(--gold-400); -webkit-text-fill-color:var(--gold-400); }

  .lede{
    max-width:520px; font-size:17.5px; line-height:1.75; color:var(--ink-300); font-weight:400;
    opacity:0; transform:translateY(14px); animation: rise .9s .34s ease forwards;
  }

  .cta-row{ display:flex; align-items:center; gap:20px; margin-top:40px;
    opacity:0; transform:translateY(14px); animation: rise .9s .46s ease forwards; }
  .btn-primary{
    display:inline-flex; align-items:center; gap:10px;
    padding:16px 30px; border-radius:999px; text-decoration:none;
    font-weight:600; font-size:15px; color:#211404;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    box-shadow: 0 14px 34px -12px var(--gold-glow);
    transition: transform .3s cubic-bezier(.2,.9,.3,1.3), box-shadow .3s ease;
  }
  .btn-primary:hover{ transform:translateY(-3px) scale(1.015); box-shadow:0 20px 46px -12px var(--gold-glow); }
  .btn-ghost{
    display:inline-flex; align-items:center; gap:8px;
    padding:16px 26px; border-radius:999px; text-decoration:none;
    font-weight:500; font-size:15px; color:var(--ink-100);
    border:1px solid var(--line);
    transition: border-color .3s ease, background .3s ease, transform .3s ease;
  }
  .btn-ghost:hover{ border-color:rgba(255,255,255,0.3); background:rgba(255,255,255,0.04); transform:translateY(-2px); }

  .stats{
    display:flex; gap:0; margin-top:64px; padding-top:32px; border-top:1px solid var(--line);
    max-width:560px;
    opacity:0; transform:translateY(14px); animation: rise .9s .58s ease forwards;
  }
  .stat{ flex:1; padding-right:28px; }
  .stat + .stat{ border-left:1px solid var(--line); padding-left:28px; }
  .stat b{
    font-family:'Fraunces', serif; font-weight:500; font-size:34px; display:block;
    background:linear-gradient(135deg,#fff,var(--gold-400));
    -webkit-background-clip:text; background-clip:text; color:transparent;
  }
  .stat span{ font-size:11px; letter-spacing:0.1em; color:var(--ink-400); font-weight:600; text-transform:uppercase; }

  /* ---------- portrait ---------- */
  .portrait-wrap{
    position:relative; display:flex; flex-direction:column; align-items:center;
    opacity:0; transform:translateY(20px) scale(.98); animation: rise 1.1s .3s ease forwards;
  }
  .portrait-wrap img{
    position:relative; z-index:2;
    width:min(480px, 94%); height:auto;
    display:block; object-fit:contain;
    filter: saturate(1.03) contrast(1.02) drop-shadow(0 40px 60px rgba(0,0,0,0.55));
  }
  .portrait-caption{
    position:relative; z-index:2; margin-top:18px;
    font-size:12.5px; letter-spacing:0.16em; font-weight:600; text-transform:uppercase;
    color: var(--gold-400); text-align:center;
  }
  .portrait-caption span{ color:var(--ink-400); font-weight:500; }

  @keyframes rise{ to{ opacity:1; transform:translateY(0) scale(1); } }

  /* ---------- generic section system ---------- */
  section{ position:relative; z-index:2; padding:130px 56px; }
  .section-head{ max-width:660px; margin:0 auto 64px; text-align:center; }
  .section-head .eyebrow{ justify-content:center; opacity:1; animation:none; transform:none; }
  .section-head .eyebrow::before{ display:none; }
  .section-head .eyebrow::after{ content:''; display:inline-block; width:28px; height:1px; background:var(--gold-400); }
  h2{
    font-family:'Fraunces', serif; font-weight:500;
    font-size:clamp(32px, 3.6vw, 48px); line-height:1.1; margin-top:18px;
    color: var(--ink-100);
  }
  .section-sub{ margin-top:18px; font-size:16.5px; color:var(--ink-400); line-height:1.7; }

  .reveal{ opacity:0; transform:translateY(24px); transition: opacity .8s ease, transform .8s ease; }
  .reveal.in{ opacity:1; transform:translateY(0); }

  /* ---------- specialties ---------- */
  .grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; max-width:1180px; margin:0 auto; }
  .spec-card{
    background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
    border:1px solid var(--line); border-radius:20px; padding:34px 28px;
    transition: transform .35s ease, border-color .35s ease, background .35s ease;
  }
  .spec-card:hover{ transform:translateY(-6px); border-color: rgba(212,169,95,0.35); background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); }
  .spec-icon{
    width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center;
    background: linear-gradient(135deg, rgba(212,169,95,0.22), rgba(212,169,95,0.06));
    border:1px solid rgba(212,169,95,0.25);
    font-size:22px; margin-bottom:20px;
  }
  .spec-tag{ font-size:10.5px; letter-spacing:0.16em; font-weight:700; color:var(--gold-400); text-transform:uppercase; }
  .spec-card h3{ font-family:'Fraunces', serif; font-weight:500; font-size:21px; margin:12px 0 10px; color:var(--ink-100); }
  .spec-card p{ font-size:14.5px; line-height:1.65; color:var(--ink-400); }

  /* ---------- about ---------- */
  .about-row{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:64px; align-items:center; max-width:1180px; margin:0 auto 110px; }
  .about-row:last-child{ margin-bottom:0; }
  .about-row.rev{ grid-template-columns:1.15fr 0.85fr; }
  .about-row.rev .about-media{ order:2; }
  .about-media{ position:relative; border-radius:22px; overflow:hidden; border:1px solid var(--line); box-shadow:0 40px 70px -30px rgba(0,0,0,0.6); }
  .about-media img{ width:100%; display:block; aspect-ratio: 1/1; object-fit:cover; object-position:center 15%; }
  .about-eyebrow{ font-size:12px; letter-spacing:0.2em; font-weight:700; color:var(--gold-400); text-transform:uppercase; display:flex; align-items:center; gap:10px; }
  .about-eyebrow::before{ content:''; width:24px; height:1px; background:var(--gold-400); }
  .about-row h3{ font-family:'Fraunces', serif; font-weight:500; font-size:clamp(24px,2.4vw,32px); margin:16px 0 18px; line-height:1.2; }
  .about-row p{ color:var(--ink-300); font-size:16px; line-height:1.8; margin-bottom:14px; }
  .about-row b{ color:var(--ink-100); }
  .chip-list{ display:flex; flex-wrap:wrap; gap:10px; margin-top:20px; }
  .chip{ font-size:13px; padding:8px 16px; border-radius:999px; border:1px solid var(--line); color:var(--ink-300); }

  /* ---------- scheduling ---------- */
  .grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:28px; max-width:980px; margin:0 auto; }
  .sched-card{
    background: linear-gradient(160deg, rgba(212,169,95,0.08), rgba(255,255,255,0.02));
    border:1px solid var(--line); border-radius:22px; padding:38px;
  }
  .sched-card h3{ font-family:'Fraunces', serif; font-weight:500; font-size:24px; margin-bottom:12px; }
  .sched-card p{ color:var(--ink-400); font-size:15px; line-height:1.7; margin-bottom:22px; }
  .sched-phone{ font-size:15px; color:var(--ink-100); font-weight:600; margin-bottom:20px; display:block; }
  .hours-box{
    display:flex; gap:24px; max-width:980px; margin:0 auto 48px; justify-content:center;
    font-size:14px; color:var(--ink-300);
  }
  .hours-box b{ color:var(--gold-400); }

  /* ---------- contact ---------- */
  .contact-row{ display:grid; grid-template-columns:1fr 1fr; gap:48px; max-width:1180px; margin:0 auto; align-items:stretch; }
  .contact-list{ display:flex; flex-direction:column; gap:26px; }
  .contact-item b{ display:block; font-size:11px; letter-spacing:0.14em; color:var(--gold-400); text-transform:uppercase; margin-bottom:6px; }
  .contact-item a, .contact-item span{ color:var(--ink-200,#dfe4f0); font-size:16px; text-decoration:none; }
  .contact-item a:hover{ color:var(--gold-400); }
  .map-box{ border-radius:22px; overflow:hidden; border:1px solid var(--line); min-height:340px; filter:grayscale(0.3) contrast(1.1); }
  .map-box iframe{ width:100%; height:100%; min-height:340px; border:0; display:block; }

  footer{
    position:relative; z-index:2; padding:36px 56px; border-top:1px solid var(--line);
    display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
    color:var(--ink-400); font-size:13.5px;
  }
  footer a{ color:var(--ink-400); text-decoration:none; }
  footer a:hover{ color:var(--gold-400); }

  /* ---------- whatsapp float + mobile menu ---------- */
  .wa-float{
    position:fixed; right:24px; bottom:24px; z-index:60;
    width:58px; height:58px; border-radius:50%;
    background:#25D366; display:flex; align-items:center; justify-content:center;
    box-shadow:0 12px 30px -10px rgba(0,0,0,0.6);
    transition: transform .25s ease;
  }
  .wa-float:hover{ transform: scale(1.08); }
  .wa-float svg{ width:30px; height:30px; }
  .nav-burger{ display:none; width:26px; height:20px; position:relative; background:none; border:0; cursor:pointer; }
  .nav-burger span{ position:absolute; left:0; right:0; height:2px; background:var(--ink-100); transition:all .25s ease; }
  .nav-burger span:nth-child(1){ top:0; }
  .nav-burger span:nth-child(2){ top:9px; }
  .nav-burger span:nth-child(3){ top:18px; }
  .nav-burger.open span:nth-child(1){ transform:translateY(9px) rotate(45deg); }
  .nav-burger.open span:nth-child(2){ opacity:0; }
  .nav-burger.open span:nth-child(3){ transform:translateY(-9px) rotate(-45deg); }

  @media (max-width: 980px){
    nav{ padding:16px 24px; }
    .nav-links{
      display:flex; flex-direction:column; align-items:flex-start; gap:20px;
      position:fixed; top:78px; left:0; right:0; padding:28px 24px;
      background: rgba(10,18,36,0.97); backdrop-filter: blur(18px);
      border-bottom:1px solid var(--line);
      transform:translateY(-12px); opacity:0; pointer-events:none; transition: all .25s ease;
    }
    .nav-links.open{ transform:translateY(0); opacity:1; pointer-events:auto; }
    .nav-burger{ display:block; }
    header.hero{ grid-template-columns:1fr; padding:130px 24px 60px; text-align:left; }
    .stats{ max-width:100%; }
    .portrait-wrap{ margin-top:40px; }
    section{ padding:80px 24px; }
    .grid-3, .grid-2{ grid-template-columns:1fr; }
    .about-row, .about-row.rev{ grid-template-columns:1fr; gap:32px; margin-bottom:70px; }
    .about-row.rev .about-media{ order:0; }
    .contact-row{ grid-template-columns:1fr; }
    .hours-box{ flex-direction:column; gap:6px; text-align:center; }
  }
