/* ============================================================
   VISUAL MOAT — GLOBAL DESIGN SYSTEM
   Email Marketing Engineered for E-Commerce
   Version 1.0 — July 2026
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  /* Brand colours */
  --navy:        #1B3A6B;
  --navy-dark:   #111f3a;
  --navy-deep:   #0d1829;
  --navy-black:  #060e1a;
  --gold:        #C9A84C;
  --gold-light:  rgba(201, 168, 76, 0.10);
  --gold-border: rgba(201, 168, 76, 0.25);
  --gold-hover:  #d4b45a;
  --white:       #FFFFFF;
  --off-white:   #f8f6f2;
  --warm-gray:   #f0ede6;
  --border:      #e8e5de;
  --border-dark: #d0ccc4;

  /* Text colours */
  --text-dark:   #1a1a1a;
  --text-mid:    #6b6860;
  --text-light:  #a09d96;

  /* Status colours */
  --green:       #2d7a3a;
  --green-bg:    #edf7ef;
  --green-bdr:   #c3e6c8;
  --red:         #c04828;
  --red-bg:      #fef2ee;
  --red-bdr:     #fad5c8;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  /* Spacing scale */
  --sp-xs:  8px;
  --sp-sm:  16px;
  --sp-md:  24px;
  --sp-lg:  40px;
  --sp-xl:  64px;
  --sp-2xl: 96px;
  --sp-3xl: 128px;

  /* Layout */
  --max-width:    1080px;
  --nav-height:   64px;
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    14px;
  --radius-xl:    20px;
  --radius-pill:  100px;

  /* Transitions */
  --t-fast:   0.15s ease;
  --t-base:   0.25s ease;
  --t-slow:   0.4s ease;
  --t-reveal: 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ── PAGE TRANSITION ── */
.page-transition {
  opacity: 0;
  animation: pageFadeIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

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

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--sp-lg);
  transition: background var(--t-slow), border-color var(--t-slow), box-shadow var(--t-slow);
}

/* White nav — used on pages with white/light hero */
.nav--light {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Navy nav — permanently dark for inner pages */
.nav--dark {
  background: rgba(13, 24, 41, 0.97);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Homepage scroll transition: starts light, becomes dark */
.nav--home {
  background: transparent;
  border-bottom: 1px solid transparent;
}
.nav--home.is-scrolled {
  background: rgba(13, 24, 41, 0.97);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
  transition: opacity var(--t-base);
}

.nav__logo-mark img {
  width: 36px;
  height: auto;
  display: block;
}

.nav__logo-mark::after {
  display: none;
}

/* Light nav — slight navy tint on logo for contrast */
.nav--light .nav__logo-mark { background: transparent; }

/* Dark nav logo */
.nav--dark .nav__logo-mark,
.nav--home.is-scrolled .nav__logo-mark { background: transparent; }

/* Unscrolled homepage logo */
.nav--home:not(.is-scrolled) .nav__logo-mark { background: transparent; border: none; }

.nav__logo-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color var(--t-base);
}
.nav--light .nav__logo-name { color: var(--navy); }
.nav--dark .nav__logo-name,
.nav--home.is-scrolled .nav__logo-name { color: var(--white); }
.nav--home:not(.is-scrolled) .nav__logo-name { color: var(--white); }

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--t-fast);
  white-space: nowrap;
}

.nav--light .nav__link { color: var(--text-mid); }
.nav--light .nav__link:hover { color: var(--navy); }

.nav--dark .nav__link,
.nav--home.is-scrolled .nav__link { color: rgba(255,255,255,0.65); }
.nav--dark .nav__link:hover,
.nav--home.is-scrolled .nav__link:hover { color: var(--gold); }

.nav--home:not(.is-scrolled) .nav__link { color: rgba(255,255,255,0.7); }
.nav--home:not(.is-scrolled) .nav__link:hover { color: var(--gold); }

/* Nav CTA */
.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--t-base);
  white-space: nowrap;
}

.nav--light .nav__cta {
  background: var(--navy);
  color: var(--white);
}
.nav--light .nav__cta:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(27,58,107,0.3);
}

.nav--dark .nav__cta,
.nav--home.is-scrolled .nav__cta {
  background: var(--gold);
  color: var(--navy-deep);
}
.nav--dark .nav__cta:hover,
.nav--home.is-scrolled .nav__cta:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}

.nav--home:not(.is-scrolled) .nav__cta {
  background: var(--gold);
  color: var(--navy-deep);
}
.nav--home:not(.is-scrolled) .nav__cta:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1100;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  transition: all var(--t-base);
}

