@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=DM+Serif+Display&display=swap');

:root {
  --navy: #1a2d4a;
  --navy-light: #243c61;
  --teal: #2a8a7e;
  --teal-light: #3aa897;
  --teal-pale: #e8f5f3;
  --gold: #c9a84c;
  --cream: #f8f6f1;
  --white: #ffffff;
  --grey-100: #f4f4f4;
  --grey-200: #e8e8e8;
  --grey-400: #9ca3af;
  --grey-700: #374151;
  --text: #1f2937;
  --radius: 10px;
  --max-w: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

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

/* ── NAV ── */
#nav {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 52px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  padding: 6px 11px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: 4px;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a.active {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Dropdown */
.nav-links li { position: relative; }
.nav-links li.has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.6rem;
  opacity: 0.55;
  vertical-align: middle;
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 6px 0;
  z-index: 300;
  list-style: none;
  margin: 0;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: #fff;
  border-left: 1px solid var(--grey-200);
  border-top: 1px solid var(--grey-200);
  rotate: 45deg;
}
.nav-links li.has-dropdown:hover .nav-dropdown { display: block; }
.nav-dropdown li a {
  display: block;
  padding: 8px 18px;
  font-size: 0.81rem;
  color: var(--navy) !important;
  text-decoration: none !important;
  white-space: nowrap;
  font-weight: 400;
}
.nav-dropdown li a:hover { background: var(--teal-pale); color: var(--teal) !important; }
/* Mobile sub-links */
.mobile-submenu { display: none; }
.mobile-submenu.open { display: block; }
.mobile-submenu a {
  padding-left: 40px !important;
  font-size: 0.82rem !important;
  color: var(--grey-700) !important;
  background: var(--grey-50, #fafafa);
}
.mobile-services-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 12px 24px;
  font-size: 0.9rem;
  color: var(--navy);
  border-bottom: 1px solid var(--grey-200);
}
.mobile-services-toggle:hover { color: var(--teal); }
.mobile-services-toggle .toggle-arrow { font-size: 0.65rem; transition: transform 0.2s; }
.mobile-services-toggle.open .toggle-arrow { transform: rotate(180deg); }
.nav-book-btn {
  display: inline-flex;
  align-items: center;
  background: var(--teal);
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0;
}
.nav-book-btn:hover { background: var(--teal-light); }

/* Info strip below nav */
.nav-info-strip {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nav-info-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}
.nav-info-items {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
}
.nav-info-item a { color: rgba(255,255,255,0.82); }
.nav-info-item a:hover { color: #fff; }
.nav-info-icon { color: var(--teal-light); font-size: 0.85rem; display:flex; align-items:center; }
.nav-info-icon svg { width:13px; height:13px; fill:currentColor; flex-shrink:0; }
.nav-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-social a {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  transition: color 0.15s;
}
.nav-social a:hover { opacity: 0.8; }
.nav-social svg { width: 15px; height: 15px; fill: currentColor; }
.nav-social a[aria-label="Facebook"]  { color: #1877F2; }
.nav-social a[aria-label="Instagram"] { color: #E4405F; }
.nav-social a[aria-label="Twitter / X"] { color: #1D9BF0; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.2s;
}
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--grey-200);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 24px;
  font-size: 0.9rem;
  color: var(--navy);
  border-bottom: 1px solid var(--grey-200);
  transition: color 0.15s;
}
.mobile-menu a:hover { color: var(--teal); }
.mobile-menu a.active { color: var(--teal); font-weight: 600; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 72px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(42,138,126,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(42,138,126,0.2);
  border: 1px solid rgba(42,138,126,0.35);
  color: var(--teal-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── INFO STRIP ── */
.info-strip {
  background: var(--teal);
  color: #fff;
}
.info-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}
.info-item-icon { font-size: 1rem; opacity: 0.85; }
.info-item strong { font-weight: 600; }
.info-item span { opacity: 0.88; }
.info-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.25);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  line-height: 1;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
}
.btn-primary:hover { background: var(--teal-light); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.06); }
.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-light); }
.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

