/* =========================================================
   Sam's Tech Support — v2 FINAL
   Combined design based on research:
     - Seniors: story-led, photo-forward, oversized type, terracotta accent
     - Business: bold editorial dark mode, refined gold accent
   One stylesheet. Theme switches via body class.
   ========================================================= */

*,*::before,*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

/* ================================================
   Default theme = warm cream + terracotta (used by
   home, seniors, contact). Business overrides below.
   ================================================ */
:root {
  --max: 1160px;
  --r: 20px;
  --r-sm: 12px;
  --shadow-sm: 0 1px 3px rgba(20,20,30,0.05);
  --shadow-md: 0 14px 40px rgba(20,20,30,0.10);
  --shadow-lg: 0 30px 80px rgba(20,20,30,0.16);

  --bg: #fbf3e7;
  --surface: #ffffff;
  --surface-2: #f4ead4;
  --ink: #221d14;
  --ink-soft: #4a4234;
  --muted: #8a8170;
  --line: #e9dcb6;

  --accent: #d96d2a;          /* terracotta primary */
  --accent-hover: #b85a1f;
  --accent-soft: #fbe1cf;
  --accent-2: #1a55b8;        /* deep blue secondary */
  --accent-2-soft: #e3ecfb;

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-disp: "Fraunces", Georgia, serif;
  --font-script: "Caveat", cursive;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Consolas, monospace;
}

/* SENIORS theme: same warm palette, BIGGER type, more spacing */
body.theme-seniors {
  font-size: 20px;
  line-height: 1.75;
}

/* BUSINESS theme: dark, refined gold accent */
body.theme-business {
  --bg: #0c0d10;
  --surface: #14161c;
  --surface-2: #1c1f28;
  --ink: #f5f1e8;
  --ink-soft: #d2cdc0;
  --muted: #8a8576;
  --line: #232634;

  --accent: #d4a256;           /* refined antique gold */
  --accent-hover: #e8b86b;
  --accent-soft: #2a2418;
  --accent-2: #8aa9ff;
  --accent-2-soft: #1a2240;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ================================================
   Typography
   ================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-disp);
  color: var(--ink);
  margin: 0 0 .55em;
  line-height: 1.1;
  letter-spacing: -0.018em;
  font-weight: 500;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.8rem); }
h3 { font-family: var(--font); font-size: 1.15rem; font-weight: 700; }

body.theme-seniors h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
body.theme-seniors h2 { font-size: clamp(2rem, 4.2vw, 3rem); }

body.theme-business h1 { font-family: var(--font); font-weight: 600; letter-spacing: -0.03em; line-height: 1.05; font-size: clamp(2.8rem, 6.5vw, 5.5rem); }
body.theme-business h2 { font-family: var(--font); font-weight: 600; font-size: clamp(2rem, 4.6vw, 3.4rem); letter-spacing: -0.025em; }
body.theme-business h3 { font-family: var(--font); }

p { margin: 0 0 1em; color: var(--ink-soft); }
.lead { font-size: 1.18rem; color: var(--ink-soft); }
body.theme-seniors .lead { font-size: 1.4rem; }
.muted { color: var(--muted); }

.script {
  font-family: var(--font-script);
  color: var(--accent);
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1;
}
.scribble { display: inline-block; position: relative; }
.scribble::after {
  content: ''; position: absolute; left: -2%; right: -2%; bottom: -.05em;
  height: .35em; background: var(--accent-soft); z-index: -1;
  border-radius: 6px; transform: skew(-3deg);
}
body.theme-business .scribble::after { background: rgba(212, 162, 86, 0.18); }

.eyebrow {
  font-family: var(--font);
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .14em;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 1rem;
  display: inline-block;
}

.mono {
  font-family: var(--font-mono);
  font-size: .85rem;
  letter-spacing: .04em;
}

