
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --white: #FFFFFF;
  --cream: #FAF8F5;
  --warm-beige: #F3EDE4;
  --beige: #E8DFD1;
  --light-gold: #D4B978;
  --gold: #C1A35F;
  --dark-gold: #A8893F;
  --warm-brown: #6B5B4B;
  --dark-brown: #3D342B;
  --text: #1A1714;
  --text-light: #3A3530;
  --text-subtle: #5A5550;
  --serif: 'Lora', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--white); font-size: 16px; line-height: 1.7;  }

/* ANNOUNCEMENT */
.announcement-bar { background: var(--dark-brown); color: var(--beige); text-align: center; padding: 10px 20px; font-size: 15px; font-weight: 500; letter-spacing: 0.5px; }
.announcement-bar a { color: var(--light-gold); text-decoration: underline; text-underline-offset: 2px; }

/* HEADER */
.header { background: var(--white); border-bottom: 1px solid var(--warm-beige); position: sticky; top: 0; z-index: 100; }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 16px 40px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--dark-brown); }
nav { display: flex; align-items: center; gap: 28px; }
nav > a, .nav-dropdown > a { font-size: 14px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text); text-decoration: none; transition: color 0.2s; }
nav > a:hover, .nav-dropdown:hover > a { color: var(--gold); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ''; display: inline-block; width: 0; height: 0; border-left: 3.5px solid transparent; border-right: 3.5px solid transparent; border-top: 3.5px solid var(--text-light); margin-left: 5px; vertical-align: middle; transition: transform 0.2s; }
.nav-dropdown:hover > a::after { border-top-color: var(--gold); transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); min-width: 280px; background: var(--white); border: 1px solid var(--warm-beige); box-shadow: 0 12px 40px rgba(0,0,0,0.08); padding: 12px 0; opacity: 0; visibility: hidden; transition: opacity 0.2s, visibility 0.2s; z-index: 200; margin-top: 16px; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; }
.dropdown-menu::before { content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.dropdown-menu a { display: block; padding: 10px 24px; font-size: 15px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--text); text-decoration: none; transition: background 0.15s, color 0.15s; }
.dropdown-menu a:hover { background: var(--cream); color: var(--gold); }
.dropdown-divider { height: 1px; background: var(--warm-beige); margin: 8px 24px; }
.dropdown-label { display: block; padding: 8px 24px 4px; font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-subtle); }
.btn-book { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; background: var(--gold); color: var(--white); font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s; }
.btn-book:hover { background: var(--dark-gold); }
.btn-outline { padding: 12px 28px; background: transparent; border: 1.5px solid var(--white); color: var(--white); font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: all 0.2s; }
.btn-outline:hover { background: var(--white); color: var(--dark-brown); }

/* HERO — red-tinted urgent overlay */
.hero-sub {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-sub-bg {
  position: absolute;
  inset: 0;
  background-image: url('emergency-hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-sub-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(100,40,30,0.7) 0%, rgba(80,35,25,0.55) 50%, rgba(61,52,43,0.7) 100%);
}
.hero-sub-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
}
.hero-sub h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 52px;
  line-height: 1.1;
  color: var(--white);
  max-width: 600px;
  margin-bottom: 20px;
}
.hero-sub-tagline {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255,255,255,0.95);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-sub-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* QUICK-JUMP */
.quick-jump {
  position: sticky;
  top: 69px;
  z-index: 90;
  background: var(--white);
  border-bottom: 1px solid var(--warm-beige);
  padding: 0 40px;
  transition: box-shadow 0.3s;
}
.quick-jump.shadow {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.quick-jump-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.quick-jump-inner::-webkit-scrollbar { display: none; }
.quick-jump-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: 100px;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
}
.quick-jump-pill:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(193,163,95,0.25);
}
.quick-jump-pill:hover svg { stroke: var(--white); }
.quick-jump-pill svg {
  width: 15px;
  height: 15px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.quick-jump-pill.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.quick-jump-pill.active svg { stroke: var(--white); }

/* ACCORDION */
.services-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 40px;
}
.accordion-item { scroll-margin-top: 140px;
  border-bottom: 1px solid var(--warm-beige);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.accordion-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.accordion-item:nth-child(2) { transition-delay: 0.1s; }
.accordion-item:nth-child(3) { transition-delay: 0.15s; }
.accordion-item:nth-child(4) { transition-delay: 0.2s; }
.accordion-item:nth-child(5) { transition-delay: 0.25s; }

.accordion-header {
  display: grid;
  grid-template-columns: 48px 1fr auto 80px 40px;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}
.accordion-header:hover { background: var(--cream); margin: 0 -20px; padding-left: 20px; padding-right: 20px; border-radius: 4px; }

.accordion-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--beige);
  line-height: 1;
  transition: color 0.3s;
}
.accordion-item.open .accordion-num { color: var(--gold); }

.accordion-title-group { min-width: 0; }
.accordion-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--dark-brown);
  line-height: 1.2;
  margin-bottom: 4px;
}
.accordion-summary {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.4;
}

