/* =========================================================
   Rehab N Run – Design System
   Brand: Forest green #006644 + Mint green #36B37E
   Tagline: Keep it Simple · Trust the Process
   ========================================================= */

:root {
  /* Brand — official Rehab N Run palette (from supplied SVG kit) */
  --rnr-forest: #006644;          /* Primary forest green */
  --rnr-forest-dark: #00543A;     /* Forest hover/pressed */
  --rnr-mint: #36B37E;            /* Secondary mint green */
  --rnr-mint-soft: #D8F0E5;       /* Soft mint for pill/badge bg */
  --rnr-mint-tint: #EEFAF3;       /* Lightest mint for section bg */
  --rnr-mint-bright: #39D377;     /* Bright accent (matches dark-bg logo) */

  /* Neutrals */
  --rnr-ink: #15191F;
  --rnr-ink-soft: #2A2F38;
  --rnr-grey-700: #4B5563;
  --rnr-grey-500: #6B7280;
  --rnr-grey-300: #D1D5DB;
  --rnr-grey-100: #F3F4F6;
  --rnr-grey-50: #F9FAFB;
  --rnr-white: #FFFFFF;

  /* Accents */
  --rnr-gold: #F5B800;        /* For review stars */
  --rnr-cta: var(--rnr-forest);
  --rnr-cta-hover: var(--rnr-forest-dark);

  /* System */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(15,25,30,0.06), 0 1px 3px rgba(15,25,30,0.08);
  --shadow-md: 0 6px 18px rgba(15,25,30,0.08);
  --shadow-lg: 0 20px 50px rgba(15,25,30,0.12);
  --container: 1180px;
  --section-y: 96px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--rnr-ink);
  background: var(--rnr-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--rnr-forest); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--rnr-ink);
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.35rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p { margin: 0 0 1em; color: var(--rnr-grey-700); }
.lead { font-size: 1.2rem; color: var(--rnr-grey-700); }
.script { font-family: 'Caveat', cursive; font-weight: 500; color: var(--rnr-forest); }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-y) 0; }
.section--tight { padding: 60px 0; }
.section--mint { background: var(--rnr-mint-tint); }
.section--dark { background: var(--rnr-ink); color: var(--rnr-white); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--rnr-white); }
.section--dark p { color: rgba(255,255,255,0.78); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--rnr-forest);
  background: var(--rnr-mint-soft);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: 100px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: none;
  cursor: pointer;
  line-height: 1;
}
.btn--primary { background: var(--rnr-forest); color: var(--rnr-white); position: relative; overflow: hidden; }
.btn--primary:hover { background: var(--rnr-forest-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0, 102, 68, 0.35); text-decoration: none; }
.btn--mint { background: var(--rnr-mint); color: var(--rnr-ink); position: relative; overflow: hidden; }
.btn--mint:hover { background: #2B9669; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(54, 179, 126, 0.4); text-decoration: none; }

/* Shimmer sweep on primary CTA buttons — draws eye to "Book Online" */
.btn--primary::after,
.btn--mint::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 65%
  );
  transform: translateX(-100%);
  animation: btn-shimmer 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btn-shimmer {
  0%   { transform: translateX(-100%); }
  18%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}
@media (prefers-reduced-motion: reduce) {
  .btn--primary::after,
  .btn--mint::after { animation: none; opacity: 0; }
}
.btn--ghost { background: transparent; color: var(--rnr-ink); border: 2px solid var(--rnr-ink); padding: 12px 24px; }
.btn--ghost:hover { background: var(--rnr-ink); color: var(--rnr-white); text-decoration: none; }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }
.btn--block { display: flex; justify-content: center; width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rnr-grey-100);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.nav__logo img { height: 52px; width: auto; display: block; }
.nav__links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav__links a { color: var(--rnr-ink); font-weight: 500; font-size: 0.95rem; }
.nav__links a:hover { color: var(--rnr-forest); text-decoration: none; }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__phone { color: var(--rnr-ink); font-weight: 700; font-size: 0.95rem; }
.nav__phone:hover { color: var(--rnr-forest); text-decoration: none; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--rnr-ink); margin: 5px 0; transition: .2s; }

