/* ── FPM SHARED STYLES ── */
:root {
  --ink: #1a1a18;
  --ink-soft: #3d3d38;
  --stone: #8a8679;
  --cream: #f5f2eb;
  --warm-white: #faf9f6;
  --gold: #b89a5e;
  --gold-light: #d4b87a;
  --border: rgba(26,26,24,0.1);
  --border-gold: rgba(184,154,94,0.3);
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--warm-white); color: var(--ink); line-height: 1.6; overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem; height: 72px;
  background: rgba(250,249,246,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(26,26,24,0.07); }

.nav-logo {
  font-family: var(--ff-display); font-size: 1.05rem; font-weight: 600;
  letter-spacing: 0.04em; color: var(--ink); text-decoration: none;
  display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0;
}
.nav-logo-badge {
  width: 30px; height: 30px; border: 1.5px solid var(--gold); color: var(--gold);
  font-family: var(--ff-display); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-soft); text-decoration: none;
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 1.2rem; }

/* Language Switcher */
.lang-switcher { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-soft);
  background: none; border: 1px solid var(--border);
  padding: 0.4rem 0.8rem; cursor: pointer;
  font-family: var(--ff-body); transition: border-color 0.2s, color 0.2s;
}
.lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.lang-btn svg { width: 10px; height: 10px; transition: transform 0.2s; }
.lang-switcher.open .lang-btn svg { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--warm-white); border: 1px solid var(--border);
  min-width: 160px; z-index: 200;
  box-shadow: 0 8px 32px rgba(26,26,24,0.1); display: none;
}
.lang-switcher.open .lang-dropdown { display: block; }
.lang-option {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.75rem 1rem; font-size: 0.8rem; color: var(--ink-soft);
  text-decoration: none; transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid var(--border);
}
.lang-option:last-child { border-bottom: none; }
.lang-option:hover { background: var(--cream); color: var(--gold); }
.lang-option.current { color: var(--gold); font-weight: 500; }
.lang-flag { font-size: 1rem; }

.nav-cta {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--warm-white) !important;
  background: var(--ink); padding: 0.6rem 1.4rem;
  text-decoration: none; white-space: nowrap; transition: background 0.25s;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--warm-white) !important; }

/* ── BURGER MENU ── */
.burger-btn {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px; width: 40px; height: 40px;
  background: none; border: 1px solid var(--border);
  cursor: pointer; padding: 8px; flex-shrink: 0; transition: border-color 0.2s;
}
.burger-btn:hover { border-color: var(--gold); }
.burger-btn span {
  display: block; width: 18px; height: 1.5px; background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.burger-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; width: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--warm-white); border-bottom: 1px solid var(--border);
  z-index: 99; max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  box-shadow: 0 8px 32px rgba(26,26,24,0.08);
}
.mobile-menu.open { max-height: 560px; padding: 1.5rem 0 2rem; }
.mobile-menu-links { list-style: none; padding: 0 1.5rem; margin-bottom: 1.2rem; }
.mobile-menu-links li { border-bottom: 1px solid var(--border); }
.mobile-menu-links a {
  display: block; padding: 1rem 0; font-size: 0.9rem; font-weight: 400;
  letter-spacing: 0.06em; color: var(--ink); text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu-links a:hover, .mobile-menu-links a.active { color: var(--gold); padding-left: 0.4rem; }
.mobile-menu-langs {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.5rem; border-bottom: 1px solid var(--border);
}
.mobile-menu-langs p {
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--stone); margin-right: 0.5rem; white-space: nowrap;
}
.mobile-lang-btn {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em;
  color: var(--stone); border: 1px solid var(--border);
  padding: 0.35rem 0.7rem; text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s; background: none;
}
.mobile-lang-btn:hover, .mobile-lang-btn.current {
  color: var(--gold); border-color: var(--gold); background: rgba(184,154,94,0.05);
}
.mobile-menu-cta {
  display: block; margin: 1.2rem 1.5rem 0; text-align: center;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--warm-white); background: var(--ink);
  padding: 0.9rem 1.5rem; text-decoration: none; transition: background 0.25s;
}
.mobile-menu-cta:hover { background: var(--gold); }

