:root {
  --gold: #d9a441;
  --walnut: #4b2e14;
  --cream: #f5e9d3;
  --slate: #3a3f45;
  --red: #b33a2f;
  --cream-dark: #e8d9c0;
  --walnut-soft: rgba(75, 46, 20, 0.12);
  --gold-soft: rgba(217, 164, 65, 0.2);
  --border: rgba(58, 63, 69, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 20px 50px rgba(75, 46, 20, 0.12);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --max: 1140px;
  /* Single accent for scheduling / primary actions (replaces mixed blues) */
  --action-blue: #1a5f8a;
  --action-blue-hover: #14486b;
  /* Page surfaces: warmer cream (not flat gray) */
  --surface: #f4ebe0;
  --surface-hero: linear-gradient(180deg, #fff9f0 0%, #efe4d6 48%, var(--cream) 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--slate);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img,
video {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--walnut);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--red);
}

code {
  font-size: 0.9em;
  background: var(--walnut-soft);
  padding: 0.12em 0.35em;
  border-radius: 4px;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  min-width: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--walnut);
  z-index: 200;
  border-radius: 8px;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 6px 24px rgba(75, 46, 20, 0.04);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.brand:hover {
  color: inherit;
}

.brand-logo {
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.brand-stack {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  color: var(--walnut);
}

.brand-text {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--slate);
  opacity: 0.85;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bars {
  width: 1.25rem;
  height: 2px;
  background: var(--walnut);
  border-radius: 1px;
  box-shadow: 0 -6px 0 var(--walnut), 0 6px 0 var(--walnut);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.55rem 0.85rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--slate);
  text-decoration: none;
}

.nav a:hover {
  color: var(--red);
}

.nav a.nav-portal-link {
  color: var(--slate);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.nav a.nav-portal-link:hover {
  color: var(--walnut);
  border-bottom-color: rgba(75, 46, 20, 0.35);
}

.nav-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 9px 16px;
  background-color: var(--action-blue);
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  line-height: 1.2;
  touch-action: manipulation;
  box-shadow: 0 2px 8px rgba(26, 95, 138, 0.22);
}

.nav-book-btn:hover {
  background-color: var(--action-blue-hover);
  color: #fff !important;
}

.mobile-book-btn {
  display: none;
  margin-top: 10px;
  padding: 12px;
  text-align: center;
  background: var(--action-blue);
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  touch-action: manipulation;
}

.mobile-book-btn:hover {
  background-color: var(--action-blue-hover);
  color: #fff !important;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.8rem 1.4rem;
  background-color: var(--action-blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  line-height: 1.2;
  touch-action: manipulation;
  box-shadow: 0 4px 14px rgba(26, 95, 138, 0.28);
}

.hero-btn:hover {
  background-color: var(--action-blue-hover);
  color: #fff;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(250, 248, 244, 0.98);
    border-bottom: 1px solid var(--border);
    gap: 0.5rem;
    display: none;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a:not(.mobile-book-btn):not(.nav-book-btn) {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0.35rem 0;
  }

  .nav-book-btn {
    display: none !important;
  }

  .mobile-book-btn {
    display: block !important;
  }
}

.hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 5rem);
  background: var(--surface-hero);
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

@media (min-width: 880px) {
  .hero-grid {
    grid-template-columns: 1fr minmax(280px, 1fr);
    gap: 3rem;
  }
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
}

.hero h1 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--walnut);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.tagline {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--slate);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  color: var(--slate);
}

.hero-trust-star {
  letter-spacing: 0;
}

.hero-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--slate);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.05em;
  text-shadow: 0 1px 0 rgba(75, 46, 20, 0.15);
}

.rating-num {
  font-weight: 700;
  color: var(--walnut);
}

.rating-sep {
  opacity: 0.5;
}

.lead {
  margin: 0 0 1.5rem;
  color: var(--slate);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 38rem;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.35rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  touch-action: manipulation;
}

.btn:active {
  transform: scale(0.98);
}

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

.btn-primary:hover {
  background: #942f26;
  border-color: #942f26;
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--walnut);
  border-color: var(--walnut);
}

.btn-secondary:hover {
  background: var(--walnut);
  color: var(--cream);
}

.guided-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.88rem;
}

.guided-links a {
  font-weight: 600;
}

.text-link {
  font-weight: 700;
  display: inline-block;
  margin-top: 0.5rem;
}