.nav--light .nav__hamburger span { background: var(--navy); }
.nav--dark .nav__hamburger span,
.nav--home .nav__hamburger span { background: var(--white); }

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

/* Mobile drawer — fullscreen overlay */
.nav__drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  background: #0d1829;
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 80px 32px 40px;
  box-sizing: border-box;
}

.nav__drawer.is-open {
  display: flex !important;
}

.nav__drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  z-index: 1100;
  opacity: 0.6;
}
.nav__drawer-close:hover { opacity: 1; color: #C9A84C; }

.nav__drawer-link {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 5vw, 34px);
  font-weight: 400;
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 14px 32px;
  text-align: center;
  opacity: 0.85;
  transition: opacity 0.15s ease, color 0.15s ease;
  letter-spacing: 0.01em;
}
.nav__drawer-link:hover { opacity: 1; color: #C9A84C !important; }

.nav__drawer-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 36px;
  border-radius: 100px;
  background: #C9A84C;
  color: #0d1829 !important;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.2s ease, transform 0.15s ease;
}
.nav__drawer-cta:hover { background: #d4b45a; transform: translateY(-2px); }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
}

.section {
  padding: var(--sp-2xl) 0;
}

.section--alt { background: var(--off-white); }
.section--navy { background: var(--navy); }
.section--dark { background: var(--navy-dark); }
.section--deep { background: var(--navy-deep); }
.section--black { background: var(--navy-black); }
.section--gold  { background: var(--gold); }

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.eyebrow--white { color: rgba(201, 168, 76, 0.9); }
.eyebrow--white::before { background: rgba(201, 168, 76, 0.9); }

.headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 14px;
}

.headline--white { color: var(--white); }
.headline em { font-style: italic; color: var(--gold); }

.subline {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 540px;
}

.subline--white { color: rgba(255, 255, 255, 0.55); }
.subline--wide  { max-width: 680px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--t-base);
  cursor: pointer;
  white-space: nowrap;
  border: none;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn--gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.35);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27, 58, 107, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border-dark);
}
.btn--outline:hover {
  border-color: var(--navy);
  background: var(--off-white);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--outline-white:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
}

.btn--ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.55);
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  border-radius: 0;
}
.btn--ghost-white:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.btn--sm { padding: 9px 20px; font-size: 13px; }
.btn--lg { padding: 16px 40px; font-size: 15px; }
.btn--full { width: 100%; justify-content: center; }

/* Arrow icon inside buttons */
.btn__arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform var(--t-fast);
}
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}

.card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 10px 40px rgba(27, 58, 107, 0.09);
  transform: translateY(-3px);
}

.card--featured {
  border: 2px solid var(--gold);
}

.card--navy {
  background: var(--navy);
  border-color: var(--navy);
}

/* ── DIVIDER ROW ── */
.divider-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.divider-row__label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}

.divider-row__line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── PROOF STRIP ── */
.proof-strip {
  background: var(--gold);
  padding: 22px 0;
}

.proof-strip__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.proof-stat__val {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--navy-deep);
  text-align: center;
}

.proof-stat__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(27, 58, 107, 0.6);
  text-align: center;
  margin-top: 3px;
}

/* ── FEATURE DOT ── */
.feat-list { display: flex; flex-direction: column; gap: 10px; }

.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feat-item__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

.feat-item__text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-mid);
}

.feat-item__text--white { color: rgba(255,255,255,0.6); }

/* ── STUDIO BADGE ── */
.studio-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--warm-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.studio-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── LINK ── */
.text-link {
  font-size: 13px;
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 168, 76, 0.35);
  padding-bottom: 1px;
  transition: all var(--t-fast);
}
.text-link:hover {
  color: var(--navy);
  border-color: var(--navy);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity var(--t-reveal),
    transform var(--t-reveal);
  will-change: opacity, transform;
}

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

.reveal--delay-1 { transition-delay: 0.10s; }
.reveal--delay-2 { transition-delay: 0.20s; }
.reveal--delay-3 { transition-delay: 0.30s; }
.reveal--delay-4 { transition-delay: 0.40s; }

/* ── FOOTER ── */
.footer {
  background: var(--navy-black);
  padding: 24px 0;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__mark {
  width: 36px;
  height: auto;
  background: transparent;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
}

.footer__mark img {
  width: 36px;
  height: auto;
  display: block;
}

.footer__brand-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
}

