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

/* ─── VARIABLES ─────────────────────────────── */
:root {
  --cream:    #faf8f4;
  --warm:     #f2ede4;
  --stone:    #e8e0d5;
  --charcoal: #2c2c2c;
  --mid:      #6b6560;
  --gold:     #c9a96e;
  --mustard:  #d4a017;
  --white:    #ffffff;
  --shadow:   rgba(44,44,44,0.08);
  --nav-h:    80px;
}

/* ─── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── NAVIGATION ─────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 24px var(--shadow); }
.nav-logo { display: flex; align-items: center; gap: .75rem; }
.nav-logo img { height: 64px; width: auto; }
.nav-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--charcoal);
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: .78rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--mid);
  position: relative; padding-bottom: 4px;
  transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--charcoal); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--charcoal); color: var(--cream) !important;
  padding: .5rem 1.25rem !important; border-radius: 2px;
  font-size: .75rem !important; letter-spacing: .12em !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--charcoal) !important; }
.nav-cta::after { display: none !important; }

/* language switcher */
.lang-switcher {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--stone); border-radius: 2px; overflow: hidden;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  padding: .3rem .55rem; font-size: .68rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; color: var(--mid);
  font-family: 'DM Sans', sans-serif; transition: background .2s, color .2s;
}
.lang-btn.active { background: var(--charcoal); color: var(--cream); }
.lang-btn:not(.active):hover { background: var(--stone); }

/* hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--charcoal); transition: .3s; }

/* ─── PAGE WRAPPER ─────────────────────────── */
.page { padding-top: var(--nav-h); }

/* ─── FADE-IN ANIMATION ─────────────────────── */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── SECTION TITLE ─────────────────────────── */
.section-label {
  font-size: .7rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: .75rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.15;
  color: var(--charcoal);
}
.section-divider {
  width: 48px; height: 1px; background: var(--gold);
  margin: 1.5rem 0;
}

/* ─── BUTTON ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border: 1px solid var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; cursor: pointer;
  transition: background .25s, color .25s;
  background: transparent;
}
.btn-dark { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }
.btn-dark:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }
.btn-light:hover { background: var(--charcoal); color: var(--cream); }
.btn-gold { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.btn-gold:hover { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: var(--charcoal); color: var(--stone);
  padding: 4rem clamp(1.5rem, 5vw, 4rem) 2rem;
  margin-top: 6rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-logo img { height: 48px; filter: brightness(0) invert(1); opacity: .85; }
.footer-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; letter-spacing: .15em; text-transform: uppercase; color: var(--cream);
}
.footer-col h4 {
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; font-weight: 500;
}
.footer-col p, .footer-col a { font-size: .85rem; color: var(--stone); line-height: 1.8; display: block; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .75rem; color: var(--mid);
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; background: var(--cream); border-bottom: 1px solid var(--stone);
    padding: 1.5rem 2rem; gap: 1.25rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
