/* ============================================================
   OC Pain Free — Clinical Massage Therapy
   Mobile-first stylesheet. Design tokens up top.
   ============================================================ */

:root {
  --bg: #faf8f4;
  --surface: #ffffff;
  --ink: #182420;
  --body: #45544e;
  --muted: #6b7a73;

  /* Brand palette (from the OC Pain-free logo): warm charcoal + orange on cream.
     Variable names kept as --teal-* so the whole stylesheet re-themes from here. */
  --teal-950: #2a2622;   /* dark section background (warm charcoal) */
  --teal-900: #34302b;
  --teal-800: #45403a;   /* charcoal accent: eyebrows, links, outline, brand text */
  --teal-100: #f3e7d9;   /* warm cream tint (chips, checkmark bg) */
  --teal-50:  #faf4ec;   /* very light warm tint (section backgrounds) */

  --cta: #e8792b;        /* logo orange */
  --cta-hover: #cf6817;

  --line: #e7e1d5;
  --line-dark: rgba(255, 255, 255, 0.16);

  --star: #d99a2b;

  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 1px 2px rgba(24, 36, 32, 0.06), 0 8px 24px rgba(24, 36, 32, 0.07);

  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  --header-h: 68px;
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

[hidden] {
  display: none !important;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.6em;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: var(--teal-800);
  text-underline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cta);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  width: min(100% - 2.5rem, 1120px);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 200;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

/* ---------- Type helpers ---------- */
.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-800);
  margin-bottom: 0.9rem;
}

.eyebrow-light {
  color: #e2a877;
}

.section-title {
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
}

.section-sub {
  font-size: 1.1rem;
  max-width: 42rem;
  margin-bottom: 2.25rem;
}

.lead {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  max-width: 34rem;
}

.lead em {
  font-style: italic;
  color: var(--ink);
}

.license-line {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--teal-800);
}

.price {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--ink);
}

/* ---------- Buttons (44px+ tap targets) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.7rem 1.4rem;
  border-radius: 10px;
  border: 2px solid transparent;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  white-space: normal;
  text-align: center;
  max-width: 100%;
  transition: background-color 0.15s ease, border-color 0.15s ease,
    transform 0.1s ease;
}

/* Keep the compact header + sticky-bar buttons on a single line */
.header-actions .btn,
.mobile-cta .btn {
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-lg {
  min-height: 54px;
  padding: 0.85rem 1.75rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--cta);
  color: #fff;
}

.btn-primary:hover {
  background: var(--cta-hover);
}

.btn-outline {
  border-color: var(--teal-800);
  color: var(--teal-800);
  background: transparent;
}

.btn-outline:hover {
  background: var(--teal-50);
}

.btn-ghost {
  background: rgba(20, 69, 61, 0.08);
  color: var(--teal-800);
}

.btn-ghost:hover {
  background: rgba(20, 69, 61, 0.14);
}

/* Ghost buttons on dark sections */
.difference .btn-ghost,
.book .btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.difference .btn-ghost:hover,
.book .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.icon {
  flex: none;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header.is-scrolled {
  box-shadow: 0 2px 14px rgba(24, 36, 32, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--teal-800);
  margin-right: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.brand-text small {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

@media (max-width: 419px) {
  .brand-text small {
    display: none;
  }
}

.main-nav {
  display: none;
  gap: 1.5rem;
}

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--body);
  padding: 0.5rem 0;
}

.main-nav a:hover {
  color: var(--teal-800);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.phone-link {
  display: none;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--teal-800);
  white-space: nowrap;
  min-height: 44px;
}

.header-actions .btn {
  min-height: 44px;
  padding: 0.55rem 1.1rem;
}

@media (min-width: 560px) {
  .phone-link {
    display: inline-flex;
  }
}

@media (min-width: 960px) {
  .main-nav {
    display: flex;
  }
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(3rem, 8vw, 5rem);
  background: linear-gradient(180deg, #f4f0e8 0%, var(--bg) 85%);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 7vw, 3.6rem);
  margin-bottom: 0.5em;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.75rem 0 1.5rem;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.trust-chips li {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal-800);
  background: var(--teal-100);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  max-width: 420px;
}

.hero-portrait {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: 50% 22%;
  display: block;
}

.hero-card-body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.brand-logo {
  height: 52px;
  width: auto;
}

.footer-logo {
  height: 66px;
  width: auto;
  margin-bottom: 0.9rem;
}

.hero-card-badge,
.card-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--teal-800);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  margin: 0 0 1rem;
}

