/* ═══════════════════════════════════════════
   BEDROCK WEB — Stylesheet v3
   Warmer darks · Larger type · Richer backdrops
   ═══════════════════════════════════════════ */

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

:root {
  /* Dark palette — warm charcoal, not pure black */
  --dark-bg:          #1e1d1b;
  --dark-bg-alt:      #252420;
  --dark-surface:     #2a2927;
  --dark-border:      #363430;
  --dark-text:        #f2efe9;
  --dark-text-dim:    #9a9690;
  --dark-text-faint:  #48453f;

  /* Light palette — warm off-white */
  --light-bg:         #f8f5f0;
  --light-surface:    #ffffff;
  --light-border:     #e4dfd8;
  --light-text:       #1c1a17;
  --light-text-dim:   #6e6860;
  --light-text-faint: #bab5ae;

  /* Accent */
  --stone:            #b8956a;
  --stone-dim:        #8a6e4e;
  --stone-light:      #d4b896;
  --stone-pale:       #f0e6d8;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  background-color: var(--dark-bg);
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: var(--dark-border); }

/* ── SECTION BASE ── */
section { position: relative; }

.section-dark {
  background-color: var(--dark-bg);
  color: var(--dark-text);
  border-bottom: 1px solid var(--dark-border);
}

.section-light {
  background: var(--light-bg);
  color: var(--light-text);
  border-bottom: 1px solid var(--light-border);
}

/* Faint grain on light sections for depth */
.section-light::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* Subtle dot grid on dark sections */
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--dark-border) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* All direct children of sections sit above texture layers */
section > * { position: relative; z-index: 1; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 60px;
  background: rgba(30, 29, 27, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
nav.scrolled { border-color: var(--dark-border); }

.nav-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--dark-text);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-logo span { color: var(--stone); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-text-dim);
  text-decoration: none;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--dark-text); }

.nav-cta {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-bg);
  background: var(--dark-text);
  text-decoration: none;
  padding: 11px 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--stone-light); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 40px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); }

.section-dark .btn-primary, #hero .btn-primary {
  color: var(--dark-bg);
  background: var(--dark-text);
}
.section-dark .btn-primary:hover, #hero .btn-primary:hover {
  background: var(--stone-light);
}

.section-light .btn-primary, #cta .btn-primary {
  color: var(--light-bg);
  background: var(--light-text);
}
.section-light .btn-primary:hover, #cta .btn-primary:hover {
  background: var(--stone);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(242,239,233,0.55);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--dark-text); }
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover::after { transform: translateX(5px); }

/* ── SECTION LABELS ── */
.section-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--stone);
  flex-shrink: 0;
}

/* ── HEADINGS ── */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.section-dark .section-heading  { color: var(--dark-text); }
.section-light .section-heading { color: var(--light-text); }
.section-heading em { font-style: italic; color: var(--stone); }

.section-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  margin-top: 20px;
}
.section-dark .section-body  { color: var(--dark-text-dim); }
.section-light .section-body { color: var(--light-text-dim); }
.section-body + .section-body { margin-top: 16px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════
   HERO  (dark + full-bleed image backdrop)
   ══════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  min-height: 100dvh; /* dynamic viewport height — prevents mobile address bar jump */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 60px 90px;
}

/* Photo backdrop */
/* Hero canvas backdrop */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s ease;
}
#hero-canvas.ready { opacity: 1; }

/* Gradient vignette over canvas */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 65% 40%, rgba(184,149,106,0.06) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(30,29,27,0.2) 0%, rgba(30,29,27,0.0) 30%, rgba(30,29,27,0.7) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--stone);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(54px, 7.5vw, 100px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--dark-text);
  max-width: 920px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.4s;
}
.hero-headline em { font-style: italic; color: var(--stone); }

