/* ============================================================
   BEAR FISH MEDIA — v4 "the booked calendar"
   Bright/clean system (playbook Appendix D):
   flat white · ink type from the logo · TRUE yellow with
   exactly three jobs (CTA fill / headline highlight / UI fills)
   Structured whitespace, dense content objects, subtle motion.
   ============================================================ */

:root {
  --ink: #141F27;
  --yellow: #FFD60A;
  --yellow-dark: #F0C400;
  --paper: #FFFFFF;
  --gray-1: #F4F4F2;
  --gray-2: #E7E7E3;
  --text-2: #4E5B66;
  --text-3: #8A939C;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --display: 'Anton', sans-serif;
  --ui: 'Oswald', sans-serif;
  --body: 'Inter', sans-serif;
  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-padding-top: 90px; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--yellow); color: var(--ink); }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- shared atoms ---------- */
.kicker {
  font-family: var(--ui);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.kicker::before { content: ''; width: 26px; height: 3px; background: var(--yellow); flex-shrink: 0; }
.hl { box-shadow: inset 0 -0.28em var(--yellow); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ui);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--ink);
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 14px 24px;
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(20, 31, 39, 0.25), 0 6px 16px rgba(20, 31, 39, 0.10);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.btn:hover { background: var(--yellow-dark); transform: translateY(-1px); }
.btn:active { transform: scale(0.98); }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-sm { padding: 11px 20px; font-size: 13.5px; }
.btn-ghost {
  background: transparent;
  box-shadow: none;
  border: 1.5px solid var(--gray-2);
}
.btn-ghost:hover { background: var(--yellow); border-color: var(--yellow); }

/* reveal: one subtle move, sitewide */
.r { opacity: 0; transform: translateY(14px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.r.in { opacity: 1; transform: none; }

/* ============ BUILD BANNER (remove before deploy) ============ */
.build-banner {
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--ui);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 7px 16px;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 1px 0 var(--gray-2), 0 8px 24px rgba(20, 31, 39, 0.06); }
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand-logo { height: 44px; width: auto; }
.main-nav { display: flex; gap: 26px; margin-left: 12px; }
.main-nav a {
  text-decoration: none;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.25s var(--ease);
}
.main-nav a:hover { color: var(--ink); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 20px; }
.header-phone {
  font-family: var(--ui);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.03em;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 64px 32px 72px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 72px;
  align-items: center;
  overflow: hidden;
}
.hero > .hero-copy { justify-self: end; width: 100%; max-width: 580px; }
.hero > .cal-wrap { justify-self: start; width: 100%; max-width: 560px; }

/* ambient ridgelines — the badge landscape, barely there, always moving */
.ridge {
  position: absolute;
  bottom: 0;
  left: -6%;
  width: 112%;
  z-index: -1;
  pointer-events: none;
  color: var(--ink);
}
.ridge svg { display: block; width: 100%; height: 190px; }
.ridge-a { opacity: 0.05; animation: ridgeA 46s ease-in-out infinite alternate; }
.ridge-b { opacity: 0.03; bottom: 26px; animation: ridgeB 60s ease-in-out infinite alternate; }
.ridge-c { color: #fff; opacity: 0.06; animation: ridgeA 46s ease-in-out infinite alternate; }
@keyframes ridgeA { from { transform: translateX(-1.5%); } to { transform: translateX(1.5%); } }
@keyframes ridgeB { from { transform: translateX(1.5%); } to { transform: translateX(-1.5%); } }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(48px, 5.6vw, 74px);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 0.004em;
  margin: 22px 0;
}
.lede {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 480px;
  margin-bottom: 30px;
}
.cta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-bottom: 38px; }
.cta-alt {
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--gray-2);
  padding-bottom: 2px;
  transition: border-color 0.25s var(--ease);
}
.cta-alt:hover { border-color: var(--yellow); }

