:root {
  --black: #080705;
  --cream: #fffaf1;
  --gold: #c8a262;
  --gold-light: #ead4ad;
  --brown: #7d6638;
  --text: #2a241c;
  --muted: #746a5e;
  --card: rgba(255, 250, 241, 0.82);
  --shadow: 0 24px 70px rgba(78, 55, 22, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #fff 0%, var(--cream) 46%, #f6ead8 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 250, 241, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 162, 98, 0.2);
}

.brand img { width: 190px; display: block; }
.nav { display: flex; gap: 28px; font-size: 0.9rem; }
a { color: inherit; text-decoration: none; }
.nav a { color: var(--brown); font-weight: 500; }
.nav a:hover { color: var(--gold); }

.header-cta, .button {
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.header-cta, .button.primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), #836529);
  color: white;
  box-shadow: 0 14px 28px rgba(125, 102, 56, .22);
}
.button.secondary { border: 1px solid rgba(200, 162, 98, .45); color: var(--brown); background: white; }
.header-cta:hover, .button:hover { transform: translateY(-2px); }

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(56px, 8vw, 110px) clamp(22px, 6vw, 90px);
}

.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .22em; font-size: .78rem; font-weight: 700; }
h1, h2 { font-family: "Cormorant Garamond", Georgia, serif; line-height: .95; margin: 0; color: #3a2e1d; }
h1 { font-size: clamp(3.2rem, 8vw, 7.7rem); max-width: 790px; }
h2 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
.hero-text, .split p, .contact-text { color: var(--muted); font-size: 1.08rem; line-height: 1.8; }
.hero-text { max-width: 610px; margin: 26px 0 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-card { background: rgba(255,255,255,.62); border: 1px solid rgba(200, 162, 98,.22); border-radius: 40px; box-shadow: var(--shadow); padding: clamp(24px, 4vw, 50px); }
.hero-card img { width: 100%; border-radius: 28px; display: block; }

.section { padding: clamp(64px, 8vw, 110px) clamp(22px, 6vw, 90px); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; border-top: 1px solid rgba(200, 162, 98, .2); }
.center { text-align: center; }
.cards { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: var(--card); border: 1px solid rgba(200,162,98,.22); border-radius: 28px; padding: 30px; box-shadow: 0 16px 45px rgba(78,55,22,.08); }
.card h3 { margin: 0 0 12px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.9rem; color: var(--brown); }
.card p { color: var(--muted); line-height: 1.7; margin: 0; }
.dark-section { background: var(--black); color: var(--cream); }
.dark-content { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; max-width: 1180px; margin: 0 auto; }
.dark-content img { width: 100%; border-radius: 32px; border: 1px solid rgba(234,212,173,.2); }
.dark-section h2 { color: var(--cream); }
ul { padding-left: 20px; line-height: 2; color: #ead4ad; }
.contact { background: radial-gradient(circle at center, #fff 0%, var(--cream) 60%, #f2e4cf 100%); }
.contact-text { max-width: 620px; margin: 20px auto 32px; }
.footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px clamp(22px, 6vw, 90px); background: #0b0906; color: #ead4ad; font-size: .88rem; }

@media (max-width: 900px) {
  .nav { display: none; }
  .brand img { width: 155px; }
  .hero, .split, .dark-content { grid-template-columns: 1fr; }
  .hero { padding-top: 42px; }
  .cards { grid-template-columns: 1fr; }
  .footer { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .site-header { padding: 12px 18px; }
  .header-cta { padding: 11px 16px; font-size: .86rem; }
  h1 { font-size: 3.2rem; }
  .hero-actions { flex-direction: column; }
  .button { text-align: center; }
}