.accordion-thumb { display: none;
  width: 72px;
  height: 52px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.accordion-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.accordion-header:hover .accordion-thumb img { transform: scale(1.08); }

.accordion-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.accordion-arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-subtle);
  fill: none;
  stroke-width: 2;
  transition: transform 0.4s, stroke 0.3s;
}
.accordion-item.open .accordion-arrow svg {
  transform: rotate(180deg);
  stroke: var(--gold);
}

.accordion-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 1s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.7s ease;
}
.accordion-item.open .accordion-body {
  max-height: 600px;
  opacity: 1;
}
.accordion-body-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 4px 0 24px;
  align-items: start;
}
.accordion-body-text p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 24px;
}
.accordion-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.accordion-fact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--cream);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.2px;
}
.accordion-fact svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.accordion-book-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.2s;
}
.accordion-book-link:hover { gap: 12px; }
.accordion-book-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.accordion-body-image {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.accordion-body-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.accordion-body-image:hover img { transform: scale(1.05); }

/* INFO STRIP */
.info-strip {
  background: var(--dark-brown);
  padding: 64px 40px;
}
.info-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.info-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.info-strip-icon {
  width: 56px;
  height: 56px;
  background: rgba(193,163,95,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid var(--gold);
}
.info-strip-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--light-gold);
  fill: none;
  stroke-width: 1.5;
}
.info-strip-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.4;
}
.info-strip-text span {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--beige);
  margin-top: 6px;
  letter-spacing: 0;
}

/* RELATED SERVICES */
.related-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.related-heading {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--dark-brown);
  margin-bottom: 40px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.related-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/5;
  text-decoration: none;
  display: block;
}
.related-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}
.related-card:hover .related-card-bg { transform: scale(1.08); }
.related-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,52,43,0.85) 0%, rgba(61,52,43,0.2) 50%, transparent 100%);
}
.related-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}
.related-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}
.related-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--light-gold);
  transition: gap 0.2s;
}
.related-card:hover .related-card-link { gap: 10px; }
.related-card-link svg {
  width: 14px;
  height: 14px;
  stroke: var(--light-gold);
  fill: none;
  stroke-width: 2;
}

/* FLOATING BOOK BUTTON */
.floating-book {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 95;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
}
.floating-book.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-book a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  box-shadow: 0 6px 24px rgba(193,163,95,0.35);
  transition: background 0.2s, box-shadow 0.2s;
}
.floating-book a:hover {
  background: var(--dark-gold);
  box-shadow: 0 8px 32px rgba(193,163,95,0.45);
}
.floating-book a svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

/* FOOTER */
.footer { background: var(--dark-brown); color: var(--beige); padding: 64px 40px 32px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .logo-text { font-family: var(--sans); font-weight: 500; font-size: 18px; letter-spacing: 4px; text-transform: uppercase; line-height: 1.2; color: var(--beige); margin-bottom: 16px; }
.footer-brand .logo-text span { display: block; font-size: 15px; letter-spacing: 5.5px; color: var(--text-subtle); }
.footer-brand p { font-size: 14px; font-weight: 500; line-height: 1.7; color: rgba(255,255,255,0.85); margin: 16px 0; }
.footer h4 { font-size: 15px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--light-gold); margin-bottom: 20px; }
.footer h5 { font-size: 14px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-subtle); margin: 16px 0 8px; }
.footer ul { list-style: none; padding: 0; }
.footer li { margin-bottom: 10px; }
.footer a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.footer a:hover { color: var(--light-gold); }
.footer-hours p { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85); line-height: 1.8; }
.footer-emergency { margin-top: 16px; padding: 12px 16px; background: rgba(193,163,95,0.12); border-left: 3px solid var(--gold); font-size: 15px; color: var(--light-gold); line-height: 1.5; }
.footer-bottom { max-width: 1200px; margin: 48px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.2); display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 16px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; transition: border-color 0.2s; }
.footer-social a:hover { border-color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); }