/* hero entrance: gentle stagger */
.hero-in { opacity: 0; transform: translateY(16px); animation: heroIn 0.7s var(--ease) forwards; }
.hero-in.d1 { animation-delay: 0.08s; }
.hero-in.d2 { animation-delay: 0.16s; }
.hero-in.d3 { animation-delay: 0.24s; }
.hero-in.d4 { animation-delay: 0.32s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* proof strip: dense, bordered, integrated */
.proof {
  display: flex;
  border: 1px solid var(--gray-2);
  border-radius: 12px;
  overflow: hidden;
  max-width: 560px;
  background: var(--paper);
}
.proof > div { flex: 1; padding: 14px 18px; }
.proof > div + div { border-left: 1px solid var(--gray-2); }
.proof b { display: block; font-family: var(--ui); font-size: 24px; font-weight: 700; line-height: 1.15; }
.proof span:not([data-count]) { font-size: 12px; color: var(--text-3); line-height: 1.35; display: block; margin-top: 2px; }
.proof b span[data-count] { font-size: inherit; color: inherit; display: inline; }

/* the booked calendar */
.cal-wrap { position: relative; }
.cal {
  background: var(--paper);
  border: 1px solid var(--gray-2);
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(20, 31, 39, 0.13), 0 2px 6px rgba(20, 31, 39, 0.05);
  overflow: hidden;
}
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-2);
}
.cal-head b { font-family: var(--ui); font-weight: 600; font-size: 15px; letter-spacing: 0.03em; }
.cal-head span { font-size: 12px; color: var(--text-3); }
.cal-badge {
  font-family: var(--ui);
  font-size: 11px !important;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--ink);
  color: #fff !important;
  border-radius: 100px;
  padding: 5px 12px;
}
.cal-grid { display: grid; grid-template-columns: 44px repeat(5, 1fr); }
.cal-grid .corner { border-bottom: 1px solid var(--gray-2); }
.cal-grid .dow {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-3);
  text-align: center;
  padding: 10px 0 8px;
  border-bottom: 1px solid var(--gray-2);
  text-transform: uppercase;
}
.cal-grid .hr {
  font-size: 10px;
  color: var(--text-3);
  text-align: right;
  padding: 6px 8px 0 0;
  border-bottom: 1px solid var(--gray-1);
  height: 64px;
}
.cal-grid .cell { border-left: 1px solid var(--gray-1); border-bottom: 1px solid var(--gray-1); position: relative; }
.appt {
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  height: 52px;
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.25;
  overflow: hidden;
  opacity: 0;
  animation: apptIn 0.45s var(--ease) forwards;
}
.appt.tall { height: 56px; }
.appt small { display: block; font-weight: 500; opacity: 0.75; font-size: 9.5px; }
.appt.y { background: var(--yellow); color: var(--ink); }
.appt.i { background: var(--ink); color: #fff; }
.appt.o { background: var(--paper); border: 1.5px solid var(--gray-2); color: var(--ink); }
.appt.a1 { animation-delay: 0.5s; }
.appt.a2 { animation-delay: 0.7s; }
.appt.a3 { animation-delay: 0.9s; }
.appt.a4 { animation-delay: 1.1s; }
.appt.a5 { animation-delay: 1.3s; }
@keyframes apptIn { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: none; } }

/* receipt toasts */
.toast {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--gray-2);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(20, 31, 39, 0.16);
  padding: 12px 14px;
  width: 272px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  opacity: 0;
  animation: toastIn 0.6s var(--ease) forwards;
}
.toast-1 { top: -26px; left: -44px; animation-delay: 1.6s; }
.toast-2 { bottom: -30px; right: -18px; animation-delay: 2.2s; }
@keyframes toastIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.toast .dot {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--yellow);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ui);
  font-weight: 700;
  font-size: 14px;
}
.toast p { font-size: 12px; line-height: 1.45; color: var(--ink); }
.toast p b { font-weight: 600; }
.toast p span { display: block; font-size: 10.5px; color: var(--text-3); margin-top: 3px; }