/* ================================================
   Nav
   ================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
body.theme-business .nav {
  background: rgba(12,13,16,.85);
  backdrop-filter: saturate(140%) blur(10px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); font-weight: 700; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: .95rem;
  box-shadow: var(--shadow-sm);
}
body.theme-business .brand-mark { color: #14161c; }

.nav ul { display: flex; gap: .25rem; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav ul a {
  text-decoration: none; color: var(--ink-soft);
  padding: .6rem 1rem; border-radius: 999px; font-weight: 500;
}
.nav ul a:hover { color: var(--ink); background: var(--surface-2); }
.nav ul a.cta {
  background: var(--accent); color: #fff; font-weight: 600;
}
body.theme-business .nav ul a.cta { color: #14161c; }
.nav ul a.cta:hover { background: var(--accent-hover); }

/* phone in nav — prominent on every page */
.nav-phone {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; color: var(--ink); text-decoration: none;
  padding: .5rem .85rem; border: 1px solid var(--line); border-radius: 999px;
}
.nav-phone:hover { border-color: var(--accent); color: var(--accent); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 8px; padding: .45rem .65rem; color: var(--ink);
}
@media (max-width: 880px) {
  .nav-toggle { display: inline-flex; }
  .nav-phone { display: none; }
  .nav ul {
    position: absolute; top: 100%; left: 1rem; right: 1rem;
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--r); padding: .5rem; flex-direction: column;
    display: none; box-shadow: var(--shadow-md);
  }
  .nav ul.open { display: flex; }
  .nav ul a { padding: .85rem 1rem; }
}

/* ================================================
   Buttons
   ================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: 1rem 1.5rem; border-radius: 999px;
  text-decoration: none; font-weight: 600; font-size: 1rem;
  border: 1px solid transparent;
  transition: transform .06s, background .15s, color .15s, border-color .15s;
}
body.theme-seniors .btn { font-size: 1.15rem; padding: 1.15rem 1.75rem; }

.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
body.theme-business .btn-primary { color: #14161c; }
.btn-primary:hover { background: var(--accent-hover); }

.btn-secondary {
  background: var(--surface); color: var(--ink); border-color: var(--line);
}
.btn-secondary:hover { background: var(--surface-2); border-color: var(--accent); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn:active { transform: translateY(1px); }
.btn .arrow { transition: transform .15s; }
.btn:hover .arrow { transform: translate(2px, -2px); }

/* big CTA for phone — used on seniors page */
.btn-phone {
  background: var(--ink); color: var(--bg);
  font-size: 1.3rem; padding: 1.4rem 2rem;
}
.btn-phone:hover { background: var(--accent); color: #fff; }

/* ================================================
   Hero
   ================================================ */
.hero { padding: 4.5rem 0 3.5rem; position: relative; overflow: hidden; }
body.theme-seniors .hero { padding: 5rem 0 4rem; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; gap: 2rem; } }

