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

  :root {
    --plum: #3d1a40;
    --plum-light: #5a2760;
    --warm-white: #faf9f7;
    --off-white: #f2f0ec;
    --text-dark: #1a1a1a;
    --text-mid: #555;
    --text-light: #999;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Montserrat', sans-serif;
  }

  html { scroll-behavior: smooth; }
  body { background: var(--warm-white); color: var(--text-dark); font-family: var(--sans); font-weight: 300; 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: 0 48px; height: 92px;
    background: rgba(250,249,247,0.97);
    border-bottom: 1px solid rgba(61,26,64,0.08);
    backdrop-filter: blur(8px);
  }
  nav .logo img { height: 72px; width: auto; display: block; }
  nav ul { list-style: none; display: flex; gap: 40px; }
  nav ul li a {
    font-family: var(--sans); font-size: 11px; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--plum); text-decoration: none; transition: opacity 0.2s;
  }
  nav ul li a:hover { opacity: 0.5; }
  nav .nav-cta {
    font-family: var(--sans); font-size: 11px; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--warm-white); background: var(--plum);
    padding: 10px 22px; text-decoration: none; transition: background 0.2s;
  }
  nav .nav-cta:hover { background: var(--plum-light); }

  /* HERO */
  .hero {
    margin-top: 92px;
    min-height: calc(100vh - 92px);
    display: grid; grid-template-columns: 1fr 1fr;
    overflow: hidden;
  }
  .hero-text {
    display: flex; flex-direction: column; justify-content: center;
    padding: 80px 64px 80px 80px;
    background: var(--warm-white);
  }
  .hero-eyebrow {
    font-family: var(--sans); font-size: 10px; font-weight: 500;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--plum); margin-bottom: 28px;
    display: flex; align-items: center; gap: 12px;
  }
  .hero-eyebrow::after { content: ''; display: block; width: 40px; height: 1px; background: var(--plum); }
  .hero h1 {
    font-family: var(--serif); font-size: clamp(42px, 5vw, 72px);
    font-weight: 300; line-height: 1.1;
    color: var(--plum); margin-bottom: 24px; letter-spacing: -0.01em;
  }
  .hero h1 em { font-style: italic; font-weight: 300; }
  .hero p {
    font-family: var(--sans); font-size: 14px; font-weight: 300;
    line-height: 1.8; color: var(--text-mid);
    max-width: 400px; margin-bottom: 48px;
  }
  .hero-actions { display: flex; gap: 16px; align-items: center; }
  .btn-primary {
    font-family: var(--sans); font-size: 11px; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--warm-white); background: var(--plum);
    padding: 16px 36px; text-decoration: none; display: inline-block;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-primary:hover { background: var(--plum-light); transform: translateY(-1px); }
  .btn-ghost {
    font-family: var(--sans); font-size: 11px; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--plum); text-decoration: none;
    border-bottom: 1px solid var(--plum); padding-bottom: 2px; transition: opacity 0.2s;
  }
  .btn-ghost:hover { opacity: 0.5; }
  .hero-image { position: relative; overflow: hidden; }
  .hero-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
  .hero-image:hover img { transform: scale(1.04); }
  .hero-caption {
    position: absolute; bottom: 24px; left: 24px;
    font-family: var(--serif); font-style: italic; font-size: 13px;
    color: rgba(255,255,255,0.85); background: rgba(61,26,64,0.5);
    padding: 6px 12px; letter-spacing: 0.02em;
  }

  /* MARQUEE */
  .marquee-bar { background: var(--plum); padding: 14px 0; overflow: hidden; }
  .marquee-track {
    display: flex; gap: 60px; width: max-content;
    animation: marquee 30s linear infinite;
  }
  .marquee-track span { font-family: var(--serif); font-style: italic; font-size: 15px; color: rgba(255,255,255,0.7); white-space: nowrap; letter-spacing: 0.05em; }
  .marquee-track span.dot { color: rgba(255,255,255,0.3); font-style: normal; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* INTRO */
  .intro {
    padding: 120px 80px;
    display: grid; grid-template-columns: 1fr 2fr; gap: 80px;
    align-items: start; max-width: 1400px; margin: 0 auto;
  }
  .intro-label {
    font-family: var(--sans); font-size: 10px; font-weight: 500;
    letter-spacing: 0.25em; text-transform: uppercase; color: var(--plum); padding-top: 8px;
  }
  .intro-content h2 {
    font-family: var(--serif); font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 300; line-height: 1.2; color: var(--text-dark); margin-bottom: 32px;
  }
  .intro-content p { font-size: 15px; line-height: 1.9; color: var(--text-mid); max-width: 560px; }

  /* FEATURE CARDS */
  .features { background: var(--off-white); }
  .feature {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 600px; overflow: hidden;
  }
  .feature:nth-child(even) { direction: rtl; }
  .feature:nth-child(even) > * { direction: ltr; }
  .feature-img { overflow: hidden; position: relative; }
  .feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
  .feature:hover .feature-img img { transform: scale(1.03); }
  .feature-body {
    display: flex; flex-direction: column; justify-content: center;
    padding: 80px 72px; background: var(--warm-white);
  }
  .feature-number {
    font-family: var(--serif); font-size: 11px; color: var(--plum);
    letter-spacing: 0.2em; margin-bottom: 32px; opacity: 0.5;
  }
  .feature-body h3 {
    font-family: var(--serif); font-size: clamp(28px, 2.8vw, 44px);
    font-weight: 300; line-height: 1.2; color: var(--plum); margin-bottom: 24px;
  }
  .feature-body p { font-size: 14px; line-height: 1.9; color: var(--text-mid); margin-bottom: 40px; max-width: 420px; }
  .feature-link {
    font-family: var(--sans); font-size: 11px; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--plum); text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    border-bottom: 1px solid var(--plum); padding-bottom: 3px;
    width: fit-content; transition: gap 0.2s, opacity 0.2s;
  }
  .feature-link:hover { gap: 16px; opacity: 0.6; }
  .feature-link::after { content: '→'; }

  /* STATS */
  .stats {
    background: var(--plum); padding: 80px;
    display: grid; grid-template-columns: repeat(3, 1fr);
  }
  .stat { padding: 40px 60px; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
  .stat:last-child { border-right: none; }
  .stat-number { font-family: var(--serif); font-size: 64px; font-weight: 300; color: var(--warm-white); line-height: 1; margin-bottom: 12px; }
  .stat-label { font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

  /* CTA BANNER */
  .cta-banner {
    padding: 140px 80px; text-align: center;
    background: var(--warm-white); position: relative; overflow: hidden;
  }
  .cta-banner::before {
    content: 'PEDESTAL'; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--serif); font-size: 260px; font-weight: 300;
    color: rgba(61,26,64,0.03); white-space: nowrap; pointer-events: none; letter-spacing: 0.1em;
  }
  .cta-banner h2 { font-family: var(--serif); font-size: clamp(36px, 4vw, 60px); font-weight: 300; color: var(--plum); margin-bottom: 20px; position: relative; }
  .cta-banner p { font-size: 15px; color: var(--text-mid); margin-bottom: 48px; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.8; position: relative; }
  .cta-banner .btn-primary { position: relative; }

  /* NEWSLETTER */
  .newsletter {
    background: var(--off-white); padding: 80px;
    display: flex; align-items: center; justify-content: space-between; gap: 60px; flex-wrap: wrap;
  }
  .newsletter h3 { font-family: var(--serif); font-size: 32px; font-weight: 300; color: var(--plum); flex: 0 0 auto; }
  .newsletter-form { display: flex; gap: 0; flex: 1; max-width: 520px; }
  .newsletter-form input {
    flex: 1; padding: 14px 20px; border: 1px solid rgba(61,26,64,0.2); border-right: none;
    background: var(--warm-white); font-family: var(--sans); font-size: 13px; color: var(--text-dark);
    outline: none; transition: border-color 0.2s;
  }
  .newsletter-form input:focus { border-color: var(--plum); }
  .newsletter-form input::placeholder { color: var(--text-light); }
  .newsletter-form button {
    padding: 14px 28px; background: var(--plum); border: none; cursor: pointer;
    font-family: var(--sans); font-size: 11px; font-weight: 500;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--warm-white); transition: background 0.2s;
  }
  .newsletter-form button:hover { background: var(--plum-light); }

  /* FOOTER */
  footer { background: var(--plum); padding: 72px 80px 40px; }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
    padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 40px;
  }
  .footer-brand img { height: 52px; width: auto; margin-bottom: 24px; filter: brightness(10); }
  .footer-brand p { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.5); max-width: 260px; }
  .footer-col h4 { font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
  .footer-col ul li a:hover { color: white; }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; }
  .footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.05em; }

  /* ANIMATIONS */
  .fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 900px) {
    nav { padding: 0 24px; height: 80px; }
    nav .logo img { height: 56px; }
    nav ul { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-image { height: 50vw; }
    .hero-text { padding: 60px 32px; }
    .intro { grid-template-columns: 1fr; padding: 60px 32px; gap: 24px; }
    .feature { grid-template-columns: 1fr; }
    .feature:nth-child(even) { direction: ltr; }
    .feature-body { padding: 48px 32px; }
    .stats { grid-template-columns: 1fr; padding: 48px 32px; }
    .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 32px 0; }
    .cta-banner { padding: 80px 32px; }
    .newsletter { padding: 48px 32px; flex-direction: column; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    footer { padding: 48px 32px 32px; }
  }