/* industries strip */
.strip {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px 64px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.strip .lbl {
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}
.strip a {
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.strip a:hover { color: var(--ink); }

/* ============ SECTIONS ============ */
.section {
  padding: 88px 32px;
}
.section > * { max-width: var(--container); margin-left: auto; margin-right: auto; }
.sec-tint { background: var(--gray-1); border-top: 1px solid var(--gray-2); border-bottom: 1px solid var(--gray-2); }
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
}
.sec-head h2, .how-sticky h2, .about-copy h2, .cta-band h2, .promo-card h2 {
  font-family: var(--display);
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.004em;
  margin-top: 14px;
}
.sec-sub {
  font-size: 15.5px;
  color: var(--text-2);
  max-width: 380px;
  line-height: 1.6;
}
.sec-sub a { color: var(--ink); font-weight: 600; }

/* ============ INDUSTRIES ============ */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ind {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-2);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  background: var(--paper);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.ind:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(20, 31, 39, 0.10);
}
.ind img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.ind:hover img { transform: scale(1.03); }
.ind > div { padding: 16px 18px 0; }
.ind b { font-family: var(--ui); font-weight: 600; font-size: 17px; letter-spacing: 0.03em; display: block; }
.ind span { font-size: 13.5px; color: var(--text-2); line-height: 1.5; display: block; margin-top: 3px; }
.ind em {
  margin: 10px 18px 16px auto;
  font-style: normal;
  font-size: 18px;
  color: var(--text-3);
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}
.ind:hover em { color: var(--ink); transform: translateX(3px); }

/* ============ RECEIPTS ============ */
.rcpt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.rcpt {
  background: var(--paper);
  border: 1px solid var(--gray-2);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}
.rcpt.featured { border: 2px solid var(--yellow); grid-column: span 2; }
.via {
  align-self: flex-start;
  font-family: var(--ui);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 100px;
  padding: 4px 12px 3px;
  margin-bottom: 14px;
}
.rcpt p { font-size: 14.5px; line-height: 1.6; color: var(--ink); flex-grow: 1; }
.rcpt.featured p { font-size: 17px; }
.rcpt footer {
  margin-top: 14px;
  font-family: var(--ui);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ============ HOW WE WORK ============ */
.how-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.how-sticky { position: sticky; top: 110px; }
.how-sticky .sec-sub { margin-top: 16px; max-width: 420px; }
.standards { list-style: none; margin-top: 28px; }
.standards li {
  position: relative;
  padding: 12px 0 12px 30px;
  font-size: 14.5px;
  color: var(--text-2);
  border-top: 1px solid var(--gray-2);
  line-height: 1.55;
}
.standards li b { color: var(--ink); font-weight: 600; }
.standards li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 19px;
  width: 12px;
  height: 7px;
  border-left: 3px solid var(--yellow-dark);
  border-bottom: 3px solid var(--yellow-dark);
  transform: rotate(-45deg);
}
.steps { list-style: none; counter-reset: step; }
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--gray-2);
}
.steps li:last-child { border-bottom: 1px solid var(--gray-2); }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--display);
  font-size: 26px;
  color: var(--ink);
  line-height: 1.1;
}
.steps b {
  grid-column: 2;
  font-family: var(--ui);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.steps p { grid-column: 2; font-size: 14.5px; color: var(--text-2); line-height: 1.55; }

/* ============ FULL-BLEED BAND ============ */
.how-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--gray-2);
  margin-top: 28px;
}
.band {
  position: relative;
  background: url('../photos/AboutPage-Update-Pic.jpg') center / cover no-repeat;
  padding: 110px 32px;
}
.band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 20, 27, 0.88) 0%, rgba(14, 20, 27, 0.55) 55%, rgba(14, 20, 27, 0.25) 100%);
}
.band-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
}
.band-kicker { color: #A8B2BD; }
.band h2 {
  font-family: var(--display);
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08;
  text-transform: uppercase;
  color: #fff;
  max-width: 640px;
  margin: 16px 0 14px;
}
.band .hl { color: #fff; box-shadow: inset 0 -0.26em rgba(255, 214, 10, 0.9); }
.band p { color: #C9D2DA; font-size: 15.5px; max-width: 480px; margin-bottom: 28px; line-height: 1.65; }

/* ============ PROGRAMS ============ */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.prog {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--gray-2);
  border-radius: 16px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
}
.prog.featured { border: 2px solid var(--yellow); box-shadow: 0 20px 50px rgba(20, 31, 39, 0.10); }
.prog-badge {
  position: absolute;
  top: -12px;
  left: 26px;
  font-family: var(--ui);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 100px;
  padding: 5px 14px 4px;
}
.prog h3 {
  font-family: var(--display);
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.prog-tag {
  font-family: var(--ui);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 6px 0 18px;
}
.prog ul { list-style: none; flex-grow: 1; margin-bottom: 18px; }
.prog li {
  position: relative;
  font-size: 14px;
  color: var(--text-2);
  padding: 8px 0 8px 26px;
  border-bottom: 1px solid var(--gray-1);
  line-height: 1.5;
}
.prog li b { color: var(--ink); font-weight: 600; }
.prog li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 15px;
  width: 12px;
  height: 7px;
  border-left: 3px solid var(--yellow-dark);
  border-bottom: 3px solid var(--yellow-dark);
  transform: rotate(-45deg);
}
.fine { font-size: 12.5px; color: var(--text-3); font-style: italic; margin-bottom: 20px; }
.prog .btn { justify-content: center; }
.prog-note {
  text-align: center;
  font-size: 14.5px;
  color: var(--text-2);
  max-width: 640px;
  margin: 44px auto 0;
  line-height: 1.65;
}
.prog-note b { color: var(--ink); }

/* ============ BOOK ============ */
#book .sec-head { align-items: flex-end; }
.calendly-inline-widget {
  max-width: 1000px;
  border: 1px solid var(--gray-2);
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper);
}
.book-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 1000px;
  margin: 44px auto 26px;
  color: var(--text-3);
  font-family: var(--ui);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
.book-divider::before, .book-divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-2); }
.booking-form {
  max-width: 1000px;
  background: var(--paper);
  border: 1px solid var(--gray-2);
  border-radius: 16px;
  padding: 30px;
}
.hp { display: none; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.fg label {
  display: block;
  font-family: var(--ui);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 6px;
}
.req { color: var(--ink); font-weight: 700; margin-left: 2px; }
.fg input, .fg select {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--gray-2);
  border-radius: 9px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 14.5px;
  padding: 11px 13px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.fg input:focus, .fg select:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(255, 214, 10, 0.45);
}
.fg select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%234E5B66' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px;
}
.booking-form.was-submitted input:invalid,
.booking-form.was-submitted select:invalid {
  border-color: #D64545;
  animation: shake 0.35s var(--ease);
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}
.form-foot {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.form-note { font-size: 12.5px; color: var(--text-3); }
#form-success {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--paper);
  border: 2px solid var(--yellow);
  border-radius: 16px;
  padding: 44px 32px;
  text-align: center;
}
#form-success h3 {
  font-family: var(--display);
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
#form-success p { color: var(--text-2); font-size: 15.5px; max-width: 460px; margin: 0 auto 22px; }
#form-success .success-alt { font-size: 13.5px; color: var(--text-3); margin: 16px 0 0; }
#form-success .success-alt a { color: var(--ink); font-weight: 600; }

