:root {
  --navy: #0d141f;
  --panel: #16202f;
  --brass: #c19a49;
  --brass-dark: #9c7a35;
  --cream: #faf7f0;
  --gray: #675f52;
  --border: #e6ddcb;
  --radius: 4px;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, .logo {
  font-family: 'Fraunces', serif;
  font-weight: 600;
}

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

a { color: inherit; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 3px solid var(--brass);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  font-size: 21px;
  color: #fff;
  text-decoration: none;
}
.logo span { color: var(--brass); font-weight: 400; font-size: 17px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #d3c9b4;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.nav-links a:hover { color: #fff; }

.btn-nav {
  background: var(--brass);
  padding: 9px 18px;
  border-radius: var(--radius);
  color: #16202f !important;
  font-weight: 600 !important;
}
.btn-nav:hover { background: var(--brass-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
}

/* Hero */
.hero {
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 110px 0 90px;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  color: var(--brass);
  margin: 0 0 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.eyebrow-dark { color: var(--brass-dark); }

.hero h1 {
  font-size: clamp(34px, 5.5vw, 58px);
  margin: 0 0 18px;
  line-height: 1.12;
}

.hero-sub {
  max-width: 600px;
  margin: 0 auto 34px;
  font-size: 17px;
  color: #d3c9b4;
  font-family: 'Inter', sans-serif;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-primary {
  background: var(--brass);
  color: #16202f;
}
.btn-primary:hover { background: var(--brass-dark); color: #fff; }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

/* Stats */
.stats {
  background: var(--panel);
  padding: 44px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 34px;
  color: var(--brass);
  font-weight: 600;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: #c8bea9;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 6px;
}

/* Services */
.services { padding: 90px 0; background: var(--cream); }
.services h2 { font-size: 32px; text-align: center; margin-bottom: 44px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--brass);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.service-card h3 {
  font-size: 20px;
  margin: 0 0 10px;
}

.service-card p {
  margin: 0;
  color: var(--gray);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
}

.services-note {
  text-align: center;
  margin-top: 34px;
  color: var(--gray);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

/* Gallery */
.gallery {
  padding: 90px 0;
  background: var(--navy);
  color: #fff;
}

.gallery h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-grid figure:hover img { transform: scale(1.05); }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* About */
.about {
  padding: 90px 0;
  background: var(--cream);
  text-align: center;
}

.about-inner { max-width: 680px; margin: 0 auto; }
.about h2 { font-size: 32px; margin-bottom: 18px; }
.about p { color: var(--gray); font-size: 16px; font-family: 'Inter', sans-serif; }

/* Hours & Location */
.hours { padding: 90px 0; background: #fff; }

.hours-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.hours h2, .hours-location h2 { font-size: 30px; margin-bottom: 20px; }

.hours-table table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th, .hours-table td {
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 400;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
}

.hours-table th { color: var(--navy); font-weight: 600; }
.hours-table td { color: var(--gray); }

.hours-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray);
  font-family: 'Inter', sans-serif;
}

.hours-location address {
  font-style: normal;
  font-size: 16px;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.hours-location p a {
  text-decoration: none;
  color: var(--brass-dark);
  font-weight: 600;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
}

.hours-location .btn { margin-top: 14px; }

/* Footer */
.site-footer {
  background: var(--navy);
  color: #b3a992;
  padding: 26px 0;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-inner a {
  text-decoration: none;
  color: var(--brass);
}

/* Responsive */
@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 28px;
    gap: 18px;
    display: none;
    border-bottom: 3px solid var(--brass);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hours-inner { grid-template-columns: 1fr; gap: 40px; }
}
