:root {
    --cream: #FBF6F3;          /* cool peach-white (main bg) */
    --cream-deep: #F7E4DC;     /* peony mist (sections) */
    --blush: #F1CCC1;           /* peony pink */
    --blush-deep: #E2A89B;     /* deeper rose pink */
    --rose-gold: #CFA088;      /* copper rose gold */
    --rose-gold-deep: #A87E64; /* deep rose gold */
    --bordeaux: #7A3F50;       /* plum-rose for emphasis */
    --ink: #2D2823;            /* deep charcoal (headlines) */
    --ink-soft: #6B665F;       /* warm gray (body) */
    --line: rgba(207, 160, 136, 0.24);
    --white: #FFFFFF;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
  }

  /* Subtle peony ambient glow */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image:
      radial-gradient(circle at 14% 18%, rgba(241, 204, 193, 0.5), transparent 55%),
      radial-gradient(circle at 86% 82%, rgba(207, 160, 136, 0.22), transparent 55%);
  }

  body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.14;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.88 0 0 0 0 0.7 0 0 0 0 0.64 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  /* ============ TYPOGRAPHY ============ */

  .display {
    font-family: 'Fraunces', serif;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 0.95;
  }

  .serif {
    font-family: 'Cormorant Garamond', serif;
  }

  .eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--rose-gold-deep);
  }

  /* ============ NAV ============ */

  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 28px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 250, 247, 0.82);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border-bottom: 1px solid var(--line);
  }

  .logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
  }
  .logo-mark {
    display: block;
    height: 38px;
    width: auto;
  }
  .footer-brand .logo-mark {
    height: 56px;
  }

  .nav-links {
    display: flex;
    gap: 38px;
    list-style: none;
  }
  .nav-links a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
    position: relative;
  }
  .nav-links a:hover { color: var(--bordeaux); }
  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 0; height: 1px;
    background: var(--rose-gold);
    transition: width 0.3s ease;
  }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-deep) 100%);
    color: var(--white);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(184, 137, 110, 0.28);
  }
  .nav-cta:hover {
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--rose-gold-deep) 100%);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(139, 74, 92, 0.32);
  }

  /* ============ HERO ============ */

  .hero {
    min-height: 100vh;
    padding: 200px 60px 140px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('./hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    z-index: -2;
  }

  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(95deg,
        rgba(20, 16, 14, 0.55) 0%,
        rgba(20, 16, 14, 0.32) 30%,
        rgba(20, 16, 14, 0.05) 55%,
        rgba(20, 16, 14, 0) 75%);
  }

  .hero-decoration {
    position: absolute;
    top: 120px;
    right: 50%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(248, 221, 210, 0.55), rgba(248, 221, 210, 0) 70%);
    border-radius: 50%;
    filter: blur(50px);
    z-index: -1;
    pointer-events: none;
  }

  .hero-eyebrow {
    margin-bottom: 28px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--rose-gold);
  }

  .hero h1 {
    font-size: clamp(48px, 6.2vw, 92px);
    margin-bottom: 32px;
    color: var(--ink);
  }
  .hero h1 em {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    color: var(--rose-gold-deep);
    font-size: 1.05em;
  }

  .hero-sub {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 520px;
    margin-bottom: 44px;
    line-height: 1.7;
  }

  .hero-ctas {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-deep) 100%);
    color: var(--white);
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    box-shadow: 0 10px 26px rgba(184, 137, 110, 0.3);
  }
  .btn-primary:hover {
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--rose-gold-deep) 100%);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(139, 74, 92, 0.34);
  }
  .btn-primary svg { transition: transform 0.4s ease; }
  .btn-primary:hover svg { transform: translateX(4px); }

  .btn-secondary {
    padding: 18px 36px;
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--rose-gold);
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
  }
  .btn-secondary:hover {
    background: var(--blush);
    border-color: var(--blush-deep);
  }

  .hero-visual {
    position: relative;
    min-height: 480px;
  }

  .hero-glass {
    position: absolute;
    right: -10px;
    bottom: 0;
    width: min(340px, 92%);
    background: rgba(251, 246, 243, 0.72);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 14px;
    padding: 26px 28px;
    box-shadow:
      0 20px 60px rgba(122, 63, 80, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }

  .hero-glass-eyebrow {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--rose-gold-deep);
    font-weight: 500;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .hero-glass-eyebrow::before {
    content: '';
    width: 22px; height: 1px;
    background: var(--rose-gold);
  }

  .hero-glass h4 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 10px;
  }
  .hero-glass h4 em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--bordeaux);
  }

  .hero-glass p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.6;
  }

  .hero-stat-card {
    position: absolute;
    top: 30px;
    left: -10px;
    background: var(--white);
    padding: 18px 24px;
    border-radius: 6px;
    border-left: 2px solid var(--rose-gold);
    box-shadow: 0 18px 44px rgba(184, 137, 110, 0.22);
    z-index: 3;
  }
  .hero-stat-card .num {
    font-family: 'Fraunces', serif;
    font-size: 30px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1;
  }
  .hero-stat-card .label {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-top: 6px;
  }

  /* ============ MARQUEE TRUST ============ */

  .marquee {
    padding: 50px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: var(--cream-deep);
  }

  .marquee-track {
    display: flex;
    gap: 80px;
    animation: scroll 35s linear infinite;
    white-space: nowrap;
  }

  @keyframes scroll {
    to { transform: translateX(-50%); }
  }

  .marquee-item {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-style: italic;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 80px;
  }
  .marquee-item::after {
    content: '✦';
    color: var(--rose-gold);
    font-size: 14px;
  }

  /* ============ SNAPSHOT (Lead Magnet) ============ */

  .snapshot {
    padding: 140px 60px;
    position: relative;
    z-index: 2;
  }

  .snapshot-inner {
    max-width: 1280px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--cream-deep) 0%, var(--blush) 100%);
    border-radius: 16px;
    padding: 80px 70px;
    color: var(--ink);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(184, 137, 110, 0.15);
  }

  .snapshot-inner::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(212, 162, 133, 0.28), transparent 60%);
    border-radius: 50%;
  }

  .snapshot-inner::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent 60%);
    border-radius: 50%;
  }

  .snapshot-content { position: relative; z-index: 2; }

  .snapshot-eyebrow {
    color: var(--rose-gold-deep);
    margin-bottom: 24px;
  }

  .snapshot h2 {
    font-size: clamp(36px, 4.5vw, 56px);
    margin-bottom: 28px;
    color: var(--ink);
  }
  .snapshot h2 em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--bordeaux);
    font-weight: 400;
  }

  .snapshot-content > p {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 36px;
  }

  .snapshot-list {
    list-style: none;
    margin-bottom: 40px;
  }
  .snapshot-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(184, 137, 110, 0.22);
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: var(--ink);
  }
  .snapshot-list li::before {
    content: '◆';
    color: var(--rose-gold-deep);
    font-size: 10px;
  }

  .snapshot-form {
    position: relative;
    z-index: 2;
    background: var(--white);
    color: var(--ink);
    padding: 50px 44px;
    border-radius: 12px;
    box-shadow: 0 24px 50px rgba(184, 137, 110, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.7);
  }
  .snapshot-form h3 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: 28px;
    margin-bottom: 8px;
  }
  .snapshot-form .sub {
    font-size: 13px;
    color: var(--ink-soft);
    margin-bottom: 30px;
  }

  .form-field {
    margin-bottom: 18px;
  }
  .form-field label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 8px;
    font-weight: 500;
  }
  .form-field input {
    width: 100%;
    padding: 14px 16px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--ink);
    transition: all 0.3s ease;
  }
  .form-field input:focus {
    outline: none;
    border-color: var(--rose-gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 162, 133, 0.12);
  }

  .form-submit {
    width: 100%;
    padding: 17px;
    background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-deep) 100%);
    color: var(--white);
    border: none;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
    box-shadow: 0 8px 22px rgba(184, 137, 110, 0.28);
  }
  .form-submit:hover {
    background: linear-gradient(135deg, var(--bordeaux) 0%, var(--rose-gold-deep) 100%);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(139, 74, 92, 0.32);
  }
  .form-fine {
    text-align: center;
    font-size: 11px;
    color: var(--ink-soft);
    margin-top: 18px;
    letter-spacing: 0.04em;
  }

  /* ============ SERVICES ============ */

  .services {
    padding: 140px 60px;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
  }

  .section-header {
    text-align: center;
    margin-bottom: 80px;
  }
  .section-header .eyebrow { margin-bottom: 20px; display: block; }
  .section-header h2 {
    font-size: clamp(40px, 5vw, 68px);
    max-width: 800px;
    margin: 0 auto;
  }
  .section-header h2 em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--rose-gold-deep);
    font-weight: 400;
  }
  .section-header p {
    margin-top: 24px;
    font-size: 17px;
    color: var(--ink-soft);
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .service-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 50px 44px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--rose-gold), var(--blush-deep));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
  }

  .service-card:hover {
    background: var(--cream-deep);
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(168, 131, 97, 0.12);
  }
  .service-card:hover::before { transform: scaleX(1); }

  .service-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--rose-gold-deep);
    font-size: 18px;
    margin-bottom: 24px;
    letter-spacing: 0.04em;
  }

  .service-card h3 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--ink);
  }

  .service-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--bordeaux);
    margin-bottom: 24px;
    font-weight: 400;
  }

  .service-card p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .service-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    margin-bottom: 20px;
  }
  .service-pricing .price {
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--ink);
  }
  .service-pricing .frequency {
    font-size: 13px;
    color: var(--ink-soft);
    letter-spacing: 0.04em;
  }

  .service-features {
    list-style: none;
    margin-bottom: 28px;
  }
  .service-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .service-features li::before {
    content: '';
    width: 4px; height: 4px;
    background: var(--rose-gold);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .service-link {
    color: var(--ink);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
  }
  .service-link:hover { gap: 16px; color: var(--bordeaux); }
  .service-link::after {
    content: '→';
    color: var(--rose-gold-deep);
  }

  /* ============ STORY (About) ============ */

  .story {
    padding: 140px 60px;
    background: var(--cream-deep);
    position: relative;
    z-index: 2;
  }

  .story-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
  }

  .story-image {
    aspect-ratio: 4/5;
    background:
      linear-gradient(135deg, var(--blush), var(--rose-gold));
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(168, 131, 97, 0.2);
  }

  .story-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.3), transparent 50%),
      radial-gradient(ellipse at 70% 80%, rgba(107, 44, 57, 0.15), transparent 50%);
  }

  .story-image-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(250, 246, 240, 0.95);
    backdrop-filter: blur(10px);
    padding: 24px 28px;
    border-radius: 4px;
    border-left: 2px solid var(--bordeaux);
  }
  .story-image-card .name {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    color: var(--ink);
    font-weight: 400;
  }
  .story-image-card .title {
    font-size: 11px;
    color: var(--ink-soft);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-top: 4px;
  }

  .story-content .eyebrow { margin-bottom: 20px; display: block; }

  .story-content h2 {
    font-size: clamp(38px, 4.5vw, 60px);
    margin-bottom: 32px;
  }
  .story-content h2 em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--rose-gold-deep);
    font-weight: 400;
  }

  .story-content p {
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.85;
    margin-bottom: 22px;
  }

  .story-quote {
    margin: 36px 0;
    padding: 28px 32px;
    border-left: 2px solid var(--rose-gold);
    background: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.5;
    color: var(--bordeaux);
    border-radius: 0 4px 4px 0;
  }

  .story-sig {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .story-sig .name {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 26px;
    color: var(--bordeaux);
    font-weight: 400;
  }
  .story-sig .role {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
    padding-left: 20px;
    border-left: 1px solid var(--line);
  }

  /* ============ AUTHORITY ============ */

  .authority {
    padding: 140px 60px;
    background: var(--cream-deep);
    position: relative;
    z-index: 2;
  }

  .authority-inner {
    max-width: 1280px;
    margin: 0 auto;
  }

  .authority-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 80px;
  }
  .authority-header .eyebrow {
    margin-bottom: 20px;
    display: block;
  }
  .authority-header h2 {
    font-size: clamp(40px, 5vw, 68px);
    margin-bottom: 24px;
  }
  .authority-header h2 em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--rose-gold-deep);
    font-weight: 400;
  }
  .authority-header p {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto;
  }

  .authority-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 80px;
  }

  .authority-pillar {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 48px 36px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .authority-pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(168, 131, 97, 0.14);
    border-color: rgba(168, 131, 97, 0.32);
  }

  .pillar-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 300;
    font-size: 16px;
    color: var(--rose-gold-deep);
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    display: inline-block;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
  }

  .authority-pillar h3 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--ink);
  }

  .authority-pillar p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-soft);
  }

  .authority-cta {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* ============ CTA SECTION ============ */

  .cta {
    padding: 160px 60px;
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
    isolation: isolate;
    background-color: #14100E;
    background-image:
      linear-gradient(180deg, rgba(20, 16, 14, 0.55) 0%, rgba(20, 16, 14, 0.65) 100%),
      url('/cta-bg.jpg');
    background-size: cover;
    background-position: center;
  }

  .cta-inner {
    max-width: 880px;
    margin: 0 auto;
    position: relative;
  }

  .cta h2 {
    font-size: clamp(44px, 6vw, 88px);
    margin-bottom: 32px;
    color: var(--white);
    text-shadow: 0 2px 28px rgba(20, 16, 14, 0.55);
  }
  .cta h2 em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--blush);
    font-weight: 400;
  }

  .cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 48px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 0 1px 18px rgba(20, 16, 14, 0.55);
  }

  .cta-decoration {
    width: 60px; height: 1px;
    background: var(--rose-gold);
    margin: 0 auto 48px;
    position: relative;
  }
  .cta-decoration::before,
  .cta-decoration::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 4px; height: 4px;
    background: var(--rose-gold);
    border-radius: 50%;
    transform: translateY(-50%);
  }
  .cta-decoration::before { left: -16px; }
  .cta-decoration::after { right: -16px; }

  /* ============ FOOTER ============ */

  footer {
    background: var(--cream-deep);
    color: var(--ink);
    padding: 80px 60px 36px;
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--line);
  }

  .footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--line);
  }

  .footer-brand .logo { color: var(--ink); }
  .footer-brand .logo span { color: var(--rose-gold-deep); }
  .footer-brand p {
    margin-top: 24px;
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
  }

  .footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rose-gold-deep);
    margin-bottom: 22px;
    font-weight: 500;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 12px; }
  .footer-col a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }
  .footer-col a:hover { color: var(--bordeaux); }

  .footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ink-soft);
    font-size: 12px;
    letter-spacing: 0.04em;
    opacity: 0.85;
  }

  /* ============ RESPONSIVE ============ */

  /* ============ MOBILE NAV TOGGLE ============ */

  .nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 110;
  }
  .nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--ink);
    margin: 6px auto;
    border-radius: 2px;
    transition: transform 0.32s ease, opacity 0.2s ease;
  }
  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  @media (max-width: 1024px) {
    nav {
      padding: 16px 22px;
      min-height: 68px;
      z-index: 200;                    /* nav always above menu */
    }
    .logo-mark { height: 34px; }
    .nav-toggle { display: block; }
    .nav-cta { display: none; }

    .nav-links {
      /* drop-down panel anchored under the nav bar */
      display: block;
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      max-height: calc(100vh - 68px);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      background: rgba(251, 246, 243, 0.98);
      backdrop-filter: blur(24px) saturate(150%);
      -webkit-backdrop-filter: blur(24px) saturate(150%);
      padding: 8px 22px 28px;
      border-top: 1px solid var(--line);
      box-shadow: 0 24px 40px rgba(20, 16, 14, 0.18);
      opacity: 0;
      transform: translateY(-12px);
      pointer-events: none;
      transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 150;
    }
    .nav-links.is-open {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .nav-links li {
      display: block;
      width: 100%;
      border-bottom: 1px solid var(--line);
    }
    .nav-links li:last-child {
      border-bottom: none;
      padding-top: 22px;
    }
    .nav-links a {
      display: block;
      padding: 20px 4px;
      font-family: 'Fraunces', serif;
      font-size: 22px;
      color: var(--ink);
      letter-spacing: 0;
      font-weight: 400;
      text-align: left;
      text-decoration: none;
    }
    .nav-links a::after { display: none; }
    .nav-links li:last-child a {
      text-align: center;
      padding: 16px 32px;
      background: linear-gradient(135deg, var(--rose-gold) 0%, var(--rose-gold-deep) 100%);
      color: var(--white);
      border-radius: 100px;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: none;
      box-shadow: 0 10px 26px rgba(184, 137, 110, 0.28);
    }

    body.menu-open { overflow: hidden; }
    body.menu-open nav { background: rgba(251, 246, 243, 0.98); }

    /* hero / page-hero adjustments */
    .hero {
      grid-template-columns: 1fr;
      padding: 130px 24px 80px;
      gap: 40px;
      min-height: 80vh;
    }
    .hero-bg {
      background-position: 70% center;  /* show BB-branded right side */
    }
    .hero-bg::after {
      background: linear-gradient(180deg,
        rgba(20, 16, 14, 0.55) 0%,
        rgba(20, 16, 14, 0.4) 50%,
        rgba(20, 16, 14, 0.55) 100%);
    }
    .hero-visual { display: none; }
    .hero-decoration { display: none; }
    .hero h1 { font-size: clamp(40px, 8vw, 56px); }
    .hero-sub { font-size: 17px; max-width: 100%; }

    .page-hero {
      min-height: 50vh;
      padding: 130px 24px 70px;
    }
    .page-hero-bg {
      background-position: 70% center;
    }
    .page-hero-bg.is-contact {
      background-size: cover;       /* on mobile let the figure fill */
      background-position: 70% center;
    }
    .page-hero-bg::after {
      background: linear-gradient(180deg,
        rgba(20, 16, 14, 0.5) 0%,
        rgba(20, 16, 14, 0.7) 100%);
    }
    .page-hero-inner h1 { font-size: clamp(36px, 7vw, 52px); }
    .page-hero-inner p { font-size: 16px; }

    .snapshot { padding: 80px 24px; }
    .snapshot-inner { grid-template-columns: 1fr; padding: 50px 28px; gap: 40px; border-radius: 12px; }
    .snapshot-form { padding: 36px 26px; border-radius: 10px; }
    .services { padding: 80px 24px; }
    .service-grid { grid-template-columns: 1fr; gap: 20px; }
    .authority { padding: 80px 24px; }
    .authority-grid { grid-template-columns: 1fr; }
    .authority-header { margin-bottom: 50px; }
    .cta { padding: 100px 24px; }
    .cta h2 { font-size: clamp(36px, 7vw, 56px); }
    .marquee { padding: 36px 0; }
    .marquee-item { font-size: 18px; gap: 50px; }
    footer { padding: 60px 24px 30px; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  }

  @media (max-width: 600px) {
    .hero h1 { font-size: 40px; }
    .hero { min-height: 78vh; }
    .page-hero { min-height: 46vh; padding: 120px 22px 60px; }
    .service-card { padding: 32px 24px; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-secondary { justify-content: center; text-align: center; }
    .snapshot-inner { padding: 40px 22px; }
    .snapshot-form { padding: 32px 22px; }
    .nav-links a { font-size: 24px; }
  }

  /* ============ INTRO ANIMATIONS ============ */

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: reveal 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  .reveal-1 { animation-delay: 0.1s; }
  .reveal-2 { animation-delay: 0.25s; }
  .reveal-3 { animation-delay: 0.4s; }
  .reveal-4 { animation-delay: 0.55s; }
  .reveal-5 { animation-delay: 0.7s; }

  @keyframes reveal {
    to { opacity: 1; transform: translateY(0); }
  }

  /* Scroll-triggered */
  .scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
  }
  .scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

/* ============ PAGE HERO (inner pages) ============ */

.page-hero {
  min-height: 62vh;
  padding: 200px 60px 120px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 16, 14, 0.45) 0%, rgba(20, 16, 14, 0.55) 100%);
}

