/* ============================================================
   Less RX Health — hand-written stylesheet
   Brand: gold #c9a227 · black #0a0a0a
   ============================================================ */
:root {
  --gold: #c9a227;
  --gold-dark: #b08e1f;
  --black: #0a0a0a;
  --text: #1a1a1a;
  --muted: #555;
  --line: rgba(201, 162, 39, 0.3);
  --bg-tint: #f5f5f4;
  --radius: 10px;
  --shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main { flex: 1; }
img, video, iframe { max-width: 100%; height: auto; }
a { color: var(--gold-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* ---------- Header ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
.logo img { height: 200px; width: auto; display: block; margin: -44px 0; }
.header-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.35rem; }
.header-top { display: flex; gap: 1.25rem; font-size: 0.9rem; }
.top-link { color: var(--text); font-weight: 600; }
.top-link:hover { color: var(--gold); text-decoration: none; }
.main-nav { display: flex; gap: 1.5rem; }
.main-nav a {
  color: var(--text);
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
}
.main-nav a:hover { color: var(--gold); text-decoration: none; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.2s;
}
.main-nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: #d6d6d6;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 50%;
}
.hero-overlay { display: none; }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 6rem 1.5rem 14rem;
  color: var(--black);
}
.hero-content h1 {
  color: var(--black);
  text-align: left;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(255,255,255,0.8), 0 2px 12px rgba(255,255,255,0.6);
}
.hero-sub {
  font-size: 1.2rem;
  max-width: 560px;
  margin-bottom: 1.75rem;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(255,255,255,0.7);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.25rem; }
.hero-note { margin-top: 3rem; font-size: 0.85rem; color: #333; }
.btn-outline.light { color: var(--gold-dark); border-color: var(--gold); background: rgba(255,255,255,0.65); }
.btn-outline.light:hover { background: var(--gold); color: var(--black); }

/* ---------- Trust ticker (cards overlapping hero bottom) ---------- */
.ticker {
  overflow: hidden;
  padding: 0 0 1.5rem;
  margin-top: -11rem;
  position: relative;
  z-index: 3;
  background: transparent;
}
.ticker-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: ticker-scroll 55s linear infinite;
  padding: 0.5rem 0;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  white-space: normal;
  width: 250px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.15rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem 1.1rem;
}
.ticker-item .t-icon { width: 34px; height: 34px; color: var(--gold); margin-bottom: 0.5rem; }
.ticker-item strong { color: var(--black); font-size: 0.98rem; }
.ticker-item span { color: var(--muted); font-size: 0.82rem; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ---------- Full-width bands ---------- */
.band { width: 100%; padding: 4rem 0; margin: 2.5rem 0; }
.band.dark { background: var(--black); color: #fff; }
.band.dark h2, .band.dark h3 { color: #fff; }
.band.dark .card { background: #161616; border-color: rgba(201,162,39,0.35); color: #eee; }
.band .page { padding-top: 0; padding-bottom: 0; }
.quote { font-style: italic; }
.attrib { font-weight: 700; color: var(--gold); margin: 0; }
.stat { font-size: 1.9rem; line-height: 1.1; display: block; margin-bottom: 0.2rem; }
.checklist { list-style: none; margin-left: 0; max-width: 760px; margin-inline: auto; }
.checklist li { padding-left: 1.75rem; position: relative; margin-bottom: 0.7rem; }
.checklist li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ---------- Page & sections ---------- */
.page { padding: 3rem 1.25rem; max-width: 1200px; margin: 0 auto; width: 100%; }
.section { padding: 3rem 0; }
.section.dark { background: var(--black); color: #fff; margin: 2rem -100vw; padding: 4rem 100vw; }
.section.dark h2, .section.dark h3 { color: #fff; }
.section.tint { background: var(--bg-tint); margin: 2rem -100vw; padding: 4rem 100vw; }

h1, h2, h3, h4 { line-height: 1.25; color: var(--black); }
h1 { font-size: clamp(2rem, 4.5vw, 2.75rem); margin: 0 0 1.25rem; text-align: center; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.1rem); margin: 2.5rem 0 1rem; }
h3 { font-size: 1.25rem; margin: 1.5rem 0 0.6rem; }
h4 { font-size: 1.05rem; margin: 1.2rem 0 0.5rem; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1.25rem 1.4rem; }
li { margin-bottom: 0.4rem; }
blockquote {
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.25rem;
  font-style: italic;
  color: var(--muted);
  margin: 1.5rem 0;
}
.gold { color: var(--gold) !important; }
.center { text-align: center; }
video { border-radius: var(--radius); box-shadow: var(--shadow); margin: 1.5rem auto; display: block; }
.page > img { border-radius: var(--radius); box-shadow: var(--shadow); margin: 1rem 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.8rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s, background 0.15s, color 0.15s;
  text-decoration: none !important;
  margin: 0.25rem 0.35rem 0.25rem 0;
}
.btn:hover { transform: translateY(-1px) scale(1.02); }
.btn-gold { background: var(--gold); color: var(--black); box-shadow: var(--shadow); }
.btn-gold:hover { background: var(--gold-dark); color: var(--black); }
.btn-outline { background: transparent; color: var(--gold-dark); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black); }
.section.dark .btn-outline { color: var(--gold); }
.section.dark .btn-outline:hover { color: var(--black); }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 1.5rem; margin: 1.5rem 0; align-items: stretch; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.13); }
.card img {
  border-radius: calc(var(--radius) - 4px);
  margin: -0.25rem 0 0.75rem;
  object-fit: cover;
  width: 100%;
}
.card h3 { margin-top: 0.25rem; }
.card-link { display: block; color: inherit; text-decoration: none !important; height: 100%; }
.card-link .card h3 { color: var(--black); }
.card-link:hover .card h3 { color: var(--gold-dark); }
.icon { width: 40px; height: 40px; color: var(--gold); flex-shrink: 0; margin-bottom: 0.5rem; }

/* ---------- Carousel ---------- */
.carousel { position: relative; overflow: hidden; margin: 2rem 0; padding: 0 3rem; }
.carousel-track { display: flex; transition: transform 0.35s ease; }
.slide { flex: 0 0 100%; padding: 0 0.75rem; }
.carousel .card { text-align: center; align-items: center; }
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--gold-dark);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.15s;
}
.carousel-btn:hover { background: var(--gold); color: var(--black); }
.carousel-btn:disabled { opacity: 0.35; cursor: default; }
.carousel-btn.prev { left: 4px; }
.carousel-btn.next { right: 4px; }
@media (min-width: 768px) { .slide { flex-basis: 50%; } }
@media (min-width: 1024px) { .slide { flex-basis: 33.333%; } }