@media (max-width: 880px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--rnr-white);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 18px;
    gap: 0;
    border-bottom: 1px solid var(--rnr-grey-100);
    box-shadow: 0 12px 24px rgba(15,25,30,0.08);
    z-index: 49;
  }
  .nav__links.is-open { display: flex; }
  .nav__links li {
    padding: 16px 0;
    border-bottom: 1px solid var(--rnr-grey-100);
  }
  .nav__links li:last-child { border-bottom: none; }
  .nav__links a { font-size: 1.05rem; display: block; }
  .nav__phone { display: none; }
  .hamburger { display: block; }
  .hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
  .hamburger.is-open span:nth-child(2) { opacity: 0; }
  .hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
  /* Allow header overflow so dropdown shows */
  .site-header { position: sticky; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(79,203,133,0.18), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(27,127,71,0.10), transparent 55%),
    var(--rnr-white);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rnr-white);
  border: 1px solid var(--rnr-mint-soft);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--rnr-ink-soft);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero__pill .stars { color: var(--rnr-gold); letter-spacing: 1px; }
.hero h1 .script { color: var(--rnr-forest); font-size: 1.1em; }
.hero__sub { font-size: 1.18rem; color: var(--rnr-grey-700); max-width: 540px; margin-bottom: 30px; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero__trust {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--rnr-grey-100);
}
.hero__trust-item { font-size: 0.9rem; color: var(--rnr-grey-500); }
.hero__trust-item strong { display: block; font-size: 1.6rem; color: var(--rnr-ink); font-weight: 800; line-height: 1; margin-bottom: 4px; }

.hero__visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, var(--rnr-forest) 0%, #1F8E5C 55%, var(--rnr-mint) 100%);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.25), transparent 40%),
    radial-gradient(circle at 20% 90%, rgba(0,0,0,0.18), transparent 50%);
}
.hero__visual-content {
  position: absolute;
  inset: 0;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  align-self: flex-start;
}
.hero__quote {
  font-family: 'Caveat', cursive;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.1;
  color: white;
  margin-bottom: 10px;
}
.hero__quote-attr { font-size: 0.92rem; opacity: 0.85; }

@media (max-width: 880px) {
  .hero { padding: 50px 0 60px; }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__visual { aspect-ratio: 4/3; }
  .hero__trust { gap: 24px; }
}

/* ---------- Trust bar ---------- */
.trustbar {
  background: var(--rnr-ink);
  color: white;
  padding: 28px 0;
}
.trustbar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
  text-align: center;
}
.trustbar__item strong { display: block; font-size: 1.8rem; font-weight: 800; color: var(--rnr-mint); }
.trustbar__item span { font-size: 0.86rem; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.08em; }
@media (max-width: 720px) {
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

/* ---------- Services grid ---------- */
.section__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section__head .eyebrow { margin-bottom: 14px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--rnr-white);
  border: 1px solid var(--rnr-grey-100);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rnr-mint);
  text-decoration: none;
}
.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--rnr-mint-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--rnr-forest);
}
.service-card h3 { margin-bottom: 8px; color: var(--rnr-ink); }
.service-card p { font-size: 0.95rem; margin-bottom: 16px; color: var(--rnr-grey-500); }
.service-card__cta { font-weight: 700; color: var(--rnr-forest); font-size: 0.92rem; display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- DSA / Approach grid ---------- */
.dsa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.dsa-card {
  background: var(--rnr-white);
  border: 1px solid var(--rnr-grey-100);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
}
.dsa-card .num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--rnr-forest);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin-bottom: 18px;
  font-size: 0.95rem;
}
.dsa-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.dsa-card p { font-size: 0.95rem; color: var(--rnr-grey-700); margin: 0; }
.dsa-image-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--rnr-mint-soft), var(--rnr-mint-tint));
  border-radius: var(--radius-md);
  margin-top: 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--rnr-forest);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.5;
}
@media (max-width: 880px) { .dsa-grid { grid-template-columns: 1fr; } }

