:root {
  --gold: #b8962e;
  --gold-light: #d4af5a;
  --gold-pale: #e8d49a;
  --cream: #f5f2eb;
  --cream-dark: #ede8dc;
  --dark: #1a1710;
  --mid: #3a3420;
  --text: #2c2718;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--cream);
  color: var(--text);
  font-family: 'Cormorant Garamond', Georgia, serif;
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(184,150,46,0.08) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='0.6' fill='%23b8962e' opacity='0.18'/%3E%3C/svg%3E");
  position: relative;
  padding: 60px 20px;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(184,150,46,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.logo-wrap {
  animation: fadeUp 1s ease both;
}

.logo-wrap img {
  width: min(340px, 80vw);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 32px rgba(184,150,46,0.18));
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--mid);
  margin-top: 28px;
  animation: fadeUp 1s 0.3s ease both;
}

.hero-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 32px auto;
  animation: fadeUp 1s 0.5s ease both;
}

.hero-cta {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-pale);
  padding: 13px 36px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  animation: fadeUp 1s 0.7s ease both;
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}

/* ── ABOUT ── */
.about {
  background-color: var(--dark);
  color: var(--cream-dark);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Crect x='39.5' y='0' width='1' height='80' fill='%23b8962e' opacity='0.04'/%3E%3Crect x='0' y='39.5' width='80' height='1' fill='%23b8962e' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.about-inner {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.about h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 28px;
}

.about p {
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(237,232,220,0.8);
}

.gold-ornament {
  display: block;
  color: var(--gold);
  font-size: 1.8rem;
  margin: 32px auto;
  opacity: 0.7;
  letter-spacing: 0.3em;
}

/* ── WHAT WE OFFER ── */
.offer {
  background: var(--cream);
  padding: 100px 20px;
}

.offer-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.offer h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
}

.offer-sub {
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--mid);
  margin-bottom: 64px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  background: var(--gold-pale);
}

.offer-item {
  background: var(--cream);
  padding: 44px 28px;
  text-align: left;
  transition: background 0.3s;
}

.offer-item:hover {
  background: #faf7f0;
}

.offer-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.offer-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}

.offer-item p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mid);
}

/* ── SERVICES ── */
.services {
  background: var(--dark);
  color: var(--cream-dark);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Crect x='39.5' y='0' width='1' height='80' fill='%23b8962e' opacity='0.04'/%3E%3Crect x='0' y='39.5' width='80' height='1' fill='%23b8962e' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.services-inner {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
}

.services h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 28px;
}

.services p {
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(237,232,220,0.8);
  margin-bottom: 40px;
}

.services-cta {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,150,46,0.4);
  padding: 13px 36px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.services-cta:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* ── VISIT ── */
.visit {
  background: var(--cream-dark);
  padding: 100px 20px;
}

.visit-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.visit h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 32px;
  grid-column: 1 / -1;
  text-align: center;
}

.visit-block h3 {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.visit-block p,
.visit-block a {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text);
  text-decoration: none;
}

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

.visit-block .address-note {
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(58,52,32,0.65);
  margin-top: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(184,150,46,0.12);
  font-size: 0.95rem;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  font-weight: 400;
  color: var(--text);
}

.hours-row .time {
  color: var(--mid);
  font-style: italic;
}

/* ── MAP ── */
.map-wrap {
  width: 100%;
  height: 320px;
  background: var(--cream-dark);
  border: 1px solid var(--gold-pale);
  position: relative;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(237,232,220,0.5);
  text-align: center;
  padding: 40px 20px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

footer span {
  color: var(--gold);
  opacity: 0.7;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .visit-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }
}
