/* =========================================================
   Online Pro Photos — Modern photo lab aesthetic
   Pulls from the OPP logo: blue → magenta → orange gradient
   on deep black, with white type
   ========================================================= */

:root {
  /* OPP brand accent colors — preserved across both themes */
  --opp-blue:     #2B5CFF;
  --opp-blue-d:   #1B3FCC;
  --opp-violet:   #6B3FE0;
  --opp-magenta:  #E5378A;
  --opp-coral:    #F26A2E;
  --opp-amber:    #FFB347;

  /* Signature gradient — the OPP rainbow */
  --opp-gradient: linear-gradient(135deg, var(--opp-blue) 0%, var(--opp-violet) 38%, var(--opp-magenta) 64%, var(--opp-coral) 100%);
  --opp-gradient-soft: linear-gradient(135deg, rgba(43, 92, 255, 0.15) 0%, rgba(229, 55, 138, 0.12) 60%, rgba(242, 106, 46, 0.10) 100%);
  --opp-gradient-edge: linear-gradient(90deg, var(--opp-blue), var(--opp-magenta), var(--opp-coral));

  /* Type */
  --sans:   "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --serif:  "Fraunces", "Cormorant Garamond", Georgia, serif;
  --mono:   "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Layout */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 4px;
  --radius-lg: 8px;

  /* === WARM THEME (default) === */
  --cream:        #f3ede1;
  --paper:        #ebe2cf;
  --bone:         #e3d6bd;
  --linen:        #d6c5a3;
  --ink:          #2a201a;
  --ink-soft:     #4a3c30;
  --rust:         #b04a26;
  --rust-deep:    #8a3818;
  --ochre:        #c98a3a;
  --moss:         #5a6a3e;
  --walnut:       #5c3a23;
  --brass:        #b08648;
  --shadow:       rgba(42, 32, 26, 0.18);

  --bg:           #f3ede1;
  --bg-elevated:  #ebe2cf;
  --bg-hover:     #e3d6bd;
  --surface:      #d6c5a3;
  --border:       rgba(42, 32, 26, 0.08);
  --border-strong:rgba(42, 32, 26, 0.18);
  --text:         #2a201a;
  --text-dim:     #4a3c30;
  --text-faint:   #7a6850;
  --paper-warm:   #FAFAF7;
  --shadow-card:  0 8px 30px rgba(42, 32, 26, 0.18);

  /* Nav backdrop tinted to the theme bg */
  --nav-bg:       rgba(243, 237, 225, 0.92);

  /* Atmospheric body glow alpha (warm = subtle, dark = stronger) */
  --atm-blue-a:    0.04;
  --atm-magenta-a: 0.03;
  --atm-coral-a:   0.025;

  /* Button styles (themed) */
  --btn-primary-bg:        linear-gradient(135deg, #2a201a 0%, #2a201a 100%);
  --btn-primary-bg-hover:  linear-gradient(135deg, #b04a26 0%, #b04a26 100%);
  --btn-primary-text:      #f3ede1;
  --btn-primary-border:    #2a201a;
}

/* === DARK THEME === */
:root[data-theme="dark"] {
  --bg:           #07080B;
  --bg-elevated:  #11131A;
  --bg-hover:     #181B25;
  --surface:      #1B1F2B;
  --border:       rgba(255, 255, 255, 0.08);
  --border-strong:rgba(255, 255, 255, 0.16);
  --text:         #F5F6FA;
  --text-dim:     #9CA3B5;
  --text-faint:   #5C6478;
  --paper-warm:   #FAFAF7;
  --shadow-card:  0 8px 30px rgba(0, 0, 0, 0.4);

  /* Alias the warm-named vars to dark equivalents so existing rules still work */
  --cream:        #07080B;
  --paper:        #11131A;
  --bone:         #181B25;
  --linen:        #1B1F2B;
  --ink:          #F5F6FA;
  --ink-soft:     #9CA3B5;
  --rust:         #F26A2E;
  --rust-deep:    #E5378A;
  --ochre:        #FFB347;
  --shadow:       rgba(0, 0, 0, 0.5);

  --nav-bg:       rgba(7, 8, 11, 0.85);

  --atm-blue-a:    0.08;
  --atm-magenta-a: 0.06;
  --atm-coral-a:   0.04;

  --btn-primary-bg:        var(--opp-gradient);
  --btn-primary-bg-hover:  var(--opp-gradient);
  --btn-primary-text:      #F5F6FA;
  --btn-primary-border:    transparent;
}

/* Smooth color transitions when theme flips */
html { transition: background-color 0.3s ease; }
body,
.nav,
.svc-card,
.door,
.review,
.feat,
.btn,
.value,
.tier {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(43, 92, 255, var(--atm-blue-a)), transparent),
    radial-gradient(ellipse 60% 40% at 80% 0%, rgba(229, 55, 138, var(--atm-magenta-a)), transparent),
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(242, 106, 46, var(--atm-coral-a)), transparent);
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Typography ---------- */
.display {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--text);
}
.display em {
  font-style: normal;
  font-weight: 600;
  background: var(--opp-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.display--md { font-size: clamp(2rem, 4.2vw, 3.4rem); letter-spacing: -0.03em; }
.display--sm { font-size: clamp(1.5rem, 2.8vw, 2.1rem); letter-spacing: -0.02em; }

.serif-accent {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
}

.eyebrow {
  font-family: var(--mono), var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--opp-coral);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px; height: 1px;
  background: var(--opp-coral);
}
.eyebrow--center { display: flex; justify-content: center; }
.eyebrow--center::before { display: none; }
.text-center { text-align: center; }

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 46ch;
}

