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

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

:root {
  --mint: #d4ede6;
  --deep-green: #1a3a2f;
  --sage: #6b9b7e;
  --cream: #f7f3ee;
  --warm-white: #faf9f7;
  --gold: #c9a84c;
  --text: #1f2d26;
  --light-text: #5a6b60;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  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: 1.2rem 5vw;
  background: rgba(250,249,247,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26,58,47,0.08);
  animation: slideDown .6s ease both;
}
@keyframes slideDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:none; } }

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 600;
  color: var(--deep-green);
  letter-spacing: -.5px;
  text-decoration: none;
}
.logo span { color: var(--gold); }

nav ul { list-style: none; display: flex; gap: 1.8rem; align-items: center; }
nav ul li a {
  text-decoration: none;
  font-size: .82rem; font-weight: 500;
  color: var(--light-text);
  letter-spacing: .04em; text-transform: uppercase;
  transition: color .25s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
nav ul li a:hover { color: var(--deep-green); }
nav ul li a.active {
  color: var(--deep-green);
  border-bottom-color: var(--gold);
}

.lang-dropdown {
  position: relative;
}

.lang-toggle {
  border: 0;
  background: transparent;
  font-size: .82rem;
  font-weight: 500;
  color: var(--light-text);
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0 0 2px;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  transition: all .2s ease;
  line-height: 1;
  border-bottom: 2px solid transparent;
}

.lang-toggle:hover,
.lang-dropdown:focus-within .lang-toggle {
  color: var(--deep-green);
  border-bottom-color: var(--gold);
}

.lang-caret {
  font-size: .62rem;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform .2s ease;
}

.lang-dropdown:hover .lang-caret,
.lang-dropdown:focus-within .lang-caret {
  transform: translateY(-1px) rotate(180deg);
}

.lang-menu {
  list-style: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 74px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(26,58,47,0.12);
  border-radius: 12px;
  box-shadow: 0 18px 34px rgba(26,58,47,0.14);
  backdrop-filter: blur(8px);
  padding: .22rem;
  display: none;
  flex-direction: column;
  gap: .08rem;
  transform-origin: top center;
  animation: langDrop .18s ease;
}

@keyframes langDrop {
  from { opacity: 0; transform: translateX(-50%) translateY(-4px) scale(.98); }
  to { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

.lang-dropdown:hover .lang-menu,
.lang-dropdown:focus-within .lang-menu {
  display: flex;
}

.lang-menu li a {
  display: block;
  text-align: center;
  border-bottom: 0 !important;
  padding: .34rem .36rem !important;
  border-radius: 8px;
  font-size: .76rem;
}

.lang-menu li a:hover {
  background: rgba(26,58,47,0.07);
}

.lang-menu li a.active {
  color: var(--deep-green);
  background: rgba(201,168,76,0.17);
}

.nav-cta {
  background: var(--deep-green) !important;
  color: #fff !important;
  padding: .55rem 1.4rem !important;
  border-radius: 50px !important;
  border-bottom: none !important;
  transition: background .25s !important;
}
.nav-cta:hover { background: var(--sage) !important; }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--deep-green);
  padding: 7rem 5vw 3rem;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, #2d5c47 0%, transparent 70%);
}
.page-header-inner { position: relative; z-index: 1; max-width: 680px; }
.page-breadcrumb {
  font-size: .75rem; color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: .7rem;
}
.page-breadcrumb a { color: var(--gold); text-decoration: none; }
.page-breadcrumb a:hover { text-decoration: underline; }
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: .7rem;
}
.page-header h1 em { font-style: italic; color: var(--gold); }
.page-header p {
  font-size: .92rem; color: rgba(255,255,255,.62);
  line-height: 1.7; max-width: 500px;
}
.page-header-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* ── SHARED SECTION ── */
section { padding: 5rem 5vw; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--sage); margin-bottom: .7rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--deep-green);
  line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--sage); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--deep-green); color: #fff;
  padding: .85rem 2.2rem; border: none; border-radius: 50px;
  font-size: .9rem; font-weight: 500; cursor: pointer;
  text-decoration: none; transition: all .3s; display: inline-block;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--sage); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,58,47,.2); }

.btn-outline {
  background: transparent; color: var(--deep-green);
  padding: .85rem 2.2rem; border: 1.5px solid var(--deep-green); border-radius: 50px;
  font-size: .9rem; font-weight: 500; cursor: pointer;
  text-decoration: none; transition: all .3s; display: inline-block;
  font-family: 'DM Sans', sans-serif;
}
.btn-outline:hover { background: var(--deep-green); color: #fff; transform: translateY(-2px); }

.btn-gold {
  background: var(--gold); color: var(--deep-green);
  padding: .85rem 2.2rem; border: none; border-radius: 50px;
  font-size: .9rem; font-weight: 600; cursor: pointer;
  text-decoration: none; transition: all .3s; display: inline-block;
  font-family: 'DM Sans', sans-serif;
}
.btn-gold:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.3); }

/* ── FOOTER ── */
footer {
  background: #111c16;
  color: rgba(255,255,255,.7);
  padding: 4rem 5vw 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 600;
  color: #fff; margin-bottom: .8rem;
  text-decoration: none; display: inline-block;
}
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: .83rem; line-height: 1.7; max-width: 260px; margin-bottom: 1.4rem; }
.footer-socials { display: flex; gap: .6rem; }
.footer-social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  text-decoration: none;
  transition: background .2s;
}
.footer-social-btn:hover { background: var(--gold); }
.footer-col h5 { color: #fff; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a { text-decoration: none; color: rgba(255,255,255,.5); font-size: .84rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem; font-size: .78rem; color: rgba(255,255,255,.3);
  flex-wrap: wrap; gap: .5rem;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--gold);
  color: var(--deep-green);
  text-align: center;
  padding: 5rem 5vw;
}
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300; margin-bottom: 1rem;
}
.cta-band p { font-size: .95rem; margin-bottom: 2rem; opacity: .8; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
@keyframes float { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-10px); } }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav ul { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1/-1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