/* ============ ABOUT ============ */
.about-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: center;
}
.owner-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--gray-2);
}
.about-copy h2 { margin-bottom: 20px; }
.about-copy p { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 14px; }
.about-copy .btn { margin-top: 12px; }

/* ============ FAQ ============ */
.faq-section .sec-head { margin-bottom: 32px; }
.faq { max-width: 760px !important; }
.faq details { border-bottom: 1px solid var(--gray-2); }
.faq details:first-child { border-top: 1px solid var(--gray-2); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 4px;
  font-family: var(--ui);
  font-weight: 500;
  font-size: 16.5px;
  letter-spacing: 0.02em;
  transition: color 0.25s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.faq summary i::before, .faq summary i::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}
.faq summary i::before { top: 6px; left: 0; width: 14px; height: 2px; }
.faq summary i::after { top: 0; left: 6px; width: 2px; height: 14px; }
.faq details[open] summary i::after { transform: rotate(90deg); }
.faq details p { font-size: 14.5px; color: var(--text-2); padding: 0 4px 20px; line-height: 1.65; max-width: 680px; }

/* ============ CTA BAND ============ */
.cta-band {
  position: relative;
  background: var(--ink);
  padding: 96px 32px;
  text-align: center;
  overflow: hidden;
}
.cta-band .ridge { z-index: 0; }
.cta-band-inner { position: relative; z-index: 1; }
.cta-band-inner { max-width: var(--container); margin: 0 auto; }
.cta-band h2 {
  color: #fff;
  font-size: clamp(40px, 5vw, 64px);
  margin: 0 0 14px;
}
.cta-band .hl { box-shadow: inset 0 -0.26em rgba(255, 214, 10, 0.9); color: #fff; }
.cta-band p { color: #A8B2BD; font-size: 15.5px; margin-bottom: 30px; }

/* ============ FOOTER ============ */
.site-footer {
  background: #0E141B;
  color: #F4F6F8;
  padding: 64px 32px 28px;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto 44px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo { height: 56px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: #A8B2BD; font-size: 14px; max-width: 280px; line-height: 1.6; }
.footer-social { display: flex; gap: 14px; margin-top: 18px; }
.footer-social a { color: #A8B2BD; transition: color 0.25s var(--ease); }
.footer-social a:hover { color: var(--yellow); }
.footer-col h4 {
  font-family: var(--ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6B7683;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: #A8B2BD;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.25s var(--ease);
}
.footer-col a:hover { color: #fff; }
.footer-hours { color: #6B7683; font-size: 13.5px; }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: #6B7683;
  font-size: 13px;
}
.footer-bottom a { color: #6B7683; text-decoration: none; }
.footer-bottom a:hover { color: #A8B2BD; }

/* ============ FLOATING CTA (mobile) ============ */
.floating-cta {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translate(-50%, 90px);
  z-index: 80;
  font-family: var(--ui);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--ink);
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(20, 31, 39, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.floating-cta.is-visible { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
@media (min-width: 900px) { .floating-cta { display: none; } }

/* ============ PROMO MODAL ============ */
.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.promo-modal.is-open { visibility: visible; opacity: 1; }
.promo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 20, 27, 0.6);
}
.promo-card {
  position: relative;
  background: var(--paper);
  border-radius: 18px;
  padding: 40px 36px 30px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 40px 100px rgba(20, 31, 39, 0.35);
  transform: translateY(16px);
  transition: transform 0.45s var(--ease);
}
.promo-modal.is-open .promo-card { transform: none; }
.promo-card h2 { margin: 14px 0 12px; font-size: 34px; }
.promo-card p { font-size: 14.5px; color: var(--text-2); margin-bottom: 22px; line-height: 1.6; }
.promo-card p b { color: var(--ink); }
.promo-card .btn { width: 100%; justify-content: center; }
.promo-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-3);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
}
.promo-close:hover { color: var(--ink); }
.promo-dismiss {
  display: block;
  margin: 14px auto 0;
  background: none;
  border: none;
  color: var(--text-3);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1020px) {
  .hero { grid-template-columns: 1fr; gap: 56px; }
  .hero > .hero-copy, .hero > .cal-wrap { justify-self: center; max-width: 620px; }
  .toast-1 { left: -8px; }
  .toast-2 { right: -6px; }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .rcpt-grid { grid-template-columns: 1fr 1fr; }
  .rcpt.featured { grid-column: span 2; }
  .how-layout { grid-template-columns: 1fr; gap: 44px; }
  .how-sticky { position: static; }
  .prog-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .owner-photo { max-width: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 14px; }
}
@media (max-width: 720px) {
  .main-nav { display: none; }
  .header-inner { padding: 12px 18px; gap: 14px; }
  .brand-logo { height: 38px; }
  .header-phone { display: none; }
  .hero { padding: 44px 20px 56px; }
  .section { padding: 64px 20px; }
  .strip { padding: 0 20px 48px; }
  .ind-grid { grid-template-columns: 1fr; }
  .rcpt-grid { grid-template-columns: 1fr; }
  .rcpt.featured { grid-column: span 1; }
  .form-grid { grid-template-columns: 1fr; }
  .appt { font-size: 9px; padding: 4px 5px; }
  .appt small { font-size: 8.5px; }
  .toast { width: 230px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-band { padding: 72px 20px; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .r, .hero-in, .appt, .toast { opacity: 1; transform: none; animation: none; }
  .ridge-a, .ridge-b, .ridge-c { animation: none; }
}
