@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

:root {
  --petrol: #1f3f3f;
  --petrol-dark: #142929;
  --petrol-light: #2a5252;
  --gold: #c5a66e;
  --gold-light: #d9be90;
  --gold-pale: #f5efe4;
  --white: #ffffff;
  --off-white: #faf9f7;
  --text: #1a2e2e;
  --text-muted: #567070;
  --text-light: #8fa8a8;
  --wa: #25D366;
  --wa-dark: #128C7E;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --glow: 0 4px 24px rgba(197,166,110,0.28);
  --shadow: 0 6px 32px rgba(31,63,63,0.09);
  --shadow-lg: 0 16px 56px rgba(31,63,63,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.18;
  letter-spacing: -.01em;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: 'Inter', sans-serif; cursor: pointer; border: none; background: none; }

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s cubic-bezier(.23,1,.32,1), transform .75s cubic-bezier(.23,1,.32,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-22px); transition: opacity .75s cubic-bezier(.23,1,.32,1), transform .75s cubic-bezier(.23,1,.32,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(22px); transition: opacity .75s cubic-bezier(.23,1,.32,1), transform .75s cubic-bezier(.23,1,.32,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* SHARED COMPONENTS */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .68rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.section-label::before {
  content: ''; display: block;
  width: 26px; height: 1px; background: var(--gold); opacity: .8;
}

.section-title {
  font-size: clamp(1.85rem, 3.6vw, 2.9rem);
  font-weight: 600; color: var(--petrol);
  margin-bottom: 16px; text-wrap: pretty;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: .98rem; color: var(--text-muted);
  line-height: 1.82; max-width: 520px; font-weight: 400;
}
.section-sub.light { color: rgba(255,255,255,0.58); }

/* BUTTONS */
.btn-gold {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--gold); color: var(--petrol-dark);
  padding: 13px 26px; border-radius: 50px;
  font-size: .88rem; font-weight: 600; letter-spacing: .03em;
  transition: all .3s cubic-bezier(.23,1,.32,1);
  box-shadow: var(--glow);
}
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 8px 30px rgba(197,166,110,0.42); transform: translateY(-2px); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--wa); color: #fff;
  padding: 13px 26px; border-radius: 50px;
  font-size: .88rem; font-weight: 600; letter-spacing: .03em;
  transition: all .3s cubic-bezier(.23,1,.32,1);
  box-shadow: 0 4px 18px rgba(37,211,102,0.22);
}
.btn-wa:hover { background: var(--wa-dark); box-shadow: 0 8px 28px rgba(37,211,102,0.38); transform: translateY(-2px); }

.btn-outline-light {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,.85); padding: 12px 22px; border-radius: 50px;
  font-size: .86rem; font-weight: 500;
  background: rgba(255,255,255,0.04);
  transition: all .25s; letter-spacing: .02em;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,.55); }

.wa-icon { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }

/* FLOAT WA */
.float-wa {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,0.38);
  transition: transform .25s, box-shadow .25s;
}
.float-wa:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(37,211,102,0.52); }
.float-wa svg { width: 25px; height: 25px; fill: white; }

/* TWEAKS PANEL */
#tweaks-panel {
  position: fixed; bottom: 90px; right: 26px; z-index: 998;
  background: white; border-radius: var(--radius);
  padding: 20px; width: 240px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  border: 1px solid rgba(31,63,63,0.08);
  display: none;
}
#tweaks-panel h4 { font-size: .78rem; color: var(--petrol-dark); margin-bottom: 14px; font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.tw-row { margin-bottom: 13px; }
.tw-row label { font-size: .7rem; color: var(--text-muted); display: block; margin-bottom: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.tw-row input[type=color] { width: 100%; height: 32px; border: 1px solid rgba(31,63,63,0.1); border-radius: 8px; cursor: pointer; padding: 2px; }
.tw-row input[type=range] { width: 100%; accent-color: var(--petrol); }
.tw-row input[type=checkbox] { accent-color: var(--gold); width: 15px; height: 15px; }
.tw-check { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--text); }

@media (max-width: 768px) {
  .btn-gold, .btn-wa { padding: 12px 20px; font-size: .86rem; }
}
