:root {
    --olive: #7B8B3A;
    --olive-dark: #5A6A1E;
    --olive-light: #A3B25C;
    --gold: #C4A962;
    --cream: #FAF8F3;
    --sand: #F0ECE2;
    --charcoal: #2A2A2A;
    --slate: #5A5A5A;
    --white: #FFFFFF;
    --shadow-soft: 0 4px 30px rgba(0,0,0,0.06);
    --shadow-medium: 0 8px 40px rgba(0,0,0,0.1);
    --shadow-heavy: 0 20px 60px rgba(0,0,0,0.12);
    --radius: 16px;
    --radius-sm: 10px;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
    line-height: 1.7;
  }

  /* ── NOISE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
  }

  /* ── NAVIGATION ── */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  nav.scrolled {
    background: rgba(250, 248, 243, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 30px rgba(0,0,0,0.06);
    padding: 12px 0;
  }

  .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--olive-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
  }

  .logo span {
    color: var(--olive-light);
    font-weight: 400;
  }

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

  .nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--olive);
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-links a:hover { color: var(--olive); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    background: var(--olive) !important;
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.8px;
    transition: all 0.3s !important;
  }

  .nav-cta:hover {
    background: var(--olive-dark) !important;
    transform: translateY(-1px);
  }

  .nav-cta::after { display: none !important; }

  .mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }

  .mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    margin: 6px 0;
    transition: all 0.3s;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--sand) 40%, #e8e4d4 100%);
  }

  .hero-bg::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 139, 58, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
  }

  .hero-bg::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 169, 98, 0.06) 0%, transparent 70%);
    bottom: -50px;
    left: 10%;
  }

  .hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .hero-content { max-width: 560px; }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(123, 139, 58, 0.1);
    border: 1px solid rgba(123, 139, 58, 0.2);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--olive-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out both;
  }

  .hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--olive);
    animation: pulse-dot 2s ease-in-out infinite;
  }

  @keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--olive);
  }

  .hero p {
    font-size: 17px;
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
  }

  .hero-buttons {
    display: flex;
    gap: 16px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--olive);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 20px rgba(123, 139, 58, 0.3);
  }

  .btn-primary:hover {
    background: var(--olive-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(123, 139, 58, 0.4);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--charcoal);
    padding: 16px 36px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border: 1.5px solid rgba(42, 42, 42, 0.2);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .btn-secondary:hover {
    border-color: var(--olive);
    color: var(--olive);
    transform: translateY(-2px);
  }

  /* DNA Helix Visual */
  .hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
  }

  .dna-container {
    width: 400px;
    height: 520px;
    position: relative;
  }

  .dna-canvas {
    width: 100%;
    height: 100%;
    display: block;
  }

  /* Glow backdrop behind canvas */
  .dna-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(123, 139, 58, 0.08) 0%, rgba(196, 169, 98, 0.04) 40%, transparent 70%);
    filter: blur(30px);
    pointer-events: none;
    animation: glow-pulse 4s ease-in-out infinite;
  }

  @keyframes glow-pulse {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
  }

  /* ── FLOAT CARDS ── */
  .hero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    border: 1px solid rgba(255,255,255,0.6);
    animation: float 5s ease-in-out infinite;
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 3;
  }

  .hero-float-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 40px rgba(123, 139, 58, 0.15), 0 2px 4px rgba(0,0,0,0.05);
  }

  .hero-float-card.card-1 {
    top: 30px;
    right: -30px;
    animation-delay: 0s;
    animation-duration: 5s;
  }

  .hero-float-card.card-2 {
    bottom: 50px;
    left: -40px;
    animation-delay: -2.5s;
    animation-duration: 5.5s;
  }

  .float-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
  }

  .float-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .float-card-icon.icon-dna {
    background: linear-gradient(135deg, rgba(123, 139, 58, 0.12), rgba(163, 178, 92, 0.18));
  }

  .float-card-icon.icon-time {
    background: linear-gradient(135deg, rgba(196, 169, 98, 0.12), rgba(196, 169, 98, 0.2));
  }

  .float-card-text { display: flex; flex-direction: column; }

  .float-card-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: 0.2px;
    line-height: 1.2;
  }

  .float-card-value {
    font-size: 12px;
    color: var(--slate);
    margin-top: 2px;
    font-weight: 500;
  }

  .float-card-bar {
    height: 4px;
    border-radius: 4px;
    background: var(--sand);
    overflow: hidden;
  }

  .float-card-bar-fill {
    height: 100%;
    border-radius: 4px;
    animation: bar-fill 2s ease-out 1s both;
  }

  .float-card-bar-fill.fill-green {
    width: 82%;
    background: linear-gradient(90deg, var(--olive), var(--olive-light));
  }

  .float-card-bar-fill.fill-gold {
    width: 65%;
    background: linear-gradient(90deg, var(--gold), #d4bc7a);
  }

  @keyframes bar-fill {
    from { width: 0%; }
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
  }

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

  /* ── STATS BAR ── */
  .stats-bar {
    background: var(--white);
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    padding: 40px 0;
  }

  .stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }

  .stat-item {
    text-align: center;
    position: relative;
  }

  .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,0.08);
  }

  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--olive);
    line-height: 1;
    margin-bottom: 6px;
  }

  .stat-label {
    font-size: 13px;
    color: var(--slate);
    font-weight: 500;
  }

  /* ── SECTION STYLES ── */
  .section {
    padding: 100px 0;
  }

  .section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
  }

  .section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 16px;
  }

  .section-subtitle {
    font-size: 16px;
    color: var(--slate);
    line-height: 1.7;
  }

  /* ── PACKAGES ── */
  .packages-section {
    background: var(--white);
  }

  .packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .package-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid transparent;
  }

  .package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--olive), var(--olive-light));
    opacity: 0;
    transition: opacity 0.4s;
  }

  .package-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(123, 139, 58, 0.15);
  }

  .package-card:hover::before { opacity: 1; }

  .package-card.featured {
    background: linear-gradient(135deg, var(--olive-dark) 0%, #4A5A12 100%);
    color: var(--white);
  }

  .package-card.featured::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--gold), var(--olive-light));
  }

  .package-card.featured .package-desc,
  .package-card.featured .package-feature,
  .package-card.featured .package-price-note {
    color: rgba(255,255,255,0.75);
  }

  .package-card.featured .package-price {
    color: var(--white);
  }

  .package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
  }

  .package-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    background: rgba(123, 139, 58, 0.1);
  }

  .package-card.featured .package-icon {
    background: rgba(255,255,255,0.12);
  }

  .package-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .package-desc {
    font-size: 14px;
    color: var(--slate);
    margin-bottom: 24px;
    line-height: 1.6;
  }

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

  .package-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--slate);
  }

  .package-feature svg {
    flex-shrink: 0;
    margin-top: 3px;
  }

  .package-card.featured .package-feature svg circle {
    fill: rgba(255,255,255,0.2);
  }

  .package-card.featured .package-feature svg path {
    stroke: var(--white);
  }

  .package-divider {
    height: 1px;
    background: rgba(0,0,0,0.07);
    margin-bottom: 24px;
  }

  .package-card.featured .package-divider {
    background: rgba(255,255,255,0.15);
  }

  .package-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
  }

  .package-price {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--olive-dark);
  }

  .package-currency {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.7;
  }

  .package-price-note {
    font-size: 13px;
    color: var(--slate);
    margin-bottom: 24px;
  }

  .package-sub-prices {
    display: flex;
    gap: 16px;
    margin-bottom: 6px;
    flex-wrap: wrap;
  }

  .sub-price-tag {
    background: rgba(123, 139, 58, 0.08);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--olive-dark);
  }

  .package-card.featured .sub-price-tag {
    background: rgba(255,255,255,0.12);
    color: var(--white);
  }

  .package-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s;
    background: var(--olive);
    color: var(--white);
  }

  .package-btn:hover {
    background: var(--olive-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(123, 139, 58, 0.3);
  }

  .package-card.featured .package-btn {
    background: var(--white);
    color: var(--olive-dark);
  }

  .package-card.featured .package-btn:hover {
    background: var(--sand);
  }

  /* ── HOW IT WORKS ── */
  .how-section {
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }

  .how-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 139, 58, 0.04) 0%, transparent 70%);
    top: -80px;
    left: -80px;
  }

  .how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
  }

  /* Connecting line between rows */
  .how-grid::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(123, 139, 58, 0.15), rgba(123, 139, 58, 0.15), transparent);
    z-index: 0;
  }

  .how-step {
    background: var(--white);
    border-radius: var(--radius);
    padding: 0;
    position: relative;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.03);
  }

  .how-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(123, 139, 58, 0.12);
    border-color: rgba(123, 139, 58, 0.12);
  }

  .how-step-top {
    padding: 28px 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .how-step-number {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    background: var(--olive);
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.4s;
    box-shadow: 0 4px 12px rgba(123, 139, 58, 0.25);
  }

  .how-step:hover .how-step-number {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(123, 139, 58, 0.35);
  }

  .how-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(123, 139, 58, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
  }

  .how-step:hover .how-step-icon {
    background: rgba(123, 139, 58, 0.1);
    transform: scale(1.05);
  }

  .how-step-body {
    padding: 0 28px 28px;
  }

  .how-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--charcoal);
    transition: color 0.3s;
  }

  .how-step:hover h3 {
    color: var(--olive-dark);
  }

  .how-step p {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.75;
  }

  .how-step-bar {
    height: 3px;
    background: linear-gradient(90deg, var(--olive), var(--olive-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .how-step:hover .how-step-bar {
    transform: scaleX(1);
  }

  /* ── ABOUT ── */
  .about-section {
    background: var(--white);
  }

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

  .about-image-area {
    position: relative;
  }

  .about-image-frame {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    background: linear-gradient(145deg, var(--sand), var(--cream));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(123, 139, 58, 0.05), transparent);
  }

  .about-dna-icon {
    font-size: 120px;
    opacity: 0.15;
    filter: grayscale(0.3);
  }

  .about-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius);
    background: var(--olive);
    opacity: 0.06;
  }

  .about-content { max-width: 520px; }

  .about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
  }

  .about-content p {
    font-size: 15px;
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .about-credentials {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .credential {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
  }

  .credential-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(123, 139, 58, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  /* ── EPIGENETICS BANNER ── */
  .epi-banner {
    background: linear-gradient(135deg, var(--olive-dark) 0%, #4A5A12 60%, #3D4C0E 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }

  .epi-banner::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    top: -200px;
    right: -100px;
  }

  .epi-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .epi-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
  }

  .epi-banner p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 12px;
  }

  .epi-quote {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
    margin-top: 32px;
    opacity: 0.95;
  }

  /* ── FAQ ── */
  .faq-section {
    background: var(--cream);
    position: relative;
  }

  .faq-grid {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .faq-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
  }

  .faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--olive), var(--olive-light));
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity 0.4s;
  }

  .faq-item:hover {
    box-shadow: 0 6px 24px rgba(123, 139, 58, 0.08);
    border-color: rgba(123, 139, 58, 0.08);
    transform: translateX(2px);
  }

  .faq-item.open::before { opacity: 1; }

  .faq-item.open {
    box-shadow: 0 8px 32px rgba(123, 139, 58, 0.1);
    border-color: rgba(123, 139, 58, 0.12);
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 28px 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal);
    text-align: left;
    gap: 20px;
    transition: color 0.3s;
  }

  .faq-item:hover .faq-question,
  .faq-item.open .faq-question {
    color: var(--olive-dark);
  }

  .faq-num {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--olive);
    opacity: 0.5;
    margin-right: 14px;
    flex-shrink: 0;
    width: 24px;
    transition: opacity 0.3s;
  }

  .faq-item.open .faq-num,
  .faq-item:hover .faq-num {
    opacity: 1;
  }

  .faq-q-text {
    flex: 1;
  }

  .faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(123, 139, 58, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .faq-icon svg {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .faq-item:hover .faq-icon {
    background: rgba(123, 139, 58, 0.12);
  }

  .faq-item.open .faq-icon {
    background: var(--olive);
    border-radius: 10px;
    transform: rotate(0deg);
  }

  .faq-item.open .faq-icon svg {
    transform: rotate(45deg);
  }

  .faq-item.open .faq-icon svg line {
    stroke: var(--white);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .faq-answer-inner {
    padding: 0 28px 28px 70px;
    font-size: 14.5px;
    color: var(--slate);
    line-height: 1.8;
    position: relative;
  }

  .faq-answer-inner::before {
    content: '';
    position: absolute;
    left: 44px;
    top: 0;
    width: 1px;
    height: calc(100% - 28px);
    background: rgba(123, 139, 58, 0.12);
  }

  /* ── CONTACT ── */
  .contact-section {
    background: var(--white);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .contact-info > p {
    font-size: 15px;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 40px;
  }

  .contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    transition: transform 0.3s;
  }

  .contact-card:hover { transform: translateX(4px); }

  .contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(123, 139, 58, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-card-text h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 2px;
  }

  .contact-card-text p {
    font-size: 14px;
    color: var(--slate);
  }

  .contact-card-text a {
    color: var(--olive);
    text-decoration: none;
    font-weight: 500;
  }

  .contact-form-area {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 40px;
  }

  .contact-form-area h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 24px;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1.5px solid rgba(0,0,0,0.08);
    background: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--charcoal);
    transition: border-color 0.3s;
    outline: none;
  }

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

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

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-submit {
    width: 100%;
    padding: 14px;
    background: var(--olive);
    color: var(--white);
    border: none;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
  }

  .form-submit:hover {
    background: var(--olive-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(123, 139, 58, 0.3);
  }

  /* ── FOOTER ── */
  footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 60px 0 30px;
  }

  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
  }

  .footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
    display: inline-block;
  }

  .footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 320px;
  }
  .footer-socials {
    display: flex;
    gap: 14px;
    margin-top: 28px;
  }
  .footer-social {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.45);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .footer-social:hover {
    background: var(--olive);
    border-color: var(--olive);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(123,139,58,0.35);
  }

  .footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.4);
  }

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

  .footer-col a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
  }

  .footer-col a:hover { color: var(--white); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image-area { order: -1; }
    .about-image-frame { aspect-ratio: 16/9; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .packages-grid { grid-template-columns: 1fr; }
    .how-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-item:not(:last-child)::after { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .section { padding: 64px 0; }
    .section-inner, .nav-inner { padding: 0 20px; }
    .hero-inner { padding: 0 20px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  }

  /* ── TOAST NOTIFICATION ── */
  .toast {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 10000;
    padding: 20px 28px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    max-width: 420px;
    box-shadow: var(--shadow-heavy);
    animation: toastIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .toast.success {
    background: #f0f7e6;
    border: 1px solid rgba(123, 139, 58, 0.3);
    color: var(--olive-dark);
  }

  .toast.error {
    background: #fef2f2;
    border: 1px solid rgba(220, 38, 38, 0.2);
    color: #991b1b;
  }

  .toast-icon { font-size: 22px; flex-shrink: 0; margin-top: -2px; }

  .toast-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: inherit;
    opacity: 0.5;
    transition: opacity 0.2s;
  }

  .toast-close:hover { opacity: 1; }

  .toast a { color: var(--olive); font-weight: 600; }

  @keyframes toastIn {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
  }

  @keyframes toastOut {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(40px); }
  }

  /* ── FORM LOADING ── */
  .form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  .form-submit .spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
  }

  @keyframes spin {
    to { transform: rotate(360deg); }
  }

  /* Honeypot */
  .hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

  /* ── CART NOTIFICATION ── */
  .cart-notification {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 10000;
    padding: 16px 24px;
    border-radius: 12px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 1px solid rgba(123,139,58,0.15);
    font-size: 14px;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: toastIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  /* ── SCROLL ANIMATIONS ── */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }