/* ============================================================
   PHAM. Creative — Stand Coverage
   Brand: #0F0F0F Atomic Black · #FAF7F5 Almost White · #FF9819 Vivid Orange
   Font: Be Vietnam Pro
   ============================================================ */

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #FAF7F5;
  color: #0F0F0F;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --black:      #0F0F0F;
  --white:      #FAF7F5;
  --pure:       #ffffff;
  --orange:     #FF9819;
  --orange-dim: rgba(255,152,25,0.15);
  --muted:      #6b6b6b;
  --border:     #E2DED9;
  --radius:     12px;
  --radius-lg:  20px;
  --section:    104px;
  --container:  1040px;
  --gap:        20px;
}

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  border: 2px solid transparent;
  transition: opacity .15s, transform .15s, background .15s, border-color .15s;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn:hover  { opacity: .85; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary  { background: var(--black);  color: var(--white);  border-color: var(--black); }
.btn--primary:hover { opacity: 1; background: #2a2a2a; }
.btn--ghost    { background: transparent; color: var(--black);  border-color: var(--border); }
.btn--ghost:hover { border-color: var(--black); opacity: 1; }
.btn--outline  { background: transparent; color: var(--black);  border-color: var(--border); }
.btn--outline:hover { border-color: var(--black); opacity: 1; }
.btn--outline-light { background: transparent; color: rgba(250,247,245,.7); border-color: rgba(250,247,245,.25); font-size: .875rem; }
.btn--outline-light:hover { border-color: rgba(250,247,245,.7); color: var(--white); opacity: 1; }
.btn--ghost-light { background: transparent; color: rgba(250,247,245,.8); border-color: rgba(250,247,245,.28); }
.btn--ghost-light:hover { border-color: rgba(250,247,245,.65); color: var(--white); opacity: 1; }
.btn--white    { background: var(--white);  color: var(--black);  border-color: var(--white); }
.btn--white:hover  { background: #ece8e4; opacity: 1; }
.btn--orange   { background: var(--orange); color: var(--black);  border-color: var(--orange); }
.btn--orange:hover { background: #e88a0f; opacity: 1; }
.btn--lg  { padding: 15px 32px; font-size: 1rem; }
.btn--full { width: 100%; }

/* ── Typography helpers ─────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.section-label--light { color: rgba(250,247,245,.4); }
.section-title {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.04em;
}
.section-sub {
  margin-top: 14px;
  font-size: .9375rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-header { margin-bottom: 52px; }

/* ── Reveal animations ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }
.reveal--delay-4 { transition-delay: .4s; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.nav.is-scrolled { box-shadow: 0 2px 20px rgba(15,15,15,.07); }

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  height: 66px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo { font-size: 1.2rem; font-weight: 900; letter-spacing: -.04em; }
.nav__links { display: flex; gap: 28px; flex: 1; }
.nav__links a { font-size: .875rem; font-weight: 500; color: var(--muted); transition: color .15s; }
.nav__links a:hover { color: var(--black); }
.nav__cta { margin-left: auto; }

.nav__hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 32px; height: 32px; padding: 4px; margin-left: auto;
}
.nav__hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--black); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none; flex-direction: column;
  border-top: 1px solid var(--border);
  padding: 16px 40px 24px;
  background: var(--white);
}
.nav__mobile.is-open { display: flex; }
.nav__mobile-link {
  font-size: 1rem; font-weight: 500;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.nav__mobile-cta { margin-top: 20px; align-self: flex-start; }

/* ============================================================
   HERO — full screen cinematic
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Background photo */
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  display: block;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,15,15,.35) 0%,
    rgba(15,15,15,.08) 30%,
    rgba(15,15,15,.5) 62%,
    rgba(15,15,15,.92) 100%
  );
}
/* Progressive blur at the bottom third */
.hero__blur {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 55%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 55%);
  z-index: 1;
  pointer-events: none;
}

/* Content layer */
.hero__body {
  position: relative; z-index: 1;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-top: 120px;
  padding-bottom: 52px;
}

.hero__text { max-width: 620px; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(250,247,245,.6); margin-bottom: 20px;
}
.dot {
  width: 7px; height: 7px; background: var(--orange);
  border-radius: 50%; flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.5); opacity: .7; }
}

