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

  :root {
    --cream: #FAF8F4;
    --cream-dark: #F0EBE0;
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --navy: #1C1C2E;
    --navy-light: #2A2A3E;
    --text: #1C1C2E;
    --text-muted: #6B6478;
    --white: #FFFFFF;
    --border: #E2D9CC;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAVIGATION ── */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-logo {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: 0.5px;
    cursor: pointer;
  }

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

  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.2s;
    cursor: pointer;
  }

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

  .nav-ctas {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  /* ── BUTTONS ── */
  .btn-primary {
    background: var(--navy);
    color: var(--cream);
    border: none;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
    border-radius: 2px;
  }

  .btn-primary:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
  }

  .btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    padding: 11px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    border-radius: 2px;
  }

  .btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-1px);
  }

  .btn-gold {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 13px 28px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    border-radius: 2px;
  }

  .btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
  }

  /* ── PAGES ── */
  .page { display: none; padding-top: 68px; }
  .page.active { display: block; }

  /* ── SECTIONS ── */
  .section { padding: 88px 48px; }
  .section-cream { background: var(--cream); }
  .section-cream-dark { background: var(--cream-dark); }
  .section-white { background: var(--white); }
  .section-navy { background: var(--navy); }

  .section-inner {
    max-width: 1080px;
    margin: 0 auto;
  }

  .section-center { text-align: center; }

  /* ── TYPOGRAPHY ── */
  .eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 700;
  }

  h1.display {
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 24px;
    font-weight: 700;
  }

  h1.display .gold { color: var(--gold); }

  h2.heading {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.5vw, 44px);
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 18px;
    font-weight: 600;
  }

  h2.heading .gold { color: var(--gold); }
  h2.heading.light { color: var(--cream); }
  h2.heading.light .gold { color: var(--gold-light); }

  h3.subheading {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 600;
  }

  .lead {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 580px;
    margin-bottom: 36px;
  }

  .lead.centered { margin-left: auto; margin-right: auto; text-align: center; }

  .body-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
  }

  /* ── GOLD DIVIDER ── */
  .gold-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 28px auto;
    width: fit-content;
  }

  .gold-divider::before,
  .gold-divider::after {
    content: '';
    display: block;
    width: 64px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
  }

  .gold-divider-diamond {
    color: var(--gold);
    font-size: 10px;
  }

  /* ── HERO ── */
  .hero {
    min-height: calc(100vh - 68px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 80px 48px;
  }

  .hero-headline {
    font-family: var(--font-display);
    font-size: clamp(44px, 5.5vw, 72px);
    line-height: 1.08;
    color: var(--navy);
    margin-bottom: 28px;
    font-weight: 700;
  }

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

  .hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.2px;
  }

  .trust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }

  .hero-visual {
    background: var(--cream-dark);
    border-radius: 4px;
    padding: 48px 36px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    position: relative;
    overflow: hidden;
  }

  .hero-visual::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.08);
  }

  .notebook {
    width: 110px;
    height: 148px;
    background: var(--navy);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 4px 6px 20px rgba(28,28,46,0.25);
    position: relative;
  }

  .notebook::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 10px;
    background: rgba(201,168,76,0.3);
    border-radius: 3px 0 0 3px;
  }

  .notebook-monogram {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 22px;
    letter-spacing: 1px;
  }

  .hero-accessories {
    display: flex;
    gap: 16px;
    align-items: flex-end;
  }

  .pen {
    width: 80px;
    height: 8px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    border-radius: 4px;
    transform: rotate(-15deg);
    margin-bottom: 8px;
  }

  .mug {
    width: 52px;
    height: 44px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 0 0 8px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 8px;
    color: var(--gold);
    position: relative;
  }

  .mug::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 8px;
    width: 10px;
    height: 16px;
    border: 1.5px solid var(--border);
    border-left: none;
    border-radius: 0 8px 8px 0;
  }

  .plant {
    font-size: 32px;
    opacity: 0.7;
  }

  .hero-caption {
    margin-top: 20px;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-style: italic;
  }

  /* ── VS SECTION ── */
  .vs-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    margin-top: 48px;
    border: 1px solid var(--border);
  }

  .vs-col {
    padding: 44px 40px;
  }

  .vs-col-bad { background: var(--white); }
  .vs-col-good { background: var(--cream-dark); }

  .vs-col-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .vs-col-bad .vs-col-label { color: #A04040; }
  .vs-col-good .vs-col-label { color: #3A7A3A; }

  .vs-badge {
    background: var(--gold);
    color: var(--navy);
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }

  .vs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .vs-list li {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.5;
  }

  .vs-list li .icon { flex-shrink: 0; margin-top: 1px; }
  .vs-list li.bad .icon { color: #B04040; }
  .vs-list li.good .icon { color: #3A8A3A; }

  /* ── SERVICE CARDS ── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 48px;
  }

  .service-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 28px 20px;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border-top: 3px solid var(--gold);
  }

  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(28,28,46,0.10);
    border-color: var(--gold);
  }

  .service-icon { font-size: 28px; margin-bottom: 12px; }

  .service-name {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 600;
  }

  .service-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .service-arrow { color: var(--gold); font-size: 18px; }

  /* ── PROCESS STEPS ── */
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 48px;
  }

  .step {
    background: var(--navy-light);
    padding: 36px 24px;
    text-align: center;
    position: relative;
  }

  .step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 18px;
    z-index: 1;
  }

  .step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
  }

  .step-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 8px;
    letter-spacing: 0.2px;
  }

  .step-text {
    font-size: 12px;
    color: #A89F8C;
    line-height: 1.6;
  }

  /* ── DUAL SPLIT ── */
  .dual-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 48px;
    border: 1px solid var(--border);
  }

  .split-panel {
    padding: 52px 44px;
    position: relative;
  }

  .split-panel:first-child {
    border-right: 1px solid var(--border);
    background: var(--white);
  }

  .split-panel:last-child {
    background: var(--cream-dark);
  }

  .split-icon { font-size: 36px; margin-bottom: 20px; }

  .split-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    font-weight: 700;
  }

  .split-title {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.2;
    font-weight: 600;
  }

  .split-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 28px;
  }

  /* ── CHECK LISTS ── */
  .check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }

  .check-list li {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.5;
  }

  .check-list li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .x-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }

  .x-list li {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.5;
  }

  .x-list li::before {
    content: '✗';
    color: #B04040;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* ── VALUE CARDS ── */
  .value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
  }

  .value-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 32px 28px;
    border-left: 3px solid var(--gold);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(28,28,46,0.08);
  }

  .value-card-icon { font-size: 28px; margin-bottom: 14px; }

  .value-card-title {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 600;
  }

  .value-card-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* ── BIG NUMBER ── */
  .big-number {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
  }

  /* ── FORM STYLES ── */
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
  }

  .form-panel {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 40px 36px;
  }

  .form-tag {
    display: inline-block;
    background: #FFF8EC;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    margin-bottom: 16px;
    font-weight: 700;
  }

  .form-title {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 28px;
    font-weight: 600;
  }

  .field {
    margin-bottom: 18px;
  }

  .field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .field input,
  .field select,
  .field textarea {
    width: 100%;
    background: var(--cream);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 11px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    border-radius: 2px;
    -webkit-appearance: none;
  }

  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    border-color: var(--gold);
  }

  .field textarea { height: 96px; resize: vertical; }

  /* ── FOOTER ── */
  .footer {
    background: var(--navy);
    padding: 64px 48px 32px;
  }

  .footer-grid {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }

  .footer-logo {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--cream);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
  }

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

  .footer-desc {
    font-size: 13px;
    color: #A89F8C;
    line-height: 1.75;
    max-width: 220px;
    margin-bottom: 24px;
  }

  .footer-social {
    display: flex;
    gap: 10px;
  }

  .social-icon {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    text-decoration: none;
    border-radius: 2px;
  }

  .social-icon:hover {
    background: rgba(201,168,76,0.15);
    border-color: var(--gold);
  }

  .footer-col-title {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    font-weight: 700;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    font-size: 13px;
    color: #A89F8C;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
  }

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

  .footer-bottom {
    max-width: 1080px;
    margin: 28px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-copy {
    font-size: 12px;
    color: #6B6478;
  }

  .footer-legal {
    display: flex;
    gap: 20px;
  }

  .footer-legal a {
    font-size: 12px;
    color: #6B6478;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
  }

  .footer-legal a:hover { color: var(--gold); }

  /* ── BIG CTA SECTION ── */
  .big-cta {
    text-align: center;
    padding: 88px 48px;
    background: var(--cream-dark);
    border-top: 1px solid var(--border);
  }

  .big-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
  }

  /* ── PAGE HEROES ── */
  .page-hero {
    text-align: center;
    padding: 96px 48px 80px;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
  }

  /* ── SERVICE DETAIL CARDS ── */
  .service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
  }

  .service-detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 36px 32px;
    border-top: 3px solid var(--gold);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .service-detail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(28,28,46,0.08);
  }

  .service-detail-icon { font-size: 32px; margin-bottom: 16px; }

  .service-detail-title {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 600;
  }

  .service-detail-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .service-detail-deliverables {
    margin-bottom: 24px;
  }

  .deliverables-title {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 700;
  }

  /* ── CONTACT DIRECT ── */
  .contact-direct {
    text-align: center;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
  }

  .contact-email {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--gold);
    font-weight: 600;
    margin-top: 8px;
  }

  /* ── PAIN GRID ── */
  .pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
  }

  .pain-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 28px 24px;
    border-top: 3px solid #B04040;
  }

  .pain-card-x {
    font-size: 22px;
    color: #B04040;
    margin-bottom: 12px;
    font-weight: 700;
  }

  .pain-card-title {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 600;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .nav { padding: 0 24px; }
    .nav-links { display: none; }
    .section { padding: 64px 24px; }
    .hero { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; min-height: auto; }
    .hero-visual { display: none; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .step:not(:last-child)::after { display: none; }
    .dual-split { grid-template-columns: 1fr; }
    .split-panel:first-child { border-right: none; border-bottom: 1px solid var(--border); }
    .value-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .vs-grid { grid-template-columns: 1fr; }
    .vs-badge { display: none; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .pain-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 600px) {
    .hero-headline { font-size: 36px; }
    .services-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-ctas .btn-outline { display: none; }
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .page.active .hero-headline,
  .page.active .page-hero h1 {
    animation: fadeUp 0.5s ease both;
  }

  .page.active .hero-btns {
    animation: fadeUp 0.5s ease 0.1s both;
  }

  @media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
  }
