/* ============================================================
   ECP EAR WAX REMOVAL, Stylesheet
   Built for ECP Ear Wax Removal | Ryan Does Marketing
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --ink: #0F2A33;
  --ink-light: #2A434B;
  --muted: #5A6E76;
  --muted-light: #8A9AA1;
  --brand: #1B4D5A;
  --brand-deep: #133942;
  --brand-light: #3D9BB0;
  --brand-tint: #E7F1F3;
  --accent: #E07A5F;
  --accent-soft: #F7E3DC;
  --bronze: #C97650;
  --paper: #FFFFFF;
  --cream: #FAF7F2;
  --soft: #F1F5F6;
  --soft-deep: #E4ECEE;
  --border: #DDE5E8;
  --border-strong: #C2CFD2;
  --shadow-sm: 0 1px 2px rgba(15, 42, 51, 0.04), 0 1px 3px rgba(15, 42, 51, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 42, 51, 0.06), 0 8px 24px rgba(15, 42, 51, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 42, 51, 0.10), 0 24px 48px rgba(15, 42, 51, 0.08);
  --radius: 14px;
  --radius-lg: 24px;
  --radius-sm: 8px;
  --container: 1180px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-deep); }

h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 .4em;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; font-weight: 600; }
h4 { font-size: .95rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--brand); }

p { margin: 0 0 1em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brand);
  color: white;
  padding: 10px 18px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; color: white; }

/* ---------- TYPOGRAPHIC UTILITIES ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--brand);
  margin: 0 0 .8em;
}
.eyebrow .dot {
  width: 7px; height: 7px;
  background: var(--brand-light);
  border-radius: 50%;
  display: inline-block;
}
.eyebrow-light { color: rgba(255,255,255,.85); }
.eyebrow-light .dot { background: var(--accent); }

.lede {
  font-size: 1.18rem;
  color: var(--ink-light);
  line-height: 1.55;
  max-width: 62ch;
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand img {
  height: 54px;
  width: auto;
}

.primary-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.primary-nav a {
  color: var(--ink-light);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
  padding: 6px 0;
}
.primary-nav a:hover { color: var(--brand); }
.primary-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--brand-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.primary-nav a:hover::after { transform: scaleX(1); }

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--brand);
  color: white !important;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.cta-phone:hover { background: var(--brand-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.cta-phone svg { flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: white;
  border-top: 1px solid var(--border);
  gap: 4px;
}
.mobile-menu a {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  font-weight: 500;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mobile-book {
  margin-top: 12px;
  background: var(--brand);
  color: white;
  padding: 14px 20px;
  text-align: center;
  border-radius: var(--radius);
  border-bottom: none;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: all .2s ease;
  text-align: center;
  cursor: pointer;
  line-height: 1;
}
.btn-primary {
  background: var(--brand);
  color: white !important;
}
.btn-primary:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: white;
  color: var(--brand) !important;
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--brand);
  transform: translateY(-1px);
}
.btn-ghost-light {
  background: rgba(255,255,255,0.08);
  color: white !important;
  border: 2px solid rgba(255,255,255,0.35);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary {
  background: var(--accent);
  color: white !important;
}
.btn-secondary:hover {
  background: #C9684D;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-block { width: 100%; }
.btn-large { padding: 18px 32px; font-size: 1.05rem; }

/* ---------- HERO ---------- */
.hero {
  padding: 64px 0 96px;
  background:
    radial-gradient(circle at 95% 5%, rgba(61, 155, 176, .12), transparent 50%),
    radial-gradient(circle at 5% 95%, rgba(224, 122, 95, .08), transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-copy h1 {
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--brand-light) 0%, var(--brand) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy .lede {
  font-size: 1.22rem;
  margin: 24px 0 32px;
  max-width: 56ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.trust-strip {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
}
.trust-strip li {
  font-size: .92rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
}
.trust-strip strong {
  color: var(--ink);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

/* HERO CARD */
.hero-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.badge {
  display: inline-block;
  background: var(--brand-tint);
  color: var(--brand);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 6px 12px;
  border-radius: 99px;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--muted);
  font-weight: 500;
}
.status-dot {
  width: 9px;
  height: 9px;
  background: #10B981;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, .2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16, 185, 129, .2); }
  50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, .1); }
}

.hero-card-title {
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.hero-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--ink-light);
  font-size: .98rem;
}
.hero-card-list svg {
  color: var(--brand-light);
  margin-top: 2px;
  flex-shrink: 0;
}

.hero-card-foot {
  font-size: .85rem;
  color: var(--muted);
  margin: 16px 0 0;
  text-align: center;
  line-height: 1.5;
}

/* ---------- CREDENTIALS SECTION ---------- */
.creds-section {
  background: var(--paper);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.creds-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 4px;
}
.cred-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--brand-tint);
  color: var(--brand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cred-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}
.cred-text strong {
  color: var(--ink);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -0.01em;
}
.cred-text span {
  color: var(--muted);
  font-size: .8rem;
  margin-top: 2px;
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 96px 0;
}
.section-soft {
  background: var(--soft);
}

