:root{
    --bg: #1c1410;
    --bg-alt: #241a15;
    --surface: #2c2019;
    --surface-2: #33251c;
    --line: #4a382c;
    --gold: #c9a05e;
    --gold-light: #e3c48c;
    --rose: #d89c96;
    --ivory: #f5ede4;
    --muted: #b8a99a;
    --muted-2: #8a7566;
  }
  *{ box-sizing: border-box; }
  html{ scroll-behavior: smooth; }
  body{
    margin:0;
    background: var(--bg);
    color: var(--ivory);
    font-family: 'Manrope', sans-serif;
    -webkit-font-smoothing: antialiased;
  }
  h1, h2, h3, .display{
    font-family: 'Fraunces', serif;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin: 0;
  }
  a{ color: inherit; }
  img{ max-width:100%; display:block; }
  .wrap{ max-width: 1140px; margin: 0 auto; padding: 0 24px; }
  .eyebrow{
    font-family:'Manrope', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold-light);
  }
  section{ position: relative; }

  /* ---------- NAV ---------- */
  header{
    position: fixed;
    top:0; left:0; right:0;
    z-index: 50;
    background: linear-gradient(to bottom, rgba(28,20,16,0.92), rgba(28,20,16,0));
    padding: 18px 0 30px;
    transition: background .3s ease;
  }
  header .wrap{ display:flex; align-items:center; justify-content:space-between; }
  .logo{ display:block; width:52px; line-height:0; }
  .logo img,
  .logo video{
    display:block;
    width:100%;
    aspect-ratio:1;
    object-fit:cover;
    border-radius:50%;
    background:#050505;
  }
  nav ul{ list-style:none; display:flex; gap: 32px; margin:0; padding:0; }
  nav a{
    text-decoration:none; font-size: 14px; font-weight:600; color: var(--muted);
    letter-spacing: 0.03em;
    transition: color .2s;
  }
  nav a:hover, nav a:focus-visible{ color: var(--ivory); }
  .nav-toggle{ display:none; background:none; border:1px solid var(--line); color:var(--ivory); border-radius: 8px; padding: 8px 10px; font-size: 20px; line-height:1; }

  /* ---------- HERO ---------- */
  .hero{
    min-height: 100svh;
    display:flex;
    align-items:center;
    padding-top: 110px;
    overflow:hidden;
    background:
      radial-gradient(60% 50% at 85% 15%, rgba(201,160,94,0.16), transparent 60%),
      radial-gradient(50% 40% at 10% 90%, rgba(216,156,150,0.10), transparent 60%),
      var(--bg);
  }
  .hero .wrap{ display:grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items:center; }
  .hero h1{
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.98;
    color: var(--ivory);
  }
  .hero h1 em{ font-style: italic; color: var(--gold-light); }
  .hero p.lead{
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 46ch;
  }
  .cta-row{ display:flex; gap:14px; margin-top: 34px; flex-wrap: wrap; }
  .btn{
    display:inline-flex; align-items:center; gap:8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-decoration:none;
    border: 1px solid transparent;
    cursor:pointer;
    transition: transform .18s ease, background .2s ease, border-color .2s ease;
  }
  .btn:active{ transform: scale(0.97); }
  .btn-primary{ background: var(--gold); color: #241a15; }
  .btn-primary:hover{ background: var(--gold-light); }
  .btn-ghost{ background: transparent; color: var(--ivory); border-color: var(--line); }
  .btn-ghost:hover{ border-color: var(--gold); color: var(--gold-light); }
  .btn:focus-visible{ outline: 2px solid var(--gold-light); outline-offset: 3px; }

  .hero-visual{ position:relative; aspect-ratio: 4/5; }
  .strand-frame{
    position:absolute; inset:0;
    border-radius: 18px;
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    border: 1px solid var(--line);
    overflow:hidden;
  }
  .strand-frame img,
  .strand-frame > video{ width:100%; height:100%; object-fit:cover; }
  .strand-frame > video{ display:block; background:#050505; }
  .strand-frame .tag{
    position:absolute; bottom: 22px; left: 22px; right: 22px;
    font-size: 13px; color: var(--ivory);
    font-weight:600;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(28,20,16,0.72);
  }

  /* signature flowing strand svg */
  .strand-divider{ width:100%; display:block; line-height:0; }
  .strand-divider svg{ width:100%; height:auto; display:block; }
  .strand-path{
    stroke-dasharray: 12 10;
    animation: flow 26s linear infinite;
  }
  @keyframes flow{ to{ stroke-dashoffset: -880; } }
  @media (prefers-reduced-motion: reduce){
    .strand-path{ animation: none; }
    html{ scroll-behavior:auto; }
  }

  /* ---------- SECTION HEADINGS ---------- */
  .sect{ padding: 110px 0; }
  .sect-head{ max-width: 640px; margin-bottom: 56px; }
  .sect-head h2{ font-size: clamp(30px, 4vw, 46px); margin-top: 10px; color: var(--ivory); }
  .sect-head p{ color: var(--muted); font-size: 16px; line-height:1.6; margin-top: 14px; }
  .sect-alt{ background: var(--bg-alt); }

  /* ---------- ABOUT ---------- */
  .about-grid{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items:center; }
  .about-swatch{
    aspect-ratio: 1/1;
    border-radius: 18px;
    position:relative;
    overflow:hidden;
    border: 1px solid var(--line);
  }
  .about-swatch img{ width:100%; height:100%; object-fit:cover; object-position:center top; }
  .about-text p{ color: var(--muted); line-height: 1.75; font-size: 16px; margin: 0 0 16px; }
  .about-text p:last-child{ margin-bottom:0; }
  .about-text strong{ color: var(--ivory); }
  .about-text .owner-name{ color:var(--gold-light); font-weight:700; font-size:14px; letter-spacing:0.03em; }

  /* ---------- SERVICES ---------- */
  .services-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow:hidden; }
  .svc-card{ background: var(--bg); padding: 34px 28px; transition: background .25s ease; }
  .svc-card:hover{ background: var(--surface); }
  .svc-image{ width:100%; height:145px; display:block; object-fit:cover; border-radius:10px; margin:0 0 20px; }
  .svc-num{ font-family:'Fraunces', serif; font-style: italic; color: var(--gold); font-size: 14px; }
  .svc-card h3{ font-size: 20px; margin-top: 14px; color: var(--ivory); }
  .svc-card p{ color: var(--muted); font-size: 14.5px; line-height:1.6; margin-top: 10px; }

  /* ---------- GALLERY ---------- */
  .gallery-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .gallery-grid .g-item{
    aspect-ratio: 3/4;
    border-radius: 14px;
    border: 1px solid var(--line);
    display:flex; align-items:flex-end;
    position:relative;
    overflow:hidden;
    margin:0;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted-2);
  }
  .gallery-grid .g-item:nth-child(1){ grid-row: span 2; aspect-ratio: 3/5.2; }
  .gallery-grid .g-item img, .gallery-grid .g-item video{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
  .gallery-grid .g-item:hover img, .gallery-grid .g-item:hover video{ transform:scale(1.05); }
  .gallery-grid .g-item::after{ content:""; position:absolute; inset:0; pointer-events:none; background:linear-gradient(transparent 40%,rgba(20,12,8,.8)); }
  .gallery-grid figcaption{ position:relative; z-index:1; padding:16px; color:var(--ivory); }

  /* ---------- REVIEWS ---------- */
  .reviews-layout{ display:grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items:flex-start; }
  .review-card{
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 26px 28px;
    margin-bottom: 16px;
  }
  .review-card .stars{ color: var(--gold-light); letter-spacing: 3px; font-size: 14px; }
  .review-card p{ color: var(--ivory); font-size: 15.5px; line-height: 1.65; margin: 12px 0 14px; }
  .review-card .who{ font-size: 13px; color: var(--muted-2); font-weight:700; text-transform: uppercase; letter-spacing: 0.05em; }

  .review-form{
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 30px;
    position: sticky;
    top: 110px;
  }
  .review-form h3{ font-size: 20px; color: var(--ivory); }
  .field{ margin-top: 16px; }
  .field label{ display:block; font-size: 13px; font-weight:700; color: var(--muted); margin-bottom: 7px; letter-spacing:0.02em; }
  .field input, .field select, .field textarea{
    width:100%;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--ivory);
    font-family: inherit;
    font-size: 14.5px;
  }
  .field textarea{ resize: vertical; min-height: 90px; }
  .field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible{
    outline: 2px solid var(--gold-light); outline-offset: 1px; border-color: var(--gold);
  }
  .star-picker{ display:flex; gap:6px; margin-top: 6px; }
  .star-picker button{
    background:none; border:none; font-size: 22px; color: var(--line); cursor:pointer; padding:0;
    transition: color .15s;
  }
  .star-picker button.active, .star-picker button:hover{ color: var(--gold-light); }
  .form-msg{ margin-top: 14px; font-size: 13.5px; color: var(--gold-light); min-height: 18px; }
  .honeypot{ position:absolute; overflow:hidden; clip:rect(0 0 0 0); height:1px; width:1px; margin:-1px; padding:0; border:0; }

  /* ---------- BOOKING ---------- */
  .booking-grid{ display:grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; }
  .steps{ display:flex; flex-direction: column; gap: 26px; }
  .step{ display:flex; gap: 16px; }
  .step-num{ font-family:'Fraunces', serif; font-style:italic; font-size: 26px; color: var(--gold); flex-shrink:0; width: 40px; }
  .step h4{ font-size: 16px; color: var(--ivory); font-weight:700; margin:0 0 6px; }
  .step p{ font-size: 14px; color: var(--muted); margin:0; line-height:1.55; }

  .booking-form{ background: var(--surface); border:1px solid var(--line); border-radius: 18px; padding: 36px; }
  .form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .privacy-consent{ display:flex; align-items:flex-start; gap:11px; margin-top:20px; color:var(--muted); font-size:13px; line-height:1.55; cursor:pointer; }
  .privacy-consent input{ width:18px; height:18px; margin:2px 0 0; flex:0 0 auto; accent-color:var(--gold); }
  .privacy-consent a{ color:var(--gold-light); font-weight:700; }
  .privacy-consent a:hover{ color:var(--ivory); }
  .booking-form .btn{ width:100%; justify-content:center; margin-top: 22px; }
  .success-box{
    display:none;
    margin-top: 20px;
    padding: 16px 18px;
    border-radius: 12px;
    background: rgba(201,160,94,0.12);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 14.5px;
  }
  .success-box.show{ display:block; }
  .success-box a{ color:var(--gold-light); font-weight:700; }

  /* ---------- FOOTER ---------- */
  footer{ background: var(--bg-alt); border-top: 1px solid var(--line); padding: 70px 0 34px; }
  .footer-grid{ display:grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 48px; }
  .footer-grid h4{ font-size: 13px; text-transform:uppercase; letter-spacing:0.1em; color: var(--gold-light); margin: 0 0 16px; }
  .footer-grid p, .footer-grid a{ color: var(--muted); font-size: 14.5px; line-height:1.9; text-decoration:none; }
  .footer-grid a:hover{ color: var(--ivory); }
  .footer-bottom{ margin-top: 60px; padding-top: 24px; border-top: 1px solid var(--line); display:flex; justify-content:space-between; flex-wrap:wrap; gap: 12px; font-size: 13px; color: var(--muted-2); }
  .placeholder-note{ color: var(--rose); font-style: italic; }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 900px){
    nav ul{ display:none; }
    .nav-toggle{ display:inline-block; }
    .hero .wrap{ grid-template-columns: 1fr; }
    .hero-visual{ order:-1; aspect-ratio: 16/10; }
    .about-grid{ grid-template-columns: 1fr; }
    .services-grid{ grid-template-columns: 1fr 1fr; }
    .gallery-grid{ grid-template-columns: 1fr 1fr; }
    .gallery-grid .g-item:nth-child(1){ grid-row: span 1; aspect-ratio: 3/4; }
    .reviews-layout{ grid-template-columns: 1fr; }
    .review-form{ position: static; }
    .booking-grid{ grid-template-columns: 1fr; }
    .form-row{ grid-template-columns: 1fr; }
    .footer-grid{ grid-template-columns: 1fr; }
  }
  @media (max-width: 560px){
    .services-grid{ grid-template-columns: 1fr; }
  }
