/* ---------- Base ---------- */
:root {
  --black: #141210;
  --ink: #1c1a18;
  --cream: #f6f2ec;
  --cream-dark: #ece5d8;
  --gold: #a8935f;
  --line: rgba(20,18,16,0.12);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  margin: 0;
}

.eyebrow, .hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}

.section { padding: 6.5rem 1.5rem; }
.section-inner { max-width: 1080px; margin: 0 auto; }

.btn {
  display: inline-block;
  padding: 0.9rem 2.1rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  transition: background 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.btn-primary {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}
.btn-primary:hover { opacity: 0.82; }

.btn-outline {
  color: var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--cream); }

.btn-ghost {
  color: var(--cream);
  border-color: rgba(246,242,236,0.6);
}
.btn-ghost:hover { background: var(--cream); color: var(--black); }

.btn-ghost-dark {
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost-dark:hover { background: var(--ink); color: var(--cream); }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(246,242,236,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand img { height: 44px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a { border-bottom: 1px solid transparent; padding-bottom: 2px; }
.main-nav a:hover { border-color: var(--gold); }
.nav-phone { color: var(--gold); }

.nav-cta { flex-shrink: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../assets/img/hero.jpg') center 30% / cover no-repeat;
  color: var(--cream);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,9,8,0.55) 0%, rgba(10,9,8,0.45) 45%, rgba(10,9,8,0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  max-width: 720px;
}

.hero-eyebrow {
  color: var(--cream);
  opacity: 0.85;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3.4rem, 11vw, 6.5rem);
  letter-spacing: 0.06em;
  line-height: 0.95;
  margin-bottom: 1.4rem;
}

.hero-title span {
  display: block;
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(0.95rem, 2vw, 1.35rem);
  letter-spacing: 0.55em;
  text-transform: uppercase;
  margin-top: 0.7rem;
  padding-left: 0.55em; /* optical centering for the letter-spacing */
}

.hero-tagline {
  font-size: 1.15rem;
  font-weight: 300;
  margin: 0 0 2.5rem;
  opacity: 0.92;
}

.hero .hero-actions { justify-content: center; }

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--cream);
  font-size: 1.3rem;
  opacity: 0.75;
  animation: bob 2.2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- Services ---------- */
.services { background: var(--cream); text-align: center; }
.services h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 3.5rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  background: var(--cream);
  padding: 2.6rem 1.6rem;
  text-align: left;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(28,26,24,0.75);
  margin: 0;
}

/* ---------- About ---------- */
.about {
  background: var(--black);
  color: var(--cream);
}

.about-inner { text-align: center; }

.about-text { max-width: 700px; margin: 0 auto; }

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

.about h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.6rem;
}

.about p {
  font-size: 1.08rem;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(246,242,236,0.85);
  margin-bottom: 2.2rem;
}

/* ---------- Book ---------- */
.book {
  background: var(--cream-dark);
  text-align: center;
}

.book h2 { font-size: clamp(2rem, 4vw, 2.8rem); }

.book-sub {
  max-width: 560px;
  margin: 1.2rem auto 2.4rem;
  font-weight: 300;
  color: rgba(28,26,24,0.75);
  line-height: 1.7;
}

.book .hero-actions { justify-content: center; }

/* ---------- Visit ---------- */
.visit { background: var(--cream); }

.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.visit h2 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 2.2rem; }

.detail-block { margin-bottom: 2.2rem; }

.detail-block h3 {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.detail-block p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.hours-table { border-collapse: collapse; font-size: 1rem; }
.hours-table td { padding: 0.3rem 1.5rem 0.3rem 0; }
.hours-table td:first-child { color: rgba(28,26,24,0.6); }

.social-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

.visit-map {
  min-height: 420px;
  background: var(--cream-dark);
  border: 1px solid var(--line);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: rgba(246,242,236,0.7);
  text-align: center;
  padding: 3rem 1.5rem;
}

.footer-logo {
  height: 40px;
  margin: 0 auto 1.2rem;
  filter: invert(1) brightness(1.1);
}

.site-footer p { margin: 0.3rem 0; font-size: 0.9rem; font-weight: 300; }
.copyright { opacity: 0.6; font-size: 0.78rem; margin-top: 1rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .visit-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .section { padding: 4.5rem 1.25rem; }
  .header-inner { padding: 0.5rem 1.1rem; }
  .brand img { height: 36px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
}