.hero__heading {
  font-size: clamp(3rem, 6.5vw, 5.6rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.055em;
  color: var(--white);
  margin-bottom: 36px;
  text-shadow: 0 2px 24px rgba(15,15,15,.4);
}
.hero__heading em { font-style: normal; color: var(--orange); }

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.hero__trust {
  list-style: none; display: flex; gap: 20px; flex-wrap: wrap;
  font-size: .78rem; font-weight: 500; color: rgba(250,247,245,.45);
}
.hero__trust li { display: flex; align-items: center; gap: 7px; }
.hero__trust li::before {
  content: ''; width: 4px; height: 4px; background: var(--orange);
  border-radius: 50%; flex-shrink: 0;
}

/* Case study proof card */
.hero__proof {
  flex-shrink: 0;
  align-self: flex-end;
  width: 240px;
  background: rgba(15,15,15,.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;
  border: 1px solid rgba(250,247,245,.1);
  overflow: hidden;
}
.hero__proof-img-wrap {
  width: 100%; height: 150px; overflow: hidden;
}
.hero__proof-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 25%;
  display: block;
  transition: transform .5s;
}
.hero__proof:hover .hero__proof-img { transform: scale(1.04); }
.hero__proof-info {
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 3px;
}
.hero__proof-title {
  font-size: .82rem; font-weight: 700; color: var(--white);
  letter-spacing: -.01em;
}
.hero__proof-sub {
  font-size: .7rem; color: rgba(250,247,245,.45);
}
.hero__proof-stat {
  font-size: .7rem; color: var(--orange); font-weight: 600;
  margin-top: 6px;
}

/* ── Marquee ─────────────────────────────────────────────────── */
.marquee {
  background: var(--black);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.marquee__track {
  display: flex; gap: 28px; white-space: nowrap;
  animation: marquee 26s linear infinite;
  width: max-content;
}
.marquee__track span {
  font-size: .75rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(250,247,245,.55);
}
.marquee__sep { color: var(--orange) !important; opacity: 1 !important; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--black); padding: var(--section) 0; }
.stats__grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
}
.stats__item {
  padding: 0 40px 0 0;
  border-right: 1px solid rgba(250,247,245,.1);
  display: flex; flex-direction: column; gap: 10px;
}
.stats__item:first-child { padding-left: 0; }
.stats__item:last-child  { border-right: none; }
.stats__top { display: flex; align-items: baseline; gap: 2px; }
.stats__num {
  font-size: clamp(2rem,3.5vw,2.8rem); font-weight: 900;
  letter-spacing: -.05em; color: var(--orange); line-height: 1;
}
.stats__suffix {
  font-size: clamp(1.2rem,2vw,1.6rem); font-weight: 900;
  color: var(--orange); letter-spacing: -.04em;
}
.stats__label {
  font-size: .8rem; color: rgba(250,247,245,.45); line-height: 1.55; max-width: 200px;
}

/* ============================================================
   GALLERY — "From the floor"
   ============================================================ */
.gallery {
  background: var(--black);
  padding: var(--section) 0;
  border-top: 1px solid rgba(250,247,245,.06);
}
.gallery__header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 36px; flex-wrap: wrap; gap: 16px;
}
.gallery__title {
  font-size: clamp(1.6rem,3.2vw,2.4rem); font-weight: 800;
  letter-spacing: -.05em; color: var(--white); line-height: 1;
}

/* 3×3 uniform grid */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery__item { border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery__item img {
  width: 100%; height: 260px;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.22,1,.36,1), opacity .3s;
  opacity: .85;
  display: block;
}
.gallery__item:hover img { transform: scale(1.04); opacity: 1; }

/* ============================================================
   PROCESS — timeline
   ============================================================ */
.process { padding: var(--section) 0; background: var(--white); }

.timeline {
  position: relative;
  max-width: 780px;
}

/* Vertical dashed track */
.timeline__track {
  position: absolute;
  left: 21px; top: 42px; bottom: 24px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--orange) 0, var(--orange) 6px,
    transparent 6px, transparent 12px
  );
}

.timeline__item {
  display: flex; align-items: flex-start; gap: 28px;
  padding-bottom: 48px;
  position: relative;
}
.timeline__item:last-child { padding-bottom: 0; }

.timeline__marker { flex-shrink: 0; }

.timeline__num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: var(--black);
  font-size: .72rem; font-weight: 800; letter-spacing: .04em;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 5px var(--white);
}

.timeline__body { padding-top: 10px; }
.timeline__body h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 10px; }
.timeline__body p  { font-size: .875rem; color: var(--muted); line-height: 1.75; max-width: 520px; }

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

.packages__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--gap);
  margin-bottom: 40px;
  align-items: start;
}

/* Package card */
.pkg {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  background: var(--pure);
  transition: border-color .2s, box-shadow .2s;
}
.pkg:hover { box-shadow: 0 6px 32px rgba(15,15,15,.08); }

.pkg--featured {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  box-shadow: 0 12px 48px rgba(15,15,15,.16);
  transform: translateY(-10px);
}
.pkg--featured:hover { box-shadow: 0 16px 56px rgba(15,15,15,.22); }