.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.6rem; }
.hero-greeting { display: inline-flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.hero-greeting .wave {
  font-size: 2rem; line-height: 1; transform-origin: 70% 70%;
  animation: wave 2.4s ease-in-out infinite;
}
@keyframes wave {
  0%, 60%, 100% { transform: rotate(-12deg); }
  20% { transform: rotate(8deg); }
  40% { transform: rotate(-18deg); }
}

.trust {
  display: flex; flex-wrap: wrap; gap: .8rem 1.5rem;
  align-items: center; margin-top: 1.5rem;
  color: var(--ink-soft);
}
.trust .stars { color: #f5a524; font-size: 1.15rem; letter-spacing: 1px; }
.trust strong { color: var(--ink); }

/* business hero gets a mesh gradient */
body.theme-business .hero::before {
  content: '';
  position: absolute; inset: -10% -10% auto -10%; height: 80%;
  z-index: 0; pointer-events: none;
  filter: blur(80px); opacity: .55;
  background:
    radial-gradient(420px 420px at 20% 30%, #6c4f1a, transparent 60%),
    radial-gradient(380px 380px at 80% 20%, #8e6a2a, transparent 60%),
    radial-gradient(380px 380px at 60% 80%, #4a3a1e, transparent 60%);
}
body.theme-business .hero > .container { position: relative; z-index: 1; }

/* ================================================
   Photos (placeholders that look intentional)
   ================================================ */
.photo {
  position: relative; overflow: hidden;
  background: linear-gradient(140deg, var(--accent-soft) 0%, var(--surface-2) 100%);
  border-radius: var(--r);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.04);
  display: flex; align-items: flex-end; padding: 1rem;
  aspect-ratio: 4 / 5;
}
body.theme-business .photo {
  background: linear-gradient(140deg, #2a2418 0%, #161219 100%);
  border-color: var(--line);
}
.photo.short { aspect-ratio: 4/3; }
.photo.wide { aspect-ratio: 16/9; }
.photo.round { border-radius: 50%; aspect-ratio: 1; max-width: 420px; margin-left: auto; border: 8px solid var(--surface); }

/* Cinematic hero visual — Porsche/Ferrari-style hero, 4:5 portrait, fills the column */
.photo.hero-visual {
  aspect-ratio: 4/5;
  max-width: 520px;
  width: 100%;
  margin-left: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.04);
}

/* ============================================================
   Brand card — dark modern variant. Sits where a hero photo
   would. Animated reveal on load. Used on home + seniors page.
   ============================================================ */
.brand-card {
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0d18 0%, #14161c 100%);
  color: #f4f1e8;
  box-shadow: var(--shadow-lg);
  position: relative;
  padding: 2.4rem 2rem;
  display: flex; flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.04);
}
.brand-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(420px 420px at 80% -10%, rgba(212,162,86,0.18), transparent 60%);
}
.brand-card > * { position: relative; }
.brand-card .bc-top {
  display: flex; align-items: center; justify-content: space-between;
  opacity: 0; animation: bcFadeUp .55s ease forwards;
}
.brand-card .bc-name {
  font-family: var(--font);
  font-weight: 700; font-size: 1.05rem;
  letter-spacing: -0.005em;
  color: #f4f1e8;
}
.brand-card .bc-live {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-mono); font-size: .65rem;
  letter-spacing: .14em; color: #d4a256;
  text-transform: uppercase;
}
.brand-card .bc-live .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #d4a256;
  box-shadow: 0 0 0 4px rgba(212,162,86,.18);
  animation: bcPulse 1.8s ease-in-out infinite;
}
.brand-card .bc-rows { display: flex; flex-direction: column; }
.brand-card .bc-row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 1.15rem 0; border-top: 1px solid #232634;
  opacity: 0; animation: bcFadeRight .55s ease forwards;
}
.brand-card .bc-row.r1 { animation-delay: .35s; }
.brand-card .bc-row.r2 { animation-delay: .6s; }
.brand-card .bc-row.r3 { animation-delay: .85s; }
.brand-card .bc-ll {
  font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .14em; color: #8a8576;
  text-transform: uppercase;
}
.brand-card .bc-rr {
  font-family: var(--font); font-weight: 700;
  font-size: 1.7rem; letter-spacing: -0.025em;
  color: #f4f1e8; line-height: 1;
}
.brand-card .bc-rr.gold { color: #d4a256; }
.brand-card .bc-rr .star { font-size: 1.3rem; color: #d4a256; margin-left: .2rem; }
.brand-card .bc-foot {
  font-family: var(--font-mono);
  font-size: .65rem; letter-spacing: .18em;
  color: #8a8576;
  border-top: 1px solid #232634; padding-top: 1.1rem;
  opacity: 0; animation: bcFadeIn .55s ease 1.05s forwards;
}
@media (max-width: 880px) {
  .brand-card { margin: 0 auto; }
}

@keyframes bcFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bcFadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes bcFadeRight {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes bcPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: .85; }
}
.photo .glyph {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: rgba(0,0,0,.18);
}
body.theme-business .photo .glyph { color: rgba(255,255,255,.18); }
.photo .glyph svg { width: 38%; height: 38%; }
.photo .caption {
  position: relative; z-index: 1;
  background: rgba(255,255,255,0.78); backdrop-filter: blur(6px);
  border: 1px solid rgba(0,0,0,.04);
  padding: .55rem .8rem; border-radius: 10px;
  font-size: .82rem; color: var(--ink); line-height: 1.4;
  font-family: var(--font);
}
body.theme-business .photo .caption {
  background: rgba(0,0,0,.55); color: #fff;
  border-color: rgba(255,255,255,.08);
}
.photo .badge {
  position: absolute; bottom: -10px; right: 8%; z-index: 2;
  background: var(--ink); color: var(--bg);
  font-family: var(--font-script); font-size: 1.5rem; font-weight: 600;
  padding: .35rem 1.1rem; border-radius: 999px; border: 4px solid var(--bg);
  transform: rotate(-4deg); white-space: nowrap;
}

/* ================================================
   Sections
   ================================================ */
section { padding: 4.5rem 0; }
section.tight { padding: 2.5rem 0; }
.section-head { max-width: 760px; margin: 0 auto 2.5rem; text-align: center; }
.section-head .eyebrow { display: inline-block; }

/* numbered editorial section label (business) */
.section-label {
  display: flex; gap: .75rem; align-items: center;
  font-family: var(--font-mono); font-size: .8rem;
  color: var(--muted); text-transform: uppercase; letter-spacing: .14em;
  margin-bottom: 2rem;
}
.section-label .num { color: var(--accent); font-weight: 700; }
.section-label .line { flex: 1; height: 1px; background: var(--line); }

/* ================================================
   Two doors — landing page
   ================================================ */
.doors { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 880px) { .doors { grid-template-columns: 1fr; } }

.door {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden; text-decoration: none; color: var(--ink);
  display: flex; flex-direction: column;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.door:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.door .door-photo { aspect-ratio: 4/3; border-radius: 0; box-shadow: none; border: 0; border-bottom: 1px solid var(--line); }
.door .door-body { padding: 1.6rem 1.75rem; flex: 1; display: flex; flex-direction: column; gap: .6rem; }
.door .door-tag {
  display: inline-block; background: var(--accent-soft); color: var(--accent);
  padding: .3rem .7rem; border-radius: 999px;
  font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  align-self: flex-start; margin-bottom: .35rem;
}
.door h3 { font-family: var(--font-disp); font-size: 1.6rem; font-weight: 500; margin: 0; }
.door p { color: var(--ink-soft); margin: 0; }
.door .arrow { color: var(--accent); font-weight: 700; margin-top: auto; padding-top: .5rem; }
.door.dark {
  background: #14161c; color: #f4f1e8; border-color: #232634;
}
.door.dark p { color: #d2cdc0; }
.door.dark .arrow { color: #d4a256; }
.door.dark .door-tag { background: rgba(212,162,86,0.16); color: #d4a256; }
.door.dark .door-photo { border-bottom-color: #232634; background: linear-gradient(140deg, #2a2418 0%, #161219 100%); }
.door.dark .door-photo .glyph { color: rgba(255,255,255,.2); }

/* ================================================
   Service tiles (icon + label) — used on home & seniors
   ================================================ */
.tiles {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
@media (max-width: 1000px) { .tiles { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 720px) { .tiles { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 460px) { .tiles { grid-template-columns: 1fr; } }
.tile {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: 1.4rem;
  display: flex; flex-direction: column; gap: .65rem;
  transition: transform .12s, border-color .12s;
}
.tile:hover { transform: translateY(-2px); border-color: var(--accent); }
.tile .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
}
.tile h3 { margin: 0; font-size: 1.05rem; font-weight: 700; }
body.theme-seniors .tile h3 { font-size: 1.2rem; }
.tile p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
body.theme-seniors .tile p { font-size: 1.08rem; }

/* ================================================
   Editorial service rows (business page)
   ================================================ */
.service-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr auto;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: padding .15s;
}
.service-row:hover { padding-left: 1rem; }
@media (max-width: 760px) {
  .service-row { grid-template-columns: 50px 1fr; }
  .service-row .desc, .service-row .arrow-cell { grid-column: 2; }
}
.service-row .num { font-family: var(--font-mono); color: var(--muted); font-size: .85rem; letter-spacing: .1em; }
.service-row h3 { font-family: var(--font); margin: 0; font-size: clamp(1.3rem, 2.2vw, 1.9rem); line-height: 1.1; font-weight: 600; }
.service-row .desc { color: var(--ink-soft); }
.service-row .arrow-cell { color: var(--accent); font-family: var(--font-mono); font-size: .85rem; }

/* ================================================
   Story block (seniors)
   ================================================ */
.story {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: 2.5rem;
  font-size: 1.1rem; line-height: 1.75;
  box-shadow: var(--shadow-sm);
}
body.theme-seniors .story { font-size: 1.22rem; padding: 3rem; }
.story p { color: var(--ink); }
.story .quote-mark {
  font-family: var(--font-disp); font-size: 4rem; line-height: 0.7;
  color: var(--accent); display: block; margin-bottom: .25rem;
}
.story .sig {
  font-family: var(--font-script); color: var(--accent);
  font-size: 2rem; line-height: 1; margin-top: 1rem; display: inline-block;
}

/* ================================================
   Photo strip — recent jobs / case study previews
   ================================================ */
.strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .85rem;
}
@media (max-width: 880px) { .strip { grid-template-columns: 1fr 1fr; } }
.strip-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-sm); overflow: hidden;
}
.strip-photo {
  aspect-ratio: 4/3;
  background: linear-gradient(140deg, var(--accent-soft) 0%, var(--surface-2) 100%);
  display: grid; place-items: center; color: rgba(0,0,0,.22);
}
body.theme-business .strip-photo {
  background: linear-gradient(140deg, #2a2418 0%, #161219 100%);
  color: rgba(255,255,255,.22);
}
.strip-photo svg { width: 40%; height: 40%; }
.strip-card .body { padding: .9rem 1.1rem 1.1rem; }
.strip-card h4 { font-size: 1rem; margin: 0 0 .15rem; font-weight: 700; }
.strip-card p { font-size: .88rem; color: var(--muted); margin: 0; }

/* ================================================
   Stats strip (numbers) — business + home
   ================================================ */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
@media (max-width: 760px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat {
  padding: 2rem 1.5rem; border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
@media (max-width: 760px) {
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}
.stat .n { font-family: var(--font-disp); font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 500; line-height: 1; letter-spacing: -0.02em; color: var(--ink); }
body.theme-business .stat .n { font-family: var(--font); font-weight: 600; }
.stat .l {
  font-family: var(--font-mono); font-size: .8rem;
  color: var(--muted); margin-top: .8rem;
  text-transform: uppercase; letter-spacing: .12em;
}

/* ================================================
   Reviews
   ================================================ */
.reviews { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (max-width: 760px) { .reviews { grid-template-columns: 1fr; } }
.review {
  background: var(--surface); border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--r); padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.review .stars { color: #f5a524; }
.review p { font-size: 1.08rem; color: var(--ink); margin: .5rem 0 .8rem; }
body.theme-seniors .review p { font-size: 1.18rem; }
body.theme-business .review p { font-style: normal; }
.review .who { font-weight: 700; font-size: .92rem; color: var(--muted); }
body.theme-business .review .who { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; }

/* ================================================
   Case study card (business)
   ================================================ */
.case {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: 2rem;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; align-items: center;
}
@media (max-width: 880px) { .case { grid-template-columns: 1fr; } }
.canvas {
  position: relative; overflow: hidden;
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--r); aspect-ratio: 4 / 3;
  display: flex; align-items: flex-end; padding: 1rem;
}
.canvas .mesh-fill {
  position: absolute; inset: 0;
  background:
    radial-gradient(300px 240px at 20% 30%, #b585ff, transparent 65%),
    radial-gradient(280px 240px at 80% 30%, #6c8cff, transparent 65%),
    radial-gradient(360px 280px at 60% 80%, #ffaa5e, transparent 65%);
  filter: blur(40px); opacity: .35;
}
.canvas .glyph { position: absolute; inset: 0; display: grid; place-items: center; color: var(--ink-soft); opacity: .4; }
.canvas .glyph svg { width: 30%; height: 30%; }
.canvas .caption { position: relative; z-index: 1; font-family: var(--font-mono); font-size: .78rem; color: var(--ink); background: color-mix(in oklab, var(--bg) 80%, transparent); border: 1px solid var(--line); padding: .55rem .8rem; border-radius: var(--r-sm); backdrop-filter: blur(6px); }

/* ================================================
   Promise card (seniors)
   ================================================ */
.promise {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: 2rem; box-shadow: var(--shadow-sm);
}
.promise ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem; }
.promise li {
  display: flex; gap: .85rem; align-items: flex-start;
  font-size: 1.1rem;
}
body.theme-seniors .promise li { font-size: 1.2rem; }
.promise .check {
  flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; font-weight: 800;
}
.promise li strong { color: var(--ink); display: block; }

/* two-up layout */
.two-up { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
@media (max-width: 860px) { .two-up { grid-template-columns: 1fr; } }

/* ================================================
   Phone CTA strip (seniors emphasis)
   ================================================ */
.phone-cta {
  background: var(--ink); color: var(--bg);
  border-radius: var(--r); padding: 2.5rem;
  text-align: center;
}
.phone-cta h2 { color: var(--bg); }
.phone-cta p { color: rgba(255,255,255,.85); margin: 0 0 1.5rem; font-size: 1.15rem; }
.phone-cta .btn-phone {
  background: var(--accent); color: #fff;
  font-size: 1.4rem; padding: 1.4rem 2.25rem;
}
.phone-cta .btn-phone:hover { background: var(--accent-hover); }

/* ================================================
   Final CTA bar
   ================================================ */
.callout {
  background: var(--accent); color: #fff;
  border-radius: var(--r); padding: 2.25rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem;
}
body.theme-business .callout {
  background: var(--accent); color: #14161c;
  position: relative; overflow: hidden;
}
body.theme-business .callout::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(400px 400px at 80% -20%, rgba(255,255,255,.4), transparent 60%);
}
body.theme-business .callout * { position: relative; z-index: 1; }
.callout h2, .callout h3 { color: inherit; margin: 0; font-size: clamp(1.5rem, 2.8vw, 2rem); }
.callout p { color: rgba(255,255,255,.92); margin: .25rem 0 0; }
body.theme-business .callout p { color: rgba(20,22,28,.78); }
.callout .btn-primary { background: #fff; color: var(--accent); }
body.theme-business .callout .btn-primary { background: #14161c; color: var(--accent); }
.callout .btn-primary:hover { background: var(--ink); color: var(--accent); }

/* ================================================
   Contact form
   ================================================ */
.form-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; }
@media (max-width: 880px) { .form-grid { grid-template-columns: 1fr; } }
.form-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: 1.85rem;
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-weight: 600; margin-bottom: .45rem; color: var(--ink); font-size: 1rem; }
.field input, .field textarea, .field select {
  width: 100%; font: inherit;
  padding: .85rem 1rem; border: 1px solid var(--line); border-radius: 12px;
  background: var(--bg); color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent;
}
.field textarea { min-height: 130px; resize: vertical; }
.radio-group { display: grid; gap: .55rem; }
.radio-option {
  display: flex; align-items: center; gap: .65rem;
  padding: .85rem 1rem; border: 1px solid var(--line); border-radius: 12px;
  background: var(--bg); cursor: pointer;
}
.radio-option:hover { border-color: var(--accent); }
.radio-option input { accent-color: var(--accent); }

.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.info-item {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r); padding: 1.2rem 1.4rem;
}
.info-item strong {
  display: block; font-size: .85rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: .35rem;
}
.info-item a { color: var(--accent); text-decoration: none; font-weight: 600; }
.info-item a:hover { text-decoration: underline; }

/* ================================================
   Footer
   ================================================ */
.footer {
  background: var(--surface-2); border-top: 1px solid var(--line);
  padding: 2.25rem 0; margin-top: 4rem;
  color: var(--ink-soft); font-size: .95rem;
}
body.theme-business .footer { background: #08090c; border-top-color: var(--line); }
.footer .container { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }
.footer a { color: var(--ink); }

/* skip link */
.skip {
  position: absolute; left: -999px; top: 0;
  background: var(--accent); color: #fff;
  padding: .55rem 1rem; border-radius: 0 0 8px 0; z-index: 100;
}
.skip:focus { left: 0; }

/* utility */
.center { text-align: center; }
.gradient-text {
  background: linear-gradient(90deg, var(--accent) 0%, #ffd07a 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
