:root {
  --black: #1c1917;
  --cream: #faf5f0;
  --cream-2: #f3e9e1;
  --blush: #e7c3ca;
  --blush-deep: #d99aa8;
  --gold: #a5793f;
  --gold-deep: #7d5a2c;
  --text: #2b2624;
  --text-soft: #6b615b;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(28, 25, 23, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Jost', sans-serif;
  color: var(--text);
  background: var(--cream);
  font-weight: 400;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--black);
  margin: 0 0 0.4em;
  line-height: 1.15;
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-deep);
  margin-bottom: 0.8em;
}
.eyebrow.center { text-align: center; }
h2.center { text-align: center; margin-bottom: 0.6em; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  border: 1.5px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}
.btn-primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover { background: var(--black); color: #fff; }
.btn-ghost {
  border: 1.5px solid var(--gold);
  color: var(--gold-deep);
  padding: 10px 22px;
  font-size: 0.88rem;
}
.btn-ghost:hover { background: var(--gold); color: #fff; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(165, 121, 63, 0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 20px;
}
.brand img { height: 56px; display: block; }
.nav {
  display: flex;
  gap: 34px;
  margin-left: auto;
  margin-right: 30px;
}
.nav a {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}
.nav a:hover { color: var(--gold-deep); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--black);
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,25,23,0.55) 0%, rgba(28,25,23,0.38) 40%, rgba(28,25,23,0.62) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-content .eyebrow { color: var(--blush); text-align: center; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.8rem, 7vw, 5rem);
  margin-bottom: 0.3em;
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 1.8em;
  color: #f4ece7;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.6em;
}
.hero .btn-outline {
  color: #fff;
  border-color: #fff;
}
.hero .btn-outline:hover { background: #fff; color: var(--black); }
.hero-hours {
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--cream-2);
}

/* About */
.about {
  padding: 100px 24px 70px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 { font-size: 2.3rem; }
.about-text p { color: var(--text-soft); font-size: 1.05rem; }
.about-badges {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.badge {
  background: var(--blush);
  border-radius: var(--radius);
  padding: 22px 26px;
  font-weight: 500;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
}
.badge span {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold-deep);
}

/* Services */
.services {
  background: var(--cream-2);
  padding: 90px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 50px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  transition: transform 0.25s ease;
}
.service-card:hover { transform: translateY(-6px); }
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4em;
}
.service-card p {
  color: var(--text-soft);
  font-size: 0.96rem;
  margin: 0;
}
.services-note {
  text-align: center;
  margin-top: 40px;
  color: var(--text-soft);
}
.services-note a { color: var(--gold-deep); font-weight: 500; }

/* Gallery */
.gallery { padding: 90px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3/4;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* Reviews */
.reviews {
  background: var(--black);
  padding: 90px 0;
  color: #fff;
}
.reviews h2, .reviews .eyebrow { color: #fff; }
.reviews .eyebrow { color: var(--blush); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 50px;
}
.reviews blockquote {
  margin: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(231,195,202,0.25);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.reviews blockquote p {
  font-style: italic;
  color: #ecdfda;
  font-size: 1rem;
}
.reviews cite {
  color: var(--blush);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  font-style: normal;
}

/* Visit */
.visit { padding: 90px 0; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.visit-info h2 { font-size: 2.3rem; }
.info-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}
.info-list strong {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--black);
}
.info-list a { color: var(--gold-deep); font-weight: 500; }
.visit-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}
.visit-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.site-footer {
  background: var(--cream-2);
  padding: 50px 0 30px;
  text-align: center;
  border-top: 1px solid rgba(165,121,63,0.2);
}
.footer-logo { height: 46px; margin-bottom: 16px; opacity: 0.9; }
.footer-inner p { margin: 0 0 6px; color: var(--text-soft); font-size: 0.92rem; }
.footer-inner a { color: var(--gold-deep); }
.footer-copy { font-size: 0.8rem; color: #a89e97; margin-top: 10px; }

/* Responsive */
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 20px;
    display: none;
    border-bottom: 1px solid rgba(165,121,63,0.15);
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .nav-toggle { display: block; }
  .header-call { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about { padding: 70px 24px 50px; }
  .services, .gallery, .reviews, .visit { padding: 60px 0; }
}