.hero-sub {
  font-size: 19px;
  font-weight: 300;
  color: rgba(242,239,233,0.65);
  max-width: 540px;
  margin-top: 28px;
  line-height: 1.65;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.6s;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 52px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.8s;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 110px;
  border-top: 1px solid var(--dark-border);
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 1s;
}
.hero-stat {
  padding: 40px 0;
  border-right: 1px solid var(--dark-border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat:not(:first-child) { padding-left: 44px; }

.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1;
}
.stat-unit { color: var(--stone); }
.stat-label {
  font-size: 16px;
  font-weight: 300;
  color: var(--dark-text-dim);
  margin-top: 10px;
  max-width: 210px;
  line-height: 1.55;
}

.stat-source {
  display: block;
  font-size: 11px;
  color: var(--dark-text-faint);
  margin-top: 6px;
  letter-spacing: 0.03em;
  font-style: italic;
}

/* ══════════════════════════════════════════════
   PROBLEM  (light)
   ══════════════════════════════════════════════ */
#problem {
  padding: 130px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-cards { display: flex; flex-direction: column; gap: 2px; }

.problem-card {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  padding: 30px 34px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.problem-card:hover {
  border-color: var(--stone-light);
  box-shadow: 0 6px 32px rgba(0,0,0,0.07);
}

.problem-card-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--stone);
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
.problem-card-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--light-text);
  margin-bottom: 8px;
}
.problem-card-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--light-text-dim);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   OFFER  (dark)
   ══════════════════════════════════════════════ */
#offer { padding: 130px 60px; }

.offer-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--dark-border);
}
.offer-header p {
  font-size: 16px;
  font-weight: 300;
  color: var(--dark-text-dim);
  max-width: 380px;
  line-height: 1.75;
}

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

.feature-card {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  padding: 38px 30px;
  transition: background 0.3s, border-color 0.3s;
}
.feature-card:hover {
  background: #2e2c29;
  border-color: var(--stone-dim);
}

.feature-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: var(--stone);
}
.feature-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.feature-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--dark-text-dim);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   PROCESS  (light)
   ══════════════════════════════════════════════ */
#process { padding: 130px 60px; }

.process-header { max-width: 560px; margin-bottom: 80px; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}

/* Connecting line between icon centres */
.process-steps::after {
  content: '';
  position: absolute;
  top: 39px;
  left: calc(25% / 2);
  right: calc(25% / 2);
  height: 1px;
  background: var(--light-border);
  z-index: 0;
}

.process-step {
  padding: 0 32px 0 0;
  position: relative;
  z-index: 1;
}
.process-step:last-child { padding-right: 0; }

/* Icon container */
.step-icon-wrap {
  width: 78px;
  height: 78px;
  border: 1px solid var(--light-border);
  background: var(--light-surface);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: background 0.3s, border-color 0.3s;
  position: relative;
  z-index: 1;
}
.process-step:hover .step-icon-wrap {
  background: var(--stone-pale);
  border-color: var(--stone-light);
}

.step-icon {
  width: 32px;
  height: 32px;
  color: var(--stone);
  transition: color 0.3s;
}
.process-step:hover .step-icon { color: var(--stone-dim); }

.step-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--light-text);
  margin-bottom: 10px;
}
.step-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--light-text-dim);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   ABOUT  (dark)
   ══════════════════════════════════════════════ */
#about { padding: 130px 60px; }

.about-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Photo column ── */
.about-photo-col { position: relative; }

.about-photo-wrap { position: relative; display: block; }

.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  filter: grayscale(15%) contrast(1.05);
  transition: filter 0.4s ease;
}
.about-photo:hover { filter: grayscale(0%) contrast(1); }

/* Name tag below photo */
.about-photo-tag {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--dark-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-photo-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-text);
}

.about-photo-role {
  font-size: 13px;
  font-weight: 300;
  color: var(--stone);
  letter-spacing: 0.06em;
}

/* ── Text column ── */
.about-text-col { padding-top: 0; }

/* ══════════════════════════════════════════════
   PRICING  (light)
   ══════════════════════════════════════════════ */
#pricing { padding: 130px 60px; }

.pricing-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--light-border);
}
.pricing-note {
  font-size: 15px;
  font-weight: 300;
  color: var(--light-text-dim);
  line-height: 1.75;
  max-width: 420px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 2px;
}

.pricing-card {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.pricing-card.featured {
  border-color: var(--stone-dim);
  background: #fffaf4;
}
.pricing-card:hover {
  border-color: var(--stone);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.pricing-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  border: 1px solid var(--stone-dim);
  padding: 4px 11px;
  margin-bottom: 20px;
  width: fit-content;
}

.pricing-name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-text-dim);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--light-text);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-range {
  font-size: 16px;
  color: var(--light-text-faint);
  margin-bottom: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-border);
}

