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

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

:root {
  --gold: #B8965A;
  --gold-light: #D4B07A;
  --gold-pale: #F5EDD8;
  --ink: #1A1814;
  --ink-mid: #3D3A35;
  --ink-muted: #7A766E;
  --ink-faint: #B8B4AC;
  --surface: #FDFBF7;
  --surface-warm: #F7F3EC;
  --border: rgba(184,150,90,0.18);
  --border-soft: rgba(26,24,20,0.08);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--surface); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253,251,247,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--ink); text-decoration: none; letter-spacing: 0.02em; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 400; color: var(--ink-muted); text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta { font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); text-decoration: none; border: 1px solid var(--gold); padding: 7px 18px; border-radius: 2px; transition: all 0.2s; }
.nav-cta:hover { background: var(--gold); color: #fff; }

/* ── SHARED LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section-label { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 10px; margin-bottom: 1.5rem; }
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); max-width: 60px; }
.section-divider { max-width: 1100px; margin: 0 auto; padding: 0 2rem; border: none; border-top: 1px solid var(--border-soft); }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; color: var(--ink); }

/* ── BUTTONS ── */
.btn-primary { font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; background: var(--ink); color: #fff; border: none; padding: 14px 28px; border-radius: 2px; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s; }
.btn-primary:hover { background: var(--gold); }
.btn-secondary { font-family: var(--sans); font-size: 13px; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; background: transparent; color: var(--ink-muted); border: 1px solid var(--border-soft); padding: 14px 28px; border-radius: 2px; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.2s; }
.btn-secondary:hover { border-color: var(--ink-faint); color: var(--ink); }
.btn-gold { font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; background: transparent; color: var(--gold); border: 1px solid var(--gold); padding: 14px 28px; border-radius: 2px; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.2s; }
.btn-gold:hover { background: var(--gold); color: #fff; }

/* ── PAGE HERO ── */
.page-hero { padding: 5rem 0 4rem; border-bottom: 1px solid var(--border-soft); }
.page-hero-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 10px; margin-bottom: 1.25rem; }
.page-hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.page-hero h1 { font-size: clamp(36px, 5vw, 54px); line-height: 1.1; margin-bottom: 1rem; letter-spacing: -0.01em; }
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero p { font-size: 16px; line-height: 1.85; color: var(--ink-muted); max-width: 560px; }

/* ── CONTACT FORM ── */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 6px; }
.form-input, .form-textarea, .form-select { width: 100%; font-family: var(--sans); font-size: 14px; color: var(--ink); background: var(--surface); border: 1px solid var(--border-soft); border-radius: 2px; padding: 11px 14px; outline: none; transition: border-color 0.2s; appearance: none; }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit { width: 100%; font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; background: var(--ink); color: #fff; border: none; padding: 15px; border-radius: 2px; cursor: pointer; transition: background 0.2s; margin-top: 0.5rem; }
.form-submit:hover { background: var(--gold); }

/* ── FOOTER ── */
footer { background: var(--ink); color: rgba(255,255,255,0.4); padding: 2.5rem 2rem; margin-top: 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-brand { font-family: var(--serif); font-size: 16px; color: rgba(255,255,255,0.7); font-weight: 500; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-copy { font-size: 12px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up-1 { animation: fadeUp 0.6s 0.05s ease both; }
.fade-up-2 { animation: fadeUp 0.6s 0.15s ease both; }
.fade-up-3 { animation: fadeUp 0.6s 0.25s ease both; }
.fade-up-4 { animation: fadeUp 0.6s 0.35s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .container { padding: 0 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 3rem 0 2.5rem; }
}

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  display: flex;
  gap: 2px;
  align-items: center;
}
.lang-btn {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  background: transparent;
  color: var(--ink-muted);
  text-decoration: none;
  transition: all 0.2s;
  font-family: var(--sans);
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.active {
  border-color: var(--border-soft);
  color: var(--ink);
  background: var(--surface-warm);
}
.lang-divider {
  width: 1px;
  height: 12px;
  background: var(--border-soft);
}
