:root {
  --navy: #182848;
  --navy-deep: #101c34;
  --gold: #c9a24b;
  --gold-light: #e4c877;
  --cream: #f7f4ec;
  --ink: #22262f;
  --muted: #5c6270;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Source Sans 3', 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy-deep);
  margin: 0 0 0.5em;
}
p { margin: 0 0 1em; }
a { color: inherit; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy-deep);
  border-bottom: 3px solid var(--gold);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
}
.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--white);
}
.brand span { color: var(--gold-light); }
.main-nav { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.main-nav a {
  text-decoration: none; color: #dfe3ec; font-weight: 500; font-size: 0.95rem;
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold); color: var(--navy-deep) !important;
  padding: 8px 16px; border-radius: 4px; font-weight: 600;
}
.nav-cta:hover { background: var(--gold-light); color: var(--navy-deep) !important; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 90px 0 70px;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem;
  color: var(--gold-light); font-weight: 600;
}
.hero h1 {
  color: var(--white); font-size: clamp(2rem, 4.5vw, 3rem); max-width: 780px;
}
.hero-sub { max-width: 620px; font-size: 1.15rem; color: #d7dbe6; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin: 24px 0; }
.hero-rating { display: flex; align-items: center; gap: 10px; color: #d7dbe6; font-size: 0.95rem; }
.stars { color: var(--gold-light); letter-spacing: 2px; }

.btn {
  display: inline-block; padding: 13px 26px; border-radius: 4px;
  text-decoration: none; font-weight: 600; font-size: 1rem;
  transition: transform 0.15s ease, background 0.2s ease;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--navy-deep); }
.btn-primary:hover { background: var(--gold-light); }
.btn-ghost { border-color: var(--gold-light); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); }

/* Services */
.services { padding: 80px 0; }
.services h2 { text-align: center; font-size: 2rem; }
.service-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; margin-top: 40px;
}
.service-card {
  background: var(--white); border: 1px solid #e6e0d2; border-radius: 8px;
  padding: 28px 22px; text-align: center;
  box-shadow: 0 2px 10px rgba(24,40,72,0.05);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover { box-shadow: 0 8px 24px rgba(24,40,72,0.12); transform: translateY(-4px); }
.service-icon { font-size: 2.2rem; margin-bottom: 10px; }
.service-card h3 { font-size: 1.15rem; }
.service-card p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* About */
.about { background: var(--navy); color: var(--white); padding: 70px 0; }
.about-text { max-width: 700px; margin: 0 auto; text-align: center; }
.about h2 { color: var(--gold-light); }
.about p { color: #e1e4ec; font-size: 1.05rem; }

/* Gallery */
.gallery { padding: 80px 0; text-align: center; }
.section-sub { color: var(--muted); margin-top: -8px; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px; margin-top: 30px;
}
.gallery-tile {
  aspect-ratio: 4/3; border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; color: rgba(255,255,255,0.85);
}
.tile-1 { background: linear-gradient(145deg, #182848, #2c3f6b); }
.tile-2 { background: linear-gradient(145deg, #c9a24b, #a9803a); }
.tile-3 { background: linear-gradient(145deg, #101c34, #3a4f7c); }
.tile-4 { background: linear-gradient(145deg, #e4c877, #c9a24b); }

/* Reviews */
.reviews { background: var(--white); padding: 80px 0; }
.reviews h2 { text-align: center; }
.review-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 36px;
}
.review-card {
  margin: 0; background: var(--cream); border-left: 4px solid var(--gold);
  padding: 24px; border-radius: 6px; font-style: italic;
}
.review-card p { color: var(--ink); }
.review-card cite { font-style: normal; font-weight: 600; color: var(--navy); display: block; }
.review-stars { color: var(--gold); margin-left: 6px; letter-spacing: 1px; }

/* Hours + Map */
.hours-map { padding: 70px 0; }
.hours-map-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 14px; }
.hours-table th, .hours-table td { text-align: left; padding: 8px 0; border-bottom: 1px solid #e6e0d2; font-weight: 400; }
.hours-table th { color: var(--navy); font-weight: 600; width: 40%; }
.address { color: var(--muted); margin-top: 14px; }
.map-block { min-height: 320px; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 18px rgba(24,40,72,0.12); }
.map-block iframe { display: block; height: 100%; min-height: 320px; }

/* Contact */
.contact { background: var(--navy-deep); color: var(--white); padding: 80px 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact h2 { color: var(--white); }
.contact p { color: #d7dbe6; }
.contact-address { margin-top: 18px; font-size: 0.95rem; }
.contact-form { display: flex; flex-direction: column; gap: 6px; }
.contact-form label { font-size: 0.9rem; color: var(--gold-light); margin-top: 8px; }
.contact-form input, .contact-form textarea {
  padding: 12px 14px; border-radius: 4px; border: 1px solid #3a4666;
  background: #1f2c4e; color: var(--white); font-family: inherit; font-size: 1rem;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #8a91ab; }
.contact-form button { margin-top: 18px; align-self: flex-start; }

/* Footer */
.site-footer { background: var(--navy-deep); border-top: 1px solid #2a3556; padding: 22px 0; }
.site-footer p { margin: 0; color: #aab0c4; font-size: 0.88rem; text-align: center; }
.site-footer a { color: var(--gold-light); text-decoration: none; }

@media (max-width: 720px) {
  .header-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .main-nav { width: 100%; gap: 14px; overflow-x: auto; padding-bottom: 4px; }
  .hours-map-inner, .contact-inner { grid-template-columns: 1fr; }
  .map-block { min-height: 260px; }
}

/* Scroll-reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Open/Closed status badge */
.hours-heading { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.status-badge {
  display: none; align-items: center; gap: 6px;
  font-family: 'Source Sans 3', sans-serif; font-size: 0.82rem; font-weight: 600;
  padding: 5px 13px; border-radius: 999px; letter-spacing: 0.02em;
}
.status-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.status-badge.status-open { background: rgba(59,140,90,0.12); color: #2f7a4f; }
.status-badge.status-open::before { background: #2f7a4f; }
.status-badge.status-closed { background: rgba(92,98,112,0.12); color: var(--muted); }
.status-badge.status-closed::before { background: var(--muted); }

/* Sticky mobile call bar */
.mobile-call-bar { display: none; }
@media (max-width: 640px) {
  body { padding-bottom: 78px; }
  .mobile-call-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    padding: 10px 16px; background: var(--navy-deep); border-top: 2px solid var(--gold);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.18);
  }
  .mobile-call-btn {
    flex: 1; text-align: center; padding: 13px; border-radius: 4px;
    background: var(--gold); color: var(--navy-deep); font-weight: 700;
    text-decoration: none; font-size: 1rem;
  }
}