/* ---------- Accordion ---------- */
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: 0;
  padding: 1.1rem 0;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  cursor: pointer;
}
.acc-trigger:hover { color: var(--gold-dark); }
.acc-trigger::after {
  content: "▾";
  color: var(--gold);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.acc-trigger[aria-expanded="true"]::after { transform: rotate(180deg); }
.acc-panel { padding: 0 0 1.25rem; }
.acc-panel[hidden] { display: none; }

/* ---------- Forms ---------- */
form { max-width: 640px; }
label { display: block; font-weight: 600; margin: 1rem 0 0.3rem; }
input, textarea, select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font: inherit;
}
input:focus, textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-tint);
  color: var(--text);
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.5rem;
}
.footer-logo img { height: 96px; width: auto; }
.site-footer h3 { color: var(--gold-dark); font-size: 1.1rem; margin: 0.75rem 0; }
.site-footer ul { list-style: none; margin: 0; }
.site-footer li { margin-bottom: 0.45rem; }
.site-footer a { color: var(--text); }
.site-footer a:hover { color: var(--gold-dark); }
.footer-bottom { text-align: center; font-size: 0.85rem; color: var(--muted); }
.footer-bottom p { margin: 0; }

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

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-top { display: none; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.9rem 1.25rem; border-top: 1px solid #eee; }
  .main-nav a::after { display: none; }
  .nav-toggle { display: flex; }
  .logo img { height: 56px; }
}

/* ============================================================
   Parity overrides — matching the original site's layout
   ============================================================ */

/* Header: top links plain like original */
.top-link { font-weight: 400; font-size: 0.85rem; }

/* Content images: original constrains to a centered medium column */
.page > img,
.page section > img {
  max-width: 680px;
  width: 100%;
  display: block;
  margin: 1.5rem auto;
}

/* Centered CTA blocks */
.cta.center { text-align: center; max-width: 760px; margin: 2rem auto 0; }
.cta.center .btn { margin: 0.5rem auto 0; }

/* Check-icon lists: no double markers, inline icons */
main li:has(> svg.icon) { list-style: none; }
main li > svg.icon {
  display: inline-block;
  width: 18px; height: 18px;
  vertical-align: -3px;
  margin-right: 8px;
}
main ul:has(> li > svg.icon) { margin-left: 0; }

/* Hide empty leftovers */
main section:empty, main div:empty:not(.hero-overlay) { display: none; }

/* Healthie scheduling embed */
iframe[src*="gethealthie"] { width: 100%; height: 860px; border: 0; }

/* Footer social icons */
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: color .15s, border-color .15s;
}
.footer-social a:hover { color: var(--gold-dark); border-color: var(--gold); }
.footer-social svg { width: 17px; height: 17px; }

