:root {
  --bg: #fefaf6;
  --text: #3c2f2e;
  --muted: #7d6c67;
  "--card": #ffffff;
  --accent: #c06c3e;
  --accent-2: #d99e7e;
  --gold: #e0b47e;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: grid;
  align-items: center;
  background-image: url('./images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(60,47,46,0.6), rgba(60,47,46,0.82));
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 5rem 0;
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold);
}

.eyebrow.dark {
  color: var(--accent);
}

h1, h2, h3 {
  margin: 0 0 1rem;
  line-height: 1.08;
}

h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(3.4rem, 8vw, 6rem);
  letter-spacing: -0.05em;
}

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

.lead {
  color: rgba(255,255,255,0.88);
  font-size: 1.08rem;
  max-width: 720px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  transition: all 0.3s ease-in-out;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  border: 1px solid var(--accent);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.btn-secondary {
  color: white;
  border: 1px solid var(--gold);
  background: rgba(224, 180, 126, 0.12);
}

.btn-secondary:hover {
  background: rgba(224, 180, 126, 0.24);
}

.full { width: 100%; }

.section {
  padding: 5rem 0;
}

.alt {
  background: linear-gradient(180deg, #fefaf6, #f8f0e8);
}

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.split-grid.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.highlight-card,
.card,
.contact-card,
.mood-box {
  background: var(--card);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 24px 50px rgba(60, 47, 46, 0.08);
}

.highlight-card {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
}

.highlight-card p {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.4;
}

.section-title {
  max-width: 760px;
  margin-bottom: 2rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  text-align: center;
}

.card img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1rem;
}

.card h3 {
  font-family: 'Merriweather', serif;
  margin-bottom: 0.5rem;
}

.card p,
.section p,
.contact-card p {
  color: var(--muted);
}

.mood-box {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.mood-box span {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}

.contact-card {
  text-align: center;
}

footer {
  text-align: center;
  padding: 2rem 0;
  background: #3c2f2e;
  color: #e0b47e;
}

@media (max-width: 900px) {
  .split-grid,
  .cards {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    justify-content: center;
  }
}