.footer__tagline {
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  margin-top: 1px;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__link {
  font-size: 12px;
  color: rgba(255,255,255,0.32);
  transition: color var(--t-fast);
}

.footer__link:hover { color: var(--gold); }

/* ── FORM ELEMENTS ── */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-label .required { color: var(--gold); margin-left: 2px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 58, 107, 0.1);
  background: var(--white);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-light); }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23a09d96' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

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

/* ── ANIMATIONS ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(201, 168, 76, 0); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

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

.float  { animation: float 3s ease-in-out infinite; }
.shimmer-text {
  background: linear-gradient(135deg, #C9A84C 0%, #E8C96A 50%, #C9A84C 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3.5s linear infinite;
}

/* ── NOTEBOX ── */
.notebox {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 16px 20px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── RESPONSIVE — TABLET ── */
@media (max-width: 900px) {
  :root {
    --sp-xl:  48px;
    --sp-2xl: 72px;
  }

  .container { padding: 0 var(--sp-md); }
  .nav { padding: 0 var(--sp-md); }
}

/* ── RESPONSIVE — MOBILE ── */
@media (max-width: 640px) {
  :root {
    --sp-lg:  20px;
    --sp-xl:  36px;
    --sp-2xl: 52px;
  }

  /* ── NAV ── */
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav { padding: 0 16px; }

  /* ── HERO ── */
  .hero__inner {
    padding: 100px 20px 60px;
    text-align: center;
  }

  .hero__logo-wrap { margin-bottom: 20px; }

  .hero__eyebrow {
    margin: 0 auto 20px;
    font-size: 10px;
  }

  .hero__h1 {
    font-size: clamp(28px, 8.5vw, 40px);
    margin-bottom: 16px;
    line-height: 1.18;
  }

  .hero__sub {
    font-size: 15px;
    margin-bottom: 28px;
    padding: 0 8px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 12px;
  }

  .hero__actions .btn,
  .hero__actions a {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 20px;
    font-size: 14px;
    box-sizing: border-box;
  }

  .hero__score-nudge { font-size: 12px; margin-bottom: 28px; }

  .hero__trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    margin-top: 36px;
  }

  .hero__trust-item { text-align: center; }

  /* ── PROOF STRIP ── */
  .proof-strip__inner {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .proof-strip__item { font-size: 11px; }

  /* ── PROBLEM SECTION ── */
  .problem-cards { grid-template-columns: 1fr; gap: 12px; }
  .problem-card { padding: 24px 20px; }

  /* ── METHOD / PILLARS ── */
  .method-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .method-header__right { max-width: 100%; }
  .pillar-grid { grid-template-columns: 1fr; gap: 12px; }
  .pillar { padding: 28px 20px; }

  /* ── SETUP / SERVICES ── */
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .setup-grid { grid-template-columns: 1fr; gap: 16px; }
  .setup-card { padding: 28px 20px; }
  .setup-card__price { font-size: 32px; }

  .retainer-grid { grid-template-columns: 1fr; gap: 16px; }
  .retainer-card { padding: 24px 20px; }
  .retainer-card__price { font-size: 28px; }

  .addons-grid { grid-template-columns: 1fr; gap: 10px; }

  /* ── STUDIO SECTION ── */
  .studio-content { grid-template-columns: 1fr; gap: 28px; }
  .studio-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .studio-cell { min-height: 140px; border-radius: 8px; }
  .studio-cell--large { grid-row: auto; min-height: 160px; }

  /* ── PROCESS SECTION ── */
  .process-intro { grid-template-columns: 1fr; gap: 16px; }
  .proc-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .proc-step { padding: 20px 16px; }
  .proc-step__day { font-size: 11px; }
  .proc-step__title { font-size: 15px; }

  /* ── SELECTIVE ACCESS ── */
  .selective__box { padding: 32px 20px; }
  .selective__pillars { grid-template-columns: 1fr; gap: 10px; }
  .selective__pillar { padding: 12px 16px; }

  /* ── RESULTS / TESTIMONIALS ── */
  .testi-placeholder { padding: 32px 20px; }
  .testi-placeholder__title { font-size: 16px; }

  /* ── FINAL CTA ── */
  .final-cta { padding: var(--sp-xl) 0; text-align: center; }

  .final-cta .btn--gold,
  .final-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
  }

  /* ── FOOTER ── */
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0 16px;
  }
  .footer__links { flex-wrap: wrap; gap: 12px; }
  .footer__left { gap: 10px; }

  /* ── GENERAL TYPE ── */
  .headline { font-size: clamp(26px, 7vw, 38px); line-height: 1.2; }
  .subline { font-size: 15px; }
  .section { padding: var(--sp-xl) 0; }
  .container { padding: 0 16px; }
}