/* Pricing page: big centered prices, centered tier cards */
.pricing .grid .card { text-align: center; align-items: center; }
.pricing .grid .card ul { text-align: left; }
.price {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1.1;
  margin: 0.75rem 0 1rem;
}
.price .per { display: block; font-size: 0.85rem; font-weight: 500; color: var(--muted); }

/* Physician detail pages: circular headshot header like original */
.physician-detail .page > img:first-of-type,
.physician-detail .page section > img:first-of-type {
  width: 190px; height: 190px;
  object-fit: cover; object-position: top;
  border-radius: 50%;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow);
}
.physician-detail h1 { text-align: center; }

/* Physicians index: shorter top-cropped card photos, centered names, pills */
.physicians-index .card > img { max-height: 300px; object-fit: cover; object-position: top; }
.physicians-index .card h2, .physicians-index .card h3 { text-align: center; }
.pill {
  display: inline-block;
  background: rgba(201,162,39,0.14);
  color: var(--gold-dark);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0 6px 8px 0;
}

/* About page: circular physician headshots in profile cards */
.about .card-link .card img {
  width: 140px; height: 140px;
  border-radius: 50%;
  object-fit: cover; object-position: top;
  margin: 0 auto 0.75rem;
}
.about .card-link .card { text-align: center; }

