/* ============================================================
   Ryan Ridge — Holistic Wellness
   Mobile-first. Blue + dark fire orange.
   ============================================================ */

:root {
  /* Brand palette */
  --navy: #0a2540;
  --navy-700: #0d2e4f;
  --navy-600: #123c66;
  --blue: #2f7dd1;
  --blue-bright: #3b8ee6;
  --fire: #e2521b;
  --fire-dark: #c2410c;
  --fire-glow: rgba(226, 82, 27, 0.35);

  /* Neutrals */
  --ink: #0e1b2a;
  --body: #43526a;
  --muted: #6b7a90;
  --line: #e3e9f1;
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --bg-tint: #eef4fb;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 16px rgba(10, 37, 64, 0.08);
  --shadow: 0 18px 50px rgba(10, 37, 64, 0.14);
  --shadow-fire: 0 14px 36px rgba(226, 82, 27, 0.30);

  --maxw: 1140px;
  --gradient: linear-gradient(120deg, var(--blue) 0%, var(--fire) 100%);
  --gradient-deep: linear-gradient(135deg, var(--navy) 0%, var(--navy-600) 55%, #1b2c4a 100%);

  --font-head: "Outfit", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.12; font-weight: 800; letter-spacing: -0.02em; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 20px; }

/* ---------- Shared bits ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fire-dark);
  margin-bottom: 14px;
}
.eyebrow.light { color: var(--fire); }
.grad-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section { padding: 72px 0; }
.section-alt { background: var(--bg-soft); }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.85rem, 6vw, 2.7rem); margin-bottom: 14px; }
.section-sub { color: var(--muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow-fire);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 46px rgba(226, 82, 27, 0.42); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { display: grid; place-items: center; }
.brand-text { font-family: var(--font-head); font-weight: 900; font-size: 1.35rem; color: var(--navy); letter-spacing: -0.03em; }
.brand-accent { color: var(--fire-dark); }

.nav-links { display: none; align-items: center; gap: 30px; }
.nav-links a { font-family: var(--font-head); font-weight: 600; font-size: 0.98rem; color: var(--navy-700); transition: color 0.18s ease; }
.nav-links a:hover { color: var(--fire-dark); }
.nav-cta {
  background: var(--gradient);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 100px;
  box-shadow: var(--shadow-fire);
}
.nav-cta:hover { transform: translateY(-1px); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2.5px; width: 24px; margin-inline: auto; background: var(--navy); border-radius: 4px; transition: transform 0.3s ease, opacity 0.2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
@media (max-width: 859px) {
  .nav-links {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    padding: 12px 20px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  .nav-links.open { display: flex; opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { text-align: center; margin-top: 14px; padding: 14px; }
}
@media (min-width: 860px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--bg-tint); }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 85% 8%, rgba(226, 82, 27, 0.16), transparent 70%),
    radial-gradient(70% 60% at 5% 95%, rgba(47, 125, 209, 0.18), transparent 70%);
  pointer-events: none;
}
/* Interconnected moving point network (canvas) */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Floating geometric squares */
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-shapes .shape {
  position: absolute;
  display: block;
  border-radius: 18px;
  opacity: 0.55;
  will-change: transform;
}
.shape.s1 {
  width: 120px; height: 120px;
  top: 12%; left: 8%;
  background: linear-gradient(135deg, rgba(47, 125, 209, 0.22), rgba(47, 125, 209, 0));
  border: 1.5px solid rgba(47, 125, 209, 0.25);
  animation: floatA 18s ease-in-out infinite;
}
.shape.s2 {
  width: 70px; height: 70px;
  top: 62%; left: 16%;
  background: linear-gradient(135deg, rgba(226, 82, 27, 0.20), rgba(226, 82, 27, 0));
  border: 1.5px solid rgba(226, 82, 27, 0.28);
  animation: floatB 22s ease-in-out infinite;
}
.shape.s3 {
  width: 160px; height: 160px;
  top: 8%; right: 10%;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(47, 125, 209, 0.16), rgba(47, 125, 209, 0));
  border: 1.5px solid rgba(47, 125, 209, 0.20);
  animation: floatC 26s ease-in-out infinite;
}
.shape.s4 {
  width: 50px; height: 50px;
  top: 78%; right: 22%;
  background: linear-gradient(135deg, rgba(226, 82, 27, 0.22), rgba(226, 82, 27, 0));
  border: 1.5px solid rgba(226, 82, 27, 0.30);
  animation: floatA 20s ease-in-out infinite reverse;
}
.shape.s5 {
  width: 90px; height: 90px;
  top: 40%; right: 6%;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.10), rgba(10, 37, 64, 0));
  border: 1.5px solid rgba(10, 37, 64, 0.14);
  animation: floatB 24s ease-in-out infinite;
}
.shape.s6 {
  width: 64px; height: 64px;
  bottom: 10%; left: 44%;
  background: linear-gradient(135deg, rgba(47, 125, 209, 0.18), rgba(47, 125, 209, 0));
  border: 1.5px solid rgba(47, 125, 209, 0.22);
  animation: floatC 28s ease-in-out infinite reverse;
}
@keyframes floatA {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, -28px) rotate(12deg); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-24px, -20px) rotate(-14deg); }
}
@keyframes floatC {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(16px, 26px) rotate(10deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-shapes .shape { animation: none; }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 40px;
  padding-top: 56px;
  padding-bottom: 64px;
}

/* Vertical "WELLNESS" watermark — W at bottom, S at top, reading upward.
   Desktop only; hidden on tablet/mobile. */
.hero-vword { display: none; }
@media (min-width: 860px) {
  .hero-vword {
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(2.5rem, 8vh, 5rem);
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
    color: rgba(18, 60, 102, 0.16);
    pointer-events: none;
    user-select: none;
  }
}
.hero-copy h1 { font-size: clamp(2.5rem, 11vw, 4.2rem); font-weight: 900; margin-bottom: 18px; }
.lead { font-size: 1.1rem; color: var(--body); max-width: 540px; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 520px;
}
.hero-badges li {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  text-align: center;
}
.hero-badges strong { display: block; font-family: var(--font-head); color: var(--navy); font-size: 1.1rem; }
.hero-badges span { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.02em; }

.hero-media { position: relative; }
@property --photoAngle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
.hero-photo {
  position: relative;
  padding: 4px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  max-width: 460px;
  margin-inline: auto;
  background:
    conic-gradient(from var(--photoAngle, 0deg),
      #2f7dd1 0%,
      #2f7dd1 26%,
      #e2521b 50%,
      #2f7dd1 74%,
      #2f7dd1 100%);
  animation: photoBorder 7s linear infinite;
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 4px;
  border-radius: 24px;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 37, 64, 0.28));
  pointer-events: none;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; display: block; }
