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

/* ─── CSS VARIABLES ─── */
:root {
  --ivory:      #FAF7F2;
  --cream:      #F2EDE3;
  --warm:       #E8DFD0;
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --gold-pale:  #F5E6B8;
  --walnut:     #3D2B1F;
  --bark:       #6B4C35;
  --sand:       #A8896B;
  --charcoal:   #1A1A1A;
  --ink:        #2C2C2C;
  --mist:       #8C7B6B;
  --white:      #FFFFFF;
  --radius:     20px;
}

/* ─── BASE ─── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  line-height: 1.05;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: 'Outfit', sans-serif; }

/* ─── UTILITY CLASSES ─── */
.sec-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.sec-badge::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}

.sec-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--walnut);
  margin-bottom: 20px;
}
.sec-h2 em {
  font-style: italic;
  color: var(--gold);
}

.sec-p {
  font-size: 14px;
  color: var(--mist);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 14px;
}

.sec-center { text-align: center; margin-bottom: 52px; }
.sec-center .sec-badge { justify-content: center; }

/* ─── BUTTONS ─── */
.btn-walnut {
  background: var(--walnut);
  color: var(--ivory);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .35s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.btn-walnut::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}
.btn-walnut span { position: relative; z-index: 1; }
.btn-walnut:hover::before { transform: scaleX(1); }
.btn-walnut:hover {
  color: var(--walnut);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,.35);
}

.btn-outline-w {
  background: transparent;
  color: var(--walnut);
  border: 1.5px solid rgba(61,43,31,.25);
  padding: 15px 36px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .3s;
  cursor: pointer;
}
.btn-outline-w:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── FORM ELEMENTS ─── */
.form-label {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 7px;
  display: block;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1.5px solid rgba(61,43,31,.12);
  background: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: var(--walnut);
  transition: all .3s;
  outline: none;
  margin-bottom: 14px;
}
.form-input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,168,76,.1);
}
.form-input::placeholder { color: rgba(61,43,31,.3); }
.form-input option { background: var(--white); }

textarea.form-input { resize: none; }

/* ─── SECTION SPACING ─── */
section { padding: 100px 0; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}