/* Legal pages: conventional blue links in the body, denser text */
.legal main a:not(.btn) { color: #2563eb; }
.legal .page { max-width: 1050px; }
.legal .page p, .legal .page li { line-height: 1.55; }

/* Get-started: next-step blocks as cards */
.step-cards { display: grid; grid-template-columns: 1fr; gap: 1.25rem; max-width: 640px; margin: 1.5rem auto; }
.step-cards .card h2, .step-cards .card h3 { margin-top: 0; }
.subnote { color: var(--gold-dark); font-size: 0.85rem; font-weight: 600; }

/* Home: six pillars dark band, testimonials light band */
.pillars { background: var(--black); padding: 4rem 0; margin: 2.5rem 0; }
.pillars h2, .pillars > .page > p { color: #fff; }
.pillars .card { background: rgba(245,245,240,0.95); }
.pillars .card svg.icon { width: 36px; height: 36px; margin: 0 auto 0.5rem; display: block; }
.band.tint { background: var(--bg-tint); }
.band.tint h2 { color: var(--gold-dark); }
.band.tint .card { background: #fff; color: var(--text); border-color: var(--line); }
.avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #eee;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--black);
  margin: 0.75rem auto 0.4rem;
}
.q-icon { width: 40px; height: 40px; color: var(--gold); opacity: 0.7; margin: 0 auto 0.75rem; display: block; }
.whylist { list-style: none; max-width: 760px; margin: 1.5rem auto; }
.whylist li { padding: 0.35rem 0; }
.section.dark.pillars { margin: 2.5rem -100vw; padding: 4rem 100vw; }
.section.dark.pillars h2, .section.dark.pillars > p { color: #fff; }
.section.dark.pillars .card { background: rgba(245,245,240,0.96); }
/* Pillars cards sit on the dark band but are light — force dark text */
.section.dark.pillars .card h3,
.section.dark.pillars .card p,
.pillars .card h3, .pillars .card p { color: var(--text); }
.section.dark.pillars .card h3 { color: var(--black); }

/* ============ Gap-analysis round 2 ============ */

/* 1. Kill the footer void: no viewport-height stretching */
body { display: block; min-height: 0; }
main { flex: none; }
.site-footer { margin-top: 3rem; }

/* 5. No rule under header (original has none) */
.site-header { border-bottom: none; box-shadow: 0 1px 0 rgba(0,0,0,0.04); }

/* 2. Narrower inner-page measure; home stays wide, legal wider */
.page { max-width: 980px; }
.home .page { max-width: 1200px; }
.legal .page { max-width: 1300px; }
.page > p, .page section > p { max-width: 780px; margin-left: auto; margin-right: auto; }
.page > p.center, .page section > p.center { max-width: 700px; }

/* 3. Check lists: hanging indent, icon on first-line baseline */
main li:has(> svg.icon) {
  list-style: none;
  position: relative;
  padding-left: 30px;
  margin-bottom: 0.6rem;
}
main li > svg.icon {
  position: absolute;
  left: 0; top: 2px;
  width: 18px; height: 18px;
  margin: 0;
  display: block;
}

/* FAQ accordion: narrow centered column with dividers, dark chevron */
.acc-trigger, .acc-panel { max-width: 680px; margin-left: auto; margin-right: auto; }
.acc-trigger { border-bottom: 1px solid #e2e2e2; }
.acc-trigger::after { color: #444; }
.acc-panel { padding: 0.25rem 0 1.25rem; }

/* 6. Physician philosophy sub-heads bold */
.subhead { font-weight: 700; }

/* Physician detail: two-column hero, restore heading hierarchy */
.doc-hero {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin: 1rem 0 2.5rem;
}
.doc-hero img {
  width: 230px; height: 230px;
  border-radius: 50%;
  object-fit: cover; object-position: top;
  box-shadow: var(--shadow);
  flex-shrink: 0;
  margin: 0;
}
.doc-hero h1 { text-align: left; margin: 0 0 0.4rem; }
.doc-role { font-weight: 700; color: var(--gold-dark); margin: 0; }
.physician-detail h2 { font-size: 1.8rem; color: var(--gold-dark); }
.physician-detail .page > img:first-of-type { display: none; } /* superseded by doc-hero */
@media (max-width: 640px) { .doc-hero { flex-direction: column; text-align: center; } .doc-hero h1 { text-align: center; } }

/* Physicians index: left headings, taller photos, gray pills, centered button */
.physicians-index .card h2, .physicians-index .card h3 { text-align: left; }
.physicians-index .card > img { max-height: 420px; object-fit: cover; object-position: top; }
.physicians-index .pill { background: #f1f1f1; color: #333; border: 0; }
.physicians-index .card .btn { align-self: center; margin-top: auto; }

/* Services index: centered card grid incl. 2-card last row, full-width buttons */
.services-index .grid-3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.services-index .grid-3 .card {
  flex: 0 1 340px;
  text-align: center;
  display: flex; flex-direction: column;
}
.services-index .card h2 { font-size: 1.3rem; margin: 0.5rem 0 0.75rem; }
.services-index .card .btn, .services-index .card a:has(.btn) { margin-top: auto; }
.services-index .card .btn { width: 100%; border-radius: 8px; }

/* Pricing: bigger gold tier titles, wide buttons */
.pricing .grid .card h3 { font-size: 1.7rem; color: var(--gold-dark); }
.pricing .card .btn { width: 90%; border-radius: 10px; margin: auto auto 0; }

/* Healthie iframe closer to original height */
iframe[src*="gethealthie"] { height: 560px; }

/* Success stories video thumb */
.video-thumb {
  width: 100%; aspect-ratio: 16/9;
  background: #d8d8d8;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.video-thumb svg { width: 56px; height: 56px; color: var(--gold); }

/* Contact: compact icon-left rows */
.contact-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 1.1rem; }
.contact-row svg.icon { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-row strong { display: block; color: var(--black); }
.contact-row span, .contact-row a { color: var(--text); }

/* Home: pillars wood-tone band; blue-zones & why-matters centered single column */
.section.dark.pillars {
  background: linear-gradient(rgba(20,14,8,0.88), rgba(20,14,8,0.88)),
              repeating-linear-gradient(90deg, #3a2c1c 0 90px, #33261a 90px 180px);
}
.home .bz-center, .home .wm-center { max-width: 820px; margin: 0 auto; text-align: center; }
.home .bz-center ul, .home .wm-center ul { display: inline-block; text-align: left; }
.wm-center .stat { font-size: 1.05rem; display: inline; font-weight: 700; }
.bz-center img, .wm-center img { display: block; max-width: 680px; width: 100%; margin: 1.5rem auto; border-radius: var(--radius); }
.about .phil-split { align-items: center; }
.about .phil-split img { width: 100%; max-width: none; margin: 0; border-radius: var(--radius); }
/* Services index needs the wide container for the 3+2 card layout */
.services-index .page { max-width: 1200px; }
.services-index .grid-3 .card { flex: 0 1 350px; }
/* Hero/ticker: cards sit below the hero like the original, not overlapping it */
.hero-content { padding: 7rem 1.5rem 8rem; }
.ticker { margin-top: 0; padding: 2rem 0 1.5rem; background: #fff; }
/* Pillars: the original's actual wood-plank photo background */
.section.dark.pillars {
  background: linear-gradient(rgba(10,8,5,0.45), rgba(10,8,5,0.45)),
              url('/Website%20Picture%201.jpg') center/cover no-repeat;
}
/* Dark CTA band: gold heading like the original */
.band.dark.cta h2 { color: var(--gold); }
/* Home services cards: gold centered headings like the original */
.home .grid .card h3 { color: var(--gold-dark); text-align: center; }
.home .grid .card p { text-align: center; }
/* Custom contact form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.25rem; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
#lessrx-contact-form label { margin-top: 0.9rem; }
#cf-status.ok { color: #1a7f37; font-weight: 600; }
#cf-status.err { color: #b42318; font-weight: 600; }
.footer-addr { font-size: 0.9rem; margin-top: 0.9rem; line-height: 1.5; }
