:root {
  --black: #171416;
  --charcoal: #2a2427;
  --gold: #c6a15b;
  --gold-light: #e8d3a3;
  --blush: #f3e6e4;
  --cream: #faf6f2;
  --text-muted: #6b6266;
  --radius: 10px;
  --max-width: 1140px;
  --shadow: 0 10px 30px rgba(23, 20, 22, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--black);
  background: var(--cream);
  line-height: 1.6;
}

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

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

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 8px;
}

.eyebrow.center { text-align: center; }

.section-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 24px;
}

.section-title.center { text-align: center; }

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(23, 20, 22, 0.95);
  backdrop-filter: blur(6px);
}

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

.logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.3rem;
  color: var(--cream);
  letter-spacing: 0.5px;
}

.logo span { color: var(--gold); }

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: var(--blush);
  font-size: 0.95rem;
}

.nav a:hover { color: var(--gold); }

.nav-cta { margin-left: 20px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--cream);
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1470259078422-826894b933aa?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,20,22,0.75) 0%, rgba(23,20,22,0.55) 45%, rgba(23,20,22,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--cream);
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-content .eyebrow { color: var(--gold-light); }

.hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin: 0 0 20px;
  letter-spacing: 1px;
}

.hero h1 span { color: var(--gold); }

.hero-sub {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 1.15rem;
  color: var(--blush);
}

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

/* Brand strip */
.brand-strip {
  background: var(--black);
  padding: 22px 0;
}

.brand-strip-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  color: var(--gold-light);
  letter-spacing: 2px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

/* Services */
.services {
  padding: 90px 0;
}

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

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}

.service-card h3 {
  margin: 0 0 10px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.2rem;
}

.service-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* About */
.about {
  background: var(--charcoal);
  color: var(--blush);
  padding: 90px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about .eyebrow { color: var(--gold-light); }

.about-text p { color: var(--blush); }

.about-text .btn-outline { margin-top: 12px; }

/* Gallery */
.gallery {
  padding: 90px 0;
}

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

.gallery-grid img {
  border-radius: var(--radius);
  height: 320px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* Hours & Location */
.hours-location {
  background: var(--blush);
  padding: 90px 0;
}

.hours-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hours-table th, .hours-table td {
  text-align: left;
  padding: 12px 20px;
  border-bottom: 1px solid #eee;
  font-weight: normal;
}

.hours-table th { color: var(--black); font-weight: 600; }
.hours-table td { color: var(--text-muted); text-align: right; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }

.address {
  font-weight: 600;
  margin-bottom: 24px;
}

.map-block {
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* CTA */
.cta {
  background: var(--black);
  color: var(--cream);
  padding: 70px 0;
  text-align: center;
}

.cta h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 12px;
}

.cta p { color: var(--blush); margin: 0 0 28px; }

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: var(--blush);
  padding: 50px 0 20px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo { margin: 0 0 10px; }

.footer-inner p { margin: 4px 0; color: var(--blush); }
.footer-inner a:hover { color: var(--gold); }

.footer-social {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.footer-bottom {
  padding-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* Responsive */
@media (max-width: 860px) {
  .about-inner, .hours-inner {
    grid-template-columns: 1fr;
  }

  .map-block { min-height: 280px; }
}

@media (max-width: 768px) {
  .nav, .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header.open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 20px 24px;
    gap: 16px;
  }

  .site-header.open .nav-cta {
    display: inline-block;
    margin: 16px 24px 20px;
  }
}