.hero-visual {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid #fff;
  background: linear-gradient(135deg, var(--walnut) 0%, var(--slate) 100%);
  min-height: 220px;
  min-width: 0;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: min(70vh, 520px);
  object-fit: cover;
}

.section {
  padding: clamp(2.75rem, 5.5vw, 4.5rem) 0;
}

.section-tight {
  padding: 1.75rem 0;
}

.section-title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--walnut);
  letter-spacing: -0.02em;
}

.section-intro {
  margin: 0 0 1.75rem;
  max-width: 40rem;
  color: var(--slate);
}

.section-walnut {
  background: var(--walnut);
  color: var(--cream);
  border-block: 1px solid rgba(0, 0, 0, 0.08);
}

.section-title-on-dark {
  color: var(--cream);
}

.section-intro-on-dark {
  color: rgba(245, 233, 211, 0.88);
}

.section-intro-on-dark a {
  color: var(--gold);
}

.section-intro-on-dark a:hover {
  color: #f0cf7a;
}

.section-walnut-light {
  background: linear-gradient(180deg, #ede1d0 0%, var(--cream-dark) 100%);
  border-top: 1px solid var(--border);
}

.section-cream-edge {
  border-block: 1px solid var(--border);
}

.hcp-booking-section .wrap {
  display: flex;
  justify-content: center;
}

.hcp-booking-box {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 1.875rem);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  text-align: center;
}

.hcp-booking-box h2 {
  margin: 0 0 0.625rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--walnut);
}

.hcp-booking-box > p:not(.hcp-booking-actions) {
  margin: 0 auto 1.25rem;
  max-width: 36rem;
  font-size: 1rem;
  color: var(--slate);
}

.hcp-booking-actions {
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.hcp-booking-open-tab {
  font-weight: 700;
}

.hcp-booking-actions-hint {
  display: block;
  max-width: 28rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--slate);
  opacity: 0.92;
}

.hcp-booking-frame-wrap {
  min-width: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(245, 233, 211, 0.35);
}

.hcp-booking-iframe {
  display: block;
  width: 100%;
  /* Scheduler is multi-step; use most of the viewport up to a generous max */
  height: clamp(680px, 88vh, 1650px);
  border: 0;
  border-radius: 8px;
  background: #fff;
}

@supports (height: 1svh) {
  .hcp-booking-iframe {
    height: clamp(680px, 88svh, 1650px);
  }
}

@media (max-width: 640px) {
  .hcp-booking-iframe {
    height: clamp(600px, 90vh, 1400px);
  }

  @supports (height: 1dvh) {
    .hcp-booking-iframe {
      height: clamp(600px, 90dvh, 1400px);
    }
  }
}

.badge-strip {
  background: var(--walnut);
  color: var(--cream);
}

.badge-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scrollbar-width: thin;
}

.badge-item {
  position: relative;
  flex: 0 0 auto;
}

.badge-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: rgba(245, 233, 211, 0.12);
  border: 1px solid rgba(217, 164, 65, 0.35);
  color: var(--cream);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: default;
  transition: background 0.2s, border-color 0.2s;
}

.badge-item:hover .badge-chip,
.badge-item:focus-within .badge-chip {
  background: rgba(217, 164, 65, 0.25);
  border-color: var(--gold);
}

.badge-pop {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(6px);
  width: min(280px, 70vw);
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--walnut);
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 500;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 30;
  pointer-events: none;
}

.badge-item:hover .badge-pop,
.badge-item:focus-within .badge-pop {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 700px) {
  .badge-pop {
    bottom: auto;
    top: calc(100% + 8px);
    transform: translateX(-50%) translateY(-4px);
  }

  .badge-item:hover .badge-pop,
  .badge-item:focus-within .badge-pop {
    transform: translateX(-50%) translateY(0);
  }
}

.about .section-intro {
  margin-bottom: 1rem;
}

.about-subhead {
  margin: 1.5rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--walnut);
}

.about-subhead:first-of-type {
  margin-top: 1.25rem;
}

.about-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 840px) {
  .about-grid {
    grid-template-columns: 1.4fr 0.85fr;
    gap: 3rem;
    align-items: start;
  }
}

.about-highlights {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-highlights li {
  padding-left: 1.35rem;
  position: relative;
  color: var(--slate);
}

.about-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 2px;
  background: var(--gold);
}

.about-trust {
  margin: 1.25rem 0 0;
  font-weight: 600;
  color: var(--walnut);
}

.about-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow);
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  opacity: 0.85;
  margin-bottom: 0.25rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--walnut);
}