@media (max-width: 768px) {
  nav { padding: 0 1.2rem; }
  .burger-btn { display: flex; }
  .mobile-menu { display: block; }
  .nav-links { display: none !important; }
  .lang-switcher { display: none !important; }
  .nav-cta { display: none !important; }
}

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--cream); border-bottom: 1px solid var(--border);
  padding: 0.8rem 5rem; display: flex; align-items: center; gap: 0.6rem;
}
.breadcrumb a, .breadcrumb span { font-size: 0.75rem; color: var(--stone); text-decoration: none; }
.breadcrumb .sep { color: rgba(26,26,24,0.2); }
.breadcrumb a:hover { color: var(--gold); }

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.eyebrow--light { color: var(--gold-light); }
.eyebrow--light::before { background: var(--gold-light); }

.display-title { font-family: var(--ff-display); font-weight: 300; line-height: 1.12; color: var(--ink); }
.display-title em { font-style: italic; color: var(--gold); }
.display-title--light { color: var(--cream); }
.display-title--light em { color: var(--gold-light); }

/* ── BUTTONS ── */
.btn {
  display: inline-block; font-family: var(--ff-body);
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  padding: 1rem 2.2rem; transition: background 0.25s, color 0.25s; cursor: pointer; border: none;
}
.btn-dark { color: var(--warm-white); background: var(--ink); }
.btn-dark:hover { background: var(--gold); }
.btn-gold { color: var(--ink); background: var(--gold); }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline {
  color: var(--ink); background: transparent;
  border-bottom: 1px solid var(--border); padding: 0 0 2px;
  transition: color 0.2s, border-color 0.2s; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
}
.btn-outline:hover { color: var(--gold); border-color: var(--gold); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--ink); padding: 5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 3rem;
}
.cta-band h2 {
  font-family: var(--ff-display); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300; color: var(--cream); line-height: 1.2; margin-bottom: 0.8rem;
}
.cta-band p { font-size: 0.9rem; color: var(--stone); max-width: 420px; line-height: 1.7; }
.cta-band-actions { display: flex; align-items: center; gap: 1.4rem; flex-shrink: 0; }
.cta-phone {
  font-family: var(--ff-display); font-size: 1.1rem; color: var(--cream);
  text-decoration: none; transition: color 0.2s;
}
.cta-phone:hover { color: var(--gold-light); }

/* ── FOOTER ── */
footer {
  background: var(--cream); border-top: 1px solid var(--border);
  padding: 4rem 5rem 2.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3.5rem;
}
.footer-brand p { font-size: 0.83rem; color: var(--stone); line-height: 1.75; max-width: 260px; margin-top: 1rem; }
.footer-col h5 { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { font-size: 0.83rem; color: var(--stone); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 0.83rem; color: var(--stone); line-height: 1.75; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-tagline { font-family: var(--ff-display); font-style: italic; font-size: 0.9rem; color: var(--stone); }
.footer-legal { display: flex; gap: 0; }
.footer-legal a { font-size: 0.75rem; color: var(--stone); text-decoration: none; margin-left: 1.5rem; transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }

/* ── AREAS ── */
.areas-chips { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 2rem; }
.area-chip {
  font-size: 0.78rem; letter-spacing: 0.08em; color: var(--ink-soft);
  border: 1px solid var(--border); padding: 0.5rem 1.1rem; transition: all 0.2s; cursor: default;
}
.area-chip:hover { border-color: var(--gold); color: var(--gold); background: rgba(184,154,94,0.04); }

/* ── INTRO LANG TAGS ── */
a.intro-lang-tag {
  text-decoration: none; cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
a.intro-lang-tag:hover { color: var(--cream); border-color: rgba(212,184,122,0.8); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.d1 { animation-delay: 0.1s; } .d2 { animation-delay: 0.25s; }
.d3 { animation-delay: 0.4s; } .d4 { animation-delay: 0.55s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 0 2rem; }
  .breadcrumb { padding: 0.8rem 2rem; }
  .cta-band { padding: 3.5rem 2rem; flex-direction: column; align-items: flex-start; }
  footer { padding: 3rem 2rem 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