/* MOCKUP LABEL */
.mockup-label { position: fixed; bottom: 16px; left: 16px; background: var(--dark-brown); color: var(--light-gold); padding: 8px 16px; font-size: 15px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border-radius: 4px; z-index: 999; opacity: 0.9; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-sub h1 { font-size: 42px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .info-strip-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-sub { min-height: 420px; }
  .hero-sub-bg { background-attachment: scroll; }
  .hero-sub-content { padding: 60px 20px; }
  .hero-sub h1 { font-size: 32px; }
  .hero-sub-tagline { font-size: 15px; }

  .quick-jump { padding: 0 16px; top: 60px; }
  .quick-jump-inner { gap: 8px; padding: 10px 0; }
  .quick-jump-pill { padding: 6px 12px; font-size: 15px; }

  .services-section { padding: 40px 20px 20px; }

  .accordion-header {
    grid-template-columns: 36px 1fr 40px;
    gap: 12px;
    padding: 20px 0;
  }
  .accordion-thumb { display: none; display: none; }
  .accordion-title { font-size: 20px; }
  .accordion-summary { font-size: 14px; }
  .accordion-num { font-size: 22px; }
  .accordion-body-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .accordion-body-image { order: -1; }
  .accordion-item.open .accordion-body { max-height: 800px; }

  .info-strip { padding: 32px 20px; }
  .info-strip-inner { grid-template-columns: 1fr; gap: 20px; }

  .related-section { padding: 60px 20px; }
  .related-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .related-card { aspect-ratio: 3/4; }
  .related-card-title { font-size: 18px; }

  nav { display: none; }
  .header-inner { padding: 12px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer { padding: 48px 20px 24px; }
}
@media (max-width: 480px) {
  .hero-sub h1 { font-size: 28px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card { aspect-ratio: 16/9; }
}



/* ===== 24-HOUR BAND + FIVE SIGNS (added) ===== */
.emg-band { background: var(--dark-brown); color: #fff; padding: 72px 40px; }
.emg-band-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.emg-band-eyebrow { font-size: 13px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--light-gold); margin-bottom: 16px; }
.emg-band h2 { font-family: var(--serif); font-weight: 500; font-size: 46px; line-height: 1.12; color: #fff; margin-bottom: 14px; }
.emg-band-q { font-family: var(--serif); font-style: italic; font-size: 23px; color: var(--light-gold); margin-bottom: 30px; }
.emg-band-cta { font-size: 16px !important; padding: 16px 38px !important; }
.emg-band-copy { max-width: 700px; margin: 30px auto 0; font-size: 16px; line-height: 1.8; color: rgba(255,255,255,.86); }
.emg-band-copy a { color: var(--light-gold); font-weight: 600; text-decoration: none; }
.emg-band-copy strong { color: #fff; }
.emg-availability-note {
  max-width: 760px;
  margin: 36px auto 0;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: start;
  text-align: left;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(226,206,146,.34);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0,0,0,.14);
}
.emg-note-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(226,206,146,.12);
  border: 1px solid rgba(226,206,146,.42);
}
.emg-note-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--light-gold); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.emg-note-label { margin-bottom: 7px; font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--light-gold); }
.emg-availability-note h3 { margin-bottom: 10px; font-family: var(--serif); font-size: 25px; font-weight: 500; line-height: 1.25; color: #fff; }
.emg-availability-note p:last-child { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,.86); }

.signs { background: var(--cream); padding: 88px 40px; }
.signs-inner { max-width: 1200px; margin: 0 auto; }
.signs-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.signs-eyebrow { font-size: 13px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.signs-head h2 { font-family: var(--serif); font-weight: 500; font-size: 42px; line-height: 1.14; color: var(--dark-brown); margin-bottom: 16px; }
.signs-head p { font-size: 16px; line-height: 1.75; color: var(--text-light); }
.signs-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.sign-card { background: var(--white); border: 1px solid var(--beige); border-radius: 4px; padding: 30px 24px; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s, border-color .2s; }
.sign-card:hover { transform: translateY(-3px); border-color: var(--light-gold); box-shadow: 0 12px 28px rgba(26,23,20,.08); }
.sign-num { font-family: var(--serif); font-size: 30px; line-height: 1; color: var(--light-gold); margin-bottom: 14px; }
.sign-title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--dark-brown); margin-bottom: 10px; line-height: 1.25; }
.sign-text { font-size: 14.5px; line-height: 1.65; color: var(--text-light); }
.signs-foot { margin-top: 44px; text-align: center; font-size: 16px; color: var(--text-light); }
.signs-foot a { color: var(--dark-gold); font-weight: 700; text-decoration: none; }
@media (max-width: 1024px) { .signs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .emg-band { padding: 52px 20px; } .emg-band h2 { font-size: 32px; } .emg-band-q { font-size: 19px; }
  .emg-availability-note { grid-template-columns: 1fr; gap: 15px; padding: 24px 22px; text-align: center; }
  .emg-note-icon { margin: 0 auto; }
  .emg-availability-note h3 { font-size: 22px; }
  .signs { padding: 56px 20px; } .signs-head h2 { font-size: 30px; }
  .signs-grid { grid-template-columns: 1fr; }
}
















/* === STANDARDIZED HEADER/FOOTER (match homepage) === */
/* Brand tokens = the REDESIGNED system (reference: general_dentistry.html).
   Flat 'gold' used as ink on light surfaces is ONYX, not mustard.
   Gold survives only as (a) the metallic CTA gradient and
   (b) --light-gold champagne on DARK surfaces.
   Supersedes the earlier normalisation, which wrongly reverted to #B0852F. */
