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

:root {
  --bg: #07070c;
  --bg-card: #0e0e18;
  --bg-surface: #131320;
  --gold: #c6a75e;
  --gold-light: #e8d5a3;
  --gold-dark: #8a7040;
  --white: #f0ece4;
  --text-muted: #6e6658;
  --border: rgba(198,167,94,0.16);
  --border-hover: rgba(198,167,94,0.4);
}

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top:0; left:0; right:0;
  z-index: 200;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(7,7,12,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-decoration: none;
  line-height: 1.15;
  display: flex;
  flex-direction: column;
}
.nav-logo .nav-sub {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 64px; left:0; right:0;
  background: rgba(7,7,12,0.97);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2.5rem;
  flex-direction: column;
  gap: 1.2rem;
  z-index: 199;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-mobile a:hover { color: var(--gold); }

/* ── PAGE WRAPPER ── */
.page-wrapper { padding-top: 64px; }

/* ── HERO ── */
.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 55% at 50% 38%, rgba(198,167,94,0.07) 0%, transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.6rem;
  letter-spacing: 0.02em;
}
h1 em { font-style: italic; color: var(--gold-light); }

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.03em;
}
h2 em { font-style: italic; color: var(--gold-light); }

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
}

.subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn:hover { background: var(--gold); color: var(--bg); }

.btn-gold {
  background: var(--gold);
  color: var(--bg);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-whatsapp {
  background: #1a3a2a;
  border-color: #25d366;
  color: #25d366;
}
.btn-whatsapp:hover { background: #25d366; color: #fff; }

/* ── SECTIONS ── */
section {
  padding: 6rem 2rem;
  max-width: 1080px;
  margin: 0 auto;
}

section.wide { max-width: 1200px; }
section.narrow { max-width: 760px; }

.section-sep {
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
  margin: 1.4rem 0;
}

/* ── CARDS ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover { border-color: var(--border-hover); }

/* ── GOLD SHIMMER ANIMATION ── */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.gold-text {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 35%, var(--gold) 55%, var(--gold-dark) 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}

/* ── FADE IN ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.36s; }
.delay-4 { animation-delay: 0.5s; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  max-width: 100%;
  background: var(--bg-card);
}
.footer-left { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.footer-brand span {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}
.footer-copy { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.06em; }

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}
.footer-legal-title {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
}
footer a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  transition: color 0.25s;
  border-bottom: 1px solid transparent;
  transition: all 0.25s;
}
footer a:hover { color: var(--gold); border-bottom-color: rgba(198,167,94,0.3); }
.footer-links-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
@media(max-width:640px){
  footer { flex-direction: column; align-items: flex-start; padding: 2rem 1.5rem; }
  .footer-right { align-items: flex-start; }
  .footer-links { align-items: flex-start; }
}

/* ── FORM INPUTS ── */
input, select, textarea {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.85rem 1.2rem;
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
input::placeholder { color: var(--text-muted); }
label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-group { margin-bottom: 1.4rem; }

/* ── BADGE ── */
.badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--gold);
  color: var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  section { padding: 4rem 1.5rem; }
  footer { flex-direction: column; align-items: flex-start; }
  .hero { padding: 4rem 1.5rem 3rem; }
}