.hero-card-title {
  font-size: 1.45rem;
  margin-bottom: 0.25em;
}

.hero-card-meta,
.service-meta {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero-card .btn {
  margin-top: 1.25rem;
}

.hero-card-note {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  margin: 0.75rem 0 0;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
  .hero-card {
    justify-self: end;
  }
}

/* ---------- Check lists ---------- */
.check-list li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 0.6rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--teal-800);
  background: var(--teal-100);
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

/* ---------- Sections rhythm ---------- */
.conditions,
.methods,
.services,
.steps,
.about,
.testimonials,
.pricing,
.faq {
  padding: clamp(3.5rem, 9vw, 6rem) 0;
}

/* ---------- Methods / modalities ---------- */
.methods {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.methods-grid {
  display: grid;
  gap: 1.25rem;
}

.method-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
}

.method-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4em;
}

.method-card p {
  font-size: 0.98rem;
  margin-bottom: 0.75em;
}

.method-for {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.method-for strong {
  color: var(--teal-800);
}

.method-note {
  background: var(--teal-100);
  border-color: var(--teal-100);
  display: flex;
  flex-direction: column;
}

.method-note p {
  flex-grow: 1;
}

.method-note .btn {
  align-self: flex-start;
}

@media (min-width: 680px) {
  .methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1020px) {
  .methods-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Promo bar (rendered by js/main.js when promoText is set) ---------- */
.promo-bar {
  background: var(--teal-800);
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.65rem 1.25rem;
}

/* ---------- Conditions ---------- */
.conditions {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.conditions-grid {
  display: grid;
  gap: 0.75rem;
}

.conditions-grid li {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}

.conditions-grid li strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.conditions-grid li span {
  font-size: 0.92rem;
  color: var(--muted);
}

@media (min-width: 640px) {
  .conditions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .conditions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Differentiator (dark) ---------- */
.difference {
  background: var(--teal-950);
  color: #d6ccc0;
  padding: clamp(3.5rem, 9vw, 6rem) 0;
}

.difference .section-title {
  color: #fff;
}

.difference .section-sub {
  color: #c2b4a4;
}

.compare-grid {
  display: grid;
  gap: 1.25rem;
}

.compare-col {
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.compare-col h3 {
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
}

.compare-col li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.7rem;
}

.compare-col li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
}

.compare-spa {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-dark);
}

.compare-spa h3 {
  color: #b3a99d;
}

.compare-spa li::before {
  content: "✕";
  color: #d99a8a;
}

.compare-clinic {
  background: #f4f0e8;
  color: var(--body);
  border: 1px solid #f4f0e8;
}

.compare-clinic h3 {
  color: var(--teal-800);
}

.compare-clinic li {
  color: var(--ink);
}

.compare-clinic li::before {
  content: "✓";
  color: var(--teal-800);
}

@media (min-width: 780px) {
  .compare-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  gap: 1.25rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.25em;
}

.service-card p:last-of-type {
  flex-grow: 1;
}

.service-card .btn {
  align-self: flex-start;
  margin-top: 1rem;
}

.service-featured {
  border: 2px solid var(--teal-800);
  box-shadow: var(--shadow);
}

.services-note {
  margin: 1.5rem auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 62ch;
}

.price-member {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cta);
}

.service-membership {
  border: 2px solid var(--cta);
}

.card-badge-cta {
  background: var(--cta);
}

.service-membership .check-list {
  margin-top: 0.75rem;
}

.price-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cta);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-oncall {
  margin-top: 0.15rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.membership-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 1.75rem;
  margin-bottom: 1.75rem;
  padding: 1.6rem 1.85rem;
  border: 2px solid var(--cta);
  border-radius: var(--radius-lg);
  background: var(--teal-50);
}

.membership-banner .mb-copy {
  flex: 1 1 340px;
}

.membership-banner h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.membership-banner .check-list {
  margin-top: 0.6rem;
}