.page-hero-inner {
  max-width: 820px;
  position: relative;
}

.page-hero-inner .eyebrow {
  margin-bottom: 22px;
  display: inline-block;
}

.page-hero-inner h1 {
  font-size: clamp(44px, 5.6vw, 80px);
  margin-bottom: 24px;
  color: var(--ink);
}
.page-hero-inner h1 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--bordeaux);
  font-weight: 400;
}

.page-hero-inner p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

/* ============ SERVICE DETAIL (services page) ============ */

.service-detail {
  padding: 140px 60px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.service-detail-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 110px;
}
.service-detail-row:nth-child(even) {
  grid-template-columns: 1.2fr 1fr;
}
.service-detail-row:nth-child(even) .service-detail-text { order: 2; }
.service-detail-row:nth-child(even) .service-detail-visual { order: 1; }

.service-detail-row:last-child { margin-bottom: 0; }

.service-detail-text .service-num {
  margin-bottom: 16px;
}

.service-detail-text h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--ink);
}
.service-detail-text h2 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--bordeaux);
  font-weight: 400;
}

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

.service-detail-text > p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 28px;
}

.service-detail-list {
  list-style: none;
  margin-bottom: 32px;
}
.service-detail-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.service-detail-list li::before {
  content: '✦';
  color: var(--rose-gold-deep);
  font-size: 12px;
  margin-top: 4px;
}