.prose {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 56ch;
}
.prose strong { color: var(--text); font-weight: 500; }

.gradient-text {
  background: var(--opp-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.9rem 1.5rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(.2,.8,.2,1);
  text-align: center;
  white-space: nowrap;
}
.btn--lg { padding: 1.05rem 1.85rem; font-size: 0.98rem; }

.btn--gradient {
  color: var(--btn-primary-text);
  background-image: var(--btn-primary-bg);
  background-size: 200% 200%;
  background-position: 0% 50%;
  border: 1px solid var(--btn-primary-border);
}
.btn--gradient:hover {
  background-image: var(--btn-primary-bg-hover);
  background-position: 100% 50%;
  border-color: var(--btn-primary-border);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(229, 55, 138, 0.18);
}

.btn--solid {
  background: var(--text);
  color: var(--ink);
}
.btn--solid:hover { background: var(--opp-coral); color: var(--text); transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--text);
}

.link-arrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
  transition: gap 0.2s, color 0.2s;
}
.link-arrow:hover {
  gap: 12px;
  color: var(--opp-coral);
  border-color: var(--opp-coral);
}

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--bg);
  color: var(--text-dim);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.announce::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--opp-gradient-edge);
  opacity: 0.4;
}
.announce__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 11px var(--gutter);
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.announce__dot { color: var(--opp-magenta); opacity: 0.7; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav-bg);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand__logo {
  width: 40px; height: 40px;
  border-radius: 8px;
  object-fit: contain;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand__name {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
.brand__tag {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 2px;
  font-family: var(--mono), var(--sans);
}
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--text-dim);
}
.nav__links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav__links a:hover, .nav__links a.active { color: var(--text); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--opp-gradient-edge);
  transition: width 0.3s ease;
}
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

.nav__cta { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.nav__menu {
  display: none;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav__menu span {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition: 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(60px, 9vw, 120px) var(--gutter) clamp(80px, 9vw, 130px);
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}
.hero__copy { animation: fadeUp 0.9s ease both; }
.hero__cta {
  display: flex;
  gap: 14px;
  margin-top: 2.2rem;
  flex-wrap: wrap;
}
.hero__split {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.hero__split-col {
  padding: 1.6rem 1.5rem 0 0;
  position: relative;
}
.hero__split-col + .hero__split-col {
  padding-left: 1.5rem;
  padding-right: 0;
  border-left: 1px solid var(--border);
}
.hero__split-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--opp-coral);
  margin-bottom: 0.6rem;
  font-family: var(--mono), var(--sans);
  font-weight: 500;
}
.hero__split-col h4.h4--blue { color: #6B8EFF; }
.hero__split-col p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.55;
}
.hero__split-col a {
  display: inline-block;
  margin-top: 8px;
  color: var(--text);
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.hero__split-col a:hover { color: var(--opp-coral); border-color: var(--opp-coral); }

/* Hero art */
.hero__art {
  position: relative;
  aspect-ratio: 1 / 1;
  animation: fadeUp 0.9s 0.15s ease both;
}
.aperture-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--opp-gradient);
  padding: 3px;
  filter: drop-shadow(0 30px 60px rgba(229, 55, 138, 0.2));
}
.aperture-inner {
  width: 100%; height: 100%;
  background: #07080B;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aperture-svg {
  width: 60%;
  height: 60%;
  color: #F5F6FA;
  opacity: 0.95;
  animation: aperture-rotate 60s linear infinite;
}
@keyframes aperture-rotate {
  to { transform: rotate(360deg); }
}