/* Tagline — the one-liner under price */
.pricing-tagline {
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: var(--stone-dim);
  line-height: 1.5;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-border);
}

/* Feature list */
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-features li {
  font-size: 15px;
  font-weight: 300;
  color: var(--light-text-dim);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.pricing-features li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--stone-light);
  flex-shrink: 0;
}

.pricing-features li.has-tip {
  position: relative;
}

/* Tooltip button */
.tip-btn {
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  margin-left: 4px;
  flex-shrink: 0;
}

.tip-btn svg {
  width: 14px;
  height: 14px;
  color: var(--light-text-faint);
  transition: color 0.2s;
}
.tip-btn:hover svg { color: var(--stone); }

/* Tooltip text bubble */
.tip-text {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--light-text);
  color: var(--light-bg);
  font-size: 13px;
  font-weight: 300;
  font-style: normal;
  line-height: 1.55;
  padding: 12px 16px;
  width: 240px;
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

/* Arrow on tooltip */
.tip-text::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--light-text);
}

.tip-btn:hover .tip-text,
.tip-btn:focus .tip-text { display: block; }

/* Keep tooltips inside the card on right edge */
.pricing-card:last-child .tip-text,
.pricing-card:nth-child(3) .tip-text {
  left: auto;
  right: 0;
  transform: none;
}
.pricing-card:last-child .tip-text::after,
.pricing-card:nth-child(3) .tip-text::after {
  left: auto;
  right: 12px;
  transform: none;
}

.addon-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.addon-card {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  padding: 26px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.3s;
}
.addon-card:hover { border-color: var(--stone-dim); }
.addon-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--light-text);
  margin-bottom: 4px;
}
.addon-sub { font-size: 15px; color: var(--light-text-dim); }
.addon-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--stone);
  white-space: nowrap;
  margin-left: 24px;
}

/* ══════════════════════════════════════════════
   GUARANTEE  (dark)
   ══════════════════════════════════════════════ */
#guarantee {
  padding: 130px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.guarantee-large {
  font-family: var(--font-display);
  font-size: clamp(88px, 13vw, 152px);
  font-weight: 700;
  line-height: 0.88;
  color: var(--dark-border);
  letter-spacing: -0.04em;
  user-select: none;
}

.guarantee-body {
  font-size: 18px;
  font-weight: 300;
  color: var(--dark-text-dim);
  line-height: 1.75;
  margin-top: 20px;
}

.guarantee-detail {
  margin-top: 36px;
  padding: 30px 34px;
  border: 1px solid var(--dark-border);
  border-left: 3px solid var(--stone);
  background: var(--dark-surface);
}
.guarantee-detail p {
  font-size: 15px;
  font-weight: 300;
  color: var(--dark-text-dim);
  line-height: 1.75;
}
.guarantee-detail strong { color: var(--dark-text); font-weight: 500; }
.guarantee-detail-sub {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--dark-border);
  font-size: 14px;
  font-weight: 300;
  color: var(--dark-text-faint);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   CTA  (dark + full-bleed photo backdrop)
   ══════════════════════════════════════════════ */
#cta {
  padding: 160px 60px;
  text-align: center;
  background: var(--dark-bg-alt);
}

/* Photo backdrop for CTA */
#cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1800&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,149,106,0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--dark-text);
  max-width: 720px;
  margin: 0 auto 28px;
}
.cta-heading em { font-style: italic; color: var(--stone); }

.cta-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--dark-text-dim);
  margin-bottom: 52px;
}

.cta-consult {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-text-dim);
  margin-top: 22px;
}
.cta-consult strong { color: var(--stone); }