.service-detail-visual {
  aspect-ratio: 4/5;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cream-deep), var(--blush));
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(184, 137, 110, 0.2);
}
.service-detail-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 25%, rgba(255, 255, 255, 0.55), transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(207, 160, 136, 0.35), transparent 60%);
}
.service-detail-visual .badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 18px 24px;
  border-radius: 8px;
  border-left: 2px solid var(--rose-gold);
}
.service-detail-visual .badge .num {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  color: var(--ink);
  line-height: 1;
}
.service-detail-visual .badge .label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* ============ FOUNDER SPOTLIGHT (about page) ============ */

.founder {
  padding: 140px 60px;
  background: var(--cream-deep);
  position: relative;
  z-index: 2;
}

.founder-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  align-items: center;
}

.founder-portrait {
  aspect-ratio: 4/5;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(241, 204, 193, 0.35), rgba(207, 160, 136, 0.5)),
    var(--blush);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(122, 63, 80, 0.22);
}
.founder-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 25%, rgba(255, 255, 255, 0.55), transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(122, 63, 80, 0.18), transparent 60%);
}
.founder-portrait::after {
  content: '✦';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 88px;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
}

.founder-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px 28px;
  border-radius: 8px;
  border-left: 2px solid var(--bordeaux);
  z-index: 2;
}
.founder-card .name {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: var(--ink);
  font-weight: 400;
}
.founder-card .role {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 4px;
}