.pkg__badge {
  display: inline-block;
  background: var(--orange); color: var(--black);
  font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 20px; margin-bottom: 16px;
}
.pkg__name { font-size: 1.1rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 4px; }
.pkg__tag  { font-size: .78rem; color: var(--muted); margin-bottom: 24px; font-weight: 500; }
.pkg--featured .pkg__tag { color: rgba(250,247,245,.45); }

.pkg__from {
  display: block; font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 4px;
}
.pkg--featured .pkg__from { color: rgba(250,247,245,.4); }

.pkg__amount {
  display: block; font-size: 2.5rem; font-weight: 900;
  letter-spacing: -.06em; line-height: 1;
}
.pkg--featured .pkg__amount { color: var(--orange); }

.pkg__period { font-size: .75rem; color: var(--muted); margin-top: 6px; display: block; }
.pkg--featured .pkg__period { color: rgba(250,247,245,.4); }

.pkg__divider {
  height: 1px; background: var(--border); margin: 22px 0;
}
.pkg--featured .pkg__divider { background: rgba(250,247,245,.12); }

.pkg__list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pkg__item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .845rem; line-height: 1.45;
}
.pkg__item::before {
  content: '✓'; font-size: .65rem; font-weight: 800;
  flex-shrink: 0; margin-top: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.pkg__item--yes::before { background: var(--orange-dim); color: var(--orange); }
.pkg--featured .pkg__item--yes::before { background: rgba(255,152,25,.25); color: var(--orange); }
.pkg__item--no { opacity: .4; }
.pkg__item--no::before { content: '×'; font-weight: 400; background: rgba(107,107,107,.1); color: var(--muted); }

/* Add-ons */
.addons {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  background: var(--pure);
}
.addons__header { margin-bottom: 24px; }
.addons__header h3 { font-size: 1.15rem; font-weight: 800; letter-spacing: -.03em; }
.addons__header .section-label { margin-bottom: 6px; }

.addons__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.addon {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 18px 22px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--border);
}
.addon__info { display: flex; flex-direction: column; gap: 3px; }
.addon__info strong { font-size: .875rem; font-weight: 700; letter-spacing: -.01em; }
.addon__info span   { font-size: .78rem; color: var(--muted); line-height: 1.45; }
.addon__price { font-size: 1rem; font-weight: 900; letter-spacing: -.03em; color: var(--orange); white-space: nowrap; }

/* ============================================================
   PORTFOLIO CTA — full bleed background
   ============================================================ */
.portfolio-cta {
  background: var(--black); /* fallback */
  position: relative;
  overflow: hidden;
  padding: var(--section) 0;
}
.portfolio-cta__bg {
  position: absolute; inset: 0; z-index: 0;
}
.portfolio-cta__bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  display: block;
}
.portfolio-cta__bg-overlay {
  position: absolute; inset: 0;
  background: rgba(15,15,15,.82);
}
.portfolio-cta .container { position: relative; z-index: 1; }
.portfolio-cta__inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.portfolio-cta__inner .section-label { margin-bottom: 12px; }
.portfolio-cta__inner h2 {
  font-size: clamp(1.8rem,3.2vw,2.6rem); font-weight: 800;
  letter-spacing: -.05em; line-height: 1.1;
  color: var(--white); margin-bottom: 18px;
}
.portfolio-cta__inner p {
  font-size: .9375rem; color: rgba(250,247,245,.5);
  line-height: 1.7; margin-bottom: 32px;
}

/* ============================================================
   CASE STUDY
   ============================================================ */
.case-study { padding: var(--section) 0; }
.case-study__card {
  background: var(--black); color: var(--white);
  border-radius: var(--radius-lg); padding: 60px;
  display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start;
}
.case-study__left .section-label { color: rgba(250,247,245,.4); }
.case-study__left h2 {
  font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 800;
  letter-spacing: -.04em; line-height: 1.2;
  color: var(--white); margin-bottom: 20px;
}
.case-study__left p {
  font-size: .9rem; color: rgba(250,247,245,.5);
  line-height: 1.75; margin-bottom: 32px; max-width: 440px;
}

.case-study__stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.case-stat {
  background: rgba(250,247,245,.05);
  border: 1px solid rgba(250,247,245,.08);
  border-radius: var(--radius); padding: 22px 20px;
}
.case-stat__num {
  font-size: 1.5rem; font-weight: 900; letter-spacing: -.04em;
  color: var(--orange); line-height: 1; margin-bottom: 6px;
}
.case-stat__label { font-size: .73rem; color: rgba(250,247,245,.4); line-height: 1.45; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: var(--section) 0; background: var(--white); }
.faq__header { text-align: center; }
.faq__list { max-width: 660px; margin: 0 auto; }

.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }

.faq__q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: .9375rem; font-weight: 600;
  cursor: pointer; list-style: none; gap: 20px; user-select: none;
}
.faq__q::-webkit-details-marker { display: none; }

