:root {
    --ink: #0d0d0d;
    --paper: #f5f0e8;
    --gold: #c9a84c;
    --gold-light: #e8d5a3;
    --rust: #b5451b;
    --cream: #faf7f2;
    --muted: #7a7060;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
  }

  /* --- NOISE TEXTURE OVERLAY --- */
  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='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 999;
    opacity: 0.5;
  }

  /* --- NAV --- */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 4rem;
    background: rgba(245,240,232,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }

  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--ink);
    text-decoration: none;
  }

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

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--gold); }

  /* --- HERO --- */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    background: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 4rem 4rem 4rem;
    position: relative;
  }

  .hero-left::after {
    content: '';
    position: absolute;
    top: 0; right: -60px;
    width: 120px;
    height: 100%;
    background: var(--ink);
    clip-path: polygon(0 0, 50% 0, 100% 50%, 50% 100%, 0 100%);
    z-index: 2;
  }

  .hero-tag {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-tag::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--paper);
    margin-bottom: 2rem;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold);
  }

  .hero-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(245,240,232,0.65);
    max-width: 400px;
    margin-bottom: 3rem;
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gold);
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    transition: background 0.2s, transform 0.2s;
  }

  .hero-cta:hover { background: var(--gold-light); transform: translateX(4px); }

  .hero-right {
    background: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 4rem 4rem 6rem;
    position: relative;
  }

  .hero-visual {
    position: relative;
    width: 100%;
    max-width: 420px;
  }

  .hero-card {
    background: var(--ink);
    padding: 3rem;
    position: relative;
    overflow: hidden;
  }

  .hero-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  }

  .stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .stat-item { }

  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.4rem;
  }

  .stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.5);
  }

  .stat-divider {
    grid-column: 1 / -1;
    height: 1px;
    background: rgba(201,168,76,0.2);
  }

  .hero-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    color: var(--ink);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: rotateBadge 20s linear infinite;
  }

  @keyframes rotateBadge {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  /* --- VISION SECTION --- */
  .section-vision {
    padding: 8rem 4rem;
    background: var(--ink);
    position: relative;
    overflow: hidden;
  }

  .section-vision::before {
    content: '"';
    position: absolute;
    top: -2rem;
    left: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 30rem;
    color: rgba(201,168,76,0.04);
    line-height: 1;
    pointer-events: none;
  }

  .vision-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: start;
  }

  .vision-label {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    padding-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .vision-label::after {
    content: '';
    display: block;
    width: 1px;
    height: 60px;
    background: rgba(201,168,76,0.4);
  }

  .vision-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 400;
    font-style: italic;
    color: var(--paper);
    line-height: 1.5;
    margin-bottom: 2.5rem;
  }

  .vision-quote strong {
    font-style: normal;
    font-weight: 900;
    color: var(--gold);
  }

  .vision-body {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(245,240,232,0.6);
    column-count: 2;
    column-gap: 3rem;
  }

  /* --- VALUES --- */
  .section-values {
    padding: 8rem 4rem;
    background: var(--paper);
  }

  .section-header {
    max-width: 1100px;
    margin: 0 auto 4rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--ink);
  }

  .section-title span { color: var(--gold); display: block; }

  .section-count {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(13,13,13,0.06);
    line-height: 1;
  }

  .values-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--ink);
  }

  .value-card {
    background: var(--cream);
    padding: 3rem 2.5rem;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }

  .value-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .value-card:hover { background: var(--ink); }
  .value-card:hover .value-title { color: var(--paper); }
  .value-card:hover .value-text { color: rgba(245,240,232,0.6); }
  .value-card:hover .value-num { color: rgba(201,168,76,0.2); }
  .value-card:hover::before { transform: scaleX(1); }

  .value-num {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(13,13,13,0.06);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: color 0.3s;
  }

  .value-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1rem;
    transition: color 0.3s;
  }

  .value-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--muted);
    transition: color 0.3s;
  }

  /* --- TEAM --- */
  .section-team {
    padding: 8rem 4rem;
    background: var(--ink);
  }

  .section-team .section-title { color: var(--paper); }

  .team-grid {
    max-width: 1100px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .team-card {
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
    cursor: pointer;
  }

  .team-avatar {
    width: 100%;
    aspect-ratio: 3/4;
    background: #2a2520;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .avatar-initials {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(201,168,76,0.3);
    transition: color 0.3s;
  }

  .avatar-geo {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .avatar-geo svg {
    width: 80%;
    height: 80%;
    opacity: 0.06;
    transition: opacity 0.3s, transform 0.6s;
  }

  .team-card:hover .avatar-geo svg {
    opacity: 0.15;
    transform: rotate(15deg) scale(1.1);
  }

  .team-card:hover .avatar-initials { color: rgba(201,168,76,0.7); }

  .team-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.95) 0%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(0);
  }

  .team-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--paper);
    margin-bottom: 0.3rem;
  }

  .team-role {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .team-bio {
    font-size: 0.82rem;
    color: rgba(245,240,232,0.5);
    margin-top: 0.6rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
  }

  .team-card:hover .team-bio {
    opacity: 1;
    transform: translateY(0);
  }

  /* --- CULTURE --- */
  .section-culture {
    padding: 8rem 4rem;
    background: var(--paper);
    position: relative;
    overflow: hidden;
  }

  .culture-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .culture-marquee-wrap {
    overflow: hidden;
    margin: 4rem -4rem;
    padding: 2rem 0;
    background: var(--gold);
    position: relative;
  }

  .culture-marquee {
    display: flex;
    gap: 4rem;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
  }

  .culture-marquee-item {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 0;
  }

  .culture-marquee-item::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--ink);
    border-radius: 50%;
    opacity: 0.4;
  }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  .culture-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 5rem;
  }

  .pillar {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
  }

  .pillar-icon {
    width: 56px;
    height: 56px;
    background: var(--ink);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pillar-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

  .pillar-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.6rem;
  }

  .pillar-content p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--muted);
  }

  /* --- CONTACT STRIP --- */
  .section-contact {
    background: var(--gold);
    padding: 5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
  }

  .contact-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--ink);
    line-height: 1.1;
    max-width: 600px;
  }

  .contact-headline em {
    font-style: italic;
  }

  .contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--ink);
    color: var(--paper);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1.2rem 2.5rem;
    flex-shrink: 0;
    transition: background 0.2s, gap 0.2s;
  }

  .contact-btn:hover { background: #1a1a1a; gap: 1.5rem; }

  /* --- FOOTER --- */
  footer {
    background: var(--ink);
    padding: 3rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(201,168,76,0.15);
  }

  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--paper);
  }

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

  .footer-copy {
    font-size: 0.78rem;
    color: rgba(245,240,232,0.3);
    letter-spacing: 0.06em;
  }

  /* --- SCROLL ANIMATIONS --- */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* --- RESPONSIVE --- */
  @media (max-width: 900px) {
    nav { padding: 1.2rem 2rem; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-left::after { display: none; }
    .hero-right { padding: 3rem 2rem; }
    .hero-left { padding: 6rem 2rem 3rem; }
    .vision-inner { grid-template-columns: 1fr; gap: 2rem; }
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .culture-pillars { grid-template-columns: 1fr; }
    .section-contact { flex-direction: column; text-align: center; }
    .section-vision, .section-values, .section-team, .section-culture { padding: 5rem 2rem; }
    .vision-body { column-count: 1; }
  }