.founder-content .eyebrow { margin-bottom: 20px; display: block; }
.founder-content h2 {
  font-size: clamp(38px, 4.5vw, 60px);
  margin-bottom: 28px;
}
.founder-content h2 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--bordeaux);
  font-weight: 400;
}
.founder-content p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 22px;
}

.founder-quote {
  margin: 36px 0;
  padding: 28px 32px;
  border-left: 2px solid var(--rose-gold);
  background: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--bordeaux);
  border-radius: 0 8px 8px 0;
}

.founder-sig {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.founder-sig .name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 26px;
  color: var(--bordeaux);
  font-weight: 400;
}
.founder-sig .role {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

/* ============ CASE STUDIES ============ */

.case-grid {
  padding: 140px 60px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.case-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 80px;
}

.case-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.case-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-gold), var(--bordeaux));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(184, 137, 110, 0.18);
  border-color: rgba(207, 160, 136, 0.45);
}
.case-card:hover::before { transform: scaleX(1); }

.case-card .industry {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-gold-deep);
  font-weight: 500;
  margin-bottom: 24px;
}

.case-card .stat-num {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(48px, 5vw, 72px);
  color: var(--ink);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.case-card .stat-num em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--bordeaux);
  font-weight: 400;
  font-size: 0.7em;
}

