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

@font-face {
  font-family: 'ManeuverGather';
  src: url('maneuver-gather.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── LIGHT – warm gold-tinted grey ── */
:root {
  --bg:        #e8e4dc;
  --bg2:       #dedad1;
  --card:      #f0ece4;
  --border:    #cec9bf;
  --border2:   #b8b2a6;
  --text:      #1c1a17;
  --text2:     #6a6259;
  --muted:     #9a9088;
  --gold:      #9a7218;
  --gold2:     #c49a30;
  --nav-bg:    rgba(232,228,220,0.96);
  --shadow:    0 2px 16px rgba(0,0,0,0.09);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.13);
  --font-display: 'ManeuverGather','Playfair Display',Georgia,serif;
  --font-serif:   'Playfair Display',Georgia,serif;
  --font-sans:    'Inter',system-ui,sans-serif;
  --t: 0.18s ease;
}

/* ── DARK – warm charcoal ── */
[data-theme="dark"] {
  --bg:        #272725;
  --bg2:       #313130;
  --card:      #3b3b38;
  --border:    #484844;
  --border2:   #5a5a54;
  --text:      #f0ede6;
  --text2:     #a8a49a;
  --muted:     #78746e;
  --gold:      #c9a84c;
  --gold2:     #e8d5a3;
  --nav-bg:    rgba(39,39,37,0.96);
  --shadow:    0 2px 16px rgba(0,0,0,0.42);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.55);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.25s, color 0.25s;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 60px;
  background: var(--nav-bg); border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px; transition: background 0.25s;
}
.nav-brand { font-family: var(--font-display); font-size: 20px; font-weight: normal; letter-spacing: 0.06em; color: var(--text); text-decoration: none; }
.nav-brand em { color: var(--gold); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { font-size: 12px; font-weight: 500; letter-spacing: 0.05em; color: var(--text2); text-decoration: none; transition: color var(--t); }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 10px; }

.theme-toggle { display: flex; background: var(--bg2); border: 1px solid var(--border); overflow: hidden; }
.theme-toggle-btn { padding: 5px 12px; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; background: none; border: none; color: var(--text2); cursor: pointer; transition: all var(--t); }
.theme-toggle-btn.active { background: var(--text); color: var(--bg); }

.lang-switcher { display: flex; }
.lang-btn { background: none; border: 1px solid var(--border); color: var(--text2); font-family: var(--font-sans); font-size: 10px; font-weight: 600; letter-spacing: 0.08em; padding: 4px 8px; cursor: pointer; transition: all var(--t); border-right: none; }
.lang-btn:last-child { border-right: 1px solid var(--border); border-radius: 0 2px 2px 0; }
.lang-btn:first-child { border-radius: 2px 0 0 2px; }
.lang-btn.active, .lang-btn:hover { background: var(--text); color: var(--bg); border-color: var(--text); }

.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 20px; cursor: pointer; padding: 4px; }
@media(max-width:700px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  nav { padding: 0 16px; }
  .theme-toggle { display: none; }
}

/* ── PAGE ── */
.page { padding-top: 60px; }
.container { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-sans); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; padding: 13px 26px; border: none; cursor: pointer; text-decoration: none; transition: all var(--t); }
.btn-dark { background: var(--text); color: var(--bg); }
.btn-dark:hover { opacity: 0.82; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border2); }
.btn-outline:hover { border-color: var(--text); }

/* ── SECTION ── */
.section { padding: 72px 0; border-top: 1px solid var(--border); }
.section-label { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.section-title { font-family: var(--font-serif); font-size: clamp(26px, 5vw, 42px); font-weight: 400; line-height: 1.2; color: var(--text); margin-bottom: 14px; }
.section-title em { font-style: italic; }
.section-body { font-size: 15px; color: var(--text2); line-height: 1.75; max-width: 560px; }

/* ── FORM ── */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 11px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text2); }
.field input, .field select, .field textarea { background: var(--bg); border: 1px solid var(--border2); color: var(--text); font-family: var(--font-sans); font-size: 15px; padding: 11px 13px; outline: none; transition: border-color var(--t), background var(--t); width: 100%; -webkit-appearance: none; appearance: none; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--text); }
.field select option { background: var(--bg2); }
.field textarea { resize: vertical; min-height: 80px; }

.autocomplete-wrap { position: relative; }
.ac-list { position: absolute; top: 100%; left: 0; right: 0; background: var(--card); border: 1px solid var(--text); border-top: none; z-index: 50; max-height: 180px; overflow-y: auto; box-shadow: var(--shadow-lg); }
.ac-item { padding: 10px 14px; font-size: 13px; color: var(--text); cursor: pointer; border-bottom: 1px solid var(--border); transition: background var(--t); }
.ac-item:last-child { border-bottom: none; }
.ac-item:hover { background: var(--bg2); }
.addr-ok  { font-size: 11px; color: #4a9e6a; margin-top: 4px; }
.addr-err { font-size: 11px; color: #c04444; margin-top: 4px; }

.ic { display: block; color: var(--text2); flex-shrink: 0; }
[data-theme="dark"] .ic { color: var(--text); }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 44px 24px; text-align: center; }
.footer-brand { font-family: var(--font-display); font-size: 22px; font-weight: normal; letter-spacing: 0.06em; color: var(--text); }
.footer-brand em { color: var(--gold); font-style: normal; }
.footer-meta { font-size: 12px; color: var(--muted); margin-top: 16px; }

/* ── WA FLOAT ── */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 200; background: #25d366; color: #fff; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 14px rgba(37,211,102,0.38); transition: transform var(--t); }
.wa-float:hover { transform: scale(1.08); }

/* ── CTA BAND ── */
.cta-band { background: var(--bg2); border-top: 1px solid var(--border); padding: 60px 24px; text-align: center; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(30px,6vw,52px); font-weight: normal; letter-spacing: 0.06em; color: var(--text); margin-bottom: 10px; }
.cta-band p { font-size: 14px; color: var(--text2); margin-bottom: 24px; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
