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

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

:root {
  --green:   #152E20;
  --green2:  #1a3a28;
  --cream:   #F4EFE4;
  --cream2:  #EDE5D5;
  --text:    #1a1a1a;
  --muted:   #5a5a4a;
  --border:  rgba(244,239,228,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--green);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.25); }

.nav-logo {
  display: flex; flex-direction: column; gap: 0;
  text-decoration: none;
  line-height: 1;
}
.nav-logo-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem; font-weight: 500; letter-spacing: .22em;
  color: var(--cream);
}
.nav-logo-rule {
  height: 1px; background: rgba(244,239,228,.4);
  margin: 3px 0;
}
.nav-logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: .62rem; font-weight: 400; letter-spacing: .3em;
  color: rgba(244,239,228,.65);
  text-transform: uppercase;
}

.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(244,239,228,.8); text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }

.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--cream); transition: .3s; }

/* mobile nav */
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--green2); z-index: 99;
  padding: 2rem 5vw;
  flex-direction: column; gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: .9rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(244,239,228,.85); text-decoration: none;
}

/* ── HERO ── */
.hero {
  background: var(--green);
  min-height: 92vh;
  display: flex; align-items: center;
  padding: 120px 5vw 80px;
  position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--cream));
}
.hero-inner { max-width: 720px; }
.hero-eyebrow {
  font-size: .72rem; letter-spacing: .35em; text-transform: uppercase;
  color: rgba(244,239,228,.5); margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 400; line-height: 1.08;
  color: var(--cream); margin-bottom: 1.8rem;
}
.hero-title em { font-style: italic; }
.hero-sub {
  font-size: 1rem; font-weight: 300; line-height: 1.8;
  color: rgba(244,239,228,.7); max-width: 520px; margin-bottom: 2.5rem;
}
.btn-primary {
  display: inline-block; padding: .85rem 2.2rem;
  border: 1px solid rgba(244,239,228,.5);
  color: var(--cream); text-decoration: none;
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  transition: background .2s, border-color .2s;
}
.btn-primary:hover { background: rgba(244,239,228,.1); border-color: var(--cream); }
.btn-ghost {
  display: inline-block; padding: .85rem 2.2rem; margin-left: 1rem;
  color: rgba(244,239,228,.6); text-decoration: none;
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  transition: color .2s;
}
.btn-ghost:hover { color: var(--cream); }

/* ── SECTIONS ── */
section { padding: 100px 5vw; }

.section-eyebrow {
  font-size: .72rem; letter-spacing: .35em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .8rem;
}
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 400;
  color: var(--green); line-height: 1.15; margin-bottom: 1.5rem;
}
.section-body { max-width: 640px; color: var(--muted); line-height: 1.85; }

.rule { width: 48px; height: 1px; background: var(--green); opacity: .3; margin: 1.5rem 0; }

/* ── ABOUT SECTION ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6vw;
  align-items: start; max-width: 1100px;
}
.about-pillars { display: flex; flex-direction: column; gap: 2rem; }
.pillar { border-left: 1px solid rgba(21,46,32,.2); padding-left: 1.5rem; }
.pillar-label {
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--green); margin-bottom: .4rem; font-weight: 500;
}
.pillar p { font-size: .95rem; color: var(--muted); }

/* ── MARKETS ── */
.markets-section { background: var(--green); color: var(--cream); }
.markets-section .section-title { color: var(--cream); }
.markets-section .section-eyebrow { color: rgba(244,239,228,.5); }
.markets-section .rule { background: var(--cream); opacity: .2; }
.markets-section .section-body { color: rgba(244,239,228,.7); }
.markets-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px; margin-top: 3rem;
  border: 1px solid rgba(244,239,228,.12);
}
.market-card {
  padding: 2rem 1.8rem;
  border-right: 1px solid rgba(244,239,228,.12);
}
.market-card:last-child { border-right: none; }
.market-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem; color: var(--cream); margin-bottom: .4rem;
}
.market-detail { font-size: .8rem; color: rgba(244,239,228,.5); letter-spacing: .05em; }