.case-card .stat-label {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.25;
  font-weight: 400;
}

.case-card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.case-card .biz {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.case-card .biz strong {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  color: var(--bordeaux);
  font-size: 14px;
}

/* ============ HOW THEY GROW ============ */

.method {
  padding: 140px 60px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 70px;
  position: relative;
}

.method-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-gold), transparent);
  z-index: 0;
}

.method-step {
  position: relative;
  z-index: 1;
}

.method-step .step-circle {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--bordeaux);
  margin-bottom: 28px;
  font-style: italic;
  box-shadow: 0 8px 22px rgba(184, 137, 110, 0.14);
}

.method-step h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}

.method-step p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ============ CONTACT FORM ============ */

.contact-grid {
  padding: 140px 60px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 90px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.contact-info .eyebrow { margin-bottom: 20px; display: block; }
.contact-info h2 {
  font-size: clamp(36px, 4.2vw, 56px);
  margin-bottom: 28px;
}
.contact-info h2 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--bordeaux);
  font-weight: 400;
}
.contact-info > p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-detail-list {
  list-style: none;
  margin-top: 8px;
}
.contact-detail-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-detail-list .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-gold-deep);
  margin-bottom: 6px;
  font-weight: 500;
}
.contact-detail-list .value {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--ink);
}
.contact-detail-list a {
  color: var(--ink);
  text-decoration: none;
}
.contact-detail-list a:hover { color: var(--bordeaux); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 56px 50px;
  box-shadow: 0 30px 60px rgba(184, 137, 110, 0.16);
}

