/* ─── VARIABLES ─────────────────────────────────────────────────────────── */
:root {
  --cream:       #FBF7F4;
  --blush:       #F5E8E3;
  --blush-deep:  #EDD5CC;
  --rose:        #C07B72;
  --rose-light:  #E8AFA9;
  --gold:        #C4A46B;
  --gold-light:  #DFC18E;
  --gold-dark:   #A07A42;
  --teal:        #4D9BA4;
  --teal-light:  #8DC8CE;
  --brown-dark:  #2E1A18;
  --brown-mid:   #6B4340;
  --brown-light: #A07A78;
  --white:       #FFFFFF;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Lato', system-ui, sans-serif;
  --font-script: 'Great Vibes', cursive;

  --nav-h: 72px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(46, 26, 24, 0.08);
  --shadow-hover: 0 12px 40px rgba(46, 26, 24, 0.16);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: 0.04em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: 0.03em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

.script { font-family: var(--font-script); font-size: 1.4em; color: var(--rose); }

/* ─── UTILITIES ──────────────────────────────────────────────────────────── */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 164, 107, 0.35);
}

.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.75rem;
}

.section-title {
  color: var(--brown-dark);
  margin-bottom: 1rem;
}

.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--rose-light));
  border-radius: 2px;
  margin: 1.25rem 0 2.5rem;
}

.divider-center { margin-inline: auto; }

/* ─── SCROLLBAR ──────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--blush-deep); border-radius: 3px; }