/* ── CONTACT SECTION ── */
.contact-split {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 6vw;
  align-items: start; max-width: 1000px;
}
.contact-info { }
.contact-info .section-body { margin-bottom: 2rem; }
.contact-links { display: flex; flex-direction: column; gap: 1rem; }
.contact-link {
  display: flex; align-items: center; gap: .9rem;
  text-decoration: none; color: var(--muted);
  font-size: .9rem; transition: color .2s;
}
.contact-link:hover { color: var(--green); }
.contact-link-icon {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(21,46,32,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; flex-shrink: 0;
  transition: border-color .2s, background .2s;
}
.contact-link:hover .contact-link-icon { border-color: var(--green); background: var(--green); color: var(--cream); }

/* ── FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
}
.form-group input, .form-group select, .form-group textarea {
  background: white; border: 1px solid rgba(21,46,32,.2);
  padding: .75rem 1rem; font-family: 'Jost', sans-serif; font-size: .92rem;
  color: var(--text); outline: none; transition: border-color .2s;
  border-radius: 0; -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  padding: .9rem 2rem; background: var(--green); color: var(--cream);
  border: none; cursor: pointer;
  font-family: 'Jost', sans-serif; font-size: .78rem;
  letter-spacing: .2em; text-transform: uppercase;
  transition: background .2s; align-self: flex-start;
}
.btn-submit:hover { background: var(--green2); }
.form-success {
  display: none; padding: 1rem 1.2rem;
  background: rgba(21,46,32,.08); border-left: 2px solid var(--green);
  font-size: .9rem; color: var(--green);
}
.form-success.visible { display: block; }

.wa-btn {
  display: inline-flex; align-items: center; gap: .7rem;
  padding: .85rem 1.8rem; background: #25D366; color: white;
  text-decoration: none; font-size: .82rem; letter-spacing: .1em;
  margin-top: 1.5rem; transition: background .2s;
}
.wa-btn:hover { background: #1ebe5d; }
.wa-btn svg { width: 18px; height: 18px; fill: white; }

/* ── LEGAL PAGES ── */
.legal-hero {
  background: var(--green); padding: 140px 5vw 60px;
  text-align: center;
}
.legal-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 400;
  color: var(--cream); margin-bottom: .5rem;
}
.legal-hero p { color: rgba(244,239,228,.5); font-size: .85rem; }

.legal-body {
  max-width: 720px; margin: 0 auto; padding: 60px 5vw 100px;
}
.legal-body h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem; font-weight: 500; color: var(--green);
  margin-top: 2.5rem; margin-bottom: .7rem;
}
.legal-body h3 {
  font-size: .85rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); margin-top: 1.5rem; margin-bottom: .5rem;
}
.legal-body p { color: var(--muted); margin-bottom: .8rem; font-size: .95rem; }
.legal-body a { color: var(--green); }
.legal-body ul { padding-left: 1.4rem; color: var(--muted); font-size: .95rem; margin-bottom: .8rem; }
.legal-body ul li { margin-bottom: .3rem; }
.legal-divider { height: 1px; background: rgba(21,46,32,.12); margin: 2rem 0; }

/* ── FOOTER ── */
footer {
  background: var(--green); color: rgba(244,239,228,.6);
  padding: 60px 5vw 30px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem;
}
.footer-logo { margin-bottom: 1rem; }
.footer-col h4 {
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(244,239,228,.4); margin-bottom: 1rem;
}
.footer-col a, .footer-col p {
  display: block; color: rgba(244,239,228,.6);
  text-decoration: none; font-size: .88rem; margin-bottom: .5rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  grid-column: 1/-1; border-top: 1px solid rgba(244,239,228,.1);
  padding-top: 1.5rem; margin-top: 1rem;
  display: flex; justify-content: space-between;
  font-size: .78rem; color: rgba(244,239,228,.35);
}

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s, transform .7s; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; }
  .markets-grid { grid-template-columns: 1fr 1fr; }
  .market-card { border-right: none; border-bottom: 1px solid rgba(244,239,228,.12); }
}

/* ── LANG TOGGLE ── */
.nav-lang {
  display: flex; align-items: center; gap: .5rem;
  font-size: .72rem; letter-spacing: .15em;
  color: rgba(244,239,228,.3);
}
.nav-lang button {
  background: none; border: none; cursor: pointer; padding: 2px 4px;
  font-family: 'Jost', sans-serif; font-size: .72rem; letter-spacing: .15em;
  color: rgba(244,239,228,.4); transition: color .2s;
}
.nav-lang button.active { color: var(--cream); }
.nav-lang button:hover { color: var(--cream); }

.mobile-lang {
  display: flex; gap: 1rem; margin-top: .5rem;
}
.mobile-lang button {
  background: none; border: 1px solid rgba(244,239,228,.2);
  padding: .3rem .8rem; color: rgba(244,239,228,.6);
  font-family: 'Jost', sans-serif; font-size: .78rem; letter-spacing: .12em;
  cursor: pointer;
}
