:root {
  --gold: #c8a96a;
  --gold-dark: #a98b4f;
  --cream: #faf7f2;
  --ink: #2b2b2b;
  --muted: #6b6b6b;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 300;
}

.container { width: 90%; max-width: 1100px; margin: 0 auto; }

h1, h2, h3, .logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(200, 169, 106, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}

.logo {
  font-size: 1.8rem;
  color: var(--gold-dark);
  text-decoration: none;
  letter-spacing: 2px;
}

.nav-links { list-style: none; display: flex; gap: 2rem; }

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--ink);
  transition: 0.3s;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(43, 43, 43, 0.45), rgba(43, 43, 43, 0.45)),
    url('https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?auto=format&fit=crop&w=1600&q=80')
    center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 8rem 0;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); line-height: 1.1; margin-bottom: 1.5rem; }

.hero-sub {
  max-width: 560px;
  margin: 0 auto 2.2rem;
  font-size: 1.05rem;
  font-weight: 300;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  letter-spacing: 1px;
  font-size: 0.85rem;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.2s;
}

.btn:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* Sections */
.section { padding: 5rem 0; text-align: center; }
.section-alt { background: #fff; }

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold-dark);
  margin-bottom: 0.8rem;
}

.section-intro {
  max-width: 560px;
  margin: 0 auto 3rem;
  color: var(--muted);
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
}

.card {
  background: var(--cream);
  border: 1px solid rgba(200, 169, 106, 0.25);
  padding: 2.5rem 1.5rem;
  border-radius: 4px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.section-alt .card { background: #fff; }

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(168, 139, 79, 0.15);
}

.card-icon { font-size: 2.2rem; color: var(--gold); margin-bottom: 1rem; }
.card h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* Over */
.over-inner { max-width: 720px; margin: 0 auto; }
.over-inner p { color: var(--muted); font-size: 1.05rem; }

/* Quote */
.quote-banner {
  background: var(--gold);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}

.quote-banner blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-style: italic;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #cfcfcf;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.85rem;
}

/* Fade-in */
.section, .quote-banner { opacity: 0; transform: translateY(20px); transition: opacity 0.7s, transform 0.7s; }
.section.visible, .quote-banner.visible { opacity: 1; transform: none; }

/* Mobile */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid rgba(200, 169, 106, 0.25);
  }
  .nav-links.open { max-height: 300px; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 1rem 5%; }
  .hero { padding: 5rem 0; }
}