.explorer {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

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

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

.explorer-card {
  background: rgba(245, 233, 211, 0.08);
  border: 1px solid rgba(217, 164, 65, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-width: 0;
}

.explorer-card h3 {
  margin: 0;
  font-size: 1rem;
}

@media (max-width: 639px) {
  .explorer {
    gap: 0.85rem;
  }
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  min-height: 44px;
  padding: 0.85rem 2.5rem 0.85rem 1rem;
  font: inherit;
  font-weight: 700;
  color: var(--cream);
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  touch-action: manipulation;
}

.accordion-trigger::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.2s;
}

.accordion-trigger[aria-expanded="true"]::after {
  transform: translateY(-20%) rotate(225deg);
}

.accordion-trigger:hover,
.accordion-trigger:focus-visible {
  background: rgba(217, 164, 65, 0.12);
  outline: none;
}

.accordion-panel {
  padding: 0 1rem 1rem;
  font-size: 0.92rem;
  color: rgba(245, 233, 211, 0.92);
}

.accordion-panel p {
  margin: 0 0 0.65rem;
}

.accordion-panel .examples {
  margin: 0;
  font-size: 0.86rem;
  opacity: 0.95;
}

.pricing-inner {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 820px) {
  .pricing-inner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
  }
}

.pricing-list {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--slate);
}

.pricing-list li {
  margin-bottom: 0.65rem;
}

.pdf-note {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  color: var(--slate);
  opacity: 0.9;
}

.pricing-card {
  background: var(--walnut);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  border: 2px solid rgba(217, 164, 65, 0.35);
}

.pricing-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.pricing-card-big {
  margin: 0.5rem 0;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.pricing-card-big .suffix {
  font-size: 1.25rem;
  font-weight: 600;
  opacity: 0.85;
}

.pricing-card-sub {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.88;
}

.pricing-cta-wrap {
  margin-top: 1.25rem;
}

.gallery .eyebrow {
  margin-bottom: 0.35rem;
}

.gallery-subtitle {
  margin: 2.5rem 0 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--walnut);
}

.gallery .gallery-subtitle:first-of-type {
  margin-top: 1.25rem;
}

.gallery-blurb {
  margin: -0.35rem 0 1.25rem;
  max-width: 42rem;
  color: var(--slate);
  line-height: 1.6;
}

.gallery-actions {
  margin: 1.75rem 0 0;
}

.ba-grid {
  display: grid;
  gap: 1.5rem;
}

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

.ba-slider {
  margin: 0;
}

.ba-slider__inner {
  position: relative;
  --split: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 8 / 5;
  background: var(--slate);
  border: 2px solid #fff;
  box-shadow: var(--shadow);
}

.ba-slider__before {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}

.ba-slider__after-wrap {
  position: absolute;
  inset: 0;
  clip-path: inset(0 48% 0 0);
  will-change: clip-path;
}

.ba-slider__after {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-slider__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 2;
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 4px;
  margin-left: -2px;
  background: var(--gold);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85);
  pointer-events: none;
  z-index: 1;
}

.ba-slider figcaption {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: var(--slate);
}

.photo-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}

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

.photo-grid li {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: var(--shadow);
  background: linear-gradient(145deg, var(--cream-dark), var(--walnut-soft));
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
}

.gallery-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .gallery-cards--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .gallery-cards--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gallery-card {
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: zoom-in;
  border-bottom: 1px solid var(--border);
}

.gallery-card figcaption {
  padding: 1rem 1.1rem 1.15rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.gallery-card-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--walnut);
  line-height: 1.25;
}

.gallery-card-caption {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--slate);
  line-height: 1.45;
}

.gallery-card-desc {
  margin: 0;
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.55;
  opacity: 0.92;
}

.gallery-card--compact .gallery-card-desc {
  display: none;
}

.gallery-card--compact figcaption {
  padding: 0.85rem 1rem 1rem;
}

.photo-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: var(--slate);
}

.review-placeholder {
  margin: 0 0 1rem;
  max-width: 42rem;
  color: var(--slate);
  line-height: 1.65;
}

.review-grid {
  display: grid;
  gap: 1rem;
}

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

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

.reviews-subtitle {
  margin: 0.5rem 0 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--slate);
}

.reviews-subtitle .stars {
  font-size: 1rem;
}

.featured-reviews-title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--walnut);
}

