
  :root {
    --ink: #0d0d0d;
    --ash: #f5f4f1;
    --gold: #c4193c;
    --gold-light: #e8d5a3;
    --slate: #2c2c2c;
    --mid: #6b6b6b;
    --white: #ffffff;
    --border: rgba(201,168,76,0.2);
  }

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

  html { scroll-behavior: smooth; }

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

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 4rem;
    background: rgba(13,13,13,0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: padding 0.3s;
  }
  .nav-logo {
    display: flex;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 600;
    color: white; letter-spacing: 0.04em;
    text-decoration: none;
  }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-size: 0.82rem; font-weight: 400; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(255,255,255,0.7);
    text-decoration: none; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    padding: 0.55rem 1.6rem;
    background: var(--gold); color: white;
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; border: none; cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* ── HERO ── */
  #home {
    min-height: 100vh;
    display: grid; place-items: center;
    position: relative; overflow: hidden;
    padding: 6rem 4rem 4rem;
    margin-top: 5rem;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 70% 60% at 65% 40%, rgba(201,168,76,0.07) 0%, transparent 70%),
      radial-gradient(ellipse 40% 50% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
  }
  .hero-content {
    position: relative; z-index: 1;
    max-width: 860px; text-align: center;
    animation: fadeUp 1s ease both;
  }
  .hero-eyebrow {
    display: inline-block;
    font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.5rem;
    border: 1px solid var(--border); padding: 0.35rem 1rem;
  }
  .hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 300; line-height: 1.05;
    color: var(--white);
    margin-bottom: 1.5rem;
  }
  .hero-headline em { color: var(--gold); font-style: normal; font-weight: 500; }
  .hero-sub {
    font-size: 1.05rem; font-weight: 300; line-height: 1.75;
    color: rgba(255,255,255,0.6); max-width: 620px; margin: 0 auto 2.5rem;
  }
  .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    padding: 0.85rem 2.2rem;
    background: var(--gold); color: white;
    font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; border: none; cursor: pointer;
    text-decoration: none; display: inline-block;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-outline {
    padding: 0.85rem 2.2rem;
    background: transparent; color: var(--white);
    font-size: 0.82rem; font-weight: 400; letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.25); cursor: pointer;
    text-decoration: none; display: inline-block;
    transition: border-color 0.2s, color 0.2s, transform 0.15s;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

  .hero-stat-row {
    position: relative; z-index: 1;
    display: flex; justify-content: center; gap: 4rem;
    margin-top: 4rem; padding-top: 3rem;
    border-top: 1px solid var(--border);
    animation: fadeUp 1s 0.3s ease both;
  }
  .stat { text-align: center; }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem; font-weight: 500; color: var(--gold);
  }
  .stat-label {
    font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); margin-top: 0.25rem;
  }

  /* ── SECTIONS ── */
  section { padding: 7rem 4rem; }

  .section-label {
    font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300;
    line-height: 1.15;
  }
  .section-title em { color: var(--gold); font-style: normal; }
  .section-sub {
    font-size: 0.95rem; font-weight: 300; line-height: 1.8;
    color: rgba(255,255,255,0.55); max-width: 540px; margin-top: 1rem;
  }

  /* ── FEATURES ── */
  #features { background: var(--ink); }
  .features-header { text-align: center; margin-bottom: 4rem; }
  .features-header .section-sub { margin: 1rem auto 0; }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    max-width: 1100px; margin: 0 auto;
  }
  .feature-card {
    background: var(--ink);
    padding: 2.5rem;
    transition: background 0.25s;
    cursor: default;
  }
  .feature-card:hover { background: rgba(201,168,76,0.04); }
  .feature-icon {
    width: 40px; height: 40px; margin-bottom: 1.5rem;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border);
    color: var(--gold); font-size: 1.1rem;
  }
  .feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 500; margin-bottom: 0.6rem;
  }
  .feature-desc {
    font-size: 0.87rem; line-height: 1.7;
    color: rgba(255,255,255,0.5);
  }

  /* ── FULL FEATURES ── */
  #full-features { background: #111; }
  .full-features-inner { max-width: 1100px; margin: 0 auto; }
  .full-features-header { margin-bottom: 3.5rem; }
  .features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
  }
  .feat-item {
    border-left: 1px solid var(--border);
    padding-left: 1.5rem;
  }
  .feat-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 500; color: var(--gold);
    margin-bottom: 0.75rem;
  }
  .feat-item ul { list-style: none; }
  .feat-item ul li {
    font-size: 0.84rem; line-height: 1.7;
    color: rgba(255,255,255,0.5);
    padding-left: 0.8rem; position: relative;
  }
  .feat-item ul li::before {
    content: '—';
    position: absolute; left: 0;
    color: var(--gold); opacity: 0.5;
    font-size: 0.7rem;
  }
  .features-cta { text-align: center; margin-top: 3rem; }

  /* ── INDUSTRIES ── */
  #industries { background: var(--ink); }
  .industries-inner { max-width: 1100px; margin: 0 auto; }
  .industries-header { margin-bottom: 3.5rem; }
  .industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }
  .industry-card {
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    transition: border-color 0.25s, transform 0.2s;
  }
  .industry-card:hover { border-color: var(--gold); transform: translateY(-4px); }
  .industry-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 300; color: var(--border);
    line-height: 1; margin-bottom: 1rem;
  }
  .industry-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-weight: 500; margin-bottom: 0.75rem;
  }
  .industry-desc {
    font-size: 0.84rem; line-height: 1.7;
    color: rgba(255,255,255,0.5);
  }

  /* ── TESTIMONIAL ── */
  #testimonial {
    background: var(--gold);
    padding: 6rem 4rem;
    text-align: center;
  }
  .testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 300; line-height: 1.5;
    color: white; max-width: 780px; margin: 0 auto 2rem;
  }
  .testimonial-author {
    font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: white;
  }

  /* ── PRICING ── */
  #pricing { background: #111; }
  .pricing-inner { max-width: 900px; margin: 0 auto; }
  .pricing-header { margin-bottom: 3.5rem; }
  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  @media (max-width: 640px) { .pricing-grid { grid-template-columns: 1fr; } }
  .pricing-card {
    border: 1px solid var(--border);
    padding: 3rem 2.5rem;
    position: relative;
  }
  .pricing-card.featured {
    border-color: var(--gold);
    background: rgba(201,168,76,0.03);
  }
  .pricing-badge {
    position: absolute; top: -1px; right: 2rem;
    background: var(--gold); color: var(--ink);
    font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 0.3rem 0.8rem;
  }
  .pricing-type {
    font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.75rem;
  }
  .pricing-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem; font-weight: 400; margin-bottom: 1rem;
  }
  .pricing-desc {
    font-size: 0.85rem; line-height: 1.7;
    color: rgba(255,255,255,0.5); margin-bottom: 1.5rem;
    padding-bottom: 1.5rem; border-bottom: 1px solid var(--border);
  }
  .pricing-best {
    font-size: 0.78rem; color: rgba(255,255,255,0.4);
    margin-bottom: 1.5rem;
  }
  .pricing-best span { color: var(--gold-light); }
  .pricing-includes {
    font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.3); margin-bottom: 0.75rem;
  }
  .pricing-includes-list { list-style: none; margin-bottom: 2rem; }
  .pricing-includes-list li {
    font-size: 0.83rem; padding: 0.4rem 0;
    color: rgba(255,255,255,0.55);
    border-bottom: 1px solid rgba(201,168,76,0.08);
    padding-left: 1rem; position: relative;
  }
  .pricing-includes-list li::before {
    content: '✓'; position: absolute; left: 0;
    color: var(--gold); font-size: 0.7rem;
  }

  /* ── ABOUT ── */
  #about { background: var(--ink); }
  .about-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
    align-items: center;
  }
  @media (max-width: 768px) { .about-inner { grid-template-columns: 1fr; gap: 3rem; } }
  .about-visual {
    position: relative; aspect-ratio: 4/5; max-height: 500px;
  }
  .about-box {
    position: absolute; inset: 0;
    border: 1px solid var(--border);
    display: grid; grid-template-rows: 1fr 1fr;
  }
  .about-box-top {
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    background: rgba(201,168,76,0.03);
  }
  .about-box-top .big-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem; font-weight: 300; color: var(--gold); opacity: 0.5;
  }
  .about-box-bottom {
    display: grid; grid-template-columns: 1fr 1fr;
  }
  .ab-cell {
    padding: 1.5rem;
    border-right: 1px solid var(--border);
    display: flex; flex-direction: column; justify-content: flex-end;
  }
  .ab-cell:last-child { border-right: none; }
  .ab-cell-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 400; color: var(--gold);
  }
  .ab-cell-label {
    font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.35); margin-top: 0.25rem;
  }
  .values-list { margin-top: 2rem; }
  .value-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    display: flex; gap: 1rem; align-items: flex-start;
  }
  .value-dot {
    width: 6px; height: 6px; background: var(--gold);
    border-radius: 50%; margin-top: 0.4rem; flex-shrink: 0;
  }
  .value-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-weight: 500; margin-bottom: 0.25rem;
  }
  .value-desc {
    font-size: 0.83rem; line-height: 1.6;
    color: rgba(255,255,255,0.45);
  }

  /* ── CONTACT ── */
  #contact { background: #111; }
  .contact-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.6fr; gap: 6rem;
    align-items: start;
  }
  @media (max-width: 768px) { .contact-inner { grid-template-columns: 1fr; gap: 3rem; } }
  .contact-info-item {
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border);
  }
  .contact-info-label {
    font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.3rem;
  }
  .contact-info-value {
    font-size: 0.9rem; color: rgba(255,255,255,0.65);
  }
  .contact-form { display: flex; flex-direction: column; gap: 1rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  @media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-label {
    font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.4);
  }
  .form-input, .form-select, .form-textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem; padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }
  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--gold);
  }
  .form-select { appearance: none; cursor: pointer; }
  .form-select option { background: #1a1a1a; }
  .form-textarea { resize: vertical; min-height: 100px; }
  .form-full { grid-column: 1 / -1; }

  /* ── CTA BANNER ── */
  #cta {
    padding: 7rem 4rem;
    background: var(--ink);
    text-align: center;
    border-top: 1px solid var(--border);
  }
  .cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 4rem); font-weight: 300;
    margin-bottom: 1rem;
  }
  .cta-title em { color: var(--gold); font-style: normal; }
  .cta-sub {
    font-size: 0.95rem; color: rgba(255,255,255,0.5);
    margin-bottom: 2.5rem; font-weight: 300;
  }
  .cta-note {
    margin-top: 1.25rem;
    font-size: 0.75rem; color: rgba(255,255,255,0.3);
    letter-spacing: 0.05em;
  }

  /* ── FOOTER ── */
  footer {
    background: #080808;
    padding: 4rem 4rem 2rem;
    border-top: 1px solid var(--border);
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem; margin-bottom: 3rem;
  }
  @media (max-width: 768px) { .footer-top { grid-template-columns: 1fr; gap: 2rem; } }
  .footer-brand .nav-logo { font-size: 1.8rem; display: inline-block; margin-bottom: 0.75rem; }
  .footer-tagline {
    font-size: 0.82rem; line-height: 1.7;
    color: rgba(255,255,255,0.35); max-width: 260px;
  }
  .footer-col h5 {
    font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.25rem;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
  .footer-col ul a {
    font-size: 0.83rem; color: rgba(255,255,255,0.4);
    text-decoration: none; transition: color 0.2s;
  }
  .footer-col ul a:hover { color: var(--gold); }
  .footer-bottom {
    padding-top: 2rem; border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
  }
  .footer-legal {
    display: flex; gap: 2rem;
  }
  .footer-legal a {
    font-size: 0.75rem; color: rgba(255,255,255,0.25);
    text-decoration: none; transition: color 0.2s;
  }
  .footer-legal a:hover { color: var(--gold); }
  .footer-copy {
    font-size: 0.75rem; color: rgba(255,255,255,0.2);
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE NAV ── */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
  }
  @media (max-width: 600px) {
    section, #home, #testimonial, #cta { padding: 4rem 1.5rem; }
    footer { padding: 3rem 1.5rem 1.5rem; }
    .hero-stat-row { gap: 2rem; }
  }

  /* ── DIVIDER ── */
  .gold-divider {
    width: 40px; height: 1px;
    background: var(--gold); margin: 1.5rem 0;
  }