.section-head {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 760px;
}
.section-head .eyebrow { justify-content: center; }
.section-head .lede { margin: 16px auto 0; }
.section-head-narrow { max-width: 680px; }

/* ---------- PRICING ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.price-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-light);
}
.price-card h3 {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.price-card .price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
  margin: 0 0 14px;
  line-height: 1;
}
.price-card p {
  color: var(--ink-light);
  font-size: .98rem;
  line-height: 1.55;
  margin-bottom: 24px;
  min-height: 80px;
}
.price-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--brand);
  font-size: .95rem;
}
.price-card .card-link:hover { color: var(--brand-deep); gap: 10px; }

.price-card.featured {
  background: linear-gradient(180deg, var(--brand-tint) 0%, white 80%);
  border-color: var(--brand-light);
  box-shadow: var(--shadow-md);
}
.price-card .featured-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: white;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 6px 12px;
  border-radius: 99px;
  white-space: nowrap;
}

.price-note {
  background: var(--cream);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  padding: 18px 24px;
  text-align: center;
  color: var(--ink-light);
  font-size: .98rem;
}

/* ---------- WHY GRID ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.why-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
}
.why-icon {
  width: 56px;
  height: 56px;
  background: var(--brand-tint);
  color: var(--brand);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.why-card p {
  color: var(--ink-light);
  margin: 0;
  font-size: .98rem;
  line-height: 1.6;
}

/* ---------- GALLERY ---------- */
.gallery-section { background: var(--cream); }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-md);
  transition: transform .3s ease;
}
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.gallery-item figcaption {
  padding: 14px 18px 18px;
  background: white;
  color: var(--ink-light);
  font-size: .92rem;
  line-height: 1.5;
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: flex-start;
}
.about-creds {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.about-creds li {
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--border);
  position: relative;
  color: var(--ink-light);
}
.about-creds li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-light);
  font-weight: 700;
}

.about-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.about-card h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.about-steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
}
.about-steps li {
  counter-increment: step;
  position: relative;
  padding: 16px 0 16px 52px;
  border-bottom: 1px solid var(--border);
  color: var(--ink-light);
  font-size: .98rem;
}
.about-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 14px;
  width: 36px;
  height: 36px;
  background: var(--brand);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
}
.about-steps li:last-child { border-bottom: none; }
.about-steps strong { color: var(--ink); }