/* CTA button override */
#cta .btn-primary {
  background: var(--dark-text);
  color: var(--dark-bg);
}
#cta .btn-primary:hover { background: var(--stone-light); }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
footer {
  padding: 48px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #181715;
  border-top: 1px solid var(--dark-border);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-text);
  text-decoration: none;
}
.footer-logo span { color: var(--stone); }
.footer-tagline { font-size: 15px; color: var(--dark-text-faint); letter-spacing: 0.05em; }
.footer-copy    { font-size: 16px; color: var(--dark-text-faint); letter-spacing: 0.04em; }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .nav-logo { font-size: 22px; }

  /* ── Mobile hero — static star background ── */
  #hero {
    padding: 120px 24px 64px;
    background-color: var(--dark-bg);
    background-image:
      radial-gradient(ellipse at 65% 25%, rgba(184,149,106,0.12) 0%, transparent 55%),
      radial-gradient(ellipse at 20% 70%, rgba(184,149,106,0.07) 0%, transparent 50%),
      linear-gradient(to bottom, rgba(30,29,27,0.15) 0%, rgba(30,29,27,0.0) 30%, rgba(30,29,27,0.7) 100%),
      url('../images/hero-stars.svg');
    background-size: auto, auto, auto, 400px 400px;
    background-repeat: no-repeat, no-repeat, no-repeat, repeat;
    background-position: center, center, center, center;
  }
  #hero-canvas  { display: none; }
  #hero::before { display: none; }
  #hero::after  { display: none; }

  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat {
    border-right: none;
    border-bottom: 1px solid var(--dark-border);
    padding-left: 0 !important;
  }

  #problem, #guarantee   { grid-template-columns: 1fr; gap: 48px; padding: 80px 24px; }
  #offer, #process       { padding: 80px 24px; }
  #about                 { padding: 80px 24px; }
  .about-inner           { grid-template-columns: 1fr; gap: 40px; }
  .about-photo           { aspect-ratio: 3 / 2.8; object-position: center 8%; }
  #pricing               { padding: 80px 24px; }
  #cta                   { padding: 100px 24px; }

  .features-grid  { grid-template-columns: 1fr 1fr; }
  .process-steps  { grid-template-columns: 1fr 1fr; gap: 0; }
  .pricing-grid   { grid-template-columns: 1fr 1fr; }

  .offer-header   { flex-direction: column; align-items: flex-start; gap: 24px; }
  .pricing-header { grid-template-columns: 1fr; gap: 28px; }
  .addon-row      { grid-template-columns: 1fr; }

  footer { flex-direction: column; gap: 16px; text-align: center; padding: 40px 24px; }
  .process-steps::after { display: none; }
}

@media (max-width: 600px) {
  .features-grid, .pricing-grid { grid-template-columns: 1fr; }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-step {
    padding: 36px 0;
    border-bottom: 1px solid var(--light-border);
  }
  .process-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .process-step:first-child {
    padding-top: 0;
  }

  .step-icon-wrap {
    margin-bottom: 20px;
  }

  .step-body {
    margin-bottom: 0;
  }
}


/* ══════════════════════════════════════════════
   PORTFOLIO  (light)
   ══════════════════════════════════════════════ */
#portfolio { padding: 130px 60px; }

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--light-border);
}

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

.portfolio-card {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.portfolio-card:hover {
  border-color: var(--stone-light);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.portfolio-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.portfolio-card:hover .portfolio-img { transform: scale(1.04); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,29,27,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-view {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-text);
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--stone);
  padding-bottom: 3px;
}

.portfolio-meta {
  padding: 28px 28px 32px;
}

.portfolio-industry {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}

.portfolio-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--light-text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.portfolio-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--light-text-dim);
  line-height: 1.65;
  margin-bottom: 16px;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.portfolio-tag {
  font-size: 12px;
  font-weight: 400;
  color: var(--light-text-dim);
  border: 1px solid var(--light-border);
  padding: 3px 10px;
  letter-spacing: 0.04em;
}

.portfolio-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--light-border);
  text-align: center;
}

.portfolio-note {
  font-size: 14px;
  font-weight: 300;
  color: var(--light-text-faint);
  font-style: italic;
}

/* ══════════════════════════════════════════════
   TESTIMONIALS  (dark, infinite scroll ticker)
   ══════════════════════════════════════════════ */
.testimonials-section { padding: 80px 0; }

.testimonials-header {
  padding: 0 60px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--dark-border);
  margin-left: 60px;
  margin-right: 60px;
}

.testimonials-viewport {
  overflow: hidden;
  cursor: ew-resize;
  /* Fade edges for infinite feel */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
}

.testimonials-track {
  display: flex;
  gap: 2px;
  width: max-content;
  /* No CSS animation — driven by JS rAF */
}

.testimonial-card {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-left: none;
  padding: 36px 40px;
  width: 420px;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
}
.testimonial-card:first-child { border-left: 1px solid var(--dark-border); }
.testimonials-track .testimonial-card:hover {
  background: #222120;
  border-color: var(--stone-dim);
}