.contact-form-wrap h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 8px;
  color: var(--ink);
}
.contact-form-wrap .sub {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

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

.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink);
  transition: all 0.3s ease;
  min-height: 130px;
  resize: vertical;
}
.form-field textarea:focus {
  outline: none;
  border-color: var(--rose-gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 162, 133, 0.12);
}

@media (max-width: 1024px) {
  .page-hero { padding: 140px 32px 80px; min-height: auto; }
  .service-detail { padding: 80px 32px; }
  .service-detail-row {
    grid-template-columns: 1fr !important;
    gap: 40px;
    margin-bottom: 80px;
  }
  .service-detail-row .service-detail-visual { order: 0 !important; }
  .service-detail-row .service-detail-text { order: 0 !important; }
  .founder { padding: 80px 32px; }
  .founder-inner { grid-template-columns: 1fr; gap: 50px; }
  .case-grid { padding: 80px 32px; }
  .case-cards { grid-template-columns: 1fr; }
  .method { padding: 80px 32px; }
  .method-steps { grid-template-columns: 1fr 1fr; }
  .method-steps::before { display: none; }
  .contact-grid { padding: 80px 32px; grid-template-columns: 1fr; gap: 50px; }
  .contact-form-wrap { padding: 40px 30px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .method-steps { grid-template-columns: 1fr; }
}

/* ============ PAGE-SPECIFIC HERO IMAGES ============ */

.page-hero-bg.is-services {
  background-image: url('/how-we-grow-bg.jpg');
}

.page-hero-bg.is-about {
  background-image: url('/growth-team-bg.jpg');
}

/* ============ HERO TEXT ON IMAGE (light contrast) ============ */

.hero h1 {
  color: var(--white);
  text-shadow: 0 2px 28px rgba(20, 16, 14, 0.55);
}
.hero h1 em {
  color: var(--blush);
}
.hero-sub {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 18px rgba(20, 16, 14, 0.55);
}
.hero-sub em {
  color: var(--blush);
}
.hero .hero-eyebrow {
  color: var(--blush);
  text-shadow: 0 1px 12px rgba(20, 16, 14, 0.5);
}
.hero .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--white);
}

.page-hero-inner h1 {
  color: var(--white);
  text-shadow: 0 2px 28px rgba(20, 16, 14, 0.55);
}
.page-hero-inner h1 em {
  color: var(--blush);
}
.page-hero-inner p {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 18px rgba(20, 16, 14, 0.55);
}
.page-hero-inner .eyebrow {
  color: var(--blush);
  text-shadow: 0 1px 12px rgba(20, 16, 14, 0.5);
}

.page-hero-bg.is-clients {
  background-image: url('/clients-bg.jpg');
}

.page-hero-bg.is-contact {
  background-image: url('/contact-bg.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #14100E;
}

/* ============ SERVICE DETAIL — IMAGE VISUAL ============ */

.service-detail-visual.is-image {
  background: #14100E;
}
.service-detail-visual.is-image::before {
  display: none;
}
.service-detail-visual.is-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
