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

  :root {
    --cream: #F4F1EC;
    --dark: #1A1A18;
    --red: #C01230;
    --black: #0C0C0A;
    --gray-img: #B3ADA5;
    --pink-img: #D6C5C0;
    --text-muted: #7a7570;
    --border: rgba(26,26,24,0.12);
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'DM Sans', sans-serif;
    --fs-base: 14px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
    font-weight: 300;
  }

  /* ─── NAVBAR ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    transition: box-shadow 0.3s;
  }
  nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

  .nav-logo {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0.03em;
    color: var(--dark);
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    font-size: 13px;
    font-weight: 300;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 1px;
    background: var(--dark);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
  }
  .nav-links a:hover { color: var(--red); }
  .nav-links a:hover::after { background: var(--red); transform: scaleX(1); }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 22px;
    border: 1px solid var(--dark);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 300;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.01em;
  }
  .nav-cta:hover { background: var(--dark); color: var(--cream); }

  /* Hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--dark);
    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 {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    z-index: 99;
    flex-direction: column;
    padding: 48px 5%;
    gap: 32px;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
  }
  .mobile-menu.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }
  .mobile-menu a {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--red); }
  .mobile-menu .mob-cta {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 28px;
    border: 1px solid var(--dark);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--dark);
    text-decoration: none;
    width: fit-content;
  }

  /* ─── HERO ─── */
  .hero {
    padding: 140px 5% 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-founder {
    font-size: 13px;
    font-weight: 400;
    color: var(--red);
    letter-spacing: 0.02em;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease 0.2s forwards;
  }

  .hero-heading {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 400;
    line-height: 1.12;
    max-width: 680px;
    color: var(--dark);
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.9s ease 0.35s forwards;
  }
  .hero-heading .accent { color: var(--red); font-style: italic; }

  .hero-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    max-width: 420px;
    color: var(--text-muted);
    margin-bottom: 44px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease 0.5s forwards;
  }

  .hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--red);
    color: #fff;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease 0.65s forwards;
  }
  .hero-btn:hover { background: #9e0e25; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(192,18,48,0.3); }

  .hero-tags {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
  }
  .hero-tags .left-tags {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 300;
  }
  .hero-tags .left-tags span { margin: 0 8px; opacity: 0.4; }
  .hero-tags .right-tag {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 300;
  }

  /* ─── TICKER ─── */
  .ticker-wrap {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    overflow: hidden;
  }
  .ticker-track {
    display: flex;
    gap: 0;
    animation: ticker 28s linear infinite;
    white-space: nowrap;
  }
  .ticker-track:hover { animation-play-state: paused; }
  .ticker-item {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding-right: 36px;
    flex-shrink: 0;
  }
  .ticker-dot {
    width: 4px; height: 4px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ─── IMAGE SPLIT ─── */
  .image-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 520px;
    overflow: hidden;
  }
  .img-placeholder {
    background: var(--gray-img);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    transition: transform 0.6s ease;
    overflow: hidden;
  }
  .img-placeholder:hover { transform: scale(1.02); }

  /* ─── VALUES MARQUEE ─── */
  .values-marquee {
    background: var(--cream);
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }
  .values-track {
    display: flex;
    animation: ticker 20s linear infinite;
    white-space: nowrap;
  }
  .values-item {
    font-size: 13px;
    font-weight: 300;
    color: var(--dark);
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding-right: 40px;
    flex-shrink: 0;
  }
  .values-dot {
    width: 5px; height: 5px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ─── BELIEF SECTION ─── */
  .belief {
    background: var(--black);
    padding: 120px 5%;
    color: #fff;
  }
  .belief-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    display: inline-block;
    padding: 4px 10px;
  }
  .belief-heading {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    line-height: 1.2;
    max-width: 700px;
    margin: 24px 0 40px;
    color: #fff;
  }
  .belief-heading .accent { color: var(--red); font-style: italic; }
  .belief-body {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
    max-width: 500px;
    color: rgba(255,255,255,0.55);
  }
  .belief-body p + p { margin-top: 16px; }

  /* ─── WHAT WE DO ─── */
  .what-we-do {
    padding: 100px 5% 80px;
    background: var(--cream);
  }
  .wwd-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 80px;
  }
  .wwd-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: inline-block;
    border: 1px solid var(--border);
    padding: 4px 10px;
  }
  .wwd-heading {
    font-family: var(--font-display);
    font-size: clamp(44px, 5.5vw, 68px);
    font-weight: 400;
    line-height: 1.05;
    color: var(--dark);
  }
  .wwd-heading .accent { color: var(--red); font-style: italic; }
  .wwd-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
    align-self: end;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
  }
  .service-item {
    padding: 44px 40px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background 0.25s;
    cursor: default;
  }
  .service-item:hover { background: rgba(192,18,48,0.03); }
  .service-num {
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--red);
    font-weight: 400;
    margin-bottom: 16px;
    font-family: var(--font-display);
  }
  .service-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.2;
  }
  .service-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-muted);
  }

  /* ─── QUOTE ─── */
  .quote-section {
    padding: 100px 5%;
    background: var(--cream);
    text-align: center;
    border-top: 1px solid var(--border);
  }
  .quote-text {
    font-family: var(--font-display);
    font-size: clamp(22px, 3.2vw, 38px);
    font-weight: 400;
    line-height: 1.45;
    color: var(--dark);
    max-width: 780px;
    margin: 0 auto 20px;
    font-style: italic;
  }
  .quote-attr {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 300;
  }

  /* ─── CHAI & HUSTLE ─── */
  .chai-section {
    padding: 100px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .chai-img {
    background: var(--pink-img);
    aspect-ratio: 3/4;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
  }
  .chai-img-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: rgba(192,18,48,0.65);
    line-height: 1.5;
  }
  .chai-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
    border: 1px solid var(--border);
    display: inline-block;
    padding: 4px 10px;
  }
  .chai-heading {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 28px;
  }
  .chai-heading .accent { color: var(--red); font-style: italic; }
  .chai-body {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 16px;
  }
  .chai-link {
    font-size: 13px;
    font-weight: 400;
    color: var(--dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--dark);
    padding-bottom: 2px;
    transition: all 0.2s;
  }
  .chai-link:hover { color: var(--red); border-color: var(--red); }

  /* ─── 3-IMAGE GALLERY ─── */
  .gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    height: 380px;
    overflow: hidden;
  }
  .gallery-item {
    background: var(--gray-img);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    font-weight: 300;
    overflow: hidden;
    position: relative;
    transition: transform 0.5s ease;
  }
  .gallery-item:nth-child(2) { background: #A8A29B; }
  .gallery-item:nth-child(3) { background: #9E9890; }
  .gallery-item:hover { transform: scale(1.015); z-index: 1; }

  /* ─── PROCESS ─── */
  .process {
    padding: 100px 5%;
    background: var(--cream);
  }
  .process-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 80px;
  }
  .process-heading {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    line-height: 1.12;
    color: var(--dark);
  }
  .process-heading .accent { color: var(--red); font-style: italic; }
  .process-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
    align-self: end;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--border);
  }
  .process-step {
    padding: 44px 32px 44px 0;
    border-right: 1px solid var(--border);
  }
  .process-step:last-child { border-right: none; padding-right: 0; }
  .process-step:not(:first-child) { padding-left: 32px; }
  .step-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 300;
    color: var(--red);
    opacity: 0.6;
    margin-bottom: 20px;
    font-style: italic;
  }
  .step-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 12px;
  }
  .step-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-muted);
  }

  /* ─── VALUE PROPS ─── */
  .value-props {
    padding: 80px 5%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--border);
  }
  .vp-item {
    padding: 48px 40px;
    border-right: 1px solid var(--border);
    transition: background 0.2s;
  }
  .vp-item:last-child { border-right: none; }
  .vp-item:hover { background: rgba(192,18,48,0.02); }
  .vp-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--red);
    margin-bottom: 16px;
    font-style: italic;
  }
  .vp-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-muted);
  }

  /* ─── LOGO STRIP ─── */
  .logo-strip {
    padding: 32px 5% 0;
  }
  .logo-strip-heading {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    line-height: 1.12;
    color: var(--dark);
    margin: 0 0 40px;
  }
  .logo-strip-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
  }
  .logo-strip-inner::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -100vw;
    right: -100vw;
    border-top: 1px solid var(--border);
  }
  .logo-strip-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
    border-right: 1px solid var(--border);
    overflow: hidden;
  }
  .logo-strip-item:last-child { border-right: none; }
  .logo-strip-item img {
    max-height: 72px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.25s, opacity 0.25s, transform 0.35s ease;
  }
  .logo-strip-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15);
  }

  /* ─── CTA SECTION ─── */
  .cta-section {
    background: var(--black);
    padding: 120px 5%;
    text-align: center;
    color: #fff;
  }
  .cta-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 24px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .cta-label::before, .cta-label::after {
    content: '';
    width: 24px;
    height: 1px;
    background: rgba(255,255,255,0.2);
  }
  .cta-heading {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 66px);
    font-weight: 400;
    line-height: 1.15;
    color: #fff;
    max-width: 700px;
    margin: 0 auto 28px;
  }
  .cta-heading .accent { color: var(--red); font-style: italic; }
  .cta-sub {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255,255,255,0.45);
    max-width: 480px;
    margin: 0 auto 56px;
  }
  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
  }
  .cta-btn:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 80px 5% 40px;
    color: rgba(255,255,255,0.7);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
  }
  .footer-brand-name {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
  }
  .footer-brand-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
    max-width: 240px;
  }
  .footer-email {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-email:hover { color: var(--red); }
  .footer-col-label {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin-bottom: 20px;
    font-weight: 300;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: #fff; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-copy {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    font-weight: 300;
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    to { opacity: 1; }
  }
  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* Scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.75s ease, transform 0.75s 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; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }

    .hero { padding: 120px 5% 60px; min-height: auto; }
    .hero-heading { font-size: clamp(36px, 8vw, 52px); }
    .hero-tags { flex-direction: column; align-items: flex-start; gap: 8px; }

    .image-split { grid-template-columns: 1fr; height: auto; }
    .img-placeholder { height: 280px; }

    .belief { padding: 80px 5%; }

    .what-we-do { padding: 80px 5% 60px; }
    .wwd-top { grid-template-columns: 1fr; gap: 24px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-item { padding: 32px 24px; }

    .chai-section { grid-template-columns: 1fr; gap: 40px; padding: 80px 5%; }
    .chai-img { aspect-ratio: 4/3; }

    .gallery { grid-template-columns: 1fr; height: auto; }
    .gallery-item { height: 240px; }

    .process { padding: 80px 5%; }
    .process-top { grid-template-columns: 1fr; gap: 24px; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-step { padding: 32px 24px; border-right: none; border-bottom: 1px solid var(--border); }
    .process-step:nth-child(odd) { border-right: 1px solid var(--border); }
    .process-step:last-child { border-bottom: none; }
    .process-step:not(:first-child) { padding-left: 24px; }

    .value-props { grid-template-columns: 1fr; padding: 0 5% 60px; }
    .vp-item { padding: 36px 0; border-right: none; border-bottom: 1px solid var(--border); }
    .vp-item:last-child { border-bottom: none; }

    .logo-strip-inner { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
    .logo-strip-item { padding: 32px 20px; }
    .logo-strip-item img { max-height: 52px; max-width: 170px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  }

  @media (max-width: 580px) {
    .hero { padding: 100px 5% 48px; }
    .hero-heading { font-size: 36px; }

    .process-steps { grid-template-columns: 1fr; }
    .process-step:nth-child(odd) { border-right: none; }
    .process-step { border-bottom: 1px solid var(--border); border-right: none !important; }

    .footer-grid { grid-template-columns: 1fr; }
    .cta-section { padding: 80px 5%; }
    .logo-strip-inner { grid-template-columns: 1fr; }
    .logo-strip-item { padding: 24px 16px; border-right: none; border-bottom: 1px solid var(--border); }
    .logo-strip-item:last-child { border-bottom: none; }
    .logo-strip-item img { max-height: 40px; max-width: 130px; }
  }

  /* ════════════════════════════════════════════
     INNER PAGES (added) — shared by Services,
     Service Detail, Approach, Talk to us
     ════════════════════════════════════════════ */

  /* active nav link */
  .nav-links a.active { color: var(--red); }
  .nav-links a.active::after { background: var(--red); transform: scaleX(1); }

  /* ── PAGE HEADER / INNER HERO ── */
  .page-header {
    padding: 150px 5% 70px;
    border-bottom: 1px solid var(--border);
  }
  .page-eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 400;
    margin-bottom: 20px;
    display: inline-block;
  }
  .page-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 400;
    line-height: 1.08;
    color: var(--dark);
    max-width: 760px;
    margin-bottom: 28px;
  }
  .page-title .accent { color: var(--red); font-style: italic; }
  .page-lead {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 540px;
  }

  /* breadcrumb */
  .crumb {
    padding: 96px 5% 0;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 300;
  }
  .crumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
  .crumb a:hover { color: var(--red); }
  .crumb .sep { margin: 0 10px; opacity: 0.5; }
  .crumb .current { color: var(--dark); }

  /* ── SERVICES LISTING ── */
  .services-list {
    padding: 0 5% 40px;
    border-top: 1px solid var(--border);
  }
  .svc-row {
    display: grid;
    grid-template-columns: 80px 1fr 1.2fr auto;
    gap: 32px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--dark);
    transition: padding 0.3s ease, background 0.25s ease;
  }
  .svc-row:hover { background: rgba(192,18,48,0.03); padding-left: 16px; }
  .svc-row-num {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--red);
  }
  .svc-row-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 400;
    line-height: 1.15;
  }
  .svc-row-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted);
  }
  .svc-row-arrow {
    font-size: 20px;
    color: var(--dark);
    transition: transform 0.25s ease, color 0.25s ease;
  }
  .svc-row:hover .svc-row-arrow { transform: translateX(6px); color: var(--red); }

  /* ── SERVICE DETAIL ── */
  .detail-body {
    padding: 90px 5%;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
  }
  .detail-sticky { position: sticky; top: 100px; align-self: start; }
  .detail-meta-label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
  }
  .detail-meta-val {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 28px;
  }
  .detail-section { margin-bottom: 56px; }
  .detail-section:last-child { margin-bottom: 0; }
  .detail-h {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 22px;
    line-height: 1.2;
  }
  .detail-h .accent { color: var(--red); font-style: italic; }
  .detail-p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 16px;
    max-width: 560px;
  }
  .deliverables { list-style: none; border-top: 1px solid var(--border); }
  .deliverables li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    font-weight: 300;
    color: var(--dark);
  }
  .deliverables li::before {
    content: '—';
    color: var(--red);
    flex-shrink: 0;
  }

  /* ── CONTACT / TALK TO US ── */
  .contact-wrap {
    padding: 80px 5% 110px;
    display: flex;
    justify-content: center;
  }
  .contact-wrap > div {
    width: 100%;
    max-width: 640px;
  }
  .contact-aside-h {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.6vw, 40px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 24px;
  }
  .contact-aside-h .accent { color: var(--red); font-style: italic; }
  .contact-aside-p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 360px;
  }
  .contact-detail { margin-bottom: 22px; }
  .contact-detail .lbl {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 6px;
  }
  .contact-detail a, .contact-detail span {
    font-size: 15px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s;
  }
  .contact-detail a:hover { color: var(--red); }

  .contact-form { display: flex; flex-direction: column; gap: 26px; }
  .field { display: flex; flex-direction: column; gap: 8px; }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
  .field label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 400;
  }
  .field input,
  .field select,
  .field textarea {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--dark);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    outline: none;
    transition: border-color 0.25s ease;
    border-radius: 0;
  }
  .field input::placeholder,
  .field textarea::placeholder { color: rgba(122,117,112,0.5); }
  .field input:focus,
  .field select:focus,
  .field textarea:focus { border-bottom-color: var(--red); }
  .field textarea { resize: vertical; min-height: 96px; }
  .form-submit {
    align-self: flex-start;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 38px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .form-submit:hover { background: #9e0e25; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(192,18,48,0.3); }
  .form-note {
    font-size: 12px;
    font-weight: 300;
    color: var(--text-muted);
    margin-top: -6px;
  }

  /* ── APPROACH extras ── */
  .approach-principles {
    padding: 90px 5%;
    background: var(--cream);
    border-top: 1px solid var(--border);
  }
  .ap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
    margin-top: 56px;
  }
  .ap-cell {
    padding: 44px 36px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background 0.25s;
  }
  .ap-cell:hover { background: rgba(192,18,48,0.03); }
  .ap-cell-num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 28px;
    color: var(--red);
    opacity: 0.6;
    margin-bottom: 18px;
  }
  .ap-cell-h {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 12px;
  }
  .ap-cell-p {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-muted);
  }

  /* ── INNER RESPONSIVE ── */
  @media (max-width: 900px) {
    .page-header { padding: 120px 5% 50px; }
    .svc-row { grid-template-columns: 50px 1fr auto; gap: 16px; }
    .svc-row-desc { display: none; }
    .detail-body { grid-template-columns: 1fr; gap: 40px; }
    .detail-sticky { position: static; }
    .field-row { grid-template-columns: 1fr; gap: 26px; }
    .ap-grid { grid-template-columns: 1fr; }
    .ap-cell { border-right: none; }
  }

  /* ── WP nav menu compatibility ── */
  ul.nav-links { margin: 0; padding: 0; }
  .nav-links .current-menu-item > a,
  .nav-links .current_page_item > a { color: var(--red); }
  .nav-links .current-menu-item > a::after,
  .nav-links .current_page_item > a::after { background: var(--red); transform: scaleX(1); }
  .mobile-menu ul.mobile-menu-list { list-style: none; display: flex; flex-direction: column; gap: 32px; width: 100%; margin: 0; padding: 0; }
  .footer-links { margin: 0; padding: 0; }
  .footer-links li { list-style: none; }

  /* ── Chai page stats ── */
  .chai-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
  }
  .chai-stat {
    padding: 44px 32px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
  }
  .chai-stat-num {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 54px);
    color: var(--red);
    font-style: italic;
    line-height: 1;
    margin-bottom: 10px;
  }
  .chai-stat-label {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  @media (max-width: 900px) { .chai-stats { grid-template-columns: 1fr 1fr; } }
.contact-form .wpcf7-form-control-wrap{
    display:block;
    width:100%;
}

.contact-form input,
.contact-form textarea{
    width:100%;
}

.contact-form .form-submit{
    margin-top:8px;
}

.contact-form .wpcf7-spinner{
    margin-left:12px;
}
.field textarea {
    resize: vertical;
    min-height: 36px;
    height: 100px;
}
.intl-tel-input.separate-dial-code .selected-flag {
    background-color: transparent !important;
}