
/* From proscenium-events.html */

  :root {
    --espresso: #2b1810;
    --french-gray: #beb3bb;
    --bone: #e1d5c2;
    --gold: #c9a96e;
    --gold-light: #e8d5a3;
    --white: #faf8f5;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', sans-serif;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); background: var(--white); color: var(--espresso); overflow-x: hidden; }

  /* NAV */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 28px 60px; display: flex; align-items: center; justify-content: space-between; transition: background 0.4s, padding 0.4s; }
  nav.scrolled { background: rgba(43,24,16,0.96); padding: 18px 60px; backdrop-filter: blur(8px); }
  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .nav-arch { width: 28px; height: 16px; border: 1.5px solid var(--gold); border-bottom: none; border-radius: 28px 28px 0 0; }
  .nav-wordmark { font-family: var(--serif); font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bone); font-weight: 400; }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--french-gray); text-decoration: none; transition: color 0.3s; }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--espresso); background: var(--gold); padding: 10px 24px; text-decoration: none; font-weight: 500; transition: background 0.3s; }
  .nav-cta:hover { background: var(--gold-light); }

  /* HERO */
  .hero { height: 100vh; min-height: 700px; background: var(--espresso); position: relative; display: flex; align-items: flex-end; overflow: hidden; }
  .hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 70% 40%, rgba(201,169,110,0.08) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 20% 80%, rgba(77,26,51,0.4) 0%, transparent 60%), linear-gradient(160deg, #1a0e08 0%, #2b1810 40%, #1e1208 100%); }
  .hero-line { position: absolute; right: 120px; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.3) 30%, rgba(201,169,110,0.3) 70%, transparent); }
  .hero-line2 { position: absolute; right: 220px; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.1) 40%, rgba(201,169,110,0.1) 60%, transparent); }
  .hero-content { position: relative; z-index: 2; padding: 0 60px 100px; max-width: 780px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; font-weight: 400; display: block; opacity: 0; animation: fadeUp 1s 0.3s forwards; }
  .hero-h1 { font-family: var(--serif); font-size: clamp(52px, 7vw, 96px); font-weight: 300; line-height: 1.02; color: var(--bone); margin-bottom: 32px; opacity: 0; animation: fadeUp 1s 0.6s forwards; }
  .hero-h1 em { font-style: italic; color: var(--gold); }
  .hero-sub { font-size: 15px; line-height: 1.7; color: var(--french-gray); max-width: 480px; font-weight: 300; margin-bottom: 48px; opacity: 0; animation: fadeUp 1s 0.9s forwards; }
  .hero-actions { display: flex; gap: 20px; align-items: center; opacity: 0; animation: fadeUp 1s 1.1s forwards; }
  .btn-primary { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--espresso); background: var(--gold); padding: 16px 36px; text-decoration: none; font-weight: 500; transition: background 0.3s, transform 0.2s; display: inline-block; }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-ghost { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bone); text-decoration: none; border-bottom: 1px solid rgba(225,213,194,0.4); padding-bottom: 3px; transition: color 0.3s, border-color 0.3s; }
  .btn-ghost:hover { color: var(--gold); border-color: var(--gold); }
  .hero-scroll { position: absolute; bottom: 40px; right: 60px; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 12px; opacity: 0; animation: fadeIn 1s 1.5s forwards; }
  .hero-scroll span { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); writing-mode: vertical-rl; }
  .scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s infinite; }

  /* INTRO STRIP */
  .intro-strip { background: var(--gold); padding: 22px 60px; display: flex; align-items: center; gap: 60px; overflow: hidden; }
  .intro-strip p { font-family: var(--serif); font-size: 15px; font-style: italic; color: var(--espresso); white-space: nowrap; flex-shrink: 0; }
  .strip-dot { width: 4px; height: 4px; background: var(--espresso); border-radius: 50%; flex-shrink: 0; opacity: 0.5; }

  /* SHARED */
  section { position: relative; }
  .section-label { font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
  .section-title { font-family: var(--serif); font-weight: 300; line-height: 1.08; }

  /* REVEAL ANIMATIONS - CSS only, no JS dependency */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  @keyframes scrollPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @keyframes revealUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

  .r0 { animation: revealUp 0.9s 0.0s ease both; }
  .r1 { animation: revealUp 0.9s 0.15s ease both; }
  .r2 { animation: revealUp 0.9s 0.3s ease both; }
  .r3 { animation: revealUp 0.9s 0.45s ease both; }

  /* WHO WE ARE */
  .who { padding: 120px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .who-left .section-title { font-size: clamp(40px, 4.5vw, 64px); color: var(--espresso); margin-bottom: 32px; }
  .who-left p { font-size: 15px; line-height: 1.8; color: #5a4a3f; font-weight: 300; margin-bottom: 20px; }
  .who-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 52px; padding-top: 52px; border-top: 1px solid rgba(201,169,110,0.25); }
  .stat-num { font-family: var(--serif); font-size: 48px; font-weight: 300; color: var(--espresso); line-height: 1; margin-bottom: 6px; }
  .stat-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: #8a7a72; }
  .who-image-frame { position: relative; aspect-ratio: 3/4; overflow: hidden; }
  .who-image-frame::before { content: ''; position: absolute; inset: 16px -16px -16px 16px; border: 1px solid rgba(201,169,110,0.3); z-index: -1; }
  .who-image-inner { width: 100%; height: 100%; background: linear-gradient(135deg, #2b1810 0%, #4d1a33 50%, #1a0e08 100%); display: flex; align-items: center; justify-content: center; }
  .who-arch-large { width: 120px; height: 70px; border: 1px solid rgba(201,169,110,0.5); border-bottom: none; border-radius: 120px 120px 0 0; }

  /* SERVICES */
  .services { background: var(--espresso); padding: 120px 60px; }
  .services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 80px; padding-bottom: 40px; border-bottom: 1px solid rgba(201,169,110,0.2); }
  .services-header .section-title { font-size: clamp(38px, 4vw, 58px); color: var(--bone); max-width: 500px; }
  .services-header p { font-size: 14px; color: var(--french-gray); line-height: 1.7; max-width: 340px; font-weight: 300; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .service-card { background: rgba(255,255,255,0.03); padding: 52px 40px; border: 1px solid rgba(201,169,110,0.12); position: relative; transition: background 0.4s, border-color 0.4s; overflow: hidden; }
  .service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.5s; }
  .service-card:hover { background: rgba(201,169,110,0.06); border-color: rgba(201,169,110,0.3); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-num { font-family: var(--serif); font-size: 11px; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 32px; display: block; }
  .service-title { font-family: var(--serif); font-size: 30px; font-weight: 300; color: var(--bone); line-height: 1.15; margin-bottom: 20px; }
  .service-title em { font-style: italic; color: var(--gold); }
  .service-desc { font-size: 14px; line-height: 1.75; color: var(--french-gray); font-weight: 300; margin-bottom: 36px; }
  .service-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .service-features li { font-size: 12px; color: rgba(190,179,187,0.7); font-weight: 300; padding-left: 18px; position: relative; }
  .service-features li::before { content: '\2014'; position: absolute; left: 0; color: var(--gold); font-size: 10px; }
  .service-divider { height: 1px; background: rgba(201,169,110,0.2); margin: 36px 0; }
  .service-link { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: 12px; transition: gap 0.3s; }
  .service-link:hover { gap: 20px; }
  .service-link::after { content: '→'; font-size: 14px; }

  /* HIGHLIGHT */
  .highlight { padding: 140px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
  .highlight-frame { aspect-ratio: 4/5; background: linear-gradient(135deg, #2b1810, #4d1a33); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
  .highlight-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(43,24,16,0.8), transparent 50%); }
  .highlight-frame-badge { position: absolute; bottom: 36px; left: 36px; z-index: 2; background: var(--gold); padding: 16px 20px; }
  .highlight-frame-badge span { font-family: var(--serif); font-size: 13px; color: var(--espresso); font-style: italic; display: block; }
  .highlight-frame-badge strong { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--espresso); display: block; margin-top: 2px; }
  .arch-decorative { width: 80px; height: 48px; border: 1px solid rgba(201,169,110,0.4); border-bottom: none; border-radius: 80px 80px 0 0; }
  .highlight-offset { position: absolute; bottom: -24px; right: -24px; width: 60%; aspect-ratio: 1; background: var(--bone); z-index: -1; }
  .highlight-left { position: relative; }
  .highlight-right .section-title { font-size: clamp(36px, 3.8vw, 54px); color: var(--espresso); margin-bottom: 32px; }
  .highlight-right > p { font-size: 15px; line-height: 1.8; color: #5a4a3f; font-weight: 300; margin-bottom: 18px; }
  .highlight-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
  .highlight-list li { font-size: 13px; color: var(--espresso); padding: 14px 18px; background: var(--bone); }

  /* MEMBERSHIP */
  .membership { background: var(--bone); padding: 120px 60px; }
  .membership-inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 80px; align-items: start; }
  .membership-left .section-title { font-size: clamp(36px, 3.8vw, 52px); color: var(--espresso); margin-bottom: 28px; }
  .membership-left p { font-size: 14px; line-height: 1.8; color: #5a4a3f; font-weight: 300; margin-bottom: 24px; }
  .membership-right { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
  .membership-feature { background: white; padding: 32px; border-left: 2px solid transparent; transition: border-color 0.3s; }
  .membership-feature:hover { border-left-color: var(--gold); }
  .feature-icon { width: 32px; height: 20px; border: 1.5px solid var(--gold); border-bottom: none; border-radius: 32px 32px 0 0; margin-bottom: 20px; }
  .membership-feature h4 { font-family: var(--serif); font-size: 19px; font-weight: 400; color: var(--espresso); margin-bottom: 10px; }
  .membership-feature p { font-size: 13px; line-height: 1.7; color: #7a6a62; font-weight: 300; }

  /* MARQUEE */
  .clients-strip { background: var(--espresso); padding: 48px 60px; overflow: hidden; }
  .clients-label { font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(201,169,110,0.6); text-align: center; margin-bottom: 32px; }
  .marquee-wrap { overflow: hidden; }
  .marquee-track { display: flex; gap: 80px; align-items: center; animation: marquee 22s linear infinite; white-space: nowrap; }
  .marquee-item { font-family: var(--serif); font-size: 18px; font-style: italic; color: rgba(225,213,194,0.4); flex-shrink: 0; }
  .marquee-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; opacity: 0.5; }

  /* CTA */
  .cta { padding: 140px 60px; text-align: center; position: relative; overflow: hidden; background: var(--white); }
  .cta::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; border-radius: 50%; border: 1px solid rgba(201,169,110,0.12); pointer-events: none; }
  .cta::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 400px; height: 400px; border-radius: 50%; border: 1px solid rgba(201,169,110,0.08); pointer-events: none; }
  .cta-content { position: relative; z-index: 2; }
  .cta-arch { width: 48px; height: 28px; border: 1.5px solid var(--gold); border-bottom: none; border-radius: 48px 48px 0 0; margin: 0 auto 32px; }
  .cta .section-title { font-size: clamp(38px, 4.5vw, 66px); color: var(--espresso); margin-bottom: 24px; }
  .cta p { font-size: 15px; line-height: 1.7; color: #7a6a62; max-width: 480px; margin: 0 auto 48px; font-weight: 300; }
  .cta-buttons { display: flex; gap: 20px; justify-content: center; align-items: center; flex-wrap: wrap; }

  /* FOOTER */
  footer { background: var(--espresso); padding: 80px 60px 40px; }
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(201,169,110,0.15); margin-bottom: 40px; }
  .footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(190,179,187,0.6); font-weight: 300; margin-top: 16px; }
  .footer-col h5 { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a { font-size: 13px; color: rgba(190,179,187,0.6); text-decoration: none; font-weight: 300; transition: color 0.3s; }
  .footer-col a:hover { color: var(--bone); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; }
  .footer-bottom p { font-size: 11px; color: rgba(190,179,187,0.35); }
  .footer-bottom span { font-size: 11px; color: rgba(201,169,110,0.5); }

/* From about.html */

  :root {
    --espresso: #2b1810;
    --french-gray: #beb3bb;
    --bone: #e1d5c2;
    --gold: #c9a96e;
    --gold-light: #e8d5a3;
    --white: #faf8f5;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', sans-serif;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); background: var(--white); color: var(--espresso); overflow-x: hidden; }

  /* NAV */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 28px 60px; display: flex; align-items: center; justify-content: space-between; transition: background 0.4s, padding 0.4s; }
  nav.scrolled { background: rgba(43,24,16,0.96); padding: 18px 60px; backdrop-filter: blur(8px); }
  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .nav-arch { width: 28px; height: 16px; border: 1.5px solid var(--gold); border-bottom: none; border-radius: 28px 28px 0 0; }
  .nav-wordmark { font-family: var(--serif); font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bone); font-weight: 400; }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--french-gray); text-decoration: none; transition: color 0.3s; }
  .nav-links a:hover, .nav-links a.active { color: var(--gold); }
  .nav-cta { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--espresso); background: var(--gold); padding: 10px 24px; text-decoration: none; font-weight: 500; transition: background 0.3s; }
  .nav-cta:hover { background: var(--gold-light); }

  /* SHARED */
  .section-label { font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
  .section-title { font-family: var(--serif); font-weight: 300; line-height: 1.08; }
  .btn-primary { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--espresso); background: var(--gold); padding: 16px 36px; text-decoration: none; font-weight: 500; transition: background 0.3s, transform 0.2s; display: inline-block; }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-ghost { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--espresso); text-decoration: none; border-bottom: 1px solid rgba(43,24,16,0.3); padding-bottom: 3px; transition: color 0.3s; }
  .btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

  /* ANIMATIONS */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes revealUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  .r0 { animation: revealUp 0.9s 0.0s ease both; }
  .r1 { animation: revealUp 0.9s 0.15s ease both; }
  .r2 { animation: revealUp 0.9s 0.3s ease both; }
  .r3 { animation: revealUp 0.9s 0.45s ease both; }

  /* PAGE HERO */
  .page-hero {
    padding: 180px 60px 100px;
    background: var(--espresso);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
  }
  .page-hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(201,169,110,0.07) 0%, transparent 65%),
                radial-gradient(ellipse 40% 60% at 10% 90%, rgba(77,26,51,0.35) 0%, transparent 60%),
                linear-gradient(155deg, #1a0e08 0%, #2b1810 50%, #1e1208 100%);
  }
  .page-hero-line { position: absolute; top: 0; bottom: 0; right: 80px; width: 1px; background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.25) 30%, rgba(201,169,110,0.25) 70%, transparent); }
  .page-hero-left { position: relative; z-index: 2; }
  .page-hero-eyebrow { font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; display: block; opacity: 0; animation: fadeUp 1s 0.2s forwards; }
  .page-hero-h1 { font-family: var(--serif); font-size: clamp(56px, 7vw, 100px); font-weight: 300; line-height: 0.98; color: var(--bone); opacity: 0; animation: fadeUp 1s 0.4s forwards; }
  .page-hero-h1 em { font-style: italic; color: var(--gold); }
  .page-hero-right { position: relative; z-index: 2; opacity: 0; animation: fadeUp 1s 0.6s forwards; }
  .page-hero-right p { font-size: 16px; line-height: 1.8; color: var(--french-gray); font-weight: 300; margin-bottom: 20px; }
  .page-hero-rule { width: 40px; height: 1px; background: var(--gold); margin-bottom: 28px; }

  /* STORY SECTION */
  .story {
    padding: 120px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
  }
  .story-left { position: sticky; top: 120px; }
  .story-left .section-title { font-size: clamp(36px, 3.5vw, 52px); color: var(--espresso); margin-bottom: 32px; }
  .story-left p { font-size: 15px; line-height: 1.85; color: #5a4a3f; font-weight: 300; margin-bottom: 20px; }
  .story-left blockquote {
    border-left: 2px solid var(--gold);
    padding-left: 24px;
    margin: 40px 0;
    font-family: var(--serif);
    font-size: 22px;
    font-style: italic;
    color: var(--espresso);
    line-height: 1.4;
  }
  .story-right { display: flex; flex-direction: column; gap: 60px; }
  .story-pillar { border-top: 1px solid rgba(201,169,110,0.3); padding-top: 36px; }
  .story-pillar-label { font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
  .story-pillar h3 { font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--espresso); margin-bottom: 16px; line-height: 1.2; }
  .story-pillar p { font-size: 14px; line-height: 1.8; color: #5a4a3f; font-weight: 300; }

  /* STATS BAND */
  .stats-band {
    background: var(--espresso);
    padding: 80px 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
  }
  .stat-block {
    padding: 48px 40px;
    border: 1px solid rgba(201,169,110,0.1);
    position: relative;
    transition: background 0.3s;
  }
  .stat-block:hover { background: rgba(201,169,110,0.05); }
  .stat-block::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
  .stat-block:hover::before { transform: scaleX(1); }
  .stat-num { font-family: var(--serif); font-size: 64px; font-weight: 300; color: var(--bone); line-height: 1; margin-bottom: 10px; }
  .stat-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(190,179,187,0.6); font-weight: 300; line-height: 1.5; }

  /* APPROACH */
  .approach {
    padding: 120px 60px;
    background: var(--bone);
  }
  .approach-header { margin-bottom: 80px; }
  .approach-header .section-title { font-size: clamp(36px, 3.5vw, 52px); color: var(--espresso); max-width: 600px; }
  .approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .approach-card { background: white; padding: 48px 36px; border-bottom: 2px solid transparent; transition: border-color 0.3s, transform 0.3s; }
  .approach-card:hover { border-bottom-color: var(--gold); transform: translateY(-4px); }
  .approach-num { font-family: var(--serif); font-size: 52px; font-weight: 300; color: rgba(201,169,110,0.25); line-height: 1; margin-bottom: 20px; }
  .approach-card h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--espresso); margin-bottom: 14px; }
  .approach-card p { font-size: 14px; line-height: 1.8; color: #7a6a62; font-weight: 300; }

  /* DIFFERENCE */
  .difference {
    padding: 120px 60px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: center;
  }
  .difference-frame {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #2b1810, #4d1a33 60%, #1a0e08);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .difference-frame::before { content: ''; position: absolute; inset: 20px -20px -20px 20px; border: 1px solid rgba(201,169,110,0.2); z-index: -1; }
  .diff-arch { width: 80px; height: 48px; border: 1px solid rgba(201,169,110,0.5); border-bottom: none; border-radius: 80px 80px 0 0; }
  .difference-right .section-title { font-size: clamp(34px, 3.5vw, 50px); color: var(--espresso); margin-bottom: 32px; }
  .difference-right > p { font-size: 15px; line-height: 1.85; color: #5a4a3f; font-weight: 300; margin-bottom: 20px; }
  .difference-list { margin-top: 48px; display: flex; flex-direction: column; gap: 0; }
  .diff-item { padding: 20px 0; border-bottom: 1px solid rgba(201,169,110,0.2); display: flex; gap: 20px; align-items: flex-start; }
  .diff-item:first-child { border-top: 1px solid rgba(201,169,110,0.2); }
  .diff-marker { font-family: var(--serif); font-size: 11px; color: var(--gold); letter-spacing: 0.2em; flex-shrink: 0; margin-top: 2px; }
  .diff-text { font-size: 14px; color: var(--espresso); line-height: 1.6; }

  /* CTA */
  .page-cta { padding: 120px 60px; background: var(--espresso); text-align: center; position: relative; overflow: hidden; }
  .page-cta::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 500px; height: 500px; border-radius: 50%; border: 1px solid rgba(201,169,110,0.1); pointer-events: none; }
  .page-cta .section-title { font-size: clamp(36px, 4vw, 58px); color: var(--bone); margin-bottom: 20px; }
  .page-cta p { font-size: 15px; color: var(--french-gray); max-width: 440px; margin: 0 auto 44px; line-height: 1.7; font-weight: 300; }
  .page-cta .section-label { color: rgba(201,169,110,0.7); }
  .page-cta .btn-ghost { color: var(--bone); border-color: rgba(225,213,194,0.35); }
  .page-cta .btn-ghost:hover { color: var(--gold); border-color: var(--gold); }
  .cta-buttons { display: flex; gap: 24px; justify-content: center; align-items: center; flex-wrap: wrap; }

  /* FOOTER */
  footer { background: var(--espresso); padding: 80px 60px 40px; border-top: 1px solid rgba(201,169,110,0.1); }
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(201,169,110,0.15); margin-bottom: 40px; }
  .footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(190,179,187,0.6); font-weight: 300; margin-top: 16px; }
  .footer-col h5 { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a { font-size: 13px; color: rgba(190,179,187,0.6); text-decoration: none; font-weight: 300; transition: color 0.3s; }
  .footer-col a:hover { color: var(--bone); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; }
  .footer-bottom p { font-size: 11px; color: rgba(190,179,187,0.35); }
  .footer-bottom span { font-size: 11px; color: rgba(201,169,110,0.5); }

/* From services.html */

  :root {
    --espresso: #2b1810;
    --french-gray: #beb3bb;
    --bone: #e1d5c2;
    --gold: #c9a96e;
    --gold-light: #e8d5a3;
    --white: #faf8f5;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', sans-serif;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); background: var(--white); color: var(--espresso); overflow-x: hidden; }

  /* NAV */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 28px 60px; display: flex; align-items: center; justify-content: space-between; transition: background 0.4s, padding 0.4s; }
  nav.scrolled { background: rgba(43,24,16,0.96); padding: 18px 60px; backdrop-filter: blur(8px); }
  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .nav-arch { width: 28px; height: 16px; border: 1.5px solid var(--gold); border-bottom: none; border-radius: 28px 28px 0 0; }
  .nav-wordmark { font-family: var(--serif); font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bone); font-weight: 400; }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--french-gray); text-decoration: none; transition: color 0.3s; }
  .nav-links a:hover, .nav-links a.active { color: var(--gold); }
  .nav-cta { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--espresso); background: var(--gold); padding: 10px 24px; text-decoration: none; font-weight: 500; transition: background 0.3s; }
  .nav-cta:hover { background: var(--gold-light); }

  /* SHARED */
  .section-label { font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
  .section-title { font-family: var(--serif); font-weight: 300; line-height: 1.08; }
  .btn-primary { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--espresso); background: var(--gold); padding: 16px 36px; text-decoration: none; font-weight: 500; transition: background 0.3s, transform 0.2s; display: inline-block; }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-ghost-dark { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bone); text-decoration: none; border-bottom: 1px solid rgba(225,213,194,0.35); padding-bottom: 3px; transition: color 0.3s; }
  .btn-ghost-dark:hover { color: var(--gold); border-color: var(--gold); }

  /* ANIMATIONS */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes revealUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  .r0 { animation: revealUp 0.9s 0.0s ease both; }
  .r1 { animation: revealUp 0.9s 0.15s ease both; }
  .r2 { animation: revealUp 0.9s 0.3s ease both; }
  .r3 { animation: revealUp 0.9s 0.45s ease both; }

  /* PAGE HERO */
  .page-hero { padding: 180px 60px 100px; background: var(--espresso); position: relative; overflow: hidden; }
  .page-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 70% at 80% 40%, rgba(201,169,110,0.07) 0%, transparent 65%), radial-gradient(ellipse 40% 60% at 5% 80%, rgba(77,26,51,0.35) 0%, transparent 55%), linear-gradient(155deg, #1a0e08 0%, #2b1810 50%, #1e1208 100%); }
  .page-hero-line { position: absolute; top: 0; bottom: 0; right: 80px; width: 1px; background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.25) 30%, rgba(201,169,110,0.25) 70%, transparent); }
  .page-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
  .page-hero-eyebrow { font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; display: block; opacity: 0; animation: fadeUp 1s 0.2s forwards; }
  .page-hero-h1 { font-family: var(--serif); font-size: clamp(56px, 7vw, 100px); font-weight: 300; line-height: 0.98; color: var(--bone); opacity: 0; animation: fadeUp 1s 0.4s forwards; }
  .page-hero-h1 em { font-style: italic; color: var(--gold); }
  .page-hero-right { opacity: 0; animation: fadeUp 1s 0.6s forwards; }
  .page-hero-right p { font-size: 16px; line-height: 1.8; color: var(--french-gray); font-weight: 300; margin-bottom: 20px; }
  .page-hero-rule { width: 40px; height: 1px; background: var(--gold); margin-bottom: 28px; }

  /* SERVICE NAV STRIP */
  .service-nav { background: var(--bone); padding: 0 60px; display: flex; gap: 0; border-bottom: 1px solid rgba(201,169,110,0.2); }
  .service-nav a { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: #8a7a72; text-decoration: none; padding: 22px 32px; border-bottom: 2px solid transparent; transition: color 0.3s, border-color 0.3s; display: block; }
  .service-nav a:hover { color: var(--espresso); border-bottom-color: var(--gold); }

  /* SERVICE BLOCKS */
  .service-block { padding: 120px 60px; }
  .service-block:nth-child(even) { background: var(--espresso); }
  .service-block-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 100px; align-items: start; }
  .service-block:nth-child(even) .service-block-inner { grid-template-columns: 1.4fr 1fr; }

  /* Left column */
  .service-sticky { position: sticky; top: 120px; }
  .service-block-num { font-family: var(--serif); font-size: 80px; font-weight: 300; color: rgba(201,169,110,0.15); line-height: 1; margin-bottom: 8px; }
  .service-block:nth-child(even) .service-block-num { color: rgba(201,169,110,0.12); }
  .service-block-title { font-family: var(--serif); font-size: clamp(36px, 3.8vw, 52px); font-weight: 300; color: var(--espresso); line-height: 1.1; margin-bottom: 24px; }
  .service-block:nth-child(even) .service-block-title { color: var(--bone); }
  .service-block-title em { font-style: italic; color: var(--gold); }
  .service-block-lead { font-size: 16px; line-height: 1.8; color: #5a4a3f; font-weight: 300; margin-bottom: 32px; }
  .service-block:nth-child(even) .service-block-lead { color: var(--french-gray); }
  .service-block-cta { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: 12px; transition: gap 0.3s; border-bottom: 1px solid rgba(201,169,110,0.3); padding-bottom: 3px; width: fit-content; }
  .service-block-cta:hover { gap: 20px; }
  .service-block-cta::after { content: '→'; }

  /* Right column */
  .service-detail { display: flex; flex-direction: column; gap: 0; }
  .service-detail-intro { font-size: 15px; line-height: 1.85; color: #5a4a3f; margin-bottom: 48px; font-weight: 300; }
  .service-block:nth-child(even) .service-detail-intro { color: rgba(190,179,187,0.8); }

  .deliverable-group { margin-bottom: 40px; }
  .deliverable-group-label { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; padding-bottom: 12px; border-bottom: 1px solid rgba(201,169,110,0.2); }
  .deliverable-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
  .deliverable-list li { font-size: 14px; color: #5a4a3f; font-weight: 300; padding: 14px 0; border-bottom: 1px solid rgba(43,24,16,0.08); display: flex; gap: 16px; align-items: flex-start; line-height: 1.5; }
  .service-block:nth-child(even) .deliverable-list li { color: var(--french-gray); border-bottom-color: rgba(255,255,255,0.06); }
  .deliverable-list li::before { content: '\2014'; color: var(--gold); flex-shrink: 0; font-size: 12px; margin-top: 1px; }

  .service-example { margin-top: 40px; background: rgba(201,169,110,0.08); padding: 32px; border-left: 2px solid var(--gold); }
  .service-block:nth-child(even) .service-example { background: rgba(201,169,110,0.05); }
  .service-example-label { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
  .service-example p { font-size: 14px; line-height: 1.75; color: #5a4a3f; font-weight: 300; font-style: italic; }
  .service-block:nth-child(even) .service-example p { color: rgba(190,179,187,0.7); }

  /* CTA */
  .page-cta { padding: 120px 60px; background: var(--bone); text-align: center; }
  .page-cta .section-title { font-size: clamp(36px, 4vw, 58px); color: var(--espresso); margin-bottom: 20px; }
  .page-cta p { font-size: 15px; color: #7a6a62; max-width: 480px; margin: 0 auto 44px; line-height: 1.7; font-weight: 300; }
  .cta-buttons { display: flex; gap: 24px; justify-content: center; align-items: center; flex-wrap: wrap; }
  .btn-ghost-bone { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--espresso); text-decoration: none; border-bottom: 1px solid rgba(43,24,16,0.3); padding-bottom: 3px; transition: color 0.3s; }
  .btn-ghost-bone:hover { color: var(--gold); border-color: var(--gold); }

  /* FOOTER */
  footer { background: var(--espresso); padding: 80px 60px 40px; }
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(201,169,110,0.15); margin-bottom: 40px; }
  .footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(190,179,187,0.6); font-weight: 300; margin-top: 16px; }
  .footer-col h5 { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a { font-size: 13px; color: rgba(190,179,187,0.6); text-decoration: none; font-weight: 300; transition: color 0.3s; }
  .footer-col a:hover { color: var(--bone); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; }
  .footer-bottom p { font-size: 11px; color: rgba(190,179,187,0.35); }
  .footer-bottom span { font-size: 11px; color: rgba(201,169,110,0.5); }

/* From membership.html */

  :root {
    --espresso: #2b1810;
    --french-gray: #beb3bb;
    --bone: #e1d5c2;
    --gold: #c9a96e;
    --gold-light: #e8d5a3;
    --white: #faf8f5;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', sans-serif;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); background: var(--white); color: var(--espresso); overflow-x: hidden; }

  /* NAV */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 28px 60px; display: flex; align-items: center; justify-content: space-between; transition: background 0.4s, padding 0.4s; }
  nav.scrolled { background: rgba(43,24,16,0.96); padding: 18px 60px; backdrop-filter: blur(8px); }
  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .nav-arch { width: 28px; height: 16px; border: 1.5px solid var(--gold); border-bottom: none; border-radius: 28px 28px 0 0; }
  .nav-wordmark { font-family: var(--serif); font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bone); font-weight: 400; }
  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--french-gray); text-decoration: none; transition: color 0.3s; }
  .nav-links a:hover, .nav-links a.active { color: var(--gold); }
  .nav-cta { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--espresso); background: var(--gold); padding: 10px 24px; text-decoration: none; font-weight: 500; transition: background 0.3s; }
  .nav-cta:hover { background: var(--gold-light); }

  /* SHARED */
  .section-label { font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
  .section-title { font-family: var(--serif); font-weight: 300; line-height: 1.08; }
  .btn-primary { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--espresso); background: var(--gold); padding: 16px 36px; text-decoration: none; font-weight: 500; transition: background 0.3s, transform 0.2s; display: inline-block; }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* ANIMATIONS */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes revealUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  .r0 { animation: revealUp 0.9s 0.0s ease both; }
  .r1 { animation: revealUp 0.9s 0.15s ease both; }
  .r2 { animation: revealUp 0.9s 0.3s ease both; }
  .r3 { animation: revealUp 0.9s 0.45s ease both; }

  /* PAGE HERO */
  .page-hero { padding: 180px 60px 100px; background: var(--espresso); position: relative; overflow: hidden; }
  .page-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 90% 30%, rgba(201,169,110,0.08) 0%, transparent 65%), radial-gradient(ellipse 40% 60% at 5% 80%, rgba(77,26,51,0.4) 0%, transparent 60%), linear-gradient(155deg, #1a0e08 0%, #2b1810 50%, #1e1208 100%); }
  .page-hero-line { position: absolute; top: 0; bottom: 0; right: 80px; width: 1px; background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.25) 30%, rgba(201,169,110,0.25) 70%, transparent); }
  .page-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
  .page-hero-eyebrow { font-size: 9px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; display: block; opacity: 0; animation: fadeUp 1s 0.2s forwards; }
  .page-hero-h1 { font-family: var(--serif); font-size: clamp(56px, 7vw, 100px); font-weight: 300; line-height: 0.98; color: var(--bone); opacity: 0; animation: fadeUp 1s 0.4s forwards; }
  .page-hero-h1 em { font-style: italic; color: var(--gold); }
  .page-hero-right { opacity: 0; animation: fadeUp 1s 0.6s forwards; }
  .page-hero-right p { font-size: 16px; line-height: 1.8; color: var(--french-gray); font-weight: 300; margin-bottom: 20px; }
  .page-hero-rule { width: 40px; height: 1px; background: var(--gold); margin-bottom: 28px; }

  /* INTRO */
  .intro { padding: 100px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
  .intro-left .section-title { font-size: clamp(36px, 3.8vw, 54px); color: var(--espresso); margin-bottom: 32px; }
  .intro-left p { font-size: 15px; line-height: 1.85; color: #5a4a3f; font-weight: 300; margin-bottom: 20px; }
  .intro-right { display: flex; flex-direction: column; gap: 24px; }
  .intro-point { display: flex; gap: 20px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid rgba(201,169,110,0.2); }
  .intro-point:first-child { border-top: 1px solid rgba(201,169,110,0.2); }
  .intro-point-marker { font-family: var(--serif); font-size: 28px; font-weight: 300; color: rgba(201,169,110,0.4); line-height: 1; flex-shrink: 0; }
  .intro-point-text h4 { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--espresso); margin-bottom: 6px; }
  .intro-point-text p { font-size: 13px; line-height: 1.7; color: #7a6a62; font-weight: 300; }

  /* WHAT IS INCLUDED */
  .included { background: var(--espresso); padding: 120px 60px; }
  .included-header { margin-bottom: 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
  .included-header .section-title { font-size: clamp(36px, 3.8vw, 54px); color: var(--bone); }
  .included-header p { font-size: 15px; line-height: 1.8; color: var(--french-gray); font-weight: 300; }
  .included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .included-card { background: rgba(255,255,255,0.03); padding: 44px 36px; border: 1px solid rgba(201,169,110,0.1); transition: background 0.4s, border-color 0.4s; }
  .included-card:hover { background: rgba(201,169,110,0.06); border-color: rgba(201,169,110,0.25); }
  .included-icon { width: 36px; height: 22px; border: 1.5px solid var(--gold); border-bottom: none; border-radius: 36px 36px 0 0; margin-bottom: 24px; }
  .included-card h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--bone); margin-bottom: 14px; }
  .included-card p { font-size: 13px; line-height: 1.75; color: rgba(190,179,187,0.7); font-weight: 300; margin-bottom: 20px; }
  .included-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .included-features li { font-size: 12px; color: rgba(190,179,187,0.5); font-weight: 300; padding-left: 16px; position: relative; }
  .included-features li::before { content: '\2014'; position: absolute; left: 0; color: var(--gold); font-size: 10px; }

  /* WHO IS IT FOR */
  .who-for { padding: 120px 60px; background: var(--bone); }
  .who-for-header { margin-bottom: 64px; }
  .who-for-header .section-title { font-size: clamp(34px, 3.5vw, 50px); color: var(--espresso); max-width: 560px; }
  .who-for-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
  .who-card { background: white; padding: 40px 30px; border-top: 2px solid transparent; transition: border-color 0.3s; }
  .who-card:hover { border-top-color: var(--gold); }
  .who-card h4 { font-family: var(--serif); font-size: 21px; font-weight: 400; color: var(--espresso); margin-bottom: 12px; }
  .who-card p { font-size: 13px; line-height: 1.75; color: #7a6a62; font-weight: 300; }

  /* HOW IT WORKS */
  .how { padding: 120px 60px; }
  .how-header { margin-bottom: 72px; }
  .how-header .section-title { font-size: clamp(34px, 3.5vw, 50px); color: var(--espresso); }
  .how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
  .how-step { padding: 40px 36px; border-left: 1px solid rgba(201,169,110,0.25); position: relative; }
  .how-step:first-child { border-left: none; }
  .how-step-num { font-family: var(--serif); font-size: 56px; font-weight: 300; color: rgba(201,169,110,0.2); line-height: 1; margin-bottom: 20px; }
  .how-step h3 { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--espresso); margin-bottom: 12px; }
  .how-step p { font-size: 13px; line-height: 1.75; color: #7a6a62; font-weight: 300; }

  /* CONTACT / APPLICATION */
  .contact { background: var(--espresso); padding: 120px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }
  .contact-left .section-title { font-size: clamp(34px, 3.5vw, 52px); color: var(--bone); margin-bottom: 24px; }
  .contact-left p { font-size: 15px; line-height: 1.8; color: var(--french-gray); font-weight: 300; margin-bottom: 20px; }
  .contact-left .section-label { color: rgba(201,169,110,0.7); }
  .contact-detail { margin-top: 48px; display: flex; flex-direction: column; gap: 20px; }
  .contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid rgba(201,169,110,0.15); }
  .contact-item-label { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); flex-shrink: 0; width: 80px; margin-top: 2px; }
  .contact-item-value { font-size: 14px; color: var(--french-gray); font-weight: 300; line-height: 1.6; }

  /* FORM */
  .contact-form { background: rgba(255,255,255,0.04); padding: 52px 44px; border: 1px solid rgba(201,169,110,0.15); }
  .form-title { font-family: var(--serif); font-size: 24px; font-weight: 300; color: var(--bone); margin-bottom: 8px; }
  .form-sub { font-size: 13px; color: rgba(190,179,187,0.6); margin-bottom: 36px; font-weight: 300; }
  .form-group { margin-bottom: 20px; }
  .form-group label { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 8px; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,169,110,0.2);
    padding: 14px 16px;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--bone);
    font-weight: 300;
    transition: border-color 0.3s;
    outline: none;
    appearance: none;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: rgba(190,179,187,0.35); }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--gold); }
  .form-group select { cursor: pointer; }
  .form-group select option { background: var(--espresso); color: var(--bone); }
  .form-group textarea { min-height: 120px; resize: vertical; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-submit { width: 100%; padding: 18px; background: var(--gold); color: var(--espresso); font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; border: none; cursor: pointer; transition: background 0.3s; margin-top: 8px; }
  .form-submit:hover { background: var(--gold-light); }
  .form-note { font-size: 11px; color: rgba(190,179,187,0.35); text-align: center; margin-top: 16px; line-height: 1.6; }

  /* FOOTER */
  footer { background: var(--espresso); padding: 80px 60px 40px; border-top: 1px solid rgba(201,169,110,0.08); }
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(201,169,110,0.15); margin-bottom: 40px; }
  .footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(190,179,187,0.6); font-weight: 300; margin-top: 16px; }
  .footer-col h5 { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a { font-size: 13px; color: rgba(190,179,187,0.6); text-decoration: none; font-weight: 300; transition: color 0.3s; }
  .footer-col a:hover { color: var(--bone); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; }
  .footer-bottom p { font-size: 11px; color: rgba(190,179,187,0.35); }
  .footer-bottom span { font-size: 11px; color: rgba(201,169,110,0.5); }