.testimonial-quote {
  font-size: 15px;
  font-weight: 300;
  color: var(--dark-text-dim);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-quote::before {
  content: '"';
  color: var(--stone);
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 0;
  vertical-align: -10px;
  margin-right: 4px;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 13px;
  font-weight: 300;
  color: var(--stone);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════
   FAQ  (dark, contact page)
   ══════════════════════════════════════════════ */
#faq { padding: 120px 60px; }

.faq-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}

.faq-header { position: sticky; top: 120px; }

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--dark-border);
}

.faq-item {
  border-bottom: 1px solid var(--dark-border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-text);
  text-align: left;
  cursor: none;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--stone-light); }

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--stone);
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  font-size: 15px;
  font-weight: 300;
  color: var(--dark-text-dim);
  line-height: 1.75;
  padding-bottom: 24px;
}

/* ══════════════════════════════════════════════
   RESPONSIVE — new sections
   ══════════════════════════════════════════════ */
@media (max-width: 900px) {
  #portfolio          { padding: 80px 24px; }
  .portfolio-header   { flex-direction: column; align-items: flex-start; gap: 24px; }
  .portfolio-grid     { grid-template-columns: 1fr; }

  .testimonials-section { padding: 60px 0; }
  .testimonials-header  { margin-left: 24px; margin-right: 24px; padding-left: 0; padding-right: 0; }
  .testimonial-card     { width: 300px; padding: 28px 24px; }

  #faq                { padding: 80px 24px; }
  .faq-inner          { grid-template-columns: 1fr; gap: 40px; }
  .faq-header         { position: static; }
}

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

/* ══════════════════════════════════════════════
   PORTFOLIO COMING SOON
   ══════════════════════════════════════════════ */
.portfolio-coming {
  display: flex;
  justify-content: center;
  padding: 80px 0 40px;
}

.coming-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 480px;
}

.coming-icon {
  width: 56px;
  height: 56px;
  color: var(--stone);
  margin-bottom: 28px;
  opacity: 0.7;
}
.coming-icon svg { width: 100%; height: 100%; }

.coming-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--light-text);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.coming-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--light-text-dim);
  line-height: 1.7;
  margin-bottom: 28px;
}

.coming-link {
  font-size: 15px;
  font-weight: 400;
  color: var(--stone);
  text-decoration: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--stone-dim);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.coming-link:hover { color: var(--stone-light); border-color: var(--stone-light); }

/* ── Portfolio placeholder cards ── */
.portfolio-card--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  background: var(--light-bg);
  border: 1px dashed var(--light-border);
  cursor: default;
}
.portfolio-card--placeholder:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--stone-light);
}

.portfolio-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 40px;
}

.placeholder-icon {
  width: 40px;
  height: 40px;
  color: var(--light-text-faint);
  margin-bottom: 4px;
}
.placeholder-icon svg { width: 100%; height: 100%; }

.placeholder-label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--light-text-faint);
  letter-spacing: -0.01em;
}

.placeholder-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--light-text-faint);
  font-style: italic;
}

/* ── Testimonials placeholder state ── */
.testimonials-placeholder-note {
  font-size: 14px;
  font-weight: 300;
  color: var(--dark-text-faint);
  font-style: italic;
  align-self: flex-end;
}

.testimonials-placeholder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.testimonial-placeholder-card {
  background: var(--dark-surface);
  border: 1px dashed var(--dark-border);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.t-placeholder-quote {
  height: 10px;
  background: var(--dark-border);
  border-radius: 2px;
  opacity: 0.5;
  animation: shimmer 2.4s ease-in-out infinite;
}
.t-placeholder-quote.short {
  width: 65%;
  animation-delay: 0.3s;
}
.t-placeholder-author {
  height: 8px;
  width: 40%;
  background: var(--dark-border);
  border-radius: 2px;
  opacity: 0.3;
  margin-top: 10px;
  animation: shimmer 2.4s ease-in-out infinite;
  animation-delay: 0.6s;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.25; }
  50%       { opacity: 0.5;  }
}

@media (max-width: 900px) {
  .testimonials-placeholder { grid-template-columns: 1fr; }
  .testimonials-placeholder-note { align-self: flex-start; margin-top: 4px; }
}