.hero__print {
  position: absolute;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-strong);
  overflow: hidden;
}
.hero__print::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.08) 50%, transparent 70%);
}
.hero__print--1 {
  top: -3%; left: -8%;
  width: 32%; aspect-ratio: 4/5;
  transform: rotate(-8deg);
  background: linear-gradient(180deg, #ffb347 0%, #f26a2e 35%, #2a3548 65%, #07080B 100%);
}
.hero__print--2 {
  bottom: -5%; right: -5%;
  width: 36%; aspect-ratio: 5/4;
  transform: rotate(6deg);
  background: linear-gradient(180deg, #2B5CFF 0%, #6B3FE0 50%, #E5378A 100%);
}
.hero__print--3 {
  top: 50%; right: -12%;
  width: 28%; aspect-ratio: 1/1;
  transform: rotate(-3deg) translateY(-50%);
  background: linear-gradient(135deg, #1B3FCC, #07080B);
  z-index: 2;
}

.hero__chip {
  position: absolute;
  top: 6%; left: 50%;
  transform: translateX(-50%);
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-family: var(--mono), var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.hero__chip::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--opp-coral);
  box-shadow: 0 0 8px var(--opp-coral);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

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

/* ---------- Stat bar ---------- */
.statbar {
  border-block: 1px solid var(--border);
  padding: 28px 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-elevated), var(--bg));
}
.statbar::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--opp-gradient-edge);
  opacity: 0.4;
}
.statbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.statbar__item strong {
  display: block;
  font-family: var(--sans);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  background: var(--opp-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.statbar__item span {
  display: block;
  margin-top: 8px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-family: var(--mono), var(--sans);
}

/* ---------- Section base ---------- */
.section {
  padding: clamp(80px, 11vw, 140px) 0;
}
.section__head { margin-bottom: 3.5rem; max-width: 740px; }
.section__head--row {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s, background 0.35s;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.svc-card:hover {
  transform: translateY(-4px);
  background: var(--bg-hover);
  border-color: var(--border-strong);
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--opp-gradient-edge);
  opacity: 0;
  transition: opacity 0.3s;
}
.svc-card:hover::before { opacity: 1; }
.svc-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--opp-gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--opp-coral);
}
.svc-card__icon svg { width: 24px; height: 24px; }
.svc-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.svc-card p {
  color: var(--text-dim);
  font-size: 0.94rem;
  line-height: 1.6;
  flex: 1;
}
.svc-card__list {
  margin-top: 1rem;
  list-style: none;
  display: grid;
  gap: 6px;
}
.svc-card__list li {
  font-size: 0.85rem;
  color: var(--text-faint);
  padding-left: 14px;
  position: relative;
}
.svc-card__list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--opp-coral);
  font-weight: bold;
}
.svc-card__more {
  margin-top: 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
}
.svc-card:hover .svc-card__more { gap: 12px; color: var(--opp-coral); }

/* ---------- Two-door section ---------- */
.two-door {
  padding: clamp(80px, 11vw, 140px) 0;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(43, 92, 255, 0.03), transparent),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(229, 55, 138, 0.03), transparent),
    var(--paper);
}
.two-door__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.door {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.door:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card);
}
.door__tag {
  font-family: var(--mono), var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  align-self: flex-start;
  margin-bottom: 1.8rem;
  font-weight: 500;
}
.door--pros .door__tag {
  background: rgba(43, 92, 255, 0.12);
  color: #6B8EFF;
  border: 1px solid rgba(43, 92, 255, 0.3);
}
.door--retail .door__tag {
  background: rgba(242, 106, 46, 0.12);
  color: var(--opp-coral);
  border: 1px solid rgba(242, 106, 46, 0.3);
}
.door h3 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.door p {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.6rem;
}
.door ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 2rem;
}
.door ul li {
  display: flex;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-dim);
  align-items: center;
}
.door ul li svg {
  flex-shrink: 0;
  width: 14px; height: 14px;
  color: var(--opp-coral);
}
.door--pros ul li svg { color: #6B8EFF; }
.door__cta {
  margin-top: auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Process / quality ---------- */
.process-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}
.process-bullets {
  margin-top: 2rem;
  list-style: none;
  display: grid;
  gap: 22px;
}
.process-bullets li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
}
.process-bullets__num {
  font-family: var(--mono), var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--opp-coral);
  font-weight: 500;
  padding-top: 4px;
}
.process-bullets__body strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text);
}
.process-bullets__body span {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.55;
}

