:root {
  --navy: #123a5c;
  --navy-dark: #0b2740;
  --teal: #1d7a7a;
  --teal-light: #eaf6f6;
  --amber: #d98b3f;
  --amber-dark: #b96f2a;
  --cream: #faf7f2;
  --ink: #1e2a33;
  --ink-soft: #566573;
  --border: #e3e0d8;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(11, 39, 64, 0.08);
  --max: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--navy-dark);
  line-height: 1.15;
}

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

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

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 10px;
}

.section-lead {
  color: var(--ink-soft);
  max-width: 620px;
  font-size: 1.05rem;
  margin-top: 12px;
}

h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 8px 18px rgba(217, 139, 63, 0.35);
}
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: inherit;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

/* Topbar */
.topbar {
  background: var(--navy-dark);
  color: #cfe0ec;
  font-size: 0.82rem;
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.topbar-inner a { font-weight: 600; color: #fff; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.logo-mark {
  background: var(--navy);
  color: #fff;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 8px 10px;
  border-radius: 8px;
}
.logo-text {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-dark);
  line-height: 1.2;
}
.nav-links {
  display: flex;
  gap: 26px;
  font-weight: 600;
  font-size: 0.92rem;
}
.nav-links a { color: var(--ink); opacity: 0.85; }
.nav-links a:hover { opacity: 1; color: var(--teal); }
.nav-cta { padding: 10px 22px; font-size: 0.88rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy-dark);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(29,122,122,0.55), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(217,139,63,0.35), transparent 50%),
    linear-gradient(135deg, var(--navy-dark), var(--navy) 60%, #164a63);
}
.hero-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 130px 24px 110px;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffd9a8;
  margin-bottom: 18px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 760px;
  margin-bottom: 20px;
}
.hero-sub {
  max-width: 560px;
  font-size: 1.1rem;
  color: #d7e4ee;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 28px;
}
.hero-stats li { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong { font-family: 'Fraunces', serif; font-size: 1.4rem; }
.hero-stats span { font-size: 0.85rem; color: #c1d3e0; }

/* Services */
.service-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(11,39,64,0.12);
}
.service-icon {
  font-size: 1.9rem;
  margin-bottom: 14px;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.service-card p { color: var(--ink-soft); font-size: 0.95rem; }

/* Gallery */
.gallery-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-item.gallery-tall { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(11,39,64,0.82), transparent);
  color: #fff;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 0.98rem;
}

/* Why Us */
.why-us { background: var(--teal-light); }
.why-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}
.why-list {
  list-style: none;
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.why-list li { display: flex; gap: 18px; }
.why-num {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: var(--teal);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.why-list h4 { font-size: 1.05rem; margin-bottom: 4px; }
.why-list p { color: var(--ink-soft); font-size: 0.95rem; }
.disclaimer { margin-top: 24px; font-size: 0.82rem; color: var(--ink-soft); font-style: italic; }

.why-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--amber);
}
.why-card-2 { border-left-color: var(--teal); margin-left: 28px; }
.why-card-3 { border-left-color: var(--navy); margin-left: 0; }
.why-card-emoji { font-size: 1.6rem; display: block; margin-bottom: 8px; }
.why-card strong { display: block; font-family: 'Fraunces', serif; margin-bottom: 4px; color: var(--navy-dark); }
.why-card p { font-size: 0.88rem; color: var(--ink-soft); }

/* Hours */
.hours-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: stretch;
}
.hours-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.hours-card h3 { margin-bottom: 18px; font-size: 1.2rem; }
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 26px; }
.hours-table td { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.hours-table td:first-child { color: var(--ink-soft); font-weight: 600; }
.hours-table td:last-child { text-align: right; color: var(--navy-dark); font-weight: 600; }
.hours-contact { display: flex; gap: 30px; margin-bottom: 26px; flex-wrap: wrap; }
.hours-contact p { font-size: 0.92rem; }
.hours-contact a { color: var(--teal); font-weight: 600; }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* Reviews */
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}
.review-badge:hover { transform: translateY(-1px); }
.review-badge-stars { color: var(--amber); font-weight: 700; }
.review-note a { color: var(--teal); font-weight: 600; }
.review-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.stars { color: var(--amber); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-card p { color: var(--ink); font-size: 0.95rem; margin-bottom: 16px; }
.reviewer { font-size: 0.85rem; color: var(--ink-soft); font-weight: 600; }
.review-note { margin-top: 30px; color: var(--ink-soft); font-size: 0.92rem; }

/* Contact */
.contact { background: var(--navy-dark); color: #fff; }
.contact h2, .contact .eyebrow { color: #fff; }
.contact .eyebrow { color: #ffd9a8; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact .section-lead { color: #c1d3e0; }
.contact-details { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; font-size: 0.95rem; }
.contact-details a { color: #ffd9a8; font-weight: 600; }

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow);
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
.form-row input, .form-row textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
}
.form-submit { margin-top: 6px; }
.form-status { font-size: 0.88rem; color: var(--teal); min-height: 1.2em; }

/* Footer */
.footer { background: var(--navy-dark); color: #cfe0ec; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 24px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand { display: flex; gap: 14px; align-items: flex-start; max-width: 320px; }
.footer-brand p { font-size: 0.85rem; color: #a9c0d1; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 0.9rem; align-items: flex-start; }
.footer-contact a { font-weight: 700; color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 18px 24px;
  font-size: 0.82rem;
  color: #7f9bb0;
}

/* Responsive */
@media (max-width: 900px) {
  .why-inner, .hours-grid, .contact-inner { grid-template-columns: 1fr; }
  .why-visual { padding-top: 0; }
  .why-card-2, .why-card-3 { margin-left: 0; }
  .map-embed { min-height: 300px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.gallery-tall { grid-row: span 2; }
}

@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item.gallery-tall { grid-row: span 1; }
}

@media (max-width: 760px) {
  .topbar-inner { font-size: 0.72rem; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: #fff;
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    box-shadow: -12px 0 30px rgba(0,0,0,0.15);
  }
  .nav-links.open { transform: translateX(0); }
  .hamburger { display: flex; z-index: 110; }
  .nav-cta { display: none; }
  .logo-text { font-size: 0.82rem; }
  .hero-inner { padding: 96px 20px 80px; }
  .hero-stats { gap: 26px; }
  .section-inner { padding: 64px 20px; }
}
