:root {
  --cream: #FAF6EF;
  --cream-dark: #F1E9DA;
  --gold: #C9A24B;
  --gold-light: #E4CD96;
  --gold-dark: #9C7A2E;
  --ink: #2B2118;
  --ink-soft: #5A4E40;
  --white: #FFFFFF;

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Poppins', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.3px;
}

h2 { font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.2; }
h2 em, h1 em { font-style: italic; color: var(--gold-dark); }

.section-eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  color: var(--gold-dark);
  margin-bottom: 10px;
  font-weight: 500;
}

.section-sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-top: 12px;
  max-width: 540px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  color: var(--white);
}
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }

.btn-ghost {
  border: 1px solid rgba(43,33,24,0.25);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-dark); }

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--white); }

.btn-lg { padding: 18px 42px; font-size: 1rem; }

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}
.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transition: transform 0.25s ease;
}
.whatsapp-float a:hover { transform: scale(1.08); }