@keyframes photoBorder {
  to { --photoAngle: 360deg; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo { animation: none; }
}
.hero-float {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; gap: 12px;
  width: max-content; max-width: 88%;
}
.card-glass {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
}
.hero-float strong { display: block; font-family: var(--font-head); color: var(--navy); font-size: 0.95rem; }
.hero-float span { font-size: 0.8rem; color: var(--muted); }
.hero-float .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--fire);
  flex: none;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(226, 82, 27, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(226, 82, 27, 0); }
  100% { box-shadow: 0 0 0 0 rgba(226, 82, 27, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-float .dot { animation: none; box-shadow: 0 0 0 4px var(--fire-glow); }
}

@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; padding-top: 72px; padding-bottom: 88px; }
  .hero-media { order: 2; }
}

/* ============================================================
   Trust strip
   ============================================================ */
.strip {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--fire-dark), var(--fire));
  color: #fff;
  border-bottom: 6px solid var(--blue);
}
.strip::before {
  content: "";
  position: absolute;
  top: -60%;
  bottom: -60%;
  left: -25%;
  width: 45%;
  background: radial-gradient(closest-side, rgba(47, 125, 209, 0.75), rgba(47, 125, 209, 0) 70%);
  filter: blur(10px);
  pointer-events: none;
  animation: stripFlow 18s ease-in-out infinite;
}
.strip-inner {
  position: relative;
  z-index: 1;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 14px;
  padding: 16px 20px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-align: center;
}
@keyframes stripFlow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(290%); }
}
@media (prefers-reduced-motion: reduce) {
  .strip::before { animation: none; }
}
.strip .sep { color: rgba(255, 255, 255, 0.6); }

/* ============================================================
   FST
   ============================================================ */
.fst-grid { display: grid; gap: 20px; margin-bottom: 48px; }
.fst-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.fst-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 5px; height: 100%;
  background: var(--gradient);
}
.fst-card h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--navy); }
.fst-card > p { margin-bottom: 16px; color: var(--body); }