.review-card {
  margin: 0;
  padding: 1.25rem 1.35rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.review-card-header {
  margin-bottom: 0.75rem;
}

.review-card-meta {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  color: var(--walnut);
}

.review-card-meta strong {
  font-weight: 700;
}

.review-card-date {
  font-weight: 500;
  color: var(--slate);
}

.review-card-date::before {
  content: " \2014  ";
  opacity: 0.65;
}

.review-stars {
  margin: 0;
  color: var(--gold);
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  line-height: 1;
}

.review-quote {
  margin: 0 0 0.85rem;
  padding: 0;
  border: none;
  flex: 1;
}

.review-quote p {
  margin: 0 0 0.65rem;
  font-style: italic;
  color: var(--slate);
  line-height: 1.6;
}

.review-quote p:last-child {
  margin-bottom: 0;
}

.review-category {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate);
  opacity: 0.9;
}

.review-note {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--slate);
}

.reviews-intro {
  margin-bottom: 1.25rem;
}

.reviews-widget {
  margin: 1.25rem 0 0;
  min-height: 12rem;
}

.reviews-widget iframe {
  display: block;
  max-width: 100%;
  border: 0;
}

.reviews-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.75rem 0 0;
}

.review-grid--preview {
  grid-template-columns: 1fr;
}

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

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

.guided-inline {
  margin: 0.5rem 0 0;
}

.map-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .map-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

.area-list {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--slate);
}

.area-regions {
  display: grid;
  gap: 1.5rem;
  margin: 0 0 1.5rem;
}

@media (min-width: 520px) {
  .area-regions {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.area-region-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--walnut);
}

.area-cities {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
  color: var(--slate);
}

.area-cities li {
  padding-left: 1rem;
  position: relative;
}

.area-cities li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--gold);
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: var(--shadow);
  background: var(--slate);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: min(360px, 50vh);
  border: 0;
}

.map-caption {
  margin: 0;
  padding: 0.6rem 0.85rem;
  font-size: 0.78rem;
  color: var(--cream);
  background: var(--slate);
}

.contact-callout {
  margin-top: 1.5rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-callout-label {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--walnut);
}

.contact-callout-phone {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.contact-callout-phone a {
  color: var(--red);
  text-decoration: none;
}

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

.contact-callout-note {
  margin: 0;
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.55;
}

.contact-inner {
  display: grid;
  gap: 2rem;
  min-width: 0;
}

@media (min-width: 860px) {
  .contact-inner {
    grid-template-columns: 1fr 1.05fr;
    align-items: start;
  }
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  margin-bottom: 1rem;
  color: var(--slate);
}

.contact-list strong {
  display: block;
  color: var(--walnut);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.hint {
  font-size: 0.8rem;
  opacity: 0.75;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: var(--shadow);
  min-width: 0;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--walnut);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  font: inherit;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0.75rem 0.85rem;
  min-height: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--slate);
}

.contact-form textarea {
  min-height: 7.5rem;
  resize: vertical;
  line-height: 1.5;
}

.contact-form select {
  cursor: pointer;
  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 fill='%234b2e14' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.25rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.ui-form-hint {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate);
  opacity: 0.88;
}

.ui-form-field--upload input[type="file"] {
  padding: 0.4rem 0;
  border: none;
  background: transparent;
}

.contact-form .btn-estimate {
  width: 100%;
  margin-top: 0.35rem;
  background: #d4a857;
  color: #fff;
  border-color: #d4a857;
}

.btn-estimate:hover {
  background: #c4984a;
  border-color: #c4984a;
  color: #fff;
}

.form-trust {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  color: var(--walnut);
}

.form-area-note {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  text-align: center;
  color: var(--slate);
  opacity: 0.9;
}

.form-success {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.form-success-message {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--walnut);
}

.form-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--slate);
}

.site-footer {
  background: var(--walnut);
  color: var(--cream);
  padding: 2.5rem 0;
  border-top: 4px solid var(--gold);
  overflow-wrap: break-word;
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
    align-items: start;
  }

  .footer-details {
    justify-self: end;
    text-align: right;
  }

  .footer-details dt {
    text-align: right;
  }
}

.footer-trust {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(245, 233, 211, 0.15);
}

.footer-trust #siteseal {
  display: inline-block;
  line-height: 0;
}

@media (min-width: 720px) {
  .footer-trust {
    justify-content: center;
  }
}

.footer-grid .footer-copy {
  grid-column: 1 / -1;
  padding-top: 0.75rem;
  margin: 0;
  border-top: none;
  font-size: 0.85rem;
  opacity: 0.85;
}