.faq__icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--border); flex-shrink: 0; position: relative;
  transition: background .2s;
}
.faq__icon::before, .faq__icon::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 11px; height: 1.5px; background: var(--black);
  transform: translate(-50%,-50%);
  transition: transform .25s, opacity .25s;
}
.faq__icon::after { transform: translate(-50%,-50%) rotate(90deg); }
details[open] .faq__icon { background: var(--orange); }
details[open] .faq__icon::after { transform: translate(-50%,-50%) rotate(0); opacity: 0; }

.faq__a { padding: 0 0 20px; }
.faq__a p { font-size: .875rem; color: var(--muted); line-height: 1.75; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final { background: var(--black); padding: var(--section) 0; }
.cta-final__inner { text-align: center; max-width: 560px; margin: 0 auto; }
.cta-final h2 {
  font-size: clamp(1.9rem,4vw,3rem); font-weight: 900;
  letter-spacing: -.055em; line-height: 1.1;
  color: var(--white); margin-bottom: 16px;
}
.cta-final p { font-size: 1rem; color: rgba(250,247,245,.5); margin-bottom: 32px; }
.cta-final__note {
  margin-top: 18px; font-size: .78rem;
  color: rgba(250,247,245,.3); letter-spacing: .04em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 28px 0; border-top: 1px solid var(--border); background: var(--white); }
.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.footer__logo { font-size: 1.1rem; font-weight: 900; letter-spacing: -.04em; }
.footer__links { display: flex; gap: 24px; font-size: .8rem; color: var(--muted); }
.footer__links a:hover { color: var(--black); }
.footer__copy { font-size: .78rem; color: var(--muted); }

/* ============================================================
   FLOATING ACTION BUTTONS — bottom right
   ============================================================ */
.fab {
  display: none;
  position: fixed; bottom: 24px; right: 24px; z-index: 300;
  flex-direction: column; gap: 10px; align-items: flex-end;
}
.fab.is-visible { display: flex; }

.fab__btn {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 40px;
  font-family: inherit; font-size: .82rem; font-weight: 700;
  white-space: nowrap; cursor: pointer;
  box-shadow: 0 4px 20px rgba(15,15,15,.22);
  border: none; text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.fab__btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(15,15,15,.28); }
.fab__btn--cal { background: var(--orange); color: var(--black); }
.fab__btn--email { background: var(--black); color: var(--white); }

/* ============================================================
   FINAL CTA — actions row
   ============================================================ */
.cta-final__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 0; }

/* ============================================================
   RESPONSIVE — 900px
   ============================================================ */
@media (max-width: 900px) {
  :root { --section: 72px; }
  .container { padding: 0 24px; }

  /* nav */
  .nav__inner  { padding: 0 24px; }
  .nav__links  { display: none; }
  .nav__cta    { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { padding: 16px 24px 24px; }

  /* hero */
  .hero__body { flex-direction: column; align-items: flex-start; padding-bottom: 40px; gap: 28px; }
  .hero__proof { width: 100%; max-width: 320px; }
  .hero__proof-img-wrap { height: 120px; }
  .hero__heading { font-size: clamp(2.4rem, 8vw, 3.6rem); margin-bottom: 28px; }
  .fab { bottom: 16px; right: 16px; }

  /* stats */
  .stats__grid { grid-template-columns: repeat(2,1fr); gap: 0; }
  .stats__item { padding: 0 0 32px 0; border-right: none; border-bottom: 1px solid rgba(250,247,245,.1); }
  .stats__item:nth-child(odd)  { padding-right: 20px; border-right: 1px solid rgba(250,247,245,.1); }
  .stats__item:nth-child(3),
  .stats__item:nth-child(4)    { border-bottom: none; padding-top: 32px; }

  /* gallery */
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .gallery__item img { height: 200px; }

  /* process timeline — no changes needed at 900px, already vertical */

  /* packages */
  .packages__grid { grid-template-columns: 1fr; }
  .pkg--featured { transform: none; }
  .addons__grid  { grid-template-columns: 1fr; }

  /* portfolio — already centered, no changes needed */

  /* case study */
  .case-study__card { grid-template-columns: 1fr; gap: 36px; padding: 36px 28px; }
  .case-study__stats { grid-template-columns: repeat(2,1fr); }

  /* footer */
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   RESPONSIVE — 600px
   ============================================================ */
@media (max-width: 600px) {
  .hero__heading { font-size: clamp(2.2rem, 9vw, 3rem); }
  .fab__btn span { display: none; }
  .fab__btn { padding: 14px; border-radius: 50%; }
  .fab { gap: 12px; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .gallery__item img { height: 180px; }
  .faq__header { text-align: left; }
  .addon { flex-direction: column; align-items: flex-start; gap: 8px; }
}
