:root {
  --black: #141210;
  --near-black: #1c1a17;
  --cream: #faf7f2;
  --off-white: #f2ede4;
  --gold: #b3893a;
  --gold-light: #d4af6a;
  --grey: #6b6560;
  --line: #e4ddd0;
  --shadow: 0 10px 30px rgba(0,0,0,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--black);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}

.section { padding: 96px 0; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}
.btn-solid { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-solid:hover { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-ghost { color: var(--cream); border-color: rgba(250,247,242,0.5); }
.btn-ghost:hover { background: rgba(250,247,242,0.12); border-color: var(--cream); }
.btn-outline { border-color: var(--black); color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--cream); }
.btn-outline-dark { border-color: var(--black); color: var(--black); margin-top: 8px; }
.btn-outline-dark:hover { background: var(--black); color: var(--cream); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(20,18,16,0.88);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 40px; width: 40px; filter: invert(1); }
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.site-nav { display: flex; gap: 32px; }
.site-nav a {
  color: var(--off-white);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.site-nav a:hover { opacity: 1; color: var(--gold-light); }
.header-call {
  color: var(--cream);
  border-color: rgba(250,247,242,0.4);
  white-space: nowrap;
}
.header-call:hover { background: rgba(250,247,242,0.12); border-color: var(--cream); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('assets/hero-bg.jpg') center 30% / cover no-repeat;
  padding: 140px 24px 80px;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,9,8,0.72) 0%, rgba(10,9,8,0.55) 45%, rgba(10,9,8,0.82) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  min-width: 0;
}
.hero-logo {
  height: 84px;
  width: 84px;
  margin-bottom: 24px;
  filter: invert(1) drop-shadow(0 2px 10px rgba(0,0,0,0.4));
}
.hero-content h1 {
  color: var(--cream);
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  line-height: 1;
  margin-bottom: 14px;
}
.hero-tagline {
  color: var(--gold-light);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-sub {
  color: var(--off-white);
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 36px;
}
.hero-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; min-width: 0; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-text h2 { font-size: 2.6rem; margin-bottom: 22px; }
.about-text p { color: var(--grey); margin-bottom: 16px; font-size: 1.05rem; max-width: 520px; }
.about-highlights { display: flex; flex-direction: column; gap: 28px; }
.highlight {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.highlight:last-child { border-bottom: none; }
.highlight-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 600;
}
.highlight p { font-size: 1.02rem; }

/* Offer */
.offer { background: var(--off-white); }
.offer h2 { font-size: 2.6rem; margin-bottom: 48px; max-width: 620px; }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.offer-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 34px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.offer-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.offer-card p { color: var(--grey); font-size: 0.98rem; }

/* Hours & Location */
.hours-location { background: var(--black); color: var(--cream); }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.hours-location h2 { font-size: 2.4rem; margin-bottom: 26px; color: var(--cream); }
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.hours-table td {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  font-size: 1.02rem;
}
.hours-table td:last-child { text-align: right; color: var(--gold-light); }
.hours-note { color: rgba(250,247,242,0.65); font-size: 0.92rem; }
.hours-note a { color: var(--gold-light); }
.location-block address {
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 22px;
  color: var(--off-white);
}
.location-block .btn-outline-dark {
  border-color: var(--cream);
  color: var(--cream);
}
.location-block .btn-outline-dark:hover { background: var(--cream); color: var(--black); }

/* Footer */
.site-footer { background: var(--near-black); color: var(--off-white); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; gap: 16px; align-items: flex-start; }
.footer-logo { height: 44px; width: 44px; filter: invert(1); flex-shrink: 0; }
.footer-brand p { color: rgba(250,247,242,0.6); font-size: 0.95rem; }
.footer-contact h3 {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 14px;
}
.footer-contact p { color: rgba(250,247,242,0.75); margin-bottom: 8px; font-size: 0.98rem; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(250,247,242,0.4);
}

/* Responsive */
@media (max-width: 860px) {
  .site-nav { display: none; }
  .about-grid, .hours-grid, .footer-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 72px 0; }
}
@media (max-width: 560px) {
  .offer-grid { grid-template-columns: 1fr; }
  .header-call { display: none; }
  .hero-content h1 { font-size: 3rem; }
  .container { padding: 0 20px; }
}