.footer-brand-block {
  max-width: 22rem;
}

.footer-tagline {
  margin: 0.4rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.95;
}

.footer-serving {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  opacity: 0.88;
}

.footer-book-cta {
  margin: 1rem 0 0;
}

.footer-book-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  background-color: var(--action-blue);
  color: #fff !important;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.2s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.footer-book-cta a:hover {
  background-color: var(--action-blue-hover);
  color: #fff !important;
}

.footer-customer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  align-items: center;
  margin: 0.75rem 0 0;
}

.portal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  background-color: transparent;
  color: var(--cream) !important;
  border: 2px solid rgba(245, 233, 211, 0.45);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  touch-action: manipulation;
}

.portal-btn:hover {
  background-color: rgba(245, 233, 211, 0.1);
  border-color: rgba(245, 233, 211, 0.75);
  color: #fff !important;
}

.footer-pay-btn {
  display: inline-block;
  background-color: rgba(45, 143, 71, 0.92);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-pay-btn:hover {
  background-color: #248a3d;
  color: #fff !important;
}

.footer-details {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-details-row {
  margin: 0;
}

.footer-details dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  opacity: 0.95;
  margin-bottom: 0.25rem;
}

.footer-details dd {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.footer-details a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.footer-details a:hover {
  color: #f0cf7a;
  text-decoration: underline;
}

.footer-brand {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
}

.footer-address {
  margin: 0;
  font-size: 0.92rem;
  opacity: 0.9;
  line-height: 1.5;
}

.footer-col p {
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
}

.footer-col a {
  color: var(--gold);
}

.footer-col a:hover {
  color: #f0cf7a;
}

.social a {
  font-weight: 600;
}

.nav a[aria-current="page"] {
  color: var(--walnut);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav-book-btn[aria-current="page"] {
  color: #fff !important;
  text-decoration: none;
}

.page-masthead {
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
  border-bottom: 1px solid var(--border);
}

.page-masthead .section-title {
  margin-bottom: 0.5rem;
}

.page-masthead .section-intro:last-child {
  margin-bottom: 0;
}

.text-link-wrap {
  margin-top: 0.75rem;
}

.pricing-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.cta-band {
  background: var(--walnut);
  color: var(--cream);
  border-block: 1px solid rgba(0, 0, 0, 0.08);
}

.cta-band .section-title {
  color: var(--cream);
}

.cta-band-intro {
  color: rgba(245, 233, 211, 0.92);
  margin-bottom: 0;
}

.cta-band-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .cta-band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .cta-band-inner > div:first-child {
    flex: 1;
    max-width: 36rem;
  }
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  flex-shrink: 0;
}

.cta-band .btn-secondary {
  color: var(--cream);
  border-color: rgba(245, 233, 211, 0.65);
}

.cta-band .btn-secondary:hover {
  background: rgba(245, 233, 211, 0.12);
  color: var(--cream);
  border-color: var(--gold);
}

.footer-sitemap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(245, 233, 211, 0.15);
}

.footer-sitemap a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}

.footer-sitemap a:hover {
  color: #f0cf7a;
  text-decoration: underline;
}

@media (max-width: 719px) {
  .site-footer {
    padding: 2.35rem 0 2.75rem;
  }

  .footer-brand {
    font-size: 1.22rem;
    line-height: 1.25;
  }

  .footer-tagline,
  .footer-serving {
    font-size: 1rem;
    line-height: 1.5;
  }

  .footer-details dd {
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .footer-copy {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .contact-form {
    padding: 1.15rem;
  }

  .wrap {
    width: min(100% - 1.5rem, var(--max));
  }
}

.breakdown-grid {
  display: grid;
  gap: 1rem;
}

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

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

.breakdown-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow);
}

.breakdown-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.6;
}

.breakdown-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--walnut);
}

.pdf-embed-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--slate);
  box-shadow: var(--shadow);
}

.pdf-embed {
  display: block;
  width: 100%;
  min-height: min(70vh, 640px);
  border: 0;
  background: #fff;
}

.pdf-fallback {
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.review-full-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  counter-reset: review;
}

.review-full-list li {
  margin: 0;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--slate);
}

.review-full-meta {
  display: block;
  font-weight: 700;
  color: var(--walnut);
  margin-bottom: 0.35rem;
}

.contact-form-title {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--walnut);
}

.contact-aside .section-title {
  margin: 1.5rem 0 0.65rem;
  font-size: 1.35rem;
}

