:root {
    --ink: #0a0a0a;
    --paper: #f5f0e8;
    --cream: #ede8da;
    --gold: #c9a84c;
    --gold-light: #e2c87a;
    --rust: #b84b2e;
    --muted: #7a7060;
    --white: #faf8f4;
  }

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

  html { scroll-behavior: smooth; }

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

  @media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem 5vw;
    background: rgba(245,240,232,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  }
  nav.nav-hidden {
    transform: translateY(-100%);
  }
  .nav-logo { display: flex; align-items: center; }
  .nav-logo img { height: 34px; width: auto; display: block; }
  .nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted); text-decoration: none;
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a:not(.nav-cta)::after {
    content: ''; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1px;
    background: var(--gold); transform: scaleX(0); transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-links a:not(.nav-cta)::after {
    background: var(--gold);
  }
  .nav-links a:not(.nav-cta):hover::after {
    transform: scaleX(1); transform-origin: left;
  }
  .nav-cta {
    background: var(--ink); color: var(--paper) !important;
    padding: 0.6rem 1.3rem; border-radius: 2px;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--gold) !important; color: var(--ink) !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
  }
  @media (min-width: 901px) and (min-height: 750px) {
    .hero {
      height: 100vh;
      overflow: hidden;
    }
  }

  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 6.5rem 5vw 2.5rem 8vw;
    height: 100%;
    position: relative; z-index: 2;
  }

  .hero-eyebrow {
    font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ink); opacity: 0.6; margin-bottom: 0.8rem;
    display: flex; align-items: center; gap: 1rem;
  }
  .hero-eyebrow::before {
    content: ''; display: block; width: 40px; height: 1px; background: var(--ink); opacity: 0.4;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--ink);
  }
  .hero-title em { font-style: italic; color: var(--gold); }

  .hero-sub {
    font-size: 0.95rem; line-height: 1.65;
    color: var(--muted); max-width: 48ch;
    margin-bottom: 0.8rem;
  }

  .hero-tags {
    font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ink); margin-bottom: 1.5rem;
    display: flex; gap: 1.5rem; flex-wrap: wrap;
  }
  .hero-tags span { opacity: 0.5; }

  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

  .btn-primary {
    background: var(--ink); color: var(--paper);
    padding: 0.9rem 2rem; border: 1.5px solid var(--ink); cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; display: inline-block;
    transition: background 0.25s, color 0.25s;
    border-radius: 2px;
  }
  .btn-primary:hover { background: var(--gold); color: var(--ink); }

  .btn-outline {
    background: transparent; color: var(--ink);
    padding: 0.9rem 2rem; border: 1.5px solid var(--ink); cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; display: inline-block;
    transition: background 0.25s, color 0.25s;
    border-radius: 2px;
  }
  .btn-outline:hover { background: var(--ink); color: var(--paper); }

  .hero-right {
    position: relative; overflow: hidden;
    height: 100%;
  }
  .hero-graphic {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--ink) 0%, #1a1a1a 100%);
    display: flex; align-items: center; justify-content: center;
  }
  .hero-graphic::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 30% 40%, rgba(201,168,76,0.18) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 80%, rgba(184,75,46,0.12) 0%, transparent 50%);
  }
  .hero-graphic-inner {
    position: relative; z-index: 1;
    text-align: center; padding: 2rem;
  }
  .hero-monogram {
    opacity: 0.14;
    filter: brightness(0) invert(1);
    width: 200px;
    margin: 0 auto;
    user-select: none;
    transform-origin: center;
    animation: pulseScale 15s ease-in-out infinite alternate;
  }
  @keyframes pulseScale {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
  }
  .hero-stat-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    margin-top: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.1);
  }
  .hero-stat {
    background: rgba(10,10,10,0.8);
    padding: 1.2rem 1.2rem;
    text-align: left;
  }
  .hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem; font-weight: 700;
    color: var(--gold); display: block;
  }
  .hero-stat-label {
    font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); margin-top: 0.3rem; display: block;
  }

  /* TRUST BANNER */
  .trust-banner {
    padding: 2.5rem 8vw;
    background: var(--paper);
    border-bottom: 1px solid #eaeaea;
    text-align: center;
  }
  .trust-label {
    font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 1.5rem;
  }
  .trust-logos {
    display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap;
    align-items: center;
  }
  .trust-logos span {
    font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700;
    color: var(--ink); opacity: 0.3; letter-spacing: -0.02em;
    filter: grayscale(1);
    transition: opacity 0.3s;
    user-select: none;
  }
  .trust-logos span:hover { opacity: 0.7; }

  /* SECTION COMMON */
  section { padding: 7rem 8vw; }
  .section-label {
    font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--ink); opacity: 0.6; margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .section-label::after {
    content: ''; flex: 1; max-width: 60px; height: 1px; background: var(--ink); opacity: 0.4;
  }

  /* WHO WE ARE */
  .who { background: var(--cream); }
  .who-grid {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 6rem;
    align-items: center; margin-top: 3rem;
  }
  .who h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700; line-height: 1.15;
    margin-bottom: 1.5rem;
  }
  .who h2 em { font-style: italic; color: var(--gold); }
  .who p { color: var(--muted); line-height: 1.8; margin-bottom: 1.2rem; font-size: 0.97rem; }
  .who-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
  .pill {
    font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
    border: 1px solid rgba(10,10,10,0.2);
    padding: 0.4rem 1rem; border-radius: 100px;
    color: var(--ink);
  }
  .who-aside {
    background: var(--ink); color: var(--paper);
    padding: 2.8rem;
    border-radius: 4px;
    position: relative; overflow: hidden;
  }
  .who-aside::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 12rem; font-weight: 900;
    color: rgba(255,255,255,0.04);
    position: absolute; top: -2rem; left: 0;
    line-height: 1; pointer-events: none;
  }
  .who-aside p {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem; font-style: italic;
    line-height: 1.55; color: rgba(255,255,255,0.9);
    position: relative; z-index: 1;
  }
  .who-aside-attr {
    margin-top: 1.5rem; font-size: 0.7rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold);
    position: relative; z-index: 1;
  }

  /* SERVICES */
  .services { background: var(--paper); }
  .services h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700; margin-bottom: 0.5rem;
  }
  .services h2 em { font-style: italic; color: var(--gold); }
  .services-intro { color: var(--muted); font-size: 0.95rem; margin-bottom: 4rem; max-width: 56ch; }
  .services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: transparent;
    border: none;
  }
  .service-card {
    padding: 3.5rem 4vw;
    border: 1px solid rgba(201, 168, 76, 0.15);
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    cursor: default;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
  }
  .service-card:nth-child(odd) {
    background: var(--white);
  }
  .service-card:nth-child(even) {
    background: var(--cream);
  }
  .service-card:hover {
    background: var(--ink) !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }
  .service-card:hover .service-num,
  .service-card:hover .service-title,
  .service-card:hover .service-desc { color: var(--paper) !important; }
  .service-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; color: var(--gold);
    margin-bottom: 1.4rem; display: block;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(10,10,10,0.1);
  }
  .service-card:hover .service-num { border-bottom-color: rgba(255,255,255,0.15); }
  .service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem; font-weight: 700;
    margin-bottom: 0.8rem; color: var(--ink);
    transition: color 0.25s;
  }
  .service-desc {
    font-size: 1rem; line-height: 1.75;
    color: var(--muted); transition: color 0.25s;
  }
  .service-content {
    width: 100%;
    max-width: 650px;
    display: flex;
    flex-direction: column;
  }

  /* Alternating Alignment of content */
  .service-card:nth-child(odd) {
    align-items: flex-start;
  }
  .service-card:nth-child(odd) .service-content {
    margin-right: auto;
    margin-left: 0;
    text-align: left;
  }
  .service-card:nth-child(odd) .service-num {
    align-self: flex-start;
    width: 100%;
  }

  .service-card:nth-child(even) {
    align-items: flex-end;
  }
  .service-card:nth-child(even) .service-content {
    margin-left: auto;
    margin-right: 0;
    text-align: right;
  }
  .service-card:nth-child(even) .service-num {
    align-self: flex-end;
    width: 100%;
  }

  /* WHY WE EXIST */
  .why-exist {
    background: var(--ink); color: var(--paper);
    position: relative; overflow: hidden;
  }
  .why-exist .section-label {
    color: var(--paper) !important;
  }
  .why-exist .section-label::after {
    background: var(--paper) !important;
  }
  .why-exist::before {
    content: 'tgc';
    font-family: 'Playfair Display', serif;
    font-size: 24vw; font-weight: 900;
    color: rgba(255,255,255,0.02);
    position: absolute; right: -3vw; top: 50%;
    transform: translateY(-50%);
    pointer-events: none; user-select: none;
    line-height: 1;
  }
  .why-exist-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
    position: relative; z-index: 1;
    margin-top: 3rem;
  }
  .why-exist h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 700;
    margin-bottom: 1rem;
  }
  .why-exist h2 em { font-style: italic; color: var(--gold); }
  .why-exist .sub { color: rgba(255,255,255,0.5); font-size: 0.95rem; margin-bottom: 2.5rem; }
  .pain-list, .gain-list { list-style: none; }
  .pain-list li, .gain-list li {
    display: flex; align-items: flex-start; gap: 0.8rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(201,168,76,0.18);
    font-size: 0.9rem; line-height: 1.5;
    color: rgba(255,255,255,0.75);
  }
  .pain-list li::before { content: '—'; color: var(--rust); flex-shrink: 0; margin-top: 0.05rem; }
  .gain-list li::before { content: '✓'; color: var(--paper); flex-shrink: 0; font-size: 0.8rem; margin-top: 0.1rem; }
  .gain-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 700;
    margin-bottom: 1rem; color: var(--paper);
  }

  /* APPROACH (process) */
  .approach { background: var(--cream); }
  .approach h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 700; margin-bottom: 0.5rem;
  }
  .approach h2 em { font-style: italic; color: var(--gold); }
  .approach .intro { color: var(--muted); font-size: 0.95rem; margin-bottom: 4rem; max-width: 56ch; }
  .approach-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
    position: relative;
    counter-reset: approach-counter;
  }
  @media (min-width: 901px) {
    .approach-grid::before {
      content: ''; position: absolute;
      top: 3.5rem; left: 2rem; right: 2rem;
      height: 1px; background: #eaeaea; z-index: 0;
    }
  }
  .approach-card {
    padding: 3rem 2.2rem 2.5rem; background: var(--paper);
    border-radius: 4px;
    border: 1px solid #eaeaea;
    transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
    position: relative; z-index: 1;
    overflow: hidden;
    counter-increment: approach-counter;
  }
  .approach-card:hover { border-color: var(--ink); transform: translateY(-4px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); }
  
  .approach-card::after {
    content: '0' counter(approach-counter);
    position: absolute; top: -15px; right: 10px;
    font-family: 'Playfair Display', serif; font-weight: 900;
    font-size: 9rem; color: var(--ink); opacity: 0.03;
    z-index: 0; pointer-events: none;
    transition: transform 0.6s ease, opacity 0.6s ease;
  }
  .approach-card:hover::after {
    transform: scale(1.05); opacity: 0.05;
  }
  
  .approach-step {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem; color: var(--gold);
    margin-bottom: 1.5rem; display: inline-block; letter-spacing: 0.1em;
    background: var(--paper); padding-right: 1rem; position: relative; z-index: 2;
  }
  .approach-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem; font-weight: 700;
    margin-bottom: 0.7rem; position: relative; z-index: 2;
  }
  .approach-card p { font-size: 0.87rem; line-height: 1.7; color: var(--muted); position: relative; z-index: 2; }

  /* WHY CHOOSE US */
  .why-us { background: var(--paper); }
  .why-us h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 700;
    margin-bottom: 0.5rem;
  }
  .why-us h2 em { font-style: italic; color: var(--gold); }
  .why-us .intro { color: var(--muted); font-size: 0.95rem; margin-bottom: 4rem; }
  .why-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
  }
  @media (min-width: 901px) {
    .why-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  .why-card {
    padding: 2.2rem; background: var(--cream);
    border-radius: 4px;
    border: 1px solid #eaeaea;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  }
  .why-card:hover { border-color: var(--ink); transform: translateY(-4px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); }
  .why-card-num {
    font-family: 'Playfair Display', serif;
    font-size: 0.8rem; color: var(--gold);
    margin-bottom: 1.2rem; display: block;
  }
  .why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 700;
    margin-bottom: 0.7rem;
  }
  .why-card p { font-size: 0.87rem; line-height: 1.7; color: var(--muted); }

  /* INDUSTRIES */
  .industries { background: var(--ink); color: var(--paper); }
  .industries .section-label {
    color: var(--paper) !important;
  }
  .industries .section-label::after {
    background: var(--paper) !important;
  }
  .industries h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 700; margin-bottom: 0.5rem;
  }
  .industries h2 em { font-style: italic; color: var(--gold); }
  .industries .intro { color: rgba(255,255,255,0.55); font-size: 0.95rem; margin-bottom: 3rem; max-width: 56ch; }
  .industry-pills { display: flex; flex-wrap: wrap; gap: 0.7rem; }
  .industry-pill {
    font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.55rem 1.3rem; border-radius: 100px;
    color: rgba(255,255,255,0.8);
    transition: border-color 0.2s, color 0.2s;
  }
  .industry-pill:hover { border-color: var(--paper); color: var(--paper); }

  /* VISION / PHILOSOPHY */
  .vision {
    background: var(--paper);
    text-align: center;
    padding: 7rem 8vw;
    position: relative; overflow: hidden;
  }
  .vision::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.04) 0%, transparent 70%);
    pointer-events: none;
  }
  .vision-line { width: 1px; height: 60px; background: var(--ink); opacity: 0.6; margin: 0 auto 2.5rem; }
  .vision h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 3.5rem); font-weight: 900;
    line-height: 1.2;
    max-width: 22ch; margin: 0 auto 2rem;
  }
  .vision h2 em { font-style: italic; color: var(--gold); }
  .vision p { max-width: 52ch; margin: 0 auto; color: var(--muted); font-size: 1rem; line-height: 1.8; }

  /* CTA */
  .cta {
    background: var(--ink); color: var(--paper);
    padding: 8rem 8vw;
    position: relative; overflow: hidden;
    text-align: center;
  }
  .cta-bg {
    position: absolute; inset: 0; pointer-events: none;
    background:
      radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.1) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 50%, rgba(184,75,46,0.12) 0%, transparent 50%);
  }
  .cta-content {
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 4.5rem); font-weight: 900;
    line-height: 1.1; margin-bottom: 1.5rem;
  }
  .cta h2 em { font-style: italic; color: var(--gold); }
  .cta p {
    max-width: 52ch; margin: 0 auto 3rem;
    color: rgba(255,255,255,0.55); font-size: 0.97rem; line-height: 1.75;
  }
  
  /* Booking Form Styles */
  #booking-form {
    margin-top: 3rem;
    text-align: left;
  }
  .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .form-group {
    display: flex;
    flex-direction: column;
  }
  .form-group input,
  .form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--paper);
    padding: 1rem 1.2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    border-radius: 2px;
    transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
  }
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--paper);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2), 0 0 0 2px rgba(255,255,255,0.1);
  }
  .message-group {
    margin-bottom: 2rem;
  }
  .btn-gold {
    background: var(--gold); color: var(--ink);
    padding: 1rem 2.2rem; border: 1.5px solid var(--paper); cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; display: inline-block;
    border-radius: 2px;
    transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  }
  .btn-gold:hover { background: var(--gold-light); color: var(--ink); 
    transform: translateY(-2px); 
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  }
  .btn-submit {
    width: 100%;
    text-align: center;
    font-weight: 500;
  }
  
  .form-status {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    text-align: center;
    margin-top: 2rem;
    animation: fadeIn 0.4s ease;
  }
  .status-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
  }
  .success-status .status-icon {
    color: #4caf50;
  }
  .error-status .status-icon {
    color: #f44336;
  }
  .form-status h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }
  .form-status p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 440px;
    margin: 0 auto;
  }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* CASE STUDIES */
  .cases { background: var(--paper); }
  .cases h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 900; margin-bottom: 3.5rem;
  }
  .cases h2 em { font-style: italic; color: var(--gold); }
  .case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 4rem; }
  .case-card {
    border-top: 2px solid var(--ink);
    padding-top: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .case-card:hover { transform: scale(1.02); }
  .case-meta { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); font-weight: 700; margin-bottom: 0.5rem; }
  .case-meta span { color: var(--muted); font-weight: 300; }
  .case-metrics { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--ink); margin-bottom: 2.5rem; }
  .case-row { border-bottom: 1px solid #eaeaea; padding: 1.2rem 0; display: flex; gap: 2rem; }
  .case-row:last-child { border-bottom: none; }
  .case-label { flex: 0 0 100px; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); font-weight: 600; opacity: 0.5; }
  .case-row p { flex: 1; font-size: 0.95rem; line-height: 1.6; color: var(--muted); margin: 0; }

  /* FOUNDER LETTER */
  .founder-letter { background: var(--cream); padding: 8rem 8vw; display: flex; justify-content: center; }
  .letter-container { max-width: 720px; width: 100%; position: relative; }
  .letter-quote {
    position: absolute; top: -60px; left: -40px;
    font-family: 'Playfair Display', serif; font-size: 10rem; line-height: 1; color: var(--ink); opacity: 0.05;
    user-select: none;
  }
  .letter-content { font-size: 1.15rem; line-height: 1.8; color: var(--ink); margin-bottom: 3rem; position: relative; z-index: 1; }
  .letter-content p { margin-bottom: 1.5rem; }
  .letter-signoff { border-top: 1px solid #eaeaea; padding-top: 2rem; }
  .signoff-name { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.8rem; font-weight: 700; color: var(--ink); margin-bottom: 0.2rem; }
  .signoff-title { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }

  /* FOOTER */
  .footer-premium {
    background: #050505; color: rgba(255,255,255,0.4);
    padding: 6rem 8vw 3rem;
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem;
    margin-bottom: 6rem;
  }
  .footer-col h4 {
    font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--paper); opacity: 0.9; margin-bottom: 1.5rem;
  }
  .footer-col a {
    display: block; font-size: 0.85rem; color: rgba(255,255,255,0.5); text-decoration: none;
    margin-bottom: 0.8rem; transition: color 0.3s;
  }
  .footer-col a:hover { color: var(--paper); }
  .footer-address { font-size: 0.85rem; line-height: 1.6; margin-top: 1rem; opacity: 0.7; }
  
  .brand-col .footer-brand-text { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--paper); margin-bottom: 1rem; }
  .brand-col p { font-size: 0.95rem; line-height: 1.6; max-width: 300px; opacity: 0.7; }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2.5rem;
    display: flex; flex-direction: column; align-items: center; gap: 1rem; overflow: hidden;
  }
  .footer-legal { font-size: 0.75rem; opacity: 0.5; text-align: center; }
  .footer-massive {
    display: block;
    width: 100%;
    max-width: 180px;
    height: auto;
    opacity: 0.12;
    user-select: none;
    pointer-events: none;
    margin: 0 auto;
  }

  /* PROGRESS BAR */
  #progress-bar {
    position: fixed; top: 0; left: 0; height: 3px; background: var(--ink);
    z-index: 1000; transition: width 0.1s; width: 0%;
  }

  /* METRICS */
  .metrics { background: #050505; color: var(--paper); padding: 5rem 8vw; border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
  .metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; text-align: center; }
  .metric-item { display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .metric-number { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 900; line-height: 1; display: inline-block; }
  .metric-plus { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; color: rgba(255,255,255,0.5); display: inline-block; vertical-align: top; margin-left: 2px; }
  .metric-label { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 1rem; }

  /* INSIGHTS */
  .insights { background: var(--cream); border-top: 1px solid #eaeaea; }
  .insight-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; margin-top: 3.5rem; }
  .insight-card {
    background: var(--paper); padding: 2.5rem; border: 1px solid #eaeaea; text-decoration: none; color: inherit;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  }
  .insight-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.03); border-color: var(--ink); }
  .insight-meta { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
  .insight-meta span { color: var(--ink); font-weight: 700; }
  .insight-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 900; margin-bottom: 0.8rem; line-height: 1.4; }
  .insight-card p { font-size: 0.9rem; line-height: 1.6; color: var(--muted); margin: 0; }

  /* ASSESSMENT */
  .assessment { background: var(--paper); text-align: center; border-top: 1px solid #eaeaea; }
  .assessment-container { max-width: 680px; margin: 0 auto; }
  .assessment-container h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; margin-bottom: 1rem; }
  .assessment-container h2 em { font-style: italic; color: var(--gold); }
  .assessment-container p { font-size: 1.05rem; color: var(--muted); margin-bottom: 3rem; }
  .assessment-ui { background: var(--cream); border: 1px solid #eaeaea; border-radius: 4px; padding: 3rem; position: relative; min-height: 350px; display: flex; flex-direction: column; justify-content: center; align-items: center; }
  .assessment-step { display: none; width: 100%; text-align: left; animation: fadeIn 0.4s ease; }
  .assessment-step.active { display: block; }
  .assessment-step h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 2rem; line-height: 1.4; color: var(--ink); }
  .assess-btn {
    display: block; width: 100%; text-align: left; background: var(--paper); border: 1px solid #ccc; color: var(--ink);
    padding: 1.2rem; margin-bottom: 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
    cursor: pointer; transition: border-color 0.2s, background 0.2s;
  }
  .assess-btn:hover { border-color: var(--ink); background: #fdfdfd; }
  .assessment-result { display: none; width: 100%; text-align: center; animation: fadeIn 0.4s ease; }
  .assessment-result.active { display: block; }
  .assessment-result h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; margin-bottom: 1rem; color: var(--ink); }
  .assessment-result p { font-size: 1rem; color: var(--muted); margin-bottom: 2rem; line-height: 1.6; }

  /* CONVERSION UPGRADES */
  .btn-arrow span {
    display: inline-block; transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); margin-left: 0.4rem;
  }
  .btn-arrow:hover span { transform: translateX(4px); }
  .form-trust-text {
    font-size: 0.75rem; color: rgba(255,255,255,0.4); text-align: center; margin-top: 1.5rem; letter-spacing: 0.02em;
  }

  /* ANIMATIONS */
  .fade-in, .reveal { 
    opacity: 0; 
    transform: translateY(30px); 
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); 
  }
  .fade-in.visible, .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1, .fade-in-delay-1 { transition-delay: 0.1s; }
  .fade-in-delay-2 { transition-delay: 0.2s; }
  .fade-in-delay-3 { transition-delay: 0.3s; }
  .fade-in-delay-4 { transition-delay: 0.4s; }

  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; height: auto; min-height: 100vh; }
    .hero-left { padding: 7rem 6vw 4rem; height: auto; justify-content: flex-start; }
    .hero-right { display: block; height: auto; padding: 4rem 6vw; background: #050505; }
    .hero-graphic { position: relative; inset: auto; background: none; }
    .hero-monogram { display: none; }
    .hero-stat-grid { margin-top: 0; width: 100%; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
    .who-grid, .why-exist-grid { grid-template-columns: 1fr; gap: 3rem; }
    nav .nav-links li:not(:last-child) { display: none; }
    nav .nav-links { gap: 1rem; }
    section { padding: 5rem 6vw; }
    .service-card:nth-child(even) {
      align-items: flex-start;
    }
    .service-card:nth-child(even) .service-content {
      margin-left: 0;
      margin-right: auto;
      text-align: left;
    }
    .service-card:nth-child(even) .service-num {
      align-self: flex-start;
    }
    .footer-premium .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .case-row { flex-direction: column; gap: 0.5rem; }
    .letter-quote { font-size: 6rem; top: -30px; left: -10px; }
    .founder-letter { padding: 6rem 6vw; }
    .trust-logos { gap: 1.5rem; }
    .assessment-ui { padding: 1.5rem; min-height: auto; }
    .assess-btn { padding: 1rem; font-size: 0.88rem; }
  }