:root {
    --navy: #0a1628;
    --navy-mid: #112240;
    --steel: #1e3a5f;
    --accent: #c8a96e;
    --accent-light: #e8c98e;
    --white: #f5f2ec;
    --muted: #8a9ab5;
    --light-rule: rgba(200,169,110,0.2);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--navy);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    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.4rem 4rem;
    background: rgba(10,22,40,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--light-rule);
  }

  .logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    color: var(--accent);
  }

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

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

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

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

  .nav-cta {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 2px;
    transition: all 0.2s !important;
  }

  .nav-cta:hover {
    background: var(--accent) !important;
    color: var(--navy) !important;
  }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 8rem 4rem 4rem;
    position: relative;
    overflow: hidden;
  }

  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(200,169,110,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,169,110,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridDrift 30s linear infinite;
  }

  @keyframes gridDrift {
    from { transform: translateY(0); }
    to { transform: translateY(60px); }
  }

  .hero-glow {
    position: absolute;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,169,110,0.08) 0%, transparent 70%);
    top: -200px; right: -200px;
    pointer-events: none;
  }

  .hero-content { position: relative; max-width: 780px; }

  .hero-label {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
  }

  .hero-headline {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    line-height: 1.12;
    margin-bottom: 1.8rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
  }

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

  .hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 580px;
    margin-bottom: 2.8rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
  }

  .hero-actions {
    display: flex; gap: 1.2rem; flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .btn-primary {
    background: var(--accent);
    color: var(--navy);
    border: none;
    padding: 0.9rem 2.2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
  }

  .btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,169,110,0.25);
  }

  .btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(245,242,236,0.3);
    padding: 0.9rem 2.2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
  }

  .btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
  }

  .hero-stats {
    display: flex; gap: 3rem; margin-top: 4rem; padding-top: 3rem;
    border-top: 1px solid var(--light-rule);
    opacity: 0;
    animation: fadeUp 0.8s ease 1s forwards;
  }

  .stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 2.2rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.3rem;
  }

  .stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 0.05em;
  }

  /* ── SECTION SHARED ── */
  section { padding: 6rem 4rem; }

  .section-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .section-sub {
    color: var(--muted);
    font-size: 1rem;
    max-width: 520px;
    line-height: 1.75;
  }

  /* ── ABOUT STRIP ── */
  #about {
    background: var(--navy-mid);
    border-top: 1px solid var(--light-rule);
    border-bottom: 1px solid var(--light-rule);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-text p {
    color: var(--muted);
    margin-bottom: 1.2rem;
    font-size: 1rem;
  }

  .about-credentials {
    display: flex; flex-direction: column; gap: 1.2rem;
  }

  .credential {
    display: flex; align-items: flex-start; gap: 1.2rem;
    padding: 1.4rem;
    border: 1px solid var(--light-rule);
    border-radius: 4px;
    background: rgba(200,169,110,0.03);
    transition: border-color 0.2s, transform 0.2s;
  }

  .credential:hover {
    border-color: rgba(200,169,110,0.4);
    transform: translateX(4px);
  }

  .cred-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
  }

  .cred-title {
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    color: var(--white);
  }

  .cred-detail {
    font-size: 0.82rem;
    color: var(--muted);
  }

  /* ── SERVICES ── */
  #services { background: var(--navy); }

  .services-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 3.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-rule);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--light-rule);
  }

  .service-card {
    background: var(--navy);
    padding: 2.5rem;
    transition: background 0.25s;
    cursor: default;
  }

  .service-card:hover { background: var(--navy-mid); }

  .service-num {
    font-family: 'DM Serif Display', serif;
    font-size: 0.85rem;
    color: var(--accent);
    opacity: 0.6;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
  }

  .service-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
  }

  .service-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.4rem;
  }

  .service-tags {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
  }

  .tag {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    color: var(--accent);
    border: 1px solid rgba(200,169,110,0.25);
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
  }

  /* ── WHY US ── */
  #why {
    background: var(--navy-mid);
    border-top: 1px solid var(--light-rule);
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }

  .why-item {
    padding: 2rem;
    border-left: 2px solid var(--light-rule);
    transition: border-color 0.2s;
  }

  .why-item:hover { border-color: var(--accent); }

  .why-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    color: var(--white);
  }

  .why-text {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.8;
  }

  /* ── FAQ ── */
  #faq {
    background: var(--navy);
    border-top: 1px solid var(--light-rule);
  }

  .faq-list {
    max-width: 760px;
    margin-top: 2.5rem;
  }

  .faq-item {
    border-bottom: 1px solid var(--light-rule);
    padding: 1.6rem 0;
  }

  .faq-q {
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem;
    margin-bottom: 0.7rem;
    color: var(--white);
  }

  .faq-a {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.85;
    max-width: 640px;
  }

  /* ── SCHEDULER ── */
  #schedule {
    background: var(--navy);
    border-top: 1px solid var(--light-rule);
  }

  .schedule-container {
    max-width: 900px;
    margin: 0 auto;
  }

  .schedule-intro {
    text-align: center;
    margin-bottom: 3rem;
  }

  .scheduler-widget {
    background: var(--navy-mid);
    border: 1px solid var(--light-rule);
    border-radius: 6px;
    overflow: hidden;
  }

  .scheduler-steps {
    display: flex;
    border-bottom: 1px solid var(--light-rule);
  }

  .step-tab {
    flex: 1;
    padding: 1rem;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    border-right: 1px solid var(--light-rule);
    transition: all 0.2s;
  }

  .step-tab:last-child { border-right: none; }

  .step-tab.active {
    background: rgba(200,169,110,0.08);
    color: var(--accent);
  }

  .step-tab.done {
    color: var(--accent);
    opacity: 0.5;
  }

  .scheduler-body { padding: 2.5rem; }

  /* Step 1 — Meeting Type */
  .meeting-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .meeting-type {
    border: 1px solid var(--light-rule);
    padding: 1.4rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
  }

  .meeting-type:hover, .meeting-type.selected {
    border-color: var(--accent);
    background: rgba(200,169,110,0.06);
  }

  .meeting-type-icon { font-size: 1.6rem; margin-bottom: 0.6rem; }

  .meeting-type-name {
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
  }

  .meeting-type-dur {
    font-size: 0.75rem;
    color: var(--accent);
  }

  /* Step 2 — Calendar */
  .cal-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 1.5rem;
  }

  .cal-nav {
    background: none;
    border: 1px solid var(--light-rule);
    color: var(--muted);
    width: 34px; height: 34px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
  }

  .cal-nav:hover { border-color: var(--accent); color: var(--accent); }

  .cal-month-year {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
  }

  .cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 2rem;
  }

  .cal-day-name {
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0.4rem 0;
  }

  .cal-day {
    text-align: center;
    padding: 0.55rem 0;
    border-radius: 3px;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.15s;
    border: 1px solid transparent;
  }

  .cal-day.empty { cursor: default; }
  .cal-day.past { color: var(--muted); opacity: 0.3; cursor: not-allowed; }
  .cal-day.available:hover { border-color: var(--accent); color: var(--accent); }
  .cal-day.selected { background: var(--accent); color: var(--navy); font-weight: 600; }
  .cal-day.today { border-color: rgba(200,169,110,0.3); }

  .time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
  }

  .time-slot {
    border: 1px solid var(--light-rule);
    padding: 0.55rem 0.4rem;
    border-radius: 3px;
    font-size: 0.8rem;
    text-align: center;
    cursor: pointer;
    color: var(--muted);
    transition: all 0.15s;
  }

  .time-slot:hover, .time-slot.selected {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(200,169,110,0.06);
  }

  .time-slot.selected {
    background: rgba(200,169,110,0.12);
  }

  /* Step 3 — Contact Form */
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .form-group {
    display: flex; flex-direction: column; gap: 0.4rem;
    margin-bottom: 0.5rem;
  }

  .form-group.full { grid-column: 1 / -1; }

  .form-group label {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(10,22,40,0.6);
    border: 1px solid var(--light-rule);
    color: var(--white);
    padding: 0.75rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    border-radius: 3px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }

  .form-group select option { background: var(--navy-mid); }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--accent);
  }

  .form-group textarea { resize: vertical; min-height: 90px; }

  /* Step 4 — Confirm */
  .confirm-summary {
    background: rgba(200,169,110,0.05);
    border: 1px solid var(--light-rule);
    border-radius: 4px;
    padding: 1.8rem;
    margin-bottom: 2rem;
  }

  .confirm-row {
    display: flex; justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(200,169,110,0.08);
    font-size: 0.9rem;
  }

  .confirm-row:last-child { border-bottom: none; }
  .confirm-label { color: var(--muted); }
  .confirm-val { font-weight: 500; }

  .success-state {
    text-align: center;
    padding: 3rem 0;
    display: none;
  }

  .success-icon { font-size: 3rem; margin-bottom: 1rem; }

  .success-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    color: var(--accent);
  }

  .success-msg { color: var(--muted); font-size: 0.95rem; }

  .scheduler-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 2.5rem;
    border-top: 1px solid var(--light-rule);
    background: rgba(10,22,40,0.4);
  }

  .step-indicator {
    font-size: 0.78rem;
    color: var(--muted);
    letter-spacing: 0.05em;
  }

  .scheduler-nav { display: flex; gap: 0.8rem; }

  /* ── FOOTER ── */
  footer {
    background: var(--navy-mid);
    border-top: 1px solid var(--light-rule);
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    color: var(--accent);
  }

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

  .footer-links { display: flex; gap: 2rem; list-style: none; }
  .footer-links a { color: var(--muted); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
  .footer-links a:hover { color: var(--accent); }

  .footer-copy {
    font-size: 0.78rem;
    color: var(--muted);
    opacity: 0.5;
  }

  /* ── MODAL backdrop ── */
  .modal-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 200;
    background: rgba(10,22,40,0.85);
    backdrop-filter: blur(6px);
    align-items: center; justify-content: center;
  }

  .modal-overlay.open { display: flex; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 1.2rem 1.5rem; }
    .nav-links { display: none; }
    section { padding: 4rem 1.5rem; }
    #hero { padding: 7rem 1.5rem 3rem; }
    .about-grid, .why-grid, .meeting-types, .form-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; gap: 1px; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
    .services-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    footer { flex-direction: column; gap: 1.5rem; text-align: center; }
    .time-slots { grid-template-columns: repeat(3, 1fr); }
  }