/* ---------- Conditions grid ---------- */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.condition-pill {
  background: var(--rnr-white);
  border: 1px solid var(--rnr-grey-100);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--rnr-ink);
  font-weight: 600;
  font-size: 0.96rem;
  transition: all .15s ease;
}
.condition-pill:hover { border-color: var(--rnr-forest); transform: translateX(4px); text-decoration: none; }
.condition-pill .dot { width: 8px; height: 8px; background: var(--rnr-forest); border-radius: 50%; flex-shrink: 0; }
@media (max-width: 880px) { .conditions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .conditions-grid { grid-template-columns: 1fr; } }

/* ---------- Philosophy split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split__art {
  aspect-ratio: 1/1;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, var(--rnr-ink) 0%, #2A2F38 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 50px;
}
.split__art .quote-mark { position: absolute; top: 30px; left: 36px; font-size: 6rem; color: var(--rnr-mint); line-height: 1; font-family: Georgia, serif; opacity: 0.6; }
.split__art .quote-text { font-family: 'Caveat', cursive; font-size: 3rem; line-height: 1.1; color: white; text-align: center; }
.split__art .quote-attr { position: absolute; bottom: 36px; left: 36px; right: 36px; font-size: 0.9rem; opacity: 0.7; }
.split__values { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 18px; }
.split__values li { display: flex; gap: 16px; align-items: flex-start; }
.split__values .check {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--rnr-mint-soft);
  color: var(--rnr-forest);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
}
.split__values strong { color: var(--rnr-ink); }
.split__values p { margin: 4px 0 0; color: var(--rnr-grey-500); font-size: 0.96rem; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--rnr-white);
  border: 1px solid var(--rnr-grey-100);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  gap: 28px;
  align-items: center;
}
.team-card__photo {
  width: 130px; height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rnr-mint), var(--rnr-forest));
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 2.4rem; font-weight: 800;
  flex-shrink: 0;
  overflow: hidden;
}
img.team-card__photo { object-fit: cover; object-position: center top; background: var(--rnr-grey-100); }
.team-card h3 { margin-bottom: 4px; }
.team-card .role { color: var(--rnr-forest); font-weight: 600; font-size: 0.92rem; margin-bottom: 10px; }
.team-card p { font-size: 0.95rem; margin: 0; color: var(--rnr-grey-700); }
@media (max-width: 720px) {
  .team-grid { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; text-align: center; }
}

/* ---------- Visit / Map block ---------- */
.visit {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--rnr-white);
  box-shadow: var(--shadow-md);
}
.visit__info { padding: 48px; }
.visit__address {
  font-size: 1.1rem; font-weight: 600; color: var(--rnr-ink);
  margin: 20px 0; line-height: 1.5; font-style: normal;
}
.visit__hours { list-style: none; padding: 0; margin: 22px 0; border-top: 1px solid var(--rnr-grey-100); }
.visit__hours li {
  display: flex; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid var(--rnr-grey-100);
  font-size: 0.96rem;
}
.visit__hours .day { color: var(--rnr-grey-700); font-weight: 500; }
.visit__hours .time { color: var(--rnr-ink); font-weight: 600; }
.visit__hours .closed { color: #B91C1C; }
.visit__map { min-height: 460px; background: var(--rnr-grey-100); }
.visit__map iframe { width: 100%; height: 100%; border: 0; min-height: 460px; }
@media (max-width: 880px) {
  .visit { grid-template-columns: 1fr; }
  .visit__info { padding: 32px; }
  .visit__map { min-height: 320px; }
  .visit__map iframe { min-height: 320px; }
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: var(--rnr-white);
  border: 1px solid var(--rnr-grey-100);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.review-card .stars { color: var(--rnr-gold); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-card blockquote { margin: 0 0 18px; color: var(--rnr-ink-soft); font-size: 0.98rem; line-height: 1.6; }
.review-card .author { font-weight: 700; font-size: 0.92rem; color: var(--rnr-ink); }
.review-card .source { font-size: 0.82rem; color: var(--rnr-grey-500); }
@media (max-width: 880px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--rnr-grey-100);
  padding: 22px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--rnr-ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--rnr-forest);
  transition: transform .2s;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 16px 0 0; color: var(--rnr-grey-700); }

/* ---------- Final CTA ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--rnr-forest) 0%, var(--rnr-forest-dark) 60%, var(--rnr-ink) 100%);
  color: white;
  text-align: center;
  padding: 80px 24px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -50%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(79,203,133,0.3), transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: white; max-width: 720px; margin: 0 auto 16px; position: relative; }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 30px; position: relative; }
.cta-band .btn { position: relative; }

/* ---------- Footer ---------- */
.footer {
  background: var(--rnr-ink);
  color: rgba(255,255,255,0.78);
  padding: 70px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer__brand img { height: 56px; margin-bottom: 16px; } /* uses dark-bg variant so no filter needed */
.footer__brand p { color: rgba(255,255,255,0.65); font-size: 0.94rem; max-width: 320px; }
.footer h4 { color: white; font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer a { color: rgba(255,255,255,0.78); font-size: 0.94rem; }
.footer a:hover { color: var(--rnr-mint); text-decoration: none; }
.footer__bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 0.86rem; color: rgba(255,255,255,0.5);
}
.footer__social { display: flex; gap: 14px; }
.footer__social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center; color: white; }
.footer__social a:hover { background: var(--rnr-forest); }
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- Service page specific ---------- */
.page-hero {
  background:
    radial-gradient(900px 500px at 100% -10%, rgba(79,203,133,0.18), transparent 60%),
    var(--rnr-mint-tint);
  padding: 60px 0 70px;
}
.breadcrumb { font-size: 0.86rem; margin-bottom: 18px; color: var(--rnr-grey-500); }
.breadcrumb a { color: var(--rnr-grey-700); font-weight: 500; }
.breadcrumb a:hover { color: var(--rnr-forest); text-decoration: none; }
.breadcrumb span { color: var(--rnr-grey-300); margin: 0 8px; }

.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }
.article { font-size: 1.05rem; line-height: 1.75; }
.article h2 { font-size: 1.9rem; margin-top: 50px; margin-bottom: 16px; }
.article h2:first-child { margin-top: 0; }
.article h3 { margin-top: 32px; margin-bottom: 10px; }
.article p, .article li { color: var(--rnr-grey-700); }
.article ul, .article ol { padding-left: 22px; margin-bottom: 1.2em; }
.article li { margin-bottom: 8px; }
.article strong { color: var(--rnr-ink); }
.article blockquote {
  border-left: 4px solid var(--rnr-forest);
  padding: 6px 0 6px 22px;
  margin: 24px 0;
  font-style: italic;
  color: var(--rnr-ink-soft);
}

.sticky-cta {
  position: sticky;
  top: 100px;
  background: var(--rnr-white);
  border: 1px solid var(--rnr-grey-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.sticky-cta h4 { margin-bottom: 8px; }
.sticky-cta p { font-size: 0.94rem; color: var(--rnr-grey-500); margin-bottom: 18px; }
.sticky-cta .btn { width: 100%; justify-content: center; margin-bottom: 12px; }
.sticky-cta .phone-link { display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; color: var(--rnr-ink); font-size: 0.96rem; }
.sticky-cta .phone-link:hover { color: var(--rnr-forest); text-decoration: none; }
@media (max-width: 880px) {
  .article-layout { grid-template-columns: 1fr; }
  .sticky-cta { position: static; }
}

.checklist { list-style: none; padding: 0; }
.checklist li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--rnr-mint-soft);
  color: var(--rnr-forest);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 1;
}