/* ---------- AFTER HOURS ---------- */
.after-hours {
  background: linear-gradient(135deg, var(--ink) 0%, var(--brand-deep) 100%);
  color: white;
  padding: 80px 0;
}
.after-hours-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.after-hours h2 { color: white; }
.after-hours p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 52ch;
  margin-bottom: 28px;
}
.after-hours-stat {
  text-align: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.stat-big {
  display: block;
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  color: rgba(255,255,255,.7);
  font-size: .92rem;
}

/* ---------- AREAS ---------- */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.area-chip {
  display: inline-block;
  padding: 12px 22px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 99px;
  color: var(--ink-light);
  font-weight: 500;
  font-size: .95rem;
  transition: all .2s ease;
}
.area-chip:hover {
  background: var(--brand-tint);
  border-color: var(--brand-light);
  color: var(--brand);
  transform: translateY(-2px);
}

/* ---------- REVIEWS ---------- */
.review-featured {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  border: 1px solid var(--border);
  max-width: 880px;
  margin: 0 auto 32px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.review-featured::before {
  content: """;
  position: absolute;
  top: 12px;
  left: 32px;
  font-size: 6rem;
  color: var(--brand-tint);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.review-featured .stars {
  font-size: 1.3rem;
  margin-bottom: 16px;
  position: relative;
}
.review-featured blockquote {
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 20px;
  font-style: italic;
  font-weight: 400;
  position: relative;
}
.review-featured .review-author {
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
}
.review-source {
  font-weight: 400;
  color: var(--muted);
  font-size: .88rem;
  margin-left: 6px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.review {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.review p {
  font-size: .92rem;
  color: var(--ink-light);
  line-height: 1.55;
  margin: 0 0 14px;
  flex: 1;
  font-style: italic;
}
.stars {
  color: #F5C518;
  font-size: 1.05rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.review-author {
  font-weight: 600;
  color: var(--ink);
  font-size: .88rem;
}
.reviews-foot {
  text-align: center;
  margin-top: 32px;
}
.reviews-foot a {
  font-weight: 600;
  color: var(--brand);
}
.reviews-foot a:hover { color: var(--brand-deep); }

/* ---------- DISCOUNTS ---------- */
.discounts {
  padding: 0 0 96px;
}
.discount-card {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.discount-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(224, 122, 95, .25), transparent 60%);
  border-radius: 50%;
}
.discount-card::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 320px;
  height: 460px;
  background: url('/images/afc-covenant-watermark.png') no-repeat center;
  background-size: contain;
  opacity: 0.04;
  pointer-events: none;
  transform: rotate(-8deg);
}
.discount-copy { position: relative; }
.discount-copy h2 { color: white; }
.discount-copy p {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  max-width: 50ch;
}
.discount-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.discount-list li {
  padding: 18px 28px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
}
.discount-list strong {
  display: block;
  color: var(--accent);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.discount-foot {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 0;
}

.discount-badges {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  position: relative;
}
.discount-badges img {
  background: white;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  width: 100%;
  height: auto;
  max-width: 400px;
  object-fit: contain;
}
.discount-badges img[src*="bronze-banner"] {
  padding: 0;
  overflow: hidden;
}

/* ---------- FAQS ---------- */
.faqs {
  max-width: 820px;
  margin: 0 auto;
}
.faqs details {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faqs details[open] {
  border-color: var(--brand-light);
  box-shadow: var(--shadow-sm);
}
.faqs summary {
  padding: 20px 28px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  position: relative;
  list-style: none;
  padding-right: 60px;
  color: var(--ink);
}
.faqs summary::-webkit-details-marker { display: none; }
.faqs summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--brand-light);
  font-weight: 300;
  transition: transform .25s ease;
  line-height: 1;
}
.faqs details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faqs details p {
  padding: 0 28px 22px;
  color: var(--ink-light);
  margin: 0;
  line-height: 1.65;
}

/* ---------- BOOKING CTA ---------- */
.section-cta {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--ink) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(61, 155, 176, .15), transparent 60%);
  border-radius: 50%;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.booking-copy h2 { color: white; }
.booking-copy p {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  margin: 0;
}
.booking-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.booking-hours {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  text-align: center;
  margin-top: 8px;
  margin-bottom: 0;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr auto;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand img {
  width: 132px;
  height: auto;
  max-width: 100%;
  margin-bottom: 16px;
}
.footer-brand p {
  color: rgba(255,255,255,.55);
  font-size: .92rem;
  max-width: 280px;
  margin: 0;
}
.footer-col h4 {
  color: white;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col p {
  margin: 0 0 8px;
  font-size: .92rem;
  line-height: 1.55;
}
.footer-col a { color: rgba(255,255,255,.85); }
.footer-col a:hover { color: var(--brand-light); }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  transition: all .2s ease;
}
.footer-social a:hover {
  background: var(--brand-light);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom-inner p { margin: 0; }
.footer-bottom-inner a { color: rgba(255,255,255,.7); }
.footer-bottom-inner a:hover { color: var(--brand-light); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .creds-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .after-hours-inner { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; text-align: center; }
  .booking-actions { align-items: center; }
  .discount-card { grid-template-columns: 1fr; padding: 40px; gap: 32px; }
  .discount-badges { flex-direction: row; flex-wrap: wrap; }
  .discount-badges img { max-width: 280px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:last-child { grid-column: span 2; max-width: 600px; margin: 0 auto; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }

  .primary-nav, .cta-phone { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .mobile-menu.open { display: flex; }

  .header-inner { min-height: 68px; padding: 8px 18px; gap: 12px; }
  .brand img { height: 40px; }

  .hero { padding: 32px 0 56px; }
  .hero-copy .lede { font-size: 1.04rem; }
  .hero-card { padding: 22px; }
  .hero-card-title { font-size: 1.2rem; }
  .hero-card-foot { font-size: .8rem; }
  .trust-strip { gap: 14px 18px; }
  .trust-strip li { font-size: .82rem; }
  .badge { font-size: .7rem; padding: 5px 10px; }
  .status { font-size: .8rem; }

  .creds-section { padding: 28px 0; }
  .creds-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .cred-item { gap: 10px; padding: 4px 2px; }
  .cred-icon { width: 36px; height: 36px; }
  .cred-icon svg { width: 18px; height: 18px; }
  .cred-text strong { font-size: .82rem; }
  .cred-text span { font-size: .72rem; }

  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .price-card p { min-height: auto; }

  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card { padding: 24px; }

  .gallery { grid-template-columns: 1fr; }
  .gallery-item:last-child { grid-column: span 1; }

  .review-featured { padding: 28px 24px; }
  .review-featured::before { font-size: 4rem; left: 18px; top: 8px; }
  .review-featured blockquote { font-size: 1.1rem; }
  .reviews-grid { grid-template-columns: 1fr; }

  .stat-big { font-size: 3.5rem; }
  .discount-card { padding: 32px 24px; }
  .discount-list { gap: 12px; flex-direction: column; }
  .discount-badges { flex-direction: column; gap: 12px; }
  .discount-badges img { max-width: 100%; }
  .discount-card::after { width: 220px; height: 320px; bottom: -60px; left: -60px; }

  .faqs summary { padding: 18px 22px; font-size: 1rem; padding-right: 50px; }
  .faqs details p { padding: 0 22px 18px; }

  .section-cta { padding: 56px 0; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-brand img { width: 104px; margin-bottom: 14px; }
  .footer-social { display: block; margin-bottom: 16px; }
  .footer-social h4 { margin: 0 0 12px; }
  .footer-social a { width: 36px; height: 36px; }
  .footer-social svg { width: 20px; height: 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
}

/* ---------- PRINT ---------- */
@media print {
  .nav-toggle, .mobile-menu, .cta-phone, .primary-nav, .hero-ctas, .booking-actions, .section-cta, .footer-bottom { display: none; }
  body { color: black; }
  .section { padding: 24px 0; page-break-inside: avoid; }
}