.process-art {
  position: relative;
  aspect-ratio: 1 / 1;
}
.proof-card {
  position: absolute;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-card);
}
.proof-card--main {
  top: 5%; left: 5%; right: 5%; bottom: 20%;
  padding: 18px;
}
.proof-card--main .proof-image {
  width: 100%; height: 70%;
  background:
    radial-gradient(ellipse at 30% 30%, #ffb347 0%, transparent 40%),
    radial-gradient(ellipse at 70% 70%, #E5378A 0%, transparent 50%),
    linear-gradient(180deg, #1B3FCC 0%, #07080B 100%);
  border-radius: 4px;
  position: relative;
}
.proof-card--main .proof-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
}
.proof-meta {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.proof-meta__label {
  font-family: var(--mono), var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.proof-meta__value {
  font-family: var(--mono), var(--sans);
  font-size: 0.74rem;
  color: var(--text);
}
.proof-meta__dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  box-shadow: 0 0 8px #4ade80;
}
.proof-card--detail {
  bottom: 5%; right: 5%;
  width: 50%;
  padding: 14px 18px;
}
.proof-card--detail .proof-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono), var(--sans);
  font-size: 0.7rem;
  padding: 4px 0;
}
.proof-card--detail .proof-row span:first-child { color: var(--text-faint); }
.proof-card--detail .proof-row span:last-child  { color: var(--text); }

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 3rem;
}
.review {
  padding: 32px 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  position: relative;
}
.review__stars {
  color: var(--opp-amber);
  font-size: 0.94rem;
  letter-spacing: 4px;
  margin-bottom: 1rem;
}
.review p {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 1.2rem;
  font-weight: 400;
}
.review__author {
  font-size: 0.82rem;
  color: var(--text-faint);
  display: block;
}
.review__role {
  color: var(--opp-coral);
  font-size: 0.78rem;
  margin-top: 2px;
  font-family: var(--mono), var(--sans);
  letter-spacing: 0.06em;
}

/* ---------- Final CTA ---------- */
.cta-band {
  padding: clamp(80px, 11vw, 130px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: var(--bone);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 30% 50%, rgba(43, 92, 255, 0.06), transparent),
    radial-gradient(ellipse 50% 70% at 70% 50%, rgba(229, 55, 138, 0.05), transparent),
    radial-gradient(ellipse 40% 60% at 50% 100%, rgba(242, 106, 46, 0.04), transparent);
  pointer-events: none;
}
.cta-band__inner { position: relative; }
.cta-band p {
  color: var(--text-dim);
  margin: 1rem auto 2rem;
  max-width: 50ch;
}
.cta-band__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg);
  padding: 80px 0 30px;
  border-top: 1px solid var(--border);
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--opp-gradient-edge);
  opacity: 0.3;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
}
.footer__brand-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__brand-block p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 30ch;
}
.footer h4 {
  font-family: var(--mono), var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--opp-coral);
  margin-bottom: 1.2rem;
}
.footer a, .footer__col p {
  display: block;
  font-size: 0.92rem;
  color: var(--text-dim);
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer a:hover { color: var(--text); }
.footer__base {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 0.8rem;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__base span:last-child {
  font-family: var(--mono), var(--sans);
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; gap: 60px; }
  .hero__art { max-width: 480px; margin-inline: auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .two-door__grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 50px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .statbar__inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 720px) {
  .nav__links, .nav__cta { display: none; }
  .nav__menu { display: flex; }
  .nav__links--open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 24px var(--gutter);
    border-bottom: 1px solid var(--border);
    gap: 18px;
  }
  .hero__split { grid-template-columns: 1fr; border-top: none; margin-top: 2.5rem; }
  .hero__split-col {
    padding: 1.6rem 0 0;
    border-top: 1px solid var(--border);
  }
  .hero__split-col + .hero__split-col {
    padding-left: 0;
    border-left: none;
  }
  .services-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__base { flex-direction: column; align-items: flex-start; }
  .door { padding: 28px 24px; min-height: auto; }
}

/* =========================================================
   THEME TOGGLE BUTTON
   ========================================================= */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  cursor: pointer;
  color: var(--text);
  transition: all 0.25s ease;
  padding: 0;
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: var(--bg-hover);
  border-color: var(--text);
  transform: rotate(15deg);
}
.theme-toggle svg {
  width: 18px;
  height: 18px;
}
/* Show sun in dark mode (to switch back to light), moon in light/warm mode */
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