.ticks { display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 30px; color: var(--body); font-size: 0.98rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gradient);
  box-shadow: inset 0 0 0 3px #fff;
}

.benefits-title { font-size: 1.5rem; text-align: center; margin-bottom: 28px; color: var(--navy); }
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.benefit {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 18px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.benefit-icon {
  display: grid; place-items: center;
  width: 52px; height: 52px; margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff; font-size: 1.4rem; font-weight: 700;
  box-shadow: var(--shadow-fire);
}
.benefit h4 { font-size: 1.05rem; margin-bottom: 6px; color: var(--navy); }
.benefit p { font-size: 0.88rem; color: var(--muted); }

@media (min-width: 760px) {
  .fst-grid { grid-template-columns: 1fr 1fr; }
  .benefit-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Fascia deep-dive */
.fascia-deep {
  display: grid;
  gap: 22px;
  margin-top: 56px;
}
.fascia-deep-copy h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 14px; }
.fascia-deep-copy > p { margin-bottom: 16px; }
.fascia-deep-copy .ticks { margin-bottom: 16px; }
.fascia-note {
  font-style: italic;
  color: var(--navy-700);
  border-left: 3px solid var(--blue);
  padding-left: 16px;
}
.signs-panel {
  background: var(--gradient-deep);
  color: #d7e3f2;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  align-self: start;
}
.signs-panel h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--fire);
  display: inline-block;
}
.signs-panel > p { color: #b9c8de; font-size: 0.95rem; margin-bottom: 14px; }
.signs-list { display: grid; gap: 10px; }
.signs-list li { position: relative; padding-left: 26px; font-size: 0.95rem; color: #e3ecf7; }
.signs-list li::before {
  content: "!";
  position: absolute; left: 0; top: 0;
  width: 18px; height: 18px;
  display: grid; place-items: center;
  background: var(--fire);
  color: #fff; font-size: 0.72rem; font-weight: 800;
  border-radius: 50%;
  font-family: var(--font-head);
}
.signs-foot { margin-top: 16px; font-size: 0.9rem; color: #aebfd6; font-style: italic; }
@media (min-width: 880px) {
  .fascia-deep { grid-template-columns: 1.25fr 0.75fr; align-items: start; gap: 36px; }
}

/* Everyday care */
.care { margin-top: 56px; text-align: center; }
.care-title { font-size: 1.5rem; color: var(--navy); margin-bottom: 6px; }
.care-sub { color: var(--muted); margin-bottom: 26px; }
.care-grid { display: grid; gap: 14px; text-align: left; }
.care-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
}
.care-card span {
  flex: none;
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff; font-family: var(--font-head); font-weight: 800;
  box-shadow: var(--shadow-fire);
}
.care-card p { font-size: 0.95rem; color: var(--body); }
.source-note { margin-top: 24px; font-size: 0.8rem; color: var(--muted); }
.source-note a { color: var(--fire-dark); font-weight: 600; }
.source-note a:hover { text-decoration: underline; }
@media (min-width: 720px) { .care-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .care-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   Services
   ============================================================ */
.service-grid { display: grid; gap: 18px; }
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.service-num {
  font-family: var(--font-head); font-weight: 900; font-size: 1.6rem;
  background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--navy); }
.service-card p { font-size: 0.95rem; color: var(--muted); }
@media (min-width: 620px) { .service-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .service-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   Reiki
   ============================================================ */
.reiki-grid { display: grid; gap: 36px; align-items: center; }
.reiki-media { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; max-width: 440px; margin-inline: auto; }
.reiki-media img { width: 100%; height: 100%; object-fit: cover; }
.reiki-copy h2 { font-size: clamp(1.8rem, 6vw, 2.5rem); margin-bottom: 16px; }
.reiki-copy p { margin-bottom: 16px; }
.reiki-copy .ticks { margin-top: 22px; }
@media (min-width: 860px) {
  .reiki-grid { grid-template-columns: 0.9fr 1.1fr; }
}

/* Reiki explainer */
.reiki-explainer { margin-top: 52px; }
.reiki-what { max-width: 760px; margin-bottom: 30px; }
.reiki-what h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 14px; }
.reiki-what p { margin-bottom: 14px; }
.reiki-cards { display: grid; gap: 16px; }
.reiki-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.reiki-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.reiki-icon {
  display: grid; place-items: center;
  width: 46px; height: 46px; margin-bottom: 14px;
  border-radius: 14px;
  background: var(--gradient);
  color: #fff; font-size: 1.25rem;
  box-shadow: var(--shadow-fire);
}
.reiki-card h4 { font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.reiki-card p { font-size: 0.93rem; color: var(--body); }
.reiki-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--bg-tint);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem;
  color: var(--navy-700);
}
.reiki-note strong { color: var(--fire-dark); }
@media (min-width: 760px) { .reiki-cards { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   Approach (dark)
   ============================================================ */
.section-dark { background: var(--gradient-deep); color: #d7e3f2; }
.section-dark h2 { color: #fff; }
.section-dark .section-sub { color: #aebfd6; }
.pillars { display: grid; gap: 18px; }
.pillar {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}
.pillar h3 {
  color: #fff; font-size: 1.3rem; margin-bottom: 10px; padding-bottom: 10px;
  border-bottom: 2px solid var(--fire);
  display: inline-block;
}
.pillar p { color: #b9c8de; font-size: 0.96rem; }
.pillar em { color: var(--blue-bright); font-style: normal; font-weight: 600; }
@media (min-width: 760px) { .pillars { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   About Steve
   ============================================================ */
.about-grid { display: grid; gap: 36px; }
.about-media { position: relative; max-width: 460px; margin-inline: auto; }
.about-img-main { width: 100%; border-radius: 22px; box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }
.about-img-sub {
  position: absolute; right: -8px; bottom: -22px;
  width: 42%; border-radius: 16px;
  border: 5px solid #fff;
  box-shadow: var(--shadow);
  aspect-ratio: 3/4; object-fit: cover;
}
.about-copy h2 { font-size: clamp(1.9rem, 6vw, 2.6rem); margin-bottom: 18px; }
.about-copy p { margin-bottom: 16px; }
.pull-quote {
  margin-top: 24px;
  padding: 20px 24px;
  border-left: 4px solid var(--fire);
  background: var(--bg-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
}
.pull-quote cite { display: block; margin-top: 10px; font-size: 0.9rem; font-style: normal; color: var(--fire-dark); font-weight: 600; }
@media (min-width: 880px) {
  .about-grid { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
  .about-media { position: sticky; top: 92px; }
}

/* ============================================================
   CTA / Contact
   ============================================================ */
.cta { background: var(--gradient-deep); color: #d7e3f2; }
.cta-inner { display: grid; gap: 36px; }
.cta-copy h2 { color: #fff; font-size: clamp(1.9rem, 6vw, 2.7rem); margin-bottom: 14px; }
.cta-copy p { color: #b9c8de; font-size: 1.05rem; max-width: 460px; }
.cta-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}
.field { display: grid; gap: 6px; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: 0.85rem; color: var(--navy); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(47, 125, 209, 0.15);
}
.form-note { color: var(--fire-dark); font-weight: 600; font-size: 0.92rem; text-align: center; }
@media (min-width: 880px) {
  .cta-inner { grid-template-columns: 1fr 1fr; align-items: center; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--navy); color: #9fb3cc; padding-top: 48px; border-top: 3px solid var(--fire); }
.footer-inner { display: grid; gap: 28px; padding-bottom: 28px; }
.footer-brand .brand-text { color: #fff; font-size: 1.5rem; }
.footer-brand .brand-accent { color: var(--fire); }
.footer-brand p { margin-top: 10px; font-size: 0.92rem; max-width: 360px; }
.footer-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 14px 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  color: #cfe0f2;
}
.footer-location svg { color: var(--fire); flex: none; }
.footer-location-prov { color: #9fb3cc; font-weight: 500; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 16px 22px; align-content: start; }
.footer-nav a { font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; color: #cfe0f2; transition: color 0.18s ease; }
.footer-nav a:hover { color: var(--fire); }
.footer-ai {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px;
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}
.footer-ai-label {
  font-family: var(--font-head); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 0.7rem; color: var(--fire);
}
.footer-ai a {
  color: #9fb3cc;
  font-family: var(--font-body);
  padding: 3px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.footer-ai a:hover { color: #fff; border-color: var(--fire); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
  padding: 18px 20px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}
@media (min-width: 760px) {
  .footer-inner { grid-template-columns: 1.4fr 1fr; }
  .footer-nav { justify-content: flex-end; }
}

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