/* ── SECTION / LAYOUT ── */
.section { padding: 64px 24px; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-navy { background: var(--navy); color: #fff; }
.container { max-width: var(--max-w); margin: 0 auto; }

.section-header { margin-bottom: 40px; }
.section-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 8px;
}
.section-navy .section-header h2 { color: #fff; }
.section-header p {
  color: var(--grey-400);
  font-size: 0.95rem;
  max-width: 560px;
}
.section-navy .section-header p { color: rgba(255,255,255,0.65); }
.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.section-navy .section-label { color: var(--teal-light); }

/* ── GRID ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── CARD ── */
.card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-color: var(--grey-400);
}
.card-cream { background: var(--cream); border-color: transparent; }
.card-teal {
  background: var(--teal-pale);
  border-color: rgba(42,138,126,0.2);
}
.card-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.card p {
  font-size: 0.83rem;
  color: var(--grey-700);
  line-height: 1.55;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
}
.card-link:hover { color: var(--teal-light); }

/* ── SERVICE CARD ── */
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.15s;
}
.service-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.service-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-pale);
  border-radius: 8px;
}
.service-card h3 { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.service-card p { font-size: 0.8rem; color: var(--grey-700); line-height: 1.5; }

/* ── INFO BOX ── */
.info-box {
  background: var(--teal-pale);
  border: 1px solid rgba(42,138,126,0.25);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-box-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.info-box-body h4 { font-size: 0.9rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.info-box-body p { font-size: 0.83rem; color: var(--grey-700); line-height: 1.55; }

.warn-box {
  background: #fff8e6;
  border: 1px solid #f0c855;
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.warn-box .info-box-icon { color: #b45309; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 52px 24px 56px;
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 10px;
}
.page-hero p { color: rgba(255,255,255,0.7); font-size: 0.95rem; max-width: 520px; }
.breadcrumb {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb a { color: var(--teal-light); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── HOURS TABLE ── */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--grey-200); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 10px 4px; font-size: 0.88rem; }
.hours-table td:last-child { text-align: right; color: var(--grey-700); }
.hours-table .today td { font-weight: 600; color: var(--teal); }
.hours-closed { color: var(--grey-400) !important; }

/* ── CONTACT CARD ── */
.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--grey-200);
  font-size: 0.88rem;
}
.contact-row:last-child { border-bottom: none; }
.contact-row-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-row-label { font-size: 0.7rem; color: var(--grey-400); margin-bottom: 1px; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-row-value { font-weight: 500; color: var(--navy); }
.contact-row-value a { color: var(--teal); }
.contact-row-value a:hover { text-decoration: underline; }

/* ── FAQ ── */
.faq-item {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  user-select: none;
  transition: background 0.15s;
}
.faq-q:hover { background: var(--grey-100); }
.faq-toggle { color: var(--grey-400); transition: transform 0.2s; flex-shrink: 0; }
.faq-toggle.open { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 18px 16px;
  font-size: 0.85rem;
  color: var(--grey-700);
  line-height: 1.6;
  border-top: 1px solid var(--grey-200);
  padding-top: 14px;
}
.faq-a.open { display: block; }

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: var(--grey-200);
  margin: 32px 0;
}

/* ── FOOTER ── */
#footer {
  background: var(--navy);
  color: rgba(255,255,255,0.72);
  padding: 52px 24px 28px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 6px;
}
.footer-brand p { font-size: 0.82rem; line-height: 1.6; max-width: 280px; }
.footer-col h3 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-contact-item {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.82rem;
  align-items: flex-start;
}
.footer-contact-item-icon { flex-shrink: 0; margin-top: 1px; opacity: 0.7; }
.footer-contact-item a { color: rgba(255,255,255,0.75); }
.footer-contact-item a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-book-btn { display: none; }
  .nav-hamburger { display: flex; }
  .nav-info-items { gap: 12px; }
  .nav-info-item:nth-child(n+3) { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .nav-info-strip { display: none; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .info-strip-inner { flex-direction: column; gap: 12px; text-align: center; }
  .info-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; }
}

/* ── PROSE ── */
.prose h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin: 28px 0 10px;
}
.prose h3:first-child { margin-top: 0; }
.prose p { font-size: 0.9rem; color: var(--grey-700); margin-bottom: 14px; line-height: 1.7; }
.prose ul {
  margin: 10px 0 14px 20px;
  font-size: 0.9rem;
  color: var(--grey-700);
  line-height: 1.7;
}
.prose li { margin-bottom: 5px; }

/* ── TWO-COL LAYOUT ── */
.two-col { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
@media (max-width: 840px) { .two-col { grid-template-columns: 1fr; } }

/* ── STICKY SIDEBAR ── */
.sticky-card { position: sticky; top: 84px; }

/* ── UTILS ── */
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.text-teal { color: var(--teal); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--grey-400); }
.font-serif { font-family: 'DM Serif Display', serif; }
.text-sm { font-size: 0.82rem; }
.bold { font-weight: 600; }