:root {
  --white: #FFFFFF;
  --cream: #FAF7F2;
  --warm-beige: #ECEBE8;
  --beige: #EAEAE7;
  --light-gold: #C9A24A;   /* champagne — on DARK surfaces only */
  --gold: #16181B;         /* flat 'gold' accents on light -> onyx ink (no mustard) */
  --dark-gold: #16181B;
  --warm-brown: #6B5B4B;
  --dark-brown: #2A211B;
  --plum: #2E2230;
  --text: #211C17;
  --text-light: #4A4038;
  --text-subtle: #6A6056;
}
/* HEADER */
.header { background: var(--white); border-bottom: 1px solid var(--warm-beige); position: sticky; top: 0; z-index: 100; transition: transform 0.35s ease; }
.header--hidden { transform: translateY(-100%); }
.header-inner { max-width: 1640px; margin: 0 auto; padding: 16px 40px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--dark-brown); }
nav { display: flex; align-items: center; gap: 28px; }
nav > a, .nav-dropdown > a { font-size: 14px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text); text-decoration: none; transition: color 0.2s; }
nav > a:hover, .nav-dropdown:hover > a { color: var(--gold); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ''; display: inline-block; width: 0; height: 0; border-left: 3.5px solid transparent; border-right: 3.5px solid transparent; border-top: 3.5px solid var(--text-light); margin-left: 5px; vertical-align: middle; transition: transform 0.2s; }
.nav-dropdown:hover > a::after { border-top-color: var(--gold); transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); min-width: 280px; background: var(--white); border: 1px solid var(--warm-beige); box-shadow: 0 12px 40px rgba(0,0,0,0.08); padding: 12px 0; opacity: 0; visibility: hidden; transition: opacity 0.2s, visibility 0.2s; z-index: 200; margin-top: 16px; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; }
.dropdown-menu::before { content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.dropdown-menu a { display: block; padding: 10px 24px; font-size: 15px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--text); text-decoration: none; transition: background 0.15s, color 0.15s; }
.dropdown-menu a:hover { background: var(--cream); color: var(--gold); }
.dropdown-divider { height: 1px; background: var(--warm-beige); margin: 8px 24px; }
.dropdown-label { display: block; padding: 8px 24px 4px; font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-subtle); }
.btn-book { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; background: linear-gradient(180deg,#F4E9C3 0%,#DEC176 46%,#C9A24A 76%,#E6D49A 100%); color: #3A2E10; font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; box-shadow: inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.14); transition: filter 0.2s; }
.btn-book:hover { filter: brightness(0.97); }


/* FOOTER */
.footer { background: #2E2230; color: var(--beige); padding: 52px 32px 28px; }
.footer-grid { max-width: none; margin: 0; display: grid; grid-template-columns: 1.5fr 1fr 1.4fr 1.1fr; gap: 40px; }
.footer-svc-cols { display: flex; gap: 28px; }
.footer-services h4 { margin-bottom: 12px; }
.footer-brand .logo-text { font-family: var(--sans); font-weight: 500; font-size: 18px; letter-spacing: 4px; text-transform: uppercase; line-height: 1.2; color: var(--beige); margin-bottom: 16px; }
.footer-brand .logo-text span { display: block; font-size: 15px; letter-spacing: 5.5px; color: #C9BEB0; }
.footer-brand p { font-size: 14px; font-weight: 500; line-height: 1.7; color: rgba(255,255,255,0.85); margin: 16px 0; }
.footer h4 { font-size: 15px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #E2CE92; margin-bottom: 20px; }
.footer h5 { font-family: var(--serif); font-style: italic; font-size: 17px; font-weight: 500; letter-spacing: 0; text-transform: none; color: #C9BEB0; margin: 0 0 10px; }
.footer ul { list-style: none; padding: 0; }
.footer li { margin-bottom: 2px; line-height: 1.4; }
.footer a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.footer a:hover { color: #E2CE92; }
.footer-hours p { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85); line-height: 1.8; }
.footer-emergency { display: inline-block; position: relative; margin-top: 16px; padding: 8px 16px 8px 18px; background: rgba(226,206,146,0.10); font-size: 15px; color: #E2CE92; line-height: 1.5; }
.footer-emergency::before { content: ''; position: absolute; left: 5px; top: 2px; bottom: 2px; width: 3px; background: linear-gradient(180deg, rgba(201,162,74,0) 0%, #C9A24A 16%, #F0E3B0 50%, #C9A24A 84%, rgba(201,162,74,0) 100%); border-radius: 2px; }
.footer-bottom { max-width: none; margin: 36px 0 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.2); display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 16px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: #FFFFFF; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; }
.footer-social a:hover { transform: translateY(-2px); }
.footer-social svg { width: 17px; height: 17px; }
.footer-social a:nth-child(1) svg { fill: #1877F2; }
.footer-social a:nth-child(2) svg { color: #E4405F; }
.footer-social a:nth-child(3) svg { color: #FF0000; }
.footer-social a:nth-child(4) svg { color: #0A66C2; }


.footer-emergency { border-left: none !important; border: none !important; }
.accordion-header { cursor: default; grid-template-columns: 48px 1fr auto 80px; }
.accordion-header:hover { background: transparent; margin: 0; padding-left: 0; padding-right: 0; border-radius: 0; }
.accordion-header:hover .accordion-thumb img { transform: none; }
.accordion-arrow { display: none; }
.quick-jump-pill:hover, .quick-jump-pill.active {
  background: linear-gradient(180deg,#F4E9C3 0%,#DEC176 46%,#C9A24A 76%,#E6D49A 100%);
  color: #3A2E10; border-color: #C9A24A;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.14);
}
.quick-jump-pill:hover svg, .quick-jump-pill.active svg { stroke: #3A2E10; }
/* Restore service-section imagery — was switched off at source (.accordion-body-image-OFF) */
.accordion-body-image { display: block !important; border-radius: 6px; overflow: hidden; aspect-ratio: 3/2; }
.accordion-body-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.accordion-body-inner { grid-template-columns: 1.1fr 0.9fr !important; gap: 36px !important; align-items: start; }

/* ═══════════ MOBILE UX LAYER (applies to every page) ═══════════ */
.mobile-actions { display: none; align-items: center; gap: 6px; }
.mobile-call { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; color: var(--dark-brown); text-decoration: none; border-radius: 8px; }
.mobile-call:active { background: var(--cream); }
.nav-toggle { width: 44px; height: 44px; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; background: transparent; border: 0; cursor: pointer; padding: 0; border-radius: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--dark-brown); border-radius: 2px; transition: transform .25s ease, opacity .2s 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); }
.nav-backdrop { display: none; position: fixed; inset: 0; background: rgba(20,16,14,.45); z-index: 90; }
.nav-backdrop.open { display: block; }

@media (max-width: 900px) {
  html, body { overflow-x: clip; }
  .mobile-actions { display: flex; }
  .header-inner { padding: 10px 16px; }
  .logo img { height: 38px !important; }

  /* slide-down menu panel */
  nav { display: none !important; }
  nav.open {
    display: flex !important; flex-direction: column; align-items: stretch; gap: 0;
    position: fixed; left: 0; right: 0; top: var(--hdr-h, 60px); bottom: 0;
    background: var(--white); z-index: 95; padding: 8px 0 28px; overflow-y: auto;
    box-shadow: 0 12px 32px rgba(0,0,0,.14); -webkit-overflow-scrolling: touch;
  }
  nav.open > a, nav.open .nav-dropdown > a {
    display: block; padding: 16px 20px; font-size: 16px; letter-spacing: .06em;
    border-bottom: 1px solid var(--warm-beige); min-height: 44px;
  }
  nav.open .nav-dropdown { position: static; }
  nav.open .nav-dropdown > a::after { display: none; }
  /* services list always expanded in the panel — no nested tap needed */
  nav.open .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    min-width: 0; border: 0; box-shadow: none; margin: 0; padding: 0 0 6px;
    background: var(--cream);
  }
  nav.open .dropdown-menu a { padding: 13px 20px 13px 34px; font-size: 15px; min-height: 44px; border-bottom: 1px solid rgba(0,0,0,.05); }
  nav.open .dropdown-label { padding: 12px 20px 4px; font-size: 12px; }
  nav.open .dropdown-divider { display: none; }
  nav.open .btn-book { margin: 18px 20px 0; text-align: center; padding: 16px 20px; font-size: 15px; }
  body.nav-locked { overflow: hidden; }

  /* announcement bar — trim to essentials */
  .announcement-bar { font-size: 12.5px; padding: 8px 14px; line-height: 1.5; }

  /* trust bar was nowrap with 5 items → horizontal overflow */
  .trust-bar-inner { flex-wrap: wrap !important; justify-content: flex-start; gap: 10px 18px; }
  .trust-item { font-size: 14px; flex: 1 1 45%; }

  /* reclaim side padding */
  .spa-text { padding: 40px 20px !important; max-width: none; }
  .section { padding: 48px 18px; }
  .hero-content { padding: 40px 20px; }

  /* stacked decorative shapes read as noise when narrow */
  .spa-difference::after, .hero-bg::after, .doctor-geo { display: none; }
  .doctor-photo { width: 100% !important; max-width: 300px; height: 340px !important; margin: 0 auto -24px !important; justify-self: center !important; }
  .doctor-bg-image, .doctor-overlay { width: 100% !important; }

  /* tap targets */
  .quick-jump-pill { padding: 11px 16px !important; font-size: 14px !important; min-height: 44px; }
  .service-nav-btn { min-height: 48px; }
  .doctor-service-link { padding: 10px 14px !important; min-height: 40px; }
  .btn-book, .btn-outline { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }

  /* iOS zooms any focused field under 16px */
  input, select, textarea, .form-group input, .form-group select, .form-group textarea { font-size: 16px !important; }

  /* service page hero */
  section.hero-sub { min-height: 340px !important; }   /* service-page hero ONLY — .hero-sub is also the homepage subtitle <p> */
  .hero-sub-content { padding-left: 20px; padding-right: 20px; }

  /* long words / URLs shouldn't push the layout wide */
  h1, h2, h3, p, a, li { overflow-wrap: anywhere; }
  img, video, iframe { max-width: 100%; height: auto; }

  /* --- emergency strip: redesigned. one control that shows the actual number --- */
  .emergency-strip { padding: 34px 20px !important; }
  .emergency-inner { gap: 20px !important; }
  .emergency-text h3 { font-size: 25px !important; line-height: 1.22 !important; margin-bottom: 10px !important; }
  .emergency-text p { font-size: 14.5px !important; line-height: 1.6 !important; max-width: 32ch; margin: 0 auto !important; }
  .emergency-cta { flex-direction: column !important; width: 100%; gap: 12px !important; align-items: stretch !important; }
  .btn-emergency { display: none !important; }
  .emergency-phone {
    display: flex !important; align-items: center; justify-content: center; gap: 9px;
    width: 100%; box-sizing: border-box; padding: 17px 18px;
    background: linear-gradient(180deg,#F4E9C3 0%,#DEC176 46%,#C9A24A 76%,#E6D49A 100%);
    color: #3A2E10 !important; font-size: 19px; font-weight: 700; letter-spacing: .02em;
    text-decoration: none; white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 2px 8px rgba(0,0,0,.22);
  }
  .emergency-phone::before {
    content: ''; width: 19px; height: 19px; flex: 0 0 19px; background: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.9.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") center/contain no-repeat; mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.9.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") center/contain no-repeat;
  }

  /* --- typography: tighten display headings and balance the rag --- */
  h1, h2, h3, .section-title, .final-cta h2, .related-heading, .signs-head h2, .emg-band h2,
  .emergency-text h3 { text-wrap: balance; }
  .final-cta { padding: 44px 20px !important; }
  .final-cta h2 { font-size: 30px !important; line-height: 1.16 !important; margin-bottom: 12px !important; }
  .final-cta p { font-size: 15.5px !important; line-height: 1.65 !important; max-width: 34ch; margin: 0 auto 26px !important; }
  .final-cta-actions { flex-direction: column; gap: 12px !important; }
  .final-cta-actions > a { width: 100%; box-sizing: border-box; text-align: center; justify-content: center; }
  .section-title { font-size: 28px !important; line-height: 1.18 !important; }
  .section-desc { font-size: 15px !important; max-width: 34ch; margin-bottom: 30px !important; }
  .spa-text h2, .doctor-text h2 { font-size: 26px !important; line-height: 1.2 !important; }

  /* --- floating Book pill sat on top of page content with nothing reserved for it --- */
  body { padding-bottom: 0; }
  .floating-book {
    z-index: 80 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
    width: 100% !important; border-radius: 0 !important; padding: 15px 16px !important;
    justify-content: center !important; font-size: 15px !important;
    box-shadow: 0 -3px 14px rgba(0,0,0,.18) !important;
  }

  /* --- keep the section heading's separator dot with its line --- */
  .service-nav-heading .dot { white-space: nowrap; }

  /* --- hero: photo was being painted over by the decorative gradient --- */
  .hero-photo { z-index: 1 !important; }
  .hero-bg::after { display: none; }

  /* --- hero CTAs: were set to nowrap and ran off-screen --- */
  .hero-actions, .hero-sub-actions {
    flex-wrap: wrap !important; gap: 10px !important; width: 100%; max-width: none !important;
  }
  .hero-actions > a, .hero-sub-actions > a {
    flex: 1 1 100% !important; width: 100% !important; text-align: center;
    justify-content: center; box-sizing: border-box;
  }

  /* --- scrollable pill nav: add an edge fade so it reads as scrollable --- */
  .quick-jump { position: relative; }
  .quick-jump::after {
    content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 34px; pointer-events: none;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,.96));
  }
  .quick-jump-inner { scroll-snap-type: x proximity; padding-right: 26px; }
  .quick-jump-pill { scroll-snap-align: start; }

  /* PHOTOS ON MOBILE — previously hidden entirely */
  .hero { display: flex !important; flex-direction: column !important; min-height: 0 !important; max-height: none !important; }
  .hero-photo { display: block !important; position: relative !important; inset: auto !important;
                width: 100% !important; height: 210px !important; flex: 0 0 210px !important; order: -1; }
  .spa-image, .accordion-body-image, .doctor-photo { flex-shrink: 0 !important; }
  .hero-content { order: 1; }
  .accordion-header { grid-template-columns: 38px 1fr !important; gap: 12px !important; }
  .accordion-thumb { display: none !important; }
  .accordion-body-inner { grid-template-columns: 1fr !important; gap: 20px !important; }
  .accordion-body-image { order: -1; aspect-ratio: 16/10 !important; }
  .accordion-num { font-size: 22px; }
  .accordion-title { font-size: 21px; }
  .spa-image { min-height: 240px !important; }
  .related-grid { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr !important; gap: 30px; }
  .footer-svc-cols { gap: 32px; }
  .trust-item { flex: 1 1 100%; }
  .hero h1 { font-size: 28px !important; }
  .service-nav-buttons { grid-template-columns: repeat(2, 1fr) !important; }
  .footer { padding: 40px 18px 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}
/* ═══════════ END MOBILE UX LAYER ═══════════ */
/* === END STANDARDIZED === */

/* === HOMEPAGE-CONSISTENT PILLS + ABOUT IMAGE === */
/* Pill icons were stroke:var(--gold) -> mustard on cream. The homepage never
   uses gold as an ink colour; gold appears only as the CTA gradient on
   interactive states. Icons now inherit the pill's text colour. */
.quick-jump-pill svg { stroke: currentColor !important; }
.quick-jump-pill { color: var(--text) !important; }
.quick-jump-pill:hover svg,
.quick-jump-pill.active svg { stroke: #3A2E10 !important; }
.quick-jump-pill:hover,
.quick-jump-pill.active { color: #3A2E10 !important; }
/* About: real photo instead of the empty placeholder tile */
.about-image { width:100%; aspect-ratio:4/3; border-radius:6px; overflow:hidden; background:var(--warm-beige); }
.about-image img { width:100%; height:100%; object-fit:cover; display:block; }


/* === HEADER FIT: no logo/nav collision === */
/* .header-inner is space-between with no gap, so logo and nav sit flush.
   Guarantee separation at every width, and tighten the nav in the
   901-1100px band where the desktop nav is shown but has no room. */
.header-inner { gap: 28px; }
.logo { min-width: 0; flex: 0 1 auto; }
.logo img { max-width: 100%; }
nav { flex: 0 1 auto; }
@media (min-width: 901px) and (max-width: 1100px) {
  .header-inner { padding: 14px 20px; gap: 18px; }
  .logo img { height: 34px !important; }
  nav { gap: 15px; }
  nav > a, .nav-dropdown > a { font-size: 12px; letter-spacing: 0.07em; }
  .btn-book { padding: 10px 14px; font-size: 11px; letter-spacing: 1px; }
}
@media (min-width: 1101px) and (max-width: 1300px) {
  nav { gap: 20px; }
  nav > a, .nav-dropdown > a { font-size: 13px; letter-spacing: 0.1em; }
}


/* === METAL CTA (match homepage .btn-book) === */
/* The homepage fills every CTA with the metallic gold gradient, never a flat
   swatch. These subpage buttons were solid var(--gold) -> dated mustard.
   Gold is either metal (CTA fill) or onyx ink. Nothing in between. */
.btn-submit, .btn-cta-dark, .floating-book a, .btn-book {
  background: linear-gradient(180deg,#F4E9C3 0%,#DEC176 46%,#C9A24A 76%,#E6D49A 100%) !important;
  color: #3A2E10 !important;
  border: none !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5),
              inset 0 -1px 0 rgba(0,0,0,.10),
              0 2px 6px rgba(0,0,0,.14) !important;
  transition: filter 0.2s !important;
}
.btn-submit:hover, .btn-cta-dark:hover, .floating-book a:hover, .btn-book:hover {
  background: linear-gradient(180deg,#F4E9C3 0%,#DEC176 46%,#C9A24A 76%,#E6D49A 100%) !important;
  color: #3A2E10 !important;
  filter: brightness(0.97);
}
.btn-submit svg, .btn-cta-dark svg, .floating-book a svg, .btn-book svg { stroke: #3A2E10 !important; }


/* === YELLOW PURGE v2: champagne on DARK, onyx on LIGHT === */
/* Verified each container's actual background before assigning:
   DARK  -> .info-strip (var(--plum)/var(--dark-brown)),
            .related-card (dark gradient overlay), .mockup-label (--dark-brown)
            => champagne #C9A24A, which is the correct on-dark accent.
   LIGHT -> .sign-card (var(--white)), .form-confirm (pale tint)
            => onyx #16181B.
   v1 wrongly put onyx on the dark ones, making those icons invisible. */
.info-strip-icon { border-color: rgba(201,162,74,0.55) !important; }
.info-strip-icon svg { stroke: #C9A24A !important; }
.related-card-link { color: #C9A24A !important; }
.related-card-link svg { stroke: #C9A24A !important; }
.mockup-label { color: #C9A24A !important; }
.sign-num { color: #16181B !important; }
.sign-card:hover { border-color: #16181B !important; }
.form-confirm { border-color: #16181B !important; }

/* === FLOATING BOOK: mobile only === */
/* The homepage has no floating book button at any width. It was rendering on
   desktop on 9 service pages. Restricted to mobile, where it is the sticky
   bottom bar; hidden from 901px up so desktop matches the homepage. */
@media (min-width: 901px) {
  .floating-book { display: none !important; }
}



/* === MOBILE UX FIX BATCH 2026-09-15 === */
@media (max-width: 900px) {
  html, body { overflow-x: clip !important; }
  html { scroll-padding-top: 72px; }
  section[id], .accordion-item[id] { scroll-margin-top: 72px; }

  .header-inner { gap: 12px !important; }
  .logo { min-width: 0; flex: 1 1 auto; }
  .logo img { max-width: 100%; }
  .mobile-actions { flex: 0 0 auto; }

  body { padding-bottom: 0 !important; }
  .floating-book { display: none !important; }

  .announcement-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2px 10px;
    padding: 6px 12px;
    font-size: 12px;
    line-height: 1.35;
  }
  .announcement-address, .announcement-sep { display: none; }
  .announcement-support { order: 1; flex: 1 0 100%; font-weight: 600; }
  .announcement-bar > a { order: 2; }
  .announcement-language { order: 3; }
}

@media (max-width: 600px) {
  .hero-photo { height: 180px !important; flex: 0 0 180px !important; }
  .hero-actions > a, .hero-sub-actions > a {
    padding-left: 18px !important;
    padding-right: 18px !important;
    font-size: 13px !important;
    letter-spacing: 1px !important;
  }
  .related-grid { grid-template-columns: 1fr !important; }
  .related-card { aspect-ratio: 16 / 9 !important; min-width: 0; width: 100%; }
  .related-card-content { padding: 20px !important; }
}
/* === END MOBILE UX FIX BATCH === */

/* Emergency guide recovery: current brand, readable content, no floating overlays. */
.recovery-hero { min-height: 300px; }
.recovery-hero .hero-sub-content { padding-top: 52px; padding-bottom: 52px; }
.recovery-hero h1 { max-width: 900px; font-size: 42px; line-height: 1.2; }
.recovery-hero .hero-sub-tagline { max-width: 700px; }
.recovery-crumb { max-width: 1120px; margin: auto; padding: 22px 24px; font-size: 14px; }
.recovery-crumb a { color: var(--dark-brown); text-underline-offset: 4px; }
.recovery-layout { max-width: 1120px; margin: auto; padding: 0 24px 64px; display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 48px; align-items: start; }
.recovery-article, .recovery-sidebar { min-width: 0; }
#guide-content { scroll-margin-top: 100px; }
.recovery-intro { font-size: 19px; line-height: 1.75; margin: 0 0 28px; }
.recovery-article section { margin: 34px 0; scroll-margin-top: 100px; }
.recovery-article h2 { font-family: var(--serif); color: var(--dark-brown); font-size: 28px; line-height: 1.3; margin-bottom: 14px; }
.recovery-article p { margin: 12px 0; }
.recovery-article ul { padding-left: 24px; }
.recovery-article li { padding-left: 4px; margin: 10px 0; }
.recovery-article a { color: #655024; text-underline-offset: 4px; }
.recovery-context-link { display: inline-flex; align-items: center; min-height: 44px; }
.recovery-availability { background: #2E2230; border-left: 4px solid #C9A24A; padding: 24px; border-radius: 6px; color: #fff; }
.recovery-availability h2 { color: #E2CE92; font-size: 23px; }
.recovery-sidebar { position: sticky; top: 100px; background: var(--cream); border: 1px solid var(--beige); padding: 24px; border-radius: 6px; }
.recovery-sidebar h2 { font-family: var(--serif); font-size: 25px; line-height: 1.3; color: var(--dark-brown); }
.recovery-sidebar p { margin: 14px 0; }
.recovery-sidebar .btn-book { width: 100%; justify-content: center; text-align: center; font-size: 14px; letter-spacing: .04em; padding: 14px 10px; min-height: 48px; }
.recovery-sidebar > a:not(.btn-book) { display: inline-flex; align-items: center; min-height: 44px; color: var(--dark-brown); }
.recovery-safety { border-top: 1px solid var(--beige); padding-top: 16px; font-size: 14px; }
.recovery-sources { border-top: 1px solid var(--beige); padding-top: 22px; font-size: 14px; color: var(--text-subtle); }
.recovery-sources a { display: inline-flex; align-items: center; min-height: 44px; }
.recovery-links { max-width: 1120px; margin: auto; padding: 48px 24px; }
.recovery-links h2 { font-family: var(--serif); font-size: 30px; line-height: 1.3; color: var(--dark-brown); margin-bottom: 14px; }
.recovery-links p { margin-bottom: 22px; }
.recovery-guide-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; list-style: none; padding: 0; }
.recovery-guide-grid a { display: flex; align-items: center; padding: 20px; min-height: 72px; background: var(--cream); border: 1px solid var(--beige); border-radius: 6px; color: var(--dark-brown); font-weight: 500; line-height: 1.5; text-decoration: none; }
.recovery-guide-grid a:hover { border-color: #A8893F; background: var(--warm-beige); }
.recovery-guide-grid li { min-width: 0; }
.recovery-page a:focus-visible, .recovery-links a:focus-visible, .recovery-page button:focus-visible { outline: 3px solid #7B5B18; outline-offset: 4px; }
.recovery-skip { position: absolute; left: 12px; top: -100px; z-index: 300; background: #fff; color: #1A1714; padding: 12px; }
.recovery-skip:focus { top: 12px; }
@media (max-width: 900px) {
  .recovery-layout { grid-template-columns: minmax(0, 1fr); gap: 24px; padding: 0 20px 40px; }
  .recovery-sidebar { position: static; }
  .recovery-hero h1 { font-size: 32px; }
  .recovery-intro { font-size: 17px; }
}
@media (max-width: 600px) {
  section.recovery-hero { min-height: 300px !important; }
  .recovery-hero .hero-sub-content { padding: 40px 20px; }
  .recovery-hero h1 { font-size: 29px; }
  .recovery-crumb { padding: 20px; }
  .recovery-article h2 { font-size: 25px; }
  .recovery-availability { padding: 22px 20px; }
  .recovery-links { padding: 40px 20px; }
  .recovery-guide-grid { grid-template-columns: minmax(0, 1fr); }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
