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

  :root {
    --navy: #0D1B2A;
    --charcoal: #1E2D3D;
    --gold: #C9A96E;
    --gold-light: #E8CFAA;
    --ivory: #F7F3EE;
    --ivory-warm: #EDE7DC;
    --slate: #8B9BB4;
    --white: #FFFFFF;
    --text-dark: #0D1B2A;
    --text-mid: #3A4F63;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--navy);
    color: var(--ivory);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 200;
    padding: 20px 60px;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(13,27,42,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,169,110,0.15);
    transition: background 0.3s;
  }
  .nav-logo {
    display: flex; align-items: center;
    text-decoration: none;
  }
  .nav-logo img {
    height: 54px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    background: rgba(255,255,255,0.97);
    border-radius: 8px;
    padding: 5px 14px;
  }
  .nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 600;
    color: var(--gold); letter-spacing: 0.03em;
  }
  /* ─── BRANDMARK LOGO (CSS/SVG wordmark) ─── */
  .brandmark { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; line-height: 1; }
  .brandmark .bm-badge {
    width: 40px; height: 40px; flex: 0 0 auto;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--gold);
    border: 1px solid rgba(201,169,110,0.5); border-radius: 10px;
    background: linear-gradient(150deg, rgba(201,169,110,0.16), rgba(201,169,110,0.02));
    transition: background 0.25s, border-color 0.25s;
  }
  .brandmark:hover .bm-badge { background: linear-gradient(150deg, rgba(201,169,110,0.30), rgba(201,169,110,0.05)); border-color: rgba(201,169,110,0.85); }
  .brandmark .bm-badge svg { width: 23px; height: 23px; display: block; }
  .brandmark .bm-word { font-family: 'Cormorant Garamond',serif; font-weight: 600; font-size: 1.45rem; letter-spacing: 0.01em; white-space: nowrap; }
  .brandmark .bm-a { color: var(--ivory); }
  .brandmark .bm-b { color: var(--gold); font-style: italic; }
  footer .footer-logo.brandmark { justify-content: center; }
  footer .footer-logo.brandmark .bm-badge { width: 32px; height: 32px; border-radius: 8px; }
  footer .footer-logo.brandmark .bm-badge svg { width: 18px; height: 18px; }
  footer .footer-logo.brandmark .bm-word { font-size: 1.15rem; }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    color: var(--slate); text-decoration: none;
    font-size: 0.78rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    transition: color 0.25s;
  }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold); padding: 9px 22px;
    border-radius: 2px; cursor: pointer;
    font-size: 0.75rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s;
  }
  .nav-cta:hover { background: var(--gold); color: var(--navy); }

  /* Hamburger */
  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
  }
  .hamburger span {
    display: block; width: 24px; height: 1.5px;
    background: var(--ivory); transition: all 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* Mobile Menu Overlay */
  .mobile-menu {
    display: none; position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(13,27,42,0.98);
    z-index: 190; flex-direction: column;
    align-items: center; justify-content: center; gap: 36px;
    opacity: 0; transition: opacity 0.3s;
  }
  .mobile-menu.open { display: flex; opacity: 1; }
  .mobile-menu a {
    color: var(--ivory); text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 300;
    letter-spacing: 0.06em;
    transition: color 0.25s;
  }
  .mobile-menu a:hover { color: var(--gold); }
  .mobile-menu .mobile-cta {
    margin-top: 16px;
    background: var(--gold); color: var(--navy);
    padding: 14px 36px; border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
  }

  /* ─── HERO ─── */
  #hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 60px 80px;
    position: relative; overflow: hidden;
  }
  .hero-bg-arc {
    position: absolute; right: -80px; top: 50%;
    transform: translateY(-50%);
    width: 680px; height: 680px;
  }
  .hero-photo {
    position: absolute; right: 0; top: 0; bottom: 0;
    width: 48%;
    overflow: hidden;
    z-index: 1;
  }
  .hero-photo img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
    filter: brightness(0.88) contrast(1.05) saturate(0.95);
  }
  .hero-photo::before {
    content: '';
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(to right, var(--navy) 0%, rgba(13,27,42,0.5) 35%, transparent 65%);
  }
  .hero-photo::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    height: 180px;
    background: linear-gradient(to top, var(--navy) 0%, transparent 100%);
  }
  .arc-ring {
    fill: none; stroke-width: 1;
    animation: rotateArc 20s linear infinite;
    transform-origin: center;
  }
  @keyframes rotateArc {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  .arc-static { fill: none; stroke-width: 0.5; }
  .eq-score-circle { animation: pulseGlow 4s ease-in-out infinite; }
  @keyframes pulseGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
  }
  .hero-content { position: relative; z-index: 2; max-width: 640px; }
  .hero-eyebrow {
    font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
  }
  .hero-eyebrow::before {
    content: ''; display: block;
    width: 32px; height: 1px; background: var(--gold);
  }
  h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5.5vw, 4.8rem);
    font-weight: 300; line-height: 1.1;
    color: var(--ivory); margin-bottom: 12px;
  }
  h1 em { font-style: italic; color: var(--gold); }
  .hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-weight: 400;
    color: var(--slate); margin-bottom: 32px; line-height: 1.5;
  }
  .hero-desc {
    font-size: 0.93rem; color: rgba(247,243,238,0.65);
    line-height: 1.75; max-width: 520px; margin-bottom: 44px;
  }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold); color: var(--navy);
    padding: 14px 32px; border: none; border-radius: 2px;
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; text-decoration: none;
    transition: all 0.25s; display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-secondary {
    background: transparent; color: var(--ivory);
    padding: 14px 32px; border: 1px solid rgba(247,243,238,0.3);
    border-radius: 2px; font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; text-decoration: none;
    transition: all 0.25s; display: inline-block;
  }
  .btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
  .hero-stats {
    display: flex; gap: 48px; margin-top: 60px;
    padding-top: 40px; border-top: 1px solid rgba(201,169,110,0.2);
  }
  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem; font-weight: 600; color: var(--gold); line-height: 1;
  }
  .stat-label {
    font-size: 0.72rem; color: var(--slate);
    letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px;
  }

  /* ─── SECTION COMMON ─── */
  section { padding: 100px 60px; }
  .section-eyebrow {
    font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 16px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-eyebrow::before {
    content: ''; display: block;
    width: 28px; height: 1px; background: var(--gold);
  }
  h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300; line-height: 1.2;
    color: var(--ivory); margin-bottom: 16px;
  }
  h2 em { font-style: italic; color: var(--gold); }

  /* ─── CREDIBILITY BAR ─── */
  #credibility {
    background: var(--charcoal);
    padding: 36px 60px;
    border-top: 1px solid rgba(201,169,110,0.1);
    border-bottom: 1px solid rgba(201,169,110,0.1);
  }
  .cred-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center;
    gap: 48px; flex-wrap: wrap;
  }
  .cred-label {
    font-size: 0.68rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--slate);
    white-space: nowrap; flex-shrink: 0;
  }
  .cred-divider {
    width: 1px; height: 32px;
    background: rgba(201,169,110,0.2); flex-shrink: 0;
  }
  .cred-logos {
    display: flex; gap: 40px; align-items: center; flex-wrap: wrap;
  }
  .cred-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-weight: 600;
    color: rgba(139,155,180,0.5);
    letter-spacing: 0.04em;
    transition: color 0.25s;
  }
  .cred-logo:hover { color: rgba(201,169,110,0.7); }

  /* ─── ABOUT ─── */
  #about { background: var(--charcoal); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    max-width: 1200px; margin: 0 auto;
  }
  .about-portrait { position: relative; }
  .portrait-frame {
    width: 100%; aspect-ratio: 3/4;
    background: linear-gradient(145deg, rgba(201,169,110,0.15), rgba(13,27,42,0.5));
    border: 1px solid rgba(201,169,110,0.3);
    border-radius: 4px; position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .portrait-frame img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
  }
  .portrait-initials {
    font-family: 'Cormorant Garamond', serif;
    font-size: 7rem; font-weight: 300;
    color: rgba(201,169,110,0.4);
    letter-spacing: -0.02em;
  }
  .portrait-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--gold); color: var(--navy);
    padding: 16px 20px; border-radius: 3px;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    text-align: center; line-height: 1.4;
  }
  .about-text p {
    font-size: 0.95rem; color: rgba(247,243,238,0.7);
    line-height: 1.85; margin-bottom: 18px;
  }
  .about-text .pullquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-style: italic;
    color: var(--gold-light); line-height: 1.4;
    border-left: 2px solid var(--gold);
    padding-left: 24px; margin: 32px 0;
  }
  .cert-badges {
    display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px;
  }
  .cert-badge {
    border: 1px solid rgba(201,169,110,0.4);
    color: var(--gold); padding: 8px 16px;
    border-radius: 2px; font-size: 0.72rem;
    font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* Video embed in about */
  .about-video {
    margin-top: 36px;
    border-radius: 4px; overflow: hidden;
    border: 1px solid rgba(201,169,110,0.2);
    aspect-ratio: 16/9; position: relative;
  }
  .about-video iframe {
    width: 100%; height: 100%; border: none; display: block;
  }
  .video-label {
    font-size: 0.72rem; color: var(--slate);
    letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 10px;
  }

  /* ─── SERVICES ─── */
  #services { background: var(--navy); }
  .services-header { max-width: 1200px; margin: 0 auto 60px; }
  .services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px; max-width: 1200px; margin: 0 auto;
  }
  .service-card {
    background: var(--charcoal); padding: 44px 36px;
    transition: background 0.3s; cursor: default;
    position: relative; overflow: hidden;
  }
  .service-card::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--gold); transition: width 0.4s;
  }
  .service-card:hover { background: #243447; }
  .service-card:hover::after { width: 100%; }
  .service-icon { width: 44px; height: 44px; margin-bottom: 24px; color: var(--gold); }
  .service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 600;
    color: var(--ivory); margin-bottom: 14px; line-height: 1.3;
  }
  .service-card p { font-size: 0.88rem; color: var(--slate); line-height: 1.75; }
  .service-tag {
    display: inline-block; margin-top: 20px;
    font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold); opacity: 0.8;
  }

  /* ─── PACKAGES ─── */
  #packages { background: var(--ivory); padding: 100px 60px; }
  #packages .section-eyebrow { color: var(--gold); }
  #packages .section-eyebrow::before { background: var(--gold); }
  #packages h2 { color: var(--text-dark); }
  #packages h2 em { color: #8B6A3A; }
  .packages-sub {
    font-size: 0.95rem; color: var(--text-mid);
    max-width: 560px; margin-bottom: 56px; line-height: 1.7;
  }
  .packages-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; max-width: 1100px; margin: 0 auto;
  }
  .package-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 6px; padding: 40px 32px;
    position: relative; transition: transform 0.25s, box-shadow 0.25s;
  }
  .package-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
  .package-card.featured {
    background: var(--navy);
    border-color: var(--gold);
  }
  .package-card.featured h3 { color: var(--ivory); }
  .package-card.featured p { color: var(--slate); }
  .package-card.featured .pkg-feature { color: rgba(247,243,238,0.7); }
  .package-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: var(--navy);
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 4px 14px; border-radius: 20px;
  }
  .pkg-tier {
    font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 12px;
  }
  .package-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 600;
    color: var(--text-dark); margin-bottom: 12px; line-height: 1.2;
  }
  .package-card p {
    font-size: 0.87rem; color: var(--text-mid);
    line-height: 1.7; margin-bottom: 24px;
  }
  .pkg-features { list-style: none; margin-bottom: 28px; }
  .pkg-feature {
    font-size: 0.83rem; color: var(--text-mid);
    padding: 7px 0; border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex; align-items: center; gap: 10px;
  }
  .pkg-feature::before {
    content: '✓'; color: var(--gold);
    font-weight: 700; font-size: 0.75rem;
    flex-shrink: 0;
  }
  .pkg-cta {
    display: block; text-align: center;
    padding: 12px 24px; border-radius: 2px;
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; transition: all 0.25s;
    background: transparent; border: 1px solid var(--gold);
    color: #8B6A3A;
  }
  .pkg-cta:hover { background: var(--gold); color: var(--navy); }
  .package-card.featured .pkg-cta {
    background: var(--gold); color: var(--navy); border-color: var(--gold);
  }
  .package-card.featured .pkg-cta:hover { background: var(--gold-light); }

  /* ─── PROCESS ─── */
  #process { background: var(--charcoal); }
  .process-header { max-width: 1200px; margin: 0 auto 60px; }
  .process-steps {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; position: relative;
  }
  .process-steps::before {
    content: ''; position: absolute;
    top: 28px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
    height: 1px; background: rgba(201,169,110,0.2);
  }
  .process-step { padding: 0 24px; text-align: center; }
  .step-num {
    width: 56px; height: 56px; border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 600; color: var(--gold);
    margin: 0 auto 24px; background: var(--charcoal); position: relative; z-index: 1;
  }
  .process-step h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-weight: 600;
    color: var(--ivory); margin-bottom: 10px;
  }
  .process-step p { font-size: 0.83rem; color: var(--slate); line-height: 1.7; }

  /* ─── TESTIMONIALS ─── */
  #testimonials { background: var(--navy); }
  .testimonials-header { max-width: 1200px; margin: 0 auto 60px; }
  .testimonials-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px; max-width: 1200px; margin: 0 auto;
  }
  .testimonial-card {
    background: var(--charcoal); padding: 36px; border-radius: 4px;
    border: 1px solid rgba(201,169,110,0.1); position: relative;
  }
  .testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; color: var(--gold); opacity: 0.4;
    line-height: 0.8; margin-bottom: 16px;
  }
  .testimonial-card p {
    font-size: 0.9rem; color: rgba(247,243,238,0.75);
    line-height: 1.8; font-style: italic; margin-bottom: 24px;
  }
  .testimonial-author {
    font-size: 0.78rem; font-weight: 600;
    color: var(--gold); letter-spacing: 0.06em; text-transform: uppercase;
  }
  .testimonial-role { font-size: 0.74rem; color: var(--slate); margin-top: 2px; }
  .stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; }

  /* ─── FAQ ─── */
  #faq { background: var(--charcoal); }
  .faq-inner { max-width: 800px; margin: 0 auto; }
  .faq-header { margin-bottom: 52px; }
  .faq-item {
    border-bottom: 1px solid rgba(201,169,110,0.15);
  }
  .faq-question {
    width: 100%; background: none; border: none; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 0; text-align: left; gap: 16px;
  }
  .faq-question span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 600; color: var(--ivory);
    line-height: 1.3;
  }
  .faq-icon {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1px solid rgba(201,169,110,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); flex-shrink: 0;
    font-size: 1.2rem; transition: transform 0.3s;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-answer {
    font-size: 0.9rem; color: rgba(247,243,238,0.65);
    line-height: 1.85; max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
  }
  .faq-item.open .faq-answer { max-height: 400px; padding-bottom: 24px; }

  /* ─── CTA BAND ─── */
  #cta-band {
    background: linear-gradient(135deg, #C9A96E 0%, #A07E4A 100%);
    padding: 80px 60px; text-align: center;
  }
  #cta-band h2 { color: var(--navy); font-weight: 600; }
  #cta-band p {
    color: rgba(13,27,42,0.75); font-size: 1rem;
    max-width: 560px; margin: 16px auto 36px;
  }
  .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-dark {
    background: var(--navy); color: var(--gold);
    padding: 16px 40px; border: none; border-radius: 2px;
    font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; text-decoration: none; display: inline-block;
    transition: all 0.25s;
  }
  .btn-dark:hover { background: var(--charcoal); transform: translateY(-1px); }
  .btn-whatsapp-cta {
    background: #25D366; color: white;
    padding: 16px 40px; border-radius: 2px;
    font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; text-decoration: none; display: inline-flex;
    align-items: center; gap: 8px; transition: all 0.25s;
  }
  .btn-whatsapp-cta:hover { background: #1ebe5d; transform: translateY(-1px); }

  /* ─── CONTACT ─── */
  #contact { background: var(--charcoal); }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; max-width: 1200px; margin: 0 auto; align-items: start;
  }
  .contact-info h2 { margin-bottom: 16px; }
  .contact-info p {
    font-size: 0.93rem; color: rgba(247,243,238,0.65);
    line-height: 1.8; margin-bottom: 36px;
  }
  .contact-detail {
    display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
  }
  .contact-detail-icon {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(201,169,110,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); flex-shrink: 0;
  }
  .contact-detail-text { font-size: 0.88rem; color: var(--slate); }
  .contact-detail-text a { color: var(--gold); text-decoration: none; }
  .social-links { display: flex; gap: 14px; margin-top: 32px; }
  .social-link {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid rgba(201,169,110,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--slate); text-decoration: none;
    font-size: 0.75rem; transition: all 0.25s;
  }
  .social-link:hover { border-color: var(--gold); color: var(--gold); }

  /* Calendly link block */
  .calendly-block {
    margin-top: 36px; padding: 24px;
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 4px;
    background: rgba(13,27,42,0.4);
  }
  .calendly-block p {
    font-size: 0.85rem; color: var(--slate);
    margin-bottom: 14px !important;
  }
  .btn-calendly {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold); color: var(--navy);
    padding: 12px 24px; border-radius: 2px;
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; transition: all 0.25s;
  }
  .btn-calendly:hover { background: var(--gold-light); }

  /* ─── FORM ─── */
  .contact-form { display: flex; flex-direction: column; gap: 18px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 8px; }
  .form-group label {
    font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate);
  }
  .form-group input, .form-group select, .form-group textarea {
    background: rgba(13,27,42,0.6);
    border: 1px solid rgba(201,169,110,0.2);
    color: var(--ivory); padding: 13px 16px;
    border-radius: 2px; font-family: 'Inter', sans-serif;
    font-size: 0.88rem; outline: none; width: 100%;
    transition: border-color 0.25s; -webkit-appearance: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold);
  }
  .form-group select option { background: var(--charcoal); }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-submit {
    background: var(--gold); color: var(--navy);
    padding: 15px 36px; border: none; border-radius: 2px;
    font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; transition: all 0.25s; align-self: flex-start;
  }
  .form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }
  .form-note { font-size: 0.75rem; color: var(--slate); margin-top: -8px; }
  .form-success {
    display: none; padding: 20px 24px;
    background: rgba(37,211,102,0.1);
    border: 1px solid rgba(37,211,102,0.3);
    border-radius: 4px; color: #90d490;
    font-size: 0.9rem; line-height: 1.6;
  }
  .form-error {
    display: none; padding: 16px 20px;
    background: rgba(220,60,60,0.1);
    border: 1px solid rgba(220,60,60,0.3);
    border-radius: 4px; color: #e08080;
    font-size: 0.88rem; line-height: 1.6;
  }
  .cf-turnstile { margin: 4px 0 8px; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--navy); padding: 40px 60px;
    border-top: 1px solid rgba(201,169,110,0.1);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; color: var(--gold); font-weight: 600;
  }
  .footer-copy { font-size: 0.75rem; color: var(--slate); }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a {
    font-size: 0.73rem; color: var(--slate); text-decoration: none;
    letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.25s;
  }
  .footer-links a:hover { color: var(--gold); }

  /* ─── WHATSAPP FLOAT ─── */
  .whatsapp-float {
    position: fixed; bottom: 32px; right: 32px;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    text-decoration: none; z-index: 300;
    transition: transform 0.25s, box-shadow 0.25s;
    animation: floatPulse 3s ease-in-out infinite;
  }
  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.55);
    animation: none;
  }
  @keyframes floatPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 32px rgba(37,211,102,0.65); }
  }
  .whatsapp-float svg { width: 28px; height: 28px; }
  .whatsapp-tooltip {
    position: absolute; right: 68px; top: 50%;
    transform: translateY(-50%);
    background: var(--navy); color: var(--ivory);
    font-size: 0.78rem; font-weight: 500;
    padding: 6px 14px; border-radius: 4px;
    white-space: nowrap; opacity: 0; pointer-events: none;
    transition: opacity 0.2s;
    border: 1px solid rgba(201,169,110,0.2);
  }
  .whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

  /* ─── SCROLL ANIMATIONS ─── */
  .reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ─── CASE STUDIES ─── */
  #case-studies { background: #162130; }
  .case-studies-header { max-width: 1200px; margin: 0 auto 60px; }
  .case-studies-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; max-width: 1200px; margin: 0 auto;
  }
  .case-card {
    background: var(--charcoal);
    border: 1px solid rgba(201,169,110,0.12);
    border-radius: 4px; padding: 36px;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .case-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
  .case-metric {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 600;
    color: var(--gold); line-height: 1; margin-bottom: 6px;
  }
  .case-client {
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--slate); margin-bottom: 24px;
  }
  .case-section-label {
    font-size: 0.67rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(201,169,110,0.6); margin-bottom: 8px; margin-top: 18px;
  }
  .case-card p {
    font-size: 0.86rem; color: rgba(247,243,238,0.65);
    line-height: 1.75;
  }

  /* ─── BLOG ─── */
  #blog { background: var(--navy); }
  .blog-header { max-width: 1200px; margin: 0 auto 60px; }
  .blog-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; max-width: 1200px; margin: 0 auto;
  }
  .blog-card {
    background: var(--charcoal);
    border: 1px solid rgba(201,169,110,0.1);
    border-radius: 4px; padding: 32px;
    display: flex; flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
  .blog-category {
    font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 14px;
  }
  .blog-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 600;
    color: var(--ivory); margin-bottom: 12px; line-height: 1.3;
  }
  .blog-card p {
    font-size: 0.87rem; color: var(--slate);
    line-height: 1.75; flex: 1; margin-bottom: 20px;
  }
  .blog-footer {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: auto;
  }
  .blog-date { font-size: 0.72rem; color: rgba(139,155,180,0.6); }
  .blog-read-more {
    font-size: 0.78rem; font-weight: 600;
    color: var(--gold); text-decoration: none;
    letter-spacing: 0.06em;
    transition: opacity 0.2s;
  }
  .blog-read-more:hover { opacity: 0.75; }

  /* ─── LEAD MAGNET ─── */
  #lead-magnet {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--navy) 100%);
    border-top: 1px solid rgba(201,169,110,0.1);
    border-bottom: 1px solid rgba(201,169,110,0.1);
  }
  .lead-magnet-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; max-width: 1200px; margin: 0 auto; align-items: center;
  }
  .lead-magnet-benefits { list-style: none; margin: 20px 0 24px; }
  .lead-magnet-benefit {
    font-size: 0.88rem; color: rgba(247,243,238,0.75);
    padding: 8px 0; display: flex; align-items: flex-start; gap: 10px;
    line-height: 1.55;
  }
  .lead-magnet-benefit::before {
    content: '✓'; color: var(--gold); font-weight: 700;
    font-size: 0.75rem; flex-shrink: 0; margin-top: 2px;
  }
  .lead-magnet-trust {
    font-size: 0.75rem; color: var(--slate);
    border-top: 1px solid rgba(201,169,110,0.15);
    padding-top: 16px; margin-top: 8px;
  }
  .lead-magnet-form { display: flex; flex-direction: column; gap: 16px; }

  /* ─── MOBILE ─── */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    #hero { padding: 100px 24px 60px; }
    .hero-bg-arc { width: 320px; height: 320px; right: -60px; opacity: 0.4; }
    .hero-photo { display: none; }
    section { padding: 70px 24px; }
    #packages { padding: 70px 24px; }
    #credibility { padding: 28px 24px; }
    .cred-inner { gap: 24px; }
    .cred-divider { display: none; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .packages-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
    .process-step { margin-bottom: 32px; }
    .hero-stats { gap: 28px; flex-wrap: wrap; }
    footer { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    #cta-band { padding: 60px 24px; }
    .whatsapp-float { bottom: 20px; right: 20px; }
    .portrait-badge { right: 0; }
  }

  @media (max-width: 480px) {
    h1 { font-size: 2.6rem; }
    .hero-stats { gap: 20px; }
    .stat-num { font-size: 2rem; }
    .packages-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
  }

  /* ─── SERVICES EXPANDED ─── */
  .services-intro {
    max-width: 1200px; margin: 0 auto 20px;
    font-size: 0.95rem; color: rgba(247,243,238,0.6);
    line-height: 1.8; max-width: 720px;
  }
  .services-grid-expanded {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2px; max-width: 1200px; margin: 0 auto 80px;
  }
  .svc-card {
    background: var(--charcoal); padding: 52px 44px;
    position: relative; overflow: hidden;
    transition: background 0.3s;
  }
  .svc-card::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--gold); transition: width 0.45s;
  }
  .svc-card:hover { background: #243447; }
  .svc-card:hover::after { width: 100%; }
  .svc-icon { width: 44px; height: 44px; margin-bottom: 24px; color: var(--gold); }
  .svc-tag {
    font-size: 0.67rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 14px; display: block;
  }
  .svc-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem; font-weight: 600;
    color: var(--ivory); margin-bottom: 12px; line-height: 1.25;
  }
  .svc-desc {
    font-size: 0.88rem; color: var(--slate);
    line-height: 1.8; margin-bottom: 28px;
  }
  .svc-scenarios-label {
    font-size: 0.67rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(201,169,110,0.7); margin-bottom: 14px;
  }
  .svc-scenarios { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .svc-scenario {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 0.84rem; color: rgba(247,243,238,0.62);
    line-height: 1.55; font-style: italic;
  }
  .svc-scenario::before {
    content: '→'; color: var(--gold); flex-shrink: 0; font-style: normal; margin-top: 1px;
  }
  .svc-divider {
    height: 1px; background: rgba(201,169,110,0.15); margin-bottom: 22px;
  }
  .svc-outcomes-label {
    font-size: 0.67rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(201,169,110,0.7); margin-bottom: 12px;
  }
  .svc-outcomes { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
  .svc-outcome {
    display: flex; gap: 10px; align-items: flex-start;
    font-size: 0.83rem; color: rgba(247,243,238,0.65); line-height: 1.5;
  }
  .svc-outcome::before {
    content: '✓'; color: var(--gold); font-weight: 700;
    font-size: 0.72rem; flex-shrink: 0; margin-top: 2px;
  }
  .svc-cta {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    border-bottom: 1px solid rgba(201,169,110,0.3);
    padding-bottom: 2px; transition: border-color 0.25s;
  }
  .svc-cta:hover { border-color: var(--gold); }
  .svc-cta svg { transition: transform 0.25s; }
  .svc-cta:hover svg { transform: translateX(4px); }

  /* Problem Scenarios Strip */
  .problem-strip {
    max-width: 1200px; margin: 0 auto;
    background: rgba(201,169,110,0.06);
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: 4px; padding: 44px 48px;
  }
  .problem-strip-label {
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 24px;
  }
  .problem-chips {
    display: flex; flex-wrap: wrap; gap: 12px;
  }
  .problem-chip {
    background: rgba(201,169,110,0.08);
    border: 1px solid rgba(201,169,110,0.2);
    color: rgba(247,243,238,0.7);
    padding: 10px 18px; border-radius: 30px;
    font-size: 0.82rem; line-height: 1.4;
    transition: all 0.25s; cursor: default;
  }
  .problem-chip:hover {
    background: rgba(201,169,110,0.15);
    border-color: rgba(201,169,110,0.4);
    color: var(--ivory);
  }

  /* ─── SOCIAL MEDIA SECTION ─── */
  #social { background: var(--charcoal); }
  .social-header { max-width: 1200px; margin: 0 auto 56px; }
  .social-platforms {
    max-width: 1200px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 72px;
  }
  .social-platform-block {}
  .social-platform-header {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 28px;
  }
  .social-platform-icon {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid rgba(201,169,110,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
  }
  .social-platform-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 600; color: var(--ivory);
  }
  .social-platform-handle {
    font-size: 0.78rem; color: var(--slate); margin-top: 1px;
  }
  .social-platform-follow {
    margin-left: auto;
    border: 1px solid rgba(201,169,110,0.4);
    color: var(--gold); padding: 8px 20px; border-radius: 2px;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; transition: all 0.25s;
  }
  .social-platform-follow:hover { background: var(--gold); color: var(--navy); }
  .youtube-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .youtube-embed-wrap {
    aspect-ratio: 9/16; border-radius: 4px; overflow: hidden;
    border: 1px solid rgba(201,169,110,0.1);
    background: var(--navy);
  }
  .youtube-embed-wrap iframe {
    width: 100%; height: 100%; border: none; display: block;
  }
  .instagram-grid {
    display: grid; grid-template-columns: repeat(6, 1fr);
    gap: 4px;
  }
  .insta-cell {
    aspect-ratio: 1/1; background: var(--navy);
    border-radius: 2px; overflow: hidden;
    border: 1px solid rgba(201,169,110,0.08);
    position: relative;
    display: flex; align-items: center; justify-content: center;
  }
  .insta-cell-inner {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(201,169,110,0.06) 0%, rgba(13,27,42,0.8) 100%);
    display: flex; align-items: center; justify-content: center;
  }
  .insta-placeholder-icon { color: rgba(201,169,110,0.2); }
  .instagram-follow-cta {
    margin-top: 24px; text-align: center;
    padding: 36px; border: 1px dashed rgba(201,169,110,0.2); border-radius: 4px;
    background: rgba(201,169,110,0.03);
  }
  .instagram-follow-cta p {
    font-size: 0.88rem; color: var(--slate); margin-bottom: 18px;
  }
  .btn-instagram {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white; padding: 12px 28px; border-radius: 4px;
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none; transition: opacity 0.25s;
  }
  .btn-instagram:hover { opacity: 0.9; }

  @media (max-width: 900px) {
    .services-grid-expanded { grid-template-columns: 1fr; }
    .svc-card { padding: 40px 28px; }
    .youtube-grid { grid-template-columns: 1fr; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .problem-strip { padding: 32px 24px; }
    .case-studies-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .lead-magnet-grid { grid-template-columns: 1fr; gap: 40px; }
    #cookie-banner { padding: 16px 24px; }
  }

  /* ─── LIGHT MODE ─── */
  body.light-mode {
    --navy: #F7F3EE;
    --charcoal: #EDE7DC;
    --ivory: #0D1B2A;
    --slate: #3A4F63;
  }
  body.light-mode nav {
    background: rgba(247,243,238,0.95);
    border-bottom-color: rgba(201,169,110,0.3);
  }
  body.light-mode .mobile-menu { background: rgba(247,243,238,0.98); }
  body.light-mode .mobile-menu a { color: var(--ivory); }
  body.light-mode .hamburger span { background: var(--ivory); }
  body.light-mode .form-group input,
  body.light-mode .form-group select,
  body.light-mode .form-group textarea {
    background: rgba(247,243,238,0.8);
    color: var(--ivory);
    border-color: rgba(201,169,110,0.3);
  }
  body.light-mode .package-card { background: #fff; }
  body.light-mode .package-card.featured { background: var(--navy); }

  /* ─── ARTICLE / BLOG PAGE STYLES ─── */
  .article-hero {
    padding: 140px 60px 80px;
    background: var(--charcoal);
    border-bottom: 1px solid rgba(201,169,110,0.15);
  }
  .article-hero-inner {
    max-width: 800px; margin: 0 auto;
  }
  .article-meta {
    display: flex; align-items: center; gap: 16px;
    flex-wrap: wrap; margin-bottom: 24px;
  }
  .article-category {
    font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold);
  }
  .article-meta-dot {
    width: 3px; height: 3px; border-radius: 50%;
    background: var(--slate);
  }
  .article-meta-text {
    font-size: 0.78rem; color: var(--slate);
  }
  .article-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 300; line-height: 1.15;
    color: var(--ivory); margin-bottom: 20px;
  }
  .article-hero .article-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; color: var(--slate);
    line-height: 1.6; font-weight: 400;
  }

  .article-body {
    padding: 80px 60px;
    background: var(--navy);
  }
  .article-body-inner {
    max-width: 760px; margin: 0 auto;
  }
  .article-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    font-weight: 600; color: var(--ivory);
    margin: 52px 0 16px; line-height: 1.25;
  }
  .article-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 600;
    color: var(--gold-light); margin: 32px 0 12px;
  }
  .article-body p {
    font-size: 0.97rem; color: rgba(247,243,238,0.78);
    line-height: 1.9; margin-bottom: 20px;
  }
  .article-body ul, .article-body ol {
    margin: 20px 0 24px 24px;
  }
  .article-body li {
    font-size: 0.95rem; color: rgba(247,243,238,0.75);
    line-height: 1.8; margin-bottom: 10px;
  }
  .article-pullquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; font-style: italic;
    color: var(--gold-light); line-height: 1.5;
    border-left: 3px solid var(--gold);
    padding: 8px 0 8px 28px;
    margin: 40px 0;
  }
  .article-example-box {
    background: var(--charcoal);
    border: 1px solid rgba(201,169,110,0.2);
    border-left: 3px solid var(--gold);
    border-radius: 4px; padding: 24px 28px;
    margin: 28px 0;
  }
  .article-example-label {
    font-size: 0.67rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 10px;
  }
  .article-example-box p {
    font-size: 0.9rem; color: rgba(247,243,238,0.7);
    line-height: 1.75; margin-bottom: 0; font-style: italic;
  }

  .article-author-bio {
    background: var(--charcoal);
    border-top: 1px solid rgba(201,169,110,0.15);
    padding: 60px;
  }
  .article-author-bio-inner {
    max-width: 760px; margin: 0 auto;
    display: flex; gap: 32px; align-items: flex-start;
  }
  .author-avatar {
    width: 72px; height: 72px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(201,169,110,0.3), rgba(201,169,110,0.1));
    border: 1px solid rgba(201,169,110,0.4);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 600; color: var(--gold);
    flex-shrink: 0;
  }
  .author-info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 600;
    color: var(--ivory); margin-bottom: 4px;
  }
  .author-info .author-title {
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 14px;
  }
  .author-info p {
    font-size: 0.88rem; color: rgba(247,243,238,0.65);
    line-height: 1.75;
  }

  .article-cta {
    background: linear-gradient(135deg, #C9A96E 0%, #A07E4A 100%);
    padding: 80px 60px; text-align: center;
  }
  .article-cta h2 {
    color: var(--navy); font-weight: 600; margin-bottom: 16px;
  }
  .article-cta p {
    color: rgba(13,27,42,0.75); font-size: 1rem;
    max-width: 560px; margin: 0 auto 36px;
  }

  .blog-listing-hero {
    padding: 140px 60px 80px;
    background: var(--charcoal);
    text-align: center;
    border-bottom: 1px solid rgba(201,169,110,0.15);
  }
  .blog-listing-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 300; color: var(--ivory);
    margin-bottom: 16px;
  }
  .blog-listing-hero p {
    font-size: 1rem; color: var(--slate);
    max-width: 560px; margin: 0 auto; line-height: 1.7;
  }
  .blog-listing-section {
    padding: 80px 60px; background: var(--navy);
  }
  .blog-listing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px; max-width: 1200px; margin: 0 auto;
  }

  @media (max-width: 900px) {
    .article-hero { padding: 120px 24px 60px; }
    .article-body { padding: 60px 24px; }
    .article-author-bio { padding: 40px 24px; }
    .article-author-bio-inner { flex-direction: column; }
    .article-cta { padding: 60px 24px; }
    .blog-listing-hero { padding: 120px 24px 60px; }
    .blog-listing-section { padding: 60px 24px; }
    .blog-listing-grid { grid-template-columns: 1fr; }
  }

  /* ─── CASE STUDY PAGE STYLES ─── */
  .cs-metric-banner {
    background: #162130;
    padding: 60px;
    text-align: center;
    border-bottom: 1px solid rgba(201,169,110,0.2);
  }
  .cs-metric-banner-inner {
    max-width: 800px; margin: 0 auto;
  }
  .cs-big-metric {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 600; color: var(--gold);
    line-height: 1; margin-bottom: 8px;
  }
  .cs-metric-label {
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--slate);
  }

  .cs-article-layout {
    padding: 80px 60px;
    background: var(--navy);
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .cs-article-main {}
  .cs-article-sidebar {}

  .cs-quick-facts {
    background: var(--charcoal);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 4px;
    padding: 28px;
    margin-bottom: 28px;
    position: sticky;
    top: 100px;
  }
  .cs-quick-facts-label {
    font-size: 0.67rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 18px;
  }
  .cs-fact-row {
    padding: 10px 0;
    border-bottom: 1px solid rgba(201,169,110,0.1);
    display: flex; flex-direction: column; gap: 3px;
  }
  .cs-fact-row:last-child { border-bottom: none; }
  .cs-fact-key {
    font-size: 0.67rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(201,169,110,0.6);
  }
  .cs-fact-val {
    font-size: 0.87rem; color: rgba(247,243,238,0.8);
    line-height: 1.4;
  }

  .cs-read-next {
    background: var(--charcoal);
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: 4px;
    padding: 24px;
  }
  .cs-read-next-label {
    font-size: 0.67rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 16px;
  }
  .cs-read-next-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(201,169,110,0.1);
    text-decoration: none;
    transition: color 0.2s;
  }
  .cs-read-next-link:last-child { border-bottom: none; }
  .cs-read-next-metric {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 600; color: var(--gold);
    line-height: 1;
  }
  .cs-read-next-title {
    font-size: 0.82rem; color: var(--slate);
    line-height: 1.4; margin-top: 3px;
    transition: color 0.2s;
  }
  .cs-read-next-link:hover .cs-read-next-title { color: var(--ivory); }

  .cs-client-quote {
    background: #162130;
    border-left: 3px solid var(--gold);
    border-radius: 0 4px 4px 0;
    padding: 24px 28px;
    margin: 32px 0;
  }
  .cs-client-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-style: italic;
    color: var(--gold-light); line-height: 1.6;
    margin-bottom: 12px;
  }
  .cs-client-quote cite {
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--slate); font-style: normal;
  }

  .cs-key-takeaways {
    background: var(--charcoal);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 4px; padding: 32px;
    margin: 40px 0;
  }
  .cs-key-takeaways-label {
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 18px;
  }
  .cs-takeaway {
    display: flex; gap: 14px; align-items: flex-start;
    margin-bottom: 14px;
  }
  .cs-takeaway:last-child { margin-bottom: 0; }
  .cs-takeaway-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 600; color: var(--gold);
    line-height: 1; flex-shrink: 0; width: 28px;
  }
  .cs-takeaway p {
    font-size: 0.9rem; color: rgba(247,243,238,0.75);
    line-height: 1.7; margin-bottom: 0 !important;
  }

  /* Case Studies listing page */
  .cs-listing-hero {
    padding: 140px 60px 80px;
    background: #162130;
    text-align: center;
    border-bottom: 1px solid rgba(201,169,110,0.15);
  }
  .cs-listing-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 300; color: var(--ivory);
    margin-bottom: 16px;
  }
  .cs-listing-hero p {
    font-size: 1rem; color: var(--slate);
    max-width: 560px; margin: 0 auto; line-height: 1.7;
  }
  .cs-listing-section {
    padding: 80px 60px; background: var(--navy);
  }
  .cs-listing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px; max-width: 1200px; margin: 0 auto;
  }
  .cs-listing-card {
    background: var(--charcoal);
    border: 1px solid rgba(201,169,110,0.12);
    border-radius: 4px; padding: 36px;
    display: flex; flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
  }
  .cs-listing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.35); }
  .cs-listing-metric {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.4rem; font-weight: 600;
    color: var(--gold); line-height: 1; margin-bottom: 6px;
  }
  .cs-listing-client {
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--slate); margin-bottom: 20px;
  }
  .cs-listing-excerpt {
    font-size: 0.88rem; color: rgba(247,243,238,0.62);
    line-height: 1.75; flex: 1; margin-bottom: 24px;
  }
  .cs-listing-cta {
    font-size: 0.78rem; font-weight: 600;
    color: var(--gold); letter-spacing: 0.06em;
  }

  @media (max-width: 900px) {
    .cs-metric-banner { padding: 40px 24px; }
    .cs-article-layout {
      grid-template-columns: 1fr;
      padding: 60px 24px;
    }
    .cs-quick-facts { position: static; }
    .cs-listing-hero { padding: 120px 24px 60px; }
    .cs-listing-section { padding: 60px 24px; }
    .cs-listing-grid { grid-template-columns: 1fr; }
  }

  /* ─── PACKAGES PAGE STYLES ─── */
  .pkg-page-hero {
    padding: 140px 60px 80px;
    background: var(--charcoal);
    text-align: center;
    border-bottom: 1px solid rgba(201,169,110,0.15);
  }
  .pkg-page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 300; color: var(--ivory);
    margin-bottom: 16px;
  }
  .pkg-page-hero p {
    font-size: 1rem; color: var(--slate);
    max-width: 560px; margin: 0 auto; line-height: 1.7;
  }
  .pkg-full-section {
    padding: 80px 60px; background: var(--navy);
  }
  .pkg-full-section:nth-child(even) { background: var(--charcoal); }
  .pkg-full-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: start;
  }
  .pkg-full-inner.single { grid-template-columns: 1fr; max-width: 800px; }
  .pkg-full-tier {
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 10px;
  }
  .pkg-full-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 300; color: var(--ivory);
    margin-bottom: 12px; line-height: 1.2;
  }
  .pkg-full-investment {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 600; color: var(--gold);
    margin-bottom: 20px;
  }
  .pkg-full-desc {
    font-size: 0.95rem; color: rgba(247,243,238,0.7);
    line-height: 1.85; margin-bottom: 28px;
  }
  .pkg-full-for {
    font-size: 0.83rem; color: var(--slate);
    line-height: 1.7; margin-bottom: 28px;
    padding: 16px 20px;
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: 4px;
    background: rgba(201,169,110,0.04);
  }
  .pkg-full-for strong { color: var(--gold-light); }
  .pkg-included-label {
    font-size: 0.67rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(201,169,110,0.7); margin-bottom: 14px;
  }
  .pkg-included-list { list-style: none; margin-bottom: 28px; }
  .pkg-included-item {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 0.88rem; color: rgba(247,243,238,0.75);
    line-height: 1.6; padding: 8px 0;
    border-bottom: 1px solid rgba(201,169,110,0.08);
  }
  .pkg-included-item:last-child { border-bottom: none; }
  .pkg-included-item::before {
    content: '✓'; color: var(--gold); font-weight: 700;
    font-size: 0.75rem; flex-shrink: 0; margin-top: 2px;
  }
  .pkg-timeline {
    margin: 32px 0;
  }
  .pkg-timeline-label {
    font-size: 0.67rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(201,169,110,0.7); margin-bottom: 14px;
  }
  .pkg-timeline-item {
    display: flex; gap: 16px; align-items: flex-start;
    margin-bottom: 16px;
  }
  .pkg-timeline-dot {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1px solid var(--gold); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem; color: var(--gold);
  }
  .pkg-timeline-content {}
  .pkg-timeline-week {
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 2px;
  }
  .pkg-timeline-desc {
    font-size: 0.87rem; color: rgba(247,243,238,0.7);
    line-height: 1.6;
  }

  .pkg-comparison-section {
    padding: 80px 60px; background: #162130;
  }
  .pkg-comparison-inner {
    max-width: 1100px; margin: 0 auto;
  }
  .pkg-comparison-table {
    width: 100%; border-collapse: collapse; margin-top: 40px;
  }
  .pkg-comparison-table th {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 600; color: var(--gold);
    padding: 16px 20px; text-align: center;
    border-bottom: 2px solid rgba(201,169,110,0.3);
  }
  .pkg-comparison-table th:first-child { text-align: left; }
  .pkg-comparison-table td {
    padding: 13px 20px; font-size: 0.87rem;
    color: rgba(247,243,238,0.7);
    border-bottom: 1px solid rgba(201,169,110,0.08);
    text-align: center;
  }
  .pkg-comparison-table td:first-child { text-align: left; color: var(--ivory); }
  .pkg-comparison-table tr:hover td { background: rgba(201,169,110,0.04); }
  .pkg-check { color: var(--gold); font-weight: 700; }
  .pkg-dash { color: rgba(139,155,180,0.4); }

  .pkg-testimonial-pull {
    padding: 48px;
    border-left: 3px solid var(--gold);
    margin: 36px 0;
  }
  .pkg-testimonial-pull blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-style: italic;
    color: var(--gold-light); line-height: 1.6;
    margin-bottom: 16px;
  }
  .pkg-testimonial-pull cite {
    font-size: 0.78rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--slate); font-style: normal;
  }

  .pkg-faq-section {
    padding: 80px 60px; background: var(--navy);
  }
  .pkg-faq-inner { max-width: 800px; margin: 0 auto; }

  .pkg-howitworks {
    padding: 80px 60px; background: var(--charcoal);
  }
  .pkg-howitworks-inner {
    max-width: 1100px; margin: 0 auto;
  }
  .pkg-steps {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 40px; margin-top: 40px;
  }
  .pkg-step {
    text-align: center; padding: 0 20px;
  }
  .pkg-step-num {
    width: 60px; height: 60px; border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; font-weight: 600; color: var(--gold);
    margin: 0 auto 20px;
  }
  .pkg-step h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem; font-weight: 600;
    color: var(--ivory); margin-bottom: 10px;
  }
  .pkg-step p { font-size: 0.87rem; color: var(--slate); line-height: 1.7; }

  @media (max-width: 900px) {
    .pkg-page-hero { padding: 120px 24px 60px; }
    .pkg-full-section { padding: 60px 24px; }
    .pkg-full-inner { grid-template-columns: 1fr; gap: 32px; }
    .pkg-comparison-section { padding: 60px 24px; }
    .pkg-comparison-table { font-size: 0.8rem; }
    .pkg-comparison-table th, .pkg-comparison-table td { padding: 10px 12px; }
    .pkg-testimonial-pull { padding: 24px; }
    .pkg-faq-section { padding: 60px 24px; }
    .pkg-howitworks { padding: 60px 24px; }
    .pkg-steps { grid-template-columns: 1fr; }
  }
