  :root {
    --ink: #1A1B14;
    --cream: #EDE7DA;
    --cream-2: #E3DCC7;
    --olive: #324529;
    --olive-dark: #24331D;
    --gold: #B08D57;
    --sage: #C9CBAE;
    --line: #D6CFB6;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Inter', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
  .display {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 0.95;
  }
  .wrap { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

  /* ---------- Nav ---------- */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 28px 32px;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  }
  .logo {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    line-height: 1.05;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
  }
  nav.links {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    transition: color 0.3s ease;
  }
  nav.links a { opacity: 0.85; transition: opacity 0.2s; white-space: nowrap; }
  nav.links a:hover { opacity: 1; }
  .btn-book {
    background: var(--olive);
    color: #F4EDE3 !important;
    padding: 12px 22px;
    border-radius: 0;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 15px;
    letter-spacing: 0.02em;
    text-transform: none;
    font-weight: 500;
    opacity: 1 !important;
    white-space: nowrap;
    box-shadow: inset 0 0 0 1px rgba(244,237,227,0.0);
    outline: 1px solid rgba(244,237,227,0.35);
    outline-offset: -5px;
    transition: background 0.45s cubic-bezier(.16,1,.3,1), outline-offset 0.45s cubic-bezier(.16,1,.3,1), transform 0.06s ease;
  }
  .btn-book:hover { background: var(--olive-dark); outline-offset: -7px; }
  .btn-book:active { transform: scale(0.97) translateY(1px); }

  header.scrolled {
    background: rgba(244,237,227,0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 var(--line);
    padding: 18px 32px;
  }
  header.scrolled .logo,
  header.scrolled nav.links { color: var(--ink); }
  header.scrolled nav.links a { opacity: 0.7; }
  header.scrolled nav.links a:hover { opacity: 1; }

  @media (max-width: 860px) {
    nav.links a:not(.btn-book) { display: none; }
    nav.links { gap: 0; }
    header { padding: 20px 24px; }
    .logo { font-size: 17px; }
  }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
  }
  .hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .hero-media video,
  .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
  }
  .hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,21,20,0.55) 0%, rgba(26,21,20,0.1) 28%, rgba(26,21,20,0.1) 55%, rgba(26,21,20,0.6) 100%);
  }
  .hero-mark-glow {
    position: absolute;
    top: -6%;
    left: 50%;
    transform: translateX(-50%);
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(200,168,110,0.28) 0%, rgba(200,168,110,0) 70%);
    pointer-events: none;
    z-index: 1;
  }
  .hero-mark {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: 190px;
    margin: 118px auto 0;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
    animation: markFloat 7s ease-in-out infinite;
  }
  @keyframes markFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-14px); }
  }
  .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 32px 72px;
  }
  .hero-eyebrow {
    color: #F4EDE3;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 18px;
    opacity: 0.9;
  }
  .hero h1 {
    color: #F4EDE3;
    font-size: clamp(48px, 9vw, 132px);
    max-width: 1100px;
  }
  .hero-sub {
    color: #F4EDE3;
    max-width: 480px;
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.92;
  }
  .hero-cta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--olive);
    color: #F4EDE3;
    padding: 18px 36px;
    border-radius: 0;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 16px;
    letter-spacing: 0.02em;
    text-transform: none;
    font-weight: 500;
    outline: 1px solid rgba(244,237,227,0.35);
    outline-offset: -6px;
    transition: background 0.45s cubic-bezier(.16,1,.3,1), outline-offset 0.45s cubic-bezier(.16,1,.3,1), outline-color 0.45s cubic-bezier(.16,1,.3,1), transform 0.06s ease;
  }
  .btn-primary:hover { background: var(--olive-dark); outline-offset: -9px; outline-color: rgba(244,237,227,0.55); }
  .btn-primary:active { transform: scale(0.97) translateY(1px); }
  .btn-ghost {
    border: 1px solid rgba(244,237,227,0.5);
    color: #F4EDE3;
    padding: 18px 36px;
    border-radius: 0;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 16px;
    letter-spacing: 0.02em;
    text-transform: none;
    font-weight: 500;
    transition: border-color 0.45s cubic-bezier(.16,1,.3,1), background 0.45s cubic-bezier(.16,1,.3,1), color 0.45s cubic-bezier(.16,1,.3,1), transform 0.06s ease;
  }
  .btn-ghost:hover { border-color: #F4EDE3; background: #F4EDE3; color: var(--ink); }
  .btn-ghost:active { transform: scale(0.97) translateY(1px); }

  /* ---------- Brand moment ---------- */
  .brand-moment {
    background: radial-gradient(ellipse at 50% 35%, #17130F 0%, #0D0B09 60%, #0A0808 100%);
    padding: 130px 32px 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .brand-moment .mark-glow {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(200,168,110,0.16) 0%, rgba(200,168,110,0) 70%);
    pointer-events: none;
  }
  .brand-moment img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 40px;
    position: relative;
    filter: drop-shadow(0 25px 45px rgba(0,0,0,0.55));
    animation: markFloat 7s ease-in-out infinite;
  }
  @keyframes markFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-16px); }
  }
  .brand-moment .mark-word {
    font-family: 'Fraunces', serif;
    font-size: 15px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sage);
  }
  .brand-moment .mark-sub {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7A6E60;
    margin-top: 10px;
  }

  /* ---------- Section shell ---------- */
  section { padding: 140px 0; }
  .section-label {
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: 20px;
    font-weight: 600;
  }
  .section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 72px;
    flex-wrap: wrap;
  }
  .section-head h2 {
    font-size: clamp(34px, 5vw, 64px);
    max-width: 700px;
  }
  .section-head p {
    max-width: 360px;
    font-size: 15px;
    line-height: 1.7;
    color: #4A3F38;
    padding-bottom: 6px;
  }

  /* ---------- Services ---------- */
  .services { background: var(--cream-2); }
  .service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .service-card {
    background: var(--cream-2);
    position: relative;
  }
  .service-img {
    aspect-ratio: 4/5;
    overflow: hidden;
  }
  .service-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(.16,1,.3,1);
  }
  .service-card:hover .service-img img { transform: scale(1.04); }
  .service-body { padding: 28px 28px 34px; }
  .service-num {
    font-size: 12px;
    color: var(--olive);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    font-weight: 600;
  }
  .service-body h3 {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .service-body p {
    font-size: 14px;
    line-height: 1.65;
    color: #4A3F38;
    margin-bottom: 18px;
  }
  .service-link {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--olive);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .service-link:hover { color: var(--ink); }

  @media (max-width: 900px) {
    .service-grid { grid-template-columns: 1fr; }
  }

  /* ---------- Booking ---------- */
  .booking-section { background: var(--cream-2); }
  .booking-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 28px;
    overflow: hidden;
    background: var(--cream);
  }
  .booking-form {
    padding: 64px 56px;
  }
  .booking-form .section-label { margin-bottom: 16px; }
  .booking-form h2 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 14px; }
  .booking-form > p { font-size: 15px; line-height: 1.7; color: #4A3F38; max-width: 420px; margin-bottom: 40px; }
  .field { margin-bottom: 22px; }
  .field label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6B5D53;
    margin-bottom: 10px;
    font-weight: 600;
  }
  .select-premium {
    position: relative;
  }
  .select-premium select {
    width: 100%;
    appearance: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px 44px 16px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--ink);
    cursor: pointer;
    transition: border-color 0.2s;
  }
  .select-premium select:focus { outline: none; border-color: var(--olive); }
  .select-premium::after {
    content: "";
    position: absolute;
    right: 18px; top: 50%;
    width: 9px; height: 9px;
    border-right: 2px solid #6B5D53;
    border-bottom: 2px solid #6B5D53;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
  }
  .field-divider {
    display: flex; align-items: center; gap: 14px;
    margin: 24px 0;
    color: #8A7A6D; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  }
  .field-divider::before, .field-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
  .booking-note { font-size: 12px; color: #8A7A6D; margin-top: 16px; }

  .booking-team {
    background: var(--ink);
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
  }
  .booking-team .section-label { color: var(--sage); }
  .team-card {
    background: rgba(244,237,227,0.06);
    border: 1px solid rgba(244,237,227,0.14);
    border-radius: 18px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .team-monogram {
    width: 56px; height: 56px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--olive);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 19px;
    font-weight: 600;
  }
  .team-name { font-size: 17px; font-weight: 600; font-family: 'Fraunces', serif; color: var(--cream); }
  .team-role { font-size: 13px; color: #C9BBA9; margin-top: 3px; }

  @media (max-width: 900px) {
    .booking-grid { grid-template-columns: 1fr; border-radius: 20px; }
    .booking-form, .booking-team { padding: 44px 28px; }
  }

  /* ---------- Also available chips ---------- */
  .also-available {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px 100px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  .also-available span.lbl {
    font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
    color: #6B5D53; font-weight: 600; margin-right: 4px;
  }
  .chip {
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 9px 18px;
    font-size: 13px;
    color: #4A3F38;
    transition: border-color 0.2s, color 0.2s;
  }
  .chip:hover { border-color: var(--olive); color: var(--olive); }

  /* ---------- Academy ---------- */
  .academy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .academy-img { aspect-ratio: 1/1; overflow: hidden; }
  .academy-img img { width: 100%; height: 100%; object-fit: cover; }
  .academy-copy {
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--ink);
    color: var(--cream);
  }
  .academy-copy .section-label { color: var(--sage); }
  .academy-copy h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 22px; }
  .academy-copy p { font-size: 15px; line-height: 1.75; color: #D9CDBC; max-width: 420px; margin-bottom: 32px; }
  @media (max-width: 900px) {
    .academy { grid-template-columns: 1fr; }
    .academy-copy { padding: 56px 32px; }
  }

  /* ---------- About / studio ---------- */
  .about .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .about-img { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; }
  .about-img img { width: 100%; height: 100%; object-fit: cover; }
  .about-copy p { font-size: 15px; line-height: 1.8; color: #4A3F38; margin-bottom: 18px; max-width: 480px; }
  @media (max-width: 900px) {
    .about .wrap { grid-template-columns: 1fr; }
  }

  /* ---------- CTA band ---------- */
  .cta-band {
    background: var(--olive);
    color: #fff;
    text-align: center;
    padding: 110px 32px;
  }
  .cta-band h2 { font-size: clamp(32px, 5vw, 60px); color: #fff; margin-bottom: 28px; }
  .cta-band .btn-primary { background: var(--ink); }
  .cta-band .btn-primary:hover { background: #000; }

  /* ---------- Footer ---------- */
  footer { padding: 64px 32px 40px; }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    border-top: 1px solid var(--line);
    padding-top: 48px;
  }
  .footer-grid h4 {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8A7A6D;
    margin-bottom: 16px;
  }
  .footer-grid a, .footer-grid p { font-size: 14px; line-height: 2; color: #4A3F38; display: block; }
  .footer-mark { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
  .footer-mark svg { width: 46px; height: 46px; flex-shrink: 0; }
  .footer-logo { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 600; line-height: 1.15; }
  .footer-logo small { display: block; font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #8A7A6D; font-weight: 500; margin-top: 3px; }
  .footer-social { display: flex; gap: 14px; margin-top: 18px; }
  .footer-social a {
    width: 34px; height: 34px; border-radius: 50%;
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.2s, color 0.2s;
  }
  .footer-social a:hover { border-color: var(--olive); color: var(--olive); }
  .footer-bottom {
    display: flex; justify-content: space-between; margin-top: 48px;
    font-size: 12px; color: #8A7A6D; flex-wrap: wrap; gap: 8px;
  }
  @media (max-width: 700px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }

  .draft-flag {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 100;
    background: #1A1512;
    color: #F4EDE3;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 999px;
    opacity: 0.85;
  }

  /* ---------- Page hero (sub-pages) ---------- */
  .page-hero {
    background: var(--ink);
    color: var(--cream);
    padding: 170px 32px 90px;
  }
  .page-hero .section-label { color: var(--sage); }
  .page-hero h1 { font-size: clamp(40px, 6vw, 76px); max-width: 800px; }
  .page-hero p { font-size: 15px; line-height: 1.7; color: #D9CDBC; max-width: 480px; margin-top: 20px; }
  .page-hero .crumb { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #8A7A6D; margin-bottom: 18px; }
  .page-hero .crumb a { color: #C9BBA9; }
  .page-hero .crumb a:hover { color: var(--cream); }

  /* ---------- Home teaser rows ---------- */
  .teaser-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .teaser-card {
    background: var(--cream-2);
    padding: 44px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .teaser-card .section-num { font-size: 12px; color: var(--olive); letter-spacing: 0.1em; font-weight: 600; }
  .teaser-card h3 { font-size: 24px; }
  .teaser-card p { font-size: 14px; line-height: 1.6; color: #4A3F38; }
  .teaser-card .service-link { margin-top: auto; }
  @media (max-width: 900px) {
    .teaser-row { grid-template-columns: 1fr; }
  }