@media (min-width: 720px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Steps ---------- */
.steps {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.steps-grid {
  display: grid;
  gap: 2rem;
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  counter-reset: none;
}

.step-num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cta);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.steps-grid h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35em;
}

.steps-grid p {
  margin: 0;
}

.steps-cta {
  text-align: center;
}

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

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

/* ---------- About ---------- */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.about-photo img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
}

.about-copy .check-list {
  margin: 1.25rem 0 1.75rem;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
  .about-photo img {
    margin-inline: 0;
  }
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--teal-50);
  border-block: 1px solid var(--line);
}

.testimonial-grid {
  display: grid;
  gap: 1.25rem;
}

.testimonial-card {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.testimonial-card .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.stars {
  color: var(--star);
  letter-spacing: 0.15em;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.testimonial-card blockquote {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  color: var(--ink);
}

.testimonial-card figcaption {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}

.testimonial-card figcaption span {
  font-weight: 500;
  color: var(--muted);
}

@media (min-width: 720px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.pricing-table-wrap {
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.pricing-table th,
.pricing-table td {
  text-align: left;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--line);
}

.pricing-table tr:last-child th,
.pricing-table tr:last-child td {
  border-bottom: 0;
}

.pricing-table th {
  font-weight: 600;
  color: var(--ink);
}

.pricing-table th small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.85rem;
}

.pricing-table td {
  text-align: right;
  white-space: nowrap;
}

.pricing-table thead th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 700;
}

.pricing-table thead th + th {
  text-align: right;
}

.pricing-table .price-member-cell {
  color: var(--cta);
}

.pricing-table tfoot th {
  color: var(--cta);
}

.pricing-table tfoot td {
  font-weight: 700;
  color: var(--cta);
}

.policy-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.policy-card h3 {
  font-size: 1.25rem;
}

.policy-card .check-list {
  margin-bottom: 1.25rem;
}

.policy-card .btn {
  margin-top: 0.5rem;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* ---------- Service area ---------- */
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.area-chips li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1.05rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}

.area-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.faq-inner {
  max-width: 780px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  margin-bottom: 0.75rem;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  min-height: 48px;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.02rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--teal-800);
  flex: none;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  padding: 0 1.35rem 1.25rem;
  margin: 0;
}

/* ---------- Booking / contact (dark) ---------- */
.book {
  background: var(--teal-950);
  color: #d6ccc0;
  padding: clamp(3.5rem, 9vw, 6rem) 0;
}

.book .section-title {
  color: #fff;
}

.book .section-sub {
  color: #c2b4a4;
}

.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.book-fallback {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.book-fallback h3 {
  color: #fff;
  font-size: 1.25rem;
}

.book-note {
  margin: 1.75rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  color: #d6ccc0;
  font-size: 0.95rem;
  max-width: 640px;
}

.book-embed {
  margin-bottom: 2.5rem;
}

.book-embed iframe {
  width: 100%;
  min-height: 640px;
  border: 0;
  border-radius: var(--radius-lg);
  background: #fff;
}

.contact-strip {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  border-top: 1px solid var(--line-dark);
  padding-top: 2rem;
}

.contact-strip h4 {
  color: #e2a877;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.contact-strip a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.05rem;
}

.contact-strip a:hover {
  text-decoration: underline;
}

.contact-strip p {
  margin: 0;
  color: #d6ccc0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.footer-brand strong {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--ink);
}

.footer-brand p {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  align-content: start;
}

.footer-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 0;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.footer-contact a {
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
}

.footer-contact p {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
}

.footer-legal {
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-legal p {
  margin: 0 0 0.4rem;
}

@media (min-width: 900px) {
  .footer-inner {
    grid-template-columns: 1.2fr 1fr 0.8fr;
  }
}

/* ---------- Mobile sticky CTA bar ---------- */
.mobile-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(250, 248, 244, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
}

.mobile-cta .btn {
  min-height: 50px;
  padding-inline: 0.6rem;
}

body {
  padding-bottom: 76px; /* room for the mobile CTA bar */
}

@media (min-width: 768px) {
  .mobile-cta {
    display: none;
  }
  body {
    padding-bottom: 0;
  }
}
