    :root {
      --bg: #0a0a0a;
      --surface: #111111;
      --surface2: #161616;
      --gold: #c9a84c;
      --gold-light: #e8c97a;
      --cream: #f0e9d8;
      --muted: #767676;
      --text: #d8d0c0;
      --white: #ffffff;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: system-ui, -apple-system, sans-serif;
      font-weight: 300;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.035;
      pointer-events: none;
      z-index: 9999;
    }



    /* NAV */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 200;
      padding: 24px 8vw;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
    }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
      text-decoration: none;
      letter-spacing: 1px;
    }

    .nav-logo span { color: var(--gold); }

    .nav-right { display: flex; align-items: center; gap: 20px; }

    .lang-switcher { display: flex; gap: 4px; }

    .lang-btn {
      background: none;
      border: 1px solid #333;
      color: var(--muted);
      padding: 4px 10px;
      font-family: system-ui, -apple-system, sans-serif;
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      cursor: pointer;
      transition: all 0.3s;
    }

    .lang-btn:hover, .lang-btn.active { border-color: var(--gold); color: var(--gold); }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 120px 8vw 80px;
      position: relative;
      overflow: hidden;
    }

    .hero-bg-text {
      font-family: 'Playfair Display', serif;
      font-size: clamp(200px, 30vw, 480px);
      font-weight: 900;
      color: transparent;
      -webkit-text-stroke: 1px rgba(201,168,76,0.05);
      position: absolute;
      right: -4vw;
      top: 50%;
      transform: translateY(-50%);
      line-height: 1;
      pointer-events: none;
      user-select: none;
      animation: floatText 8s ease-in-out infinite;
    }

    .hero-eyebrow {
      font-size: 11px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 28px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s 0.3s forwards;
    }

    .hero-name {
      font-family: 'Playfair Display', serif;
      font-size: clamp(60px, 11vw, 150px);
      font-weight: 900;
      line-height: 0.9;
      color: var(--white);
      margin-bottom: 36px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.9s 0.45s forwards;
    }

    .hero-name .outline {
      display: block;
      color: #ffffff;
      -webkit-text-stroke: 0;
    }

    .hero-divider {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 28px;
      opacity: 0;
      animation: fadeIn 0.8s 0.65s forwards;
    }

    .hero-divider-line { width: 50px; height: 1px; background: var(--gold); }
    .hero-divider-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

    .hero-slogan {
      font-family: 'Playfair Display', serif;
      font-size: clamp(20px, 2.8vw, 32px);
      font-weight: 300;
      font-style: italic;
      color: var(--cream);
      letter-spacing: 1px;
      max-width: 540px;
      margin-bottom: 12px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s 0.75s forwards;
    }

    .hero-sub {
      font-size: 13px;
      letter-spacing: 0.5px;
      color: var(--muted);
      max-width: 460px;
      line-height: 1.9;
      margin-bottom: 52px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s 0.9s forwards;
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      opacity: 0;
      animation: fadeIn 0.8s 1.1s forwards;
    }


    .cta-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--gold);
      color: #0a0a0a;
      padding: 16px 32px;
      font-family: system-ui, -apple-system, sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 3px;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .cta-primary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gold-light);
      transform: translateX(-101%);
      transition: transform 0.35s ease;
    }

    .cta-primary:hover::after { transform: translateX(0); }
    .cta-primary > * { position: relative; z-index: 1; }

    .cta-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 1px solid #333;
      color: var(--text);
      padding: 16px 32px;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s;
    }

    .cta-secondary:hover { border-color: var(--gold); color: var(--gold); }

    .scroll-hint {
      position: absolute;
      bottom: 36px;
      left: 8vw;
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 9px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--muted);
      opacity: 0;
      animation: fadeIn 1s 1.5s forwards;
    }

    .scroll-line { width: 36px; height: 1px; background: #2a2a2a; position: relative; overflow: hidden; }
    .scroll-line::after {
      content: '';
      position: absolute;
      left: -100%; top: 0;
      width: 100%; height: 100%;
      background: var(--gold);
      animation: scanLine 2.5s 1.6s infinite;
    }

    /* BIO SECTION */
    .bio-section {
      padding: 120px 8vw;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 80px;
      align-items: start;
      border-top: 1px solid #1a1a1a;
    }

    .bio-left { position: sticky; top: 120px; }

    .bio-photo-wrap {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      overflow: hidden;
      border: 2px solid var(--gold);
      margin-bottom: 36px;
      box-shadow: 0 0 40px rgba(176,141,87,0.15);
    }

    .bio-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    .section-eyebrow {
      font-size: 10px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 3.5vw, 48px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 24px;
    }

    .bio-quote {
      font-family: 'Playfair Display', serif;
      font-size: clamp(18px, 2vw, 24px);
      font-style: italic;
      color: var(--gold-light);
      line-height: 1.6;
      border-left: 2px solid var(--gold);
      padding-left: 20px;
      margin-bottom: 32px;
    }

    .bio-text {
      font-size: 15px;
      line-height: 2;
      color: var(--text);
      font-weight: 300;
      margin-bottom: 20px;
    }

    .bio-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 32px;
    }

    .bio-tag {
      background: var(--surface);
      border: 1px solid #222;
      color: var(--muted);
      padding: 6px 14px;
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    /* MISSION CARDS */
    .mission-grid {
      display: grid;
      gap: 2px;
    }

    .mission-card {
      background: var(--surface);
      border: 1px solid #1a1a1a;
      padding: 36px 32px;
      display: flex;
      gap: 24px;
      align-items: flex-start;
      transition: border-color 0.4s, background 0.4s;
      position: relative;
      overflow: hidden;
    }

    .mission-card::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 2px;
      background: var(--gold);
      transform: scaleY(0);
      transform-origin: top;
      transition: transform 0.4s;
    }

    .mission-card:hover::before { transform: scaleY(1); }
    .mission-card:hover { border-color: #252525; background: var(--surface2); }

    .mission-icon {
      font-size: 24px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .mission-title {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 8px;
    }

    .mission-text { font-size: 13px; line-height: 1.8; color: var(--muted); }

    /* INSTAGRAM SECTION */
    .instagram-section {
      padding: 100px 8vw;
      border-top: 1px solid #1a1a1a;
    }

    .insta-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 48px;
      flex-wrap: wrap;
      gap: 20px;
    }

    /* SOCIAL */
    .social-section {
      padding: 100px 8vw;
      border-top: 1px solid #1a1a1a;
    }

    .social-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2px;
      margin-top: 48px;
    }

    .social-card {
      background: var(--surface);
      border: 1px solid #1e1e1e;
      padding: 28px 24px;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      transition: all 0.35s;
      position: relative;
      overflow: hidden;
      min-height: 180px;
    }

    .social-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform 0.35s;
    }

    .social-card:hover::after { transform: scaleX(1); }
    .social-card:hover { border-color: #252525; }

    .social-card-icon { font-size: 22px; }

    .social-card svg { width: 22px; height: 22px; fill: var(--muted); transition: fill 0.3s; }
    .social-card:hover svg { fill: var(--gold); }

    .social-card-name {
      font-size: 13px;
      font-weight: 500;
      color: var(--white);
      letter-spacing: 1px;
    }

    .social-card-handle { font-size: 11px; color: var(--muted); }

    .social-card-count {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      font-weight: 900;
      color: var(--white);
      margin-top: auto;
      padding-top: 20px;
      transition: color 0.3s;
    }
    .social-card:hover .social-card-count { color: var(--gold-light); }
    .social-card-count-label {
      font-size: 9px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: 2px;
    }

    /* EDITORIAL BLOG GRID */
    .editorial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 48px;
    }
    .editorial-card {
      background: var(--surface);
      position: relative;
      overflow: hidden;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      min-height: 260px;
      padding: 32px;
      transition: background 0.3s;
      color: inherit;
    }
    .editorial-card--featured {
      grid-column: span 2;
      min-height: 320px;
      background: #111;
    }
    .editorial-card--featured:hover { background: #161616; }
    .editorial-card:not(.editorial-card--featured):hover { background: var(--surface2); }
    .editorial-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.4s;
    }
    .editorial-card:hover::before { transform: scaleX(1); }
    .editorial-card-bg {
      position: absolute;
      right: 24px;
      bottom: 16px;
      font-size: 90px;
      opacity: 0.07;
      pointer-events: none;
      transition: opacity 0.3s;
      line-height: 1;
    }
    .editorial-card:hover .editorial-card-bg { opacity: 0.14; }
    .editorial-card-tag {
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .editorial-card-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(18px, 1.8vw, 22px);
      color: var(--white);
      font-weight: 700;
      line-height: 1.25;
      flex: 1;
    }
    .editorial-card--featured .editorial-card-title {
      font-size: clamp(24px, 3vw, 36px);
      margin-bottom: 16px;
    }
    .editorial-card-excerpt {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 24px;
      display: none;
      max-width: 520px;
    }
    .editorial-card--featured .editorial-card-excerpt { display: block; }
    .editorial-card-read {
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: 20px;
      display: block;
      transition: letter-spacing 0.3s;
    }
    .editorial-card:hover .editorial-card-read { letter-spacing: 5px; }

    @media (max-width: 900px) {
      .editorial-grid { grid-template-columns: repeat(2, 1fr); }
      .editorial-card--featured { grid-column: span 2; }
    }
    @media (max-width: 600px) {
      .editorial-grid { grid-template-columns: 1fr; }
      .editorial-card--featured { grid-column: span 1; min-height: 260px; }
    }

    /* CONTACT */
    .contact-section {
      padding: 100px 8vw;
      border-top: 1px solid #1a1a1a;
    }

    .contact-simple {
      display: flex;
      justify-content: center;
    }

    footer {
      border-top: 1px solid #1a1a1a;
      padding: 36px 8vw;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 100px;
    }

    .footer-logo {
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      color: var(--white);
    }

    .footer-logo span { color: var(--gold); }
    .footer-copy { font-size: 11px; color: var(--muted); }

    /* ANIMATIONS */
    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeIn { to { opacity: 1; } }
    @keyframes scanLine { 0% { left: -100%; } 100% { left: 100%; } }
    @keyframes floatText {
      0%, 100% { transform: translateY(-50%); }
      50% { transform: translateY(-52%); }
    }

    .reveal {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .bio-section, .contact-section { grid-template-columns: 1fr; gap: 48px; }
      .bio-left { position: static; }
      .social-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 600px) {
      nav { padding: 16px 6vw; }
      .hero { padding: 100px 6vw 60px; }
      .hero-bg-text { display: none; }
      .bio-section, .instagram-section, .social-section, .contact-section { padding: 70px 6vw; }
      .social-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* INSTAGRAM GRID */
    .instagram-section {
      padding: 100px 8vw;
      border-top: 1px solid #1a1a1a;
    }
    .insta-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 4px;
      margin-top: 48px;
    }
    .insta-item {
      position: relative;
      overflow: hidden;
      aspect-ratio: 9/16;
      display: block;
      cursor: pointer;
    }
    .insta-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .insta-item:hover img { transform: scale(1.05); }
    .insta-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.55);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .insta-item:hover .insta-overlay { opacity: 1; }
    .insta-overlay svg { fill: white; }
    .insta-overlay span {
      color: white;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    /* CURSOR GLOW */
    .cursor-glow {
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: opacity 0.3s;
    }

    /* PARALLAX HERO */
    .hero-parallax {
      will-change: transform;
    }

    /* TYPEWRITER */
    .typewriter {
      overflow: hidden;
      white-space: nowrap;
      border-right: 2px solid var(--gold);
      animation: typing 3s steps(30) 1s forwards, blink 0.8s step-end infinite;
      max-width: 0;
    }

    @keyframes typing {
      from { max-width: 0; }
      to { max-width: 100%; }
    }

    @keyframes blink {
      50% { border-color: transparent; }
    }

    /* FLOATING ELEMENTS */
    .float-1 { animation: float1 6s ease-in-out infinite; }
    .float-2 { animation: float2 8s ease-in-out infinite; }

    @keyframes float1 {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-12px); }
    }

    @keyframes float2 {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-8px) rotate(2deg); }
    }

    /* CARD TILT */
    .tilt-card {
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    /* COUNT UP */
    .count-up { display: inline-block; }

    /* GOLD SHINE on CTA */
    .cta-primary {
      position: relative;
      overflow: hidden;
    }

    .cta-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      animation: shine 3s infinite;
    }

    @keyframes shine {
      0% { left: -100%; }
      50%, 100% { left: 150%; }
    }

    /* PARTICLE DOTS */
    .particles {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .particle {
      position: absolute;
      width: 2px;
      height: 2px;
      background: var(--gold);
      border-radius: 50%;
      opacity: 0;
      animation: particleFloat linear infinite;
    }

    @keyframes particleFloat {
      0% { transform: translateY(100vh) translateX(0); opacity: 0; }
      10% { opacity: 0.4; }
      90% { opacity: 0.2; }
      100% { transform: translateY(-100px) translateX(30px); opacity: 0; }
    }

    /* SECTION NUMBER */
    .section-number {
      font-family: 'Playfair Display', serif;
      font-size: 80px;
      font-weight: 900;
      color: transparent;
      -webkit-text-stroke: 1px rgba(201,168,76,0.15);
      line-height: 1;
      margin-bottom: -20px;
      display: block;
    }

    /* SCROLL PROGRESS BAR */
    .progress-bar {
      position: fixed;
      top: 0;
      left: 0;
      height: 2px;
      background: var(--gold);
      z-index: 9999;
      transition: width 0.1s;
    }

    /* PERFORMANCE — disable heavy effects on mobile */
    @media (max-width: 768px) {
      .cursor-glow { display: none; }
      .particles { display: none; }
      body::before { display: none; }
    }

    /* PERFORMANCE — respect reduced motion preference */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }
