  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1800&q=90');
    background-size: cover;
    background-position: center 30%;
    animation: hero-zoom 14s ease-in-out infinite alternate;
  }

  @keyframes hero-zoom {
    from { transform: scale(1.0); }
    to   { transform: scale(1.08); }
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      105deg,
      rgba(10,8,32,0.92) 0%,
      rgba(10,8,32,0.72) 48%,
      rgba(14,11,46,0.48) 100%
    );
  }

  .hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .hero-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(169,208,57,0.2);
    animation: float-p linear infinite;
  }

  @keyframes float-p {
    0%   { transform: translateY(100vh) scale(0); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.5; }
    100% { transform: translateY(-120px) scale(1); opacity: 0; }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1360px;
    margin: 0 auto;
    padding: 130px 56px 110px;
    width: 100%;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(169,208,57,0.3);
    border-radius: 20px;
    padding: 7px 16px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    animation: fade-up 0.8s 0.1s ease both;
  }

  .hero-badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #a9d039;
    animation: pulse-h 2s ease-in-out infinite;
  }

  @keyframes pulse-h {
    0%,100% { box-shadow: 0 0 0 0 rgba(169,208,57,0.6); }
    50%      { box-shadow: 0 0 0 7px rgba(169,208,57,0); }
  }

  .hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 6vw, 92px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 24px;
    max-width: 720px;
    animation: fade-up 0.8s 0.2s ease both;
  }

  .hero-title em {
    font-style: italic;
    color: #a9d039;
  }

  .hero-subtitle {
    font-family: "DM Sans", sans-serif;
    font-size: clamp(15px, 1.8vw, 18px);
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.62);
    max-width: 520px;
    margin-bottom: 48px;
    animation: fade-up 0.8s 0.3s ease both;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 76px;
    animation: fade-up 0.8s 0.4s ease both;
  }

  .hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .hero-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

  .hero-btn--primary { background: #a9d039; color: #0a0820; }
  .hero-btn--primary:hover {
    background: #bde44e;
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(169,208,57,0.38);
  }

  .hero-btn--ghost {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
  }
  .hero-btn--ghost:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-3px);
  }

  .hero-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    animation: fade-up 0.8s 0.55s ease both;
  }

  .hero-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-right: 32px;
  }

  .hero-stat strong {
    font-family: "Playfair Display", serif;
    font-size: 34px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
  }

  .hero-stat span {
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .hero-stat-sep {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.14);
    margin-right: 32px;
    flex-shrink: 0;
  }

  .hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: fade-up 0.8s 0.9s ease both;
  }

  .hero-scroll-mouse {
    width: 22px; height: 36px;
    border: 2px solid rgba(255,255,255,0.28);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
  }

  .hero-scroll-wheel {
    width: 4px; height: 8px;
    background: #a9d039;
    border-radius: 2px;
    animation: scroll-w 1.8s ease-in-out infinite;
  }

  @keyframes scroll-w {
    0%,100% { transform: translateY(0); opacity: 1; }
    50%      { transform: translateY(8px); opacity: 0.3; }
  }

  .hero-scroll span {
    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    writing-mode: vertical-rl;
  }

  @keyframes fade-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 768px) {
    .hero-content { padding: 110px 24px 90px; }
    .hero-scroll  { left: 24px; }
    .hero-subtitle br { display: none; }
    .hero-title   { font-size: clamp(30px, 9vw, 56px); line-height: 1.1; letter-spacing: -0.015em; }
    .hero-subtitle { font-size: 15px; margin-bottom: 36px; }
    .hero-actions { gap: 12px; margin-bottom: 48px; }
    .hero-btn     { padding: 12px 20px; font-size: 13px; }
    .hero-stat strong { font-size: 26px; }
    .hero-stat    { padding-right: 20px; }
    .hero-stat-sep { margin-right: 20px; height: 34px; }
    .hero-stats   { margin-bottom: 0; }
  }

  @media (max-width: 480px) {
    .hero-content { padding: 100px 20px 80px; }
    .hero-title   { font-size: clamp(28px, 10vw, 44px); line-height: 1.12; }
    .hero-badge   { font-size: 10px; padding: 6px 13px; }
    .hero-subtitle { font-size: 14px; }
    .hero-btn     { width: 100%; justify-content: center; padding: 13px 16px; }
    .hero-actions { flex-direction: column; gap: 10px; }
    .hero-stat-sep { display: none; }
    .hero-stat    { padding: 0 16px 0 0; }
    .hero-stats   { gap: 16px 0; flex-wrap: wrap; }
    .hero-scroll  { display: none; }
  }

  body {
    font-family: 'DM Sans', sans-serif;
    background: #f4f2ef;
    min-height: 100vh;
  }

  /* ══════════════════════════════
     TOP BAR
  ══════════════════════════════ */
  .hdr-topbar {
    background: var(--navy2);
    padding: 8px 0;
    border-bottom: 1px solid rgba(169,208,57,0.15);
  }

  .hdr-topbar-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .hdr-topbar-left {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .hdr-topbar-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
  }

  .hdr-topbar-item:hover { color: var(--green); }

  .hdr-topbar-item svg {
    width: 13px; height: 13px;
    fill: var(--green);
    flex-shrink: 0;
  }

  .hdr-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hdr-social {
    width: 28px; height: 28px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    transition: all 0.2s;
    letter-spacing: 0;
  }

  .hdr-social:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--navy);
  }

  /* ══════════════════════════════
     MAIN HEADER
  ══════════════════════════════ */
  .hdr-main {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease, background 0.3s ease;
  }

  .hdr-main.scrolled {
    box-shadow: 0 4px 32px rgba(10,8,32,0.12);
  }

  .hdr-main-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 48px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }

  /* ── LOGO ── */
  .hdr-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
  }

  .hdr-logo-mark {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--navy2);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
  }

  /* animated corner accent */
  .hdr-logo-mark::before {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 20px; height: 20px;
    background: var(--green);
    border-radius: 8px 0 12px 0;
  }

  .hdr-logo-mark span {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 900;
    color: var(--white);
    position: relative;
    z-index: 1;
    letter-spacing: -0.03em;
  }

  /* — swap the mark above for your real logo image: — */
  /* .hdr-logo-mark img { width:100%; height:100%; object-fit:contain; } */

  .hdr-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .hdr-logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 900;
    color: var(--navy2);
    letter-spacing: -0.01em;
  }

  .hdr-logo-sub {
    font-size: 10px;
    font-weight: 400;
    color: #9e9690;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  /* ── NAV ── */
  .hdr-nav {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .hdr-nav-item {
    position: relative;
    display: flex;
    align-items: center;
  }

  .hdr-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 13.5px;
    font-weight: 400;
    color: #3a3540;
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
    letter-spacing: 0.01em;
  }

  .hdr-nav-link:hover {
    color: var(--navy2);
    background: #f4f2ef;
  }

  .hdr-nav-link.active {
    color: var(--navy2);
    font-weight: 500;
  }

  /* active underline dot */
  .hdr-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--green);
  }

  /* dropdown arrow */
  .hdr-nav-arrow {
    width: 14px; height: 14px;
    opacity: 0.45;
    transition: transform 0.25s ease;
  }

  .hdr-nav-item:hover .hdr-nav-arrow { transform: rotate(180deg); opacity: 0.7; }

  /* dropdown */
  .hdr-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(10,8,32,0.14), 0 0 0 1px rgba(10,8,32,0.06);
    padding: 10px;
    min-width: 220px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 100;
  }

  .hdr-nav-item:hover .hdr-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
  }

  .hdr-dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    color: #3a3540;
    font-weight: 300;
    transition: background 0.2s, color 0.2s;
  }

  .hdr-dropdown-link:hover {
    background: #f4f2ef;
    color: var(--navy2);
  }

  .hdr-dropdown-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: #f4f2ef;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
  }

  .hdr-dropdown-divider {
    height: 1px;
    background: #f0ede8;
    margin: 6px 0;
  }

  /* ── CTA BUTTON ── */
  .hdr-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }

  .hdr-btn-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--navy2);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    white-space: nowrap;
  }

  .hdr-btn-contact:hover {
    background: var(--green);
    color: var(--navy2);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(169,208,57,0.3);
  }

  .hdr-btn-contact svg {
    width: 14px; height: 14px;
    fill: currentColor;
  }

  /* ══════════════════════════════
     HAMBURGER (mobile)
  ══════════════════════════════ */
  .hdr-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    z-index: 200;
  }

  .hdr-burger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--navy2);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }

  .hdr-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hdr-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hdr-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ══════════════════════════════
     MOBILE DRAWER
  ══════════════════════════════ */
  .hdr-mobile-drawer {
    position: fixed;
    inset: 0;
    background: var(--navy2);
    z-index: 150;
    display: flex;
    flex-direction: column;
    padding: 100px 32px 48px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .hdr-mobile-drawer.open { transform: translateX(0); }

  .hdr-mobile-link {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .hdr-mobile-link:hover { color: var(--green); }

  .hdr-mobile-link span {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.1em;
  }

  .hdr-mobile-cta {
    margin-top: 32px;
    padding: 14px 24px;
    background: var(--green);
    color: var(--navy2);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: opacity 0.2s;
  }

  .hdr-mobile-cta:hover { opacity: 0.88; }

  /* ══════════════════════════════
     BOTTOM GREEN ACCENT LINE
  ══════════════════════════════ */
  .hdr-accent-line {
    height: 3px;
    background: linear-gradient(90deg, var(--green) 0%, var(--navy2) 60%, transparent 100%);
  }

  /* ══════════════════════════════
     DEMO HERO (to show header in context)
  ══════════════════════════════ */
  .demo-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    background: #f4f2ef;
    color: #9e9690;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .demo-hero svg { width: 40px; height: 40px; opacity: 0.25; }

  /* ══════════════════════════════
     RESPONSIVE
  ══════════════════════════════ */
  @media (max-width: 1024px) {
    .hdr-nav, .hdr-cta { display: none; }
    .hdr-burger { display: flex; }
    .hdr-main-inner { padding: 0 24px; }
    .hdr-topbar-inner { padding: 0 24px; }
    .hdr-topbar-left .hdr-topbar-item:not(:first-child) { display: none; }
  }