.contact-aside > .section-title:first-of-type {
  margin-top: 0;
}

.contact-callout-plain {
  margin-top: 0;
}

.contact-hours-line {
  margin: 1rem 0 0;
  color: var(--slate);
}

.contact-address-block {
  margin: 0.35rem 0 0;
  color: var(--slate);
  line-height: 1.55;
}

.terms-wrap {
  max-width: 46rem;
}

.terms-body .about-subhead:first-of-type {
  margin-top: 0;
}

.terms-body p {
  margin: 0 0 1rem;
  color: var(--slate);
  line-height: 1.65;
}

.terms-body p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   UI component library (plain HTML + CSS). Maps your design names to
   selectors used in markup. Header/Footer stay duplicated in each HTML
   file until you add includes (Eleventy, PHP, etc.) or a JS framework.

   Global
   - Header          -> .site-header, .brand, .nav, .nav-cta
   - Footer          -> .site-footer, .footer-grid, .footer-details
   - Button primary  -> .btn.btn-primary
   - Button secondary-> .btn.btn-secondary
   - SectionWrapper  -> .section (+ .section-tight / .section-walnut & )
   - Modal           -> <dialog class="jem-modal"> (see main.js)

   Hero
   - HeroContainer   -> .hero > .wrap.hero-grid
   - HeroTextBlock   -> .hero-copy
   - HeroImage       -> .hero-visual
   - HeroTrustBadge  -> .hero-trust

   Service
   - ServiceBadgeStrip -> .badge-strip > .badge-row
   - ServiceBadge    -> .badge-item > .badge-chip + .badge-pop
   - ServiceExplorerGrid -> .explorer
   - ServiceExplorerItem -> .explorer-card

   Pricing / Gallery / Reviews / Area / Contact
   - PricingSummary  -> .pricing-inner left column / .page-masthead on /pricing
   - PricingTable    -> tables in /pricing/#price-table (class ui-table)
   - GalleryGrid     -> .photo-grid
   - GalleryItem     -> .photo-grid li
   - BeforeAfterSlider -> .ba-slider (+ JS in main.js)
   - ReviewCard      -> .review-card
   - ReviewGrid      -> .review-grid
   - CountyList      -> .area-regions / .area-cities
   - MapEmbed        -> .map-embed
   - ContactForm     -> .contact-form
   - FormField       -> .contact-form label (optional .ui-form-field)
   - FormUpload      -> .file-label
   - ContactInfoBlock-> .contact-callout, .contact-aside
   -------------------------------------------------------------------------- */

.ui-grid {
  display: grid;
  gap: 1rem;
}

.ui-grid--2 {
  grid-template-columns: 1fr;
}

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

.ui-grid--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .ui-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ui-grid--4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 900px) {
  .ui-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.ui-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--walnut);
}

.contact-form label.ui-form-field {
  display: flex;
}

.ui-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 0.25rem;
}

.ui-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ui-table th,
.ui-table td {
  padding: 0.65rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.ui-table th {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--walnut);
  background: var(--cream-dark);
}

.ui-table tr:last-child td {
  border-bottom: 0;
}

.ui-table td.num,
.ui-table th.num {
  text-align: right;
  white-space: nowrap;
}

.pricing-category {
  margin: 0 0 2.25rem;
}

.pricing-category:last-of-type {
  margin-bottom: 0;
}

.pricing-category-title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--walnut);
  letter-spacing: -0.02em;
}

.pricing-table-note {
  margin: 0 0 1.5rem;
  max-width: 46rem;
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.55;
}

.pricing-minimums-attrib {
  margin: 0.75rem 0 0;
  max-width: 40rem;
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.55;
}

.jem-modal {
  width: min(96vw, 1100px);
  max-height: 92vh;
  padding: 0;
  border: none;
  border-radius: var(--radius-lg);
  background: var(--slate);
  color: var(--cream);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.jem-modal::backdrop {
  background: rgba(30, 28, 26, 0.55);
  backdrop-filter: blur(4px);
}

.jem-modal__shell {
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 92vh;
}

.jem-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
}

.jem-modal__close:hover {
  background: rgba(0, 0, 0, 0.55);
}

.jem-modal__body {
  padding: 0;
  overflow: auto;
  max-height: 92vh;
}

.jem-modal__body img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 88vh;
  object-fit: contain;
  background: #111;
}

.jem-modal__body iframe {
  display: block;
  width: 100%;
  min-height: min(80vh, 720px);
  border: 0;
  background: #fff;
}
