@import url('../fonts/inter.css');

:root {
  --dk: #3D4A2E;
  --dk2: #2A3320;
  --sage: #8B9E6B;
  --sage-light: #E2EBDA;
  --sage-bg: #EFF3E8;
  --cream: #FFFBF7;
  --blush: #F8F2EE;
  --blue: #9BB5C0;
  --blue-bg: #E3EEF2;
  --sand: #B8A882;
  --sand-light: #FBF6EB;
  --text: #3D4A2E;
  --body: #5A6350;
  --muted: #8A8D82;
  --line: #E8E4DC;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--body);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--dk);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
}

a { color: var(--dk); }
img { max-width: 100%; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 48px;
}

.label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,251,247,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(61,74,46,0.06);
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo img {
  height: 56px;
  display: block;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--body);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--dk); }
.nav-links a.active { color: var(--dk); font-weight: 600; }
.nav-cta {
  background: var(--dk) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--dk2) !important; }

/* Mobile Menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dk);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 199;
  padding: 32px 24px;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--dk);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--sage); }
.nav-mobile .nav-m-cta {
  display: inline-block;
  margin-top: 24px;
  background: var(--dk);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  border-bottom: none;
}

/* ── SECTIONS ── */
main { }
section { padding: 80px 0; }

.divider {
  height: 1px;
  background: var(--line);
  max-width: 1080px;
  margin: 0 auto;
}

.section-head { margin-bottom: 48px; }
.section-head h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 14px;
}
.section-head p {
  font-size: 16px;
  color: var(--body);
  max-width: 600px;
  line-height: 1.85;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-dk { background: var(--dk); color: var(--white); border-radius: 50px; }
.btn-dk:hover { background: var(--dk2); }
.btn-outline { background: transparent; color: var(--dk); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--dk); background: var(--white); }
.btn svg { width: 14px; height: 14px; }

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(135deg, #FBF6EB 0%, #F8F2EE 40%, #E2EBDA 100%);
  padding: 148px 0 64px;
  max-width: 1080px;
  margin: 0 auto;
}
.page-header h1 {
  font-size: clamp(32px, 4.5vw, 56px);
  margin-bottom: 14px;
}
.page-header p {
  font-size: 16px;
  color: var(--body);
  max-width: 580px;
  line-height: 1.85;
}

/* ── SHARED BOTTOM: FAQ + CONTACT ── */
.sec-blue-light { background: linear-gradient(135deg, var(--blush) 0%, var(--sand-light) 100%); }
.bottom-faq { padding: 64px 0; background: linear-gradient(to bottom, var(--cream) 0%, var(--blush) 100%); }
.bottom-faq h2 { font-size: clamp(22px, 2.5vw, 32px); margin-bottom: 24px; }
.faq-compact { max-width: 700px; }
.faq-c-item { border-bottom: 1px solid var(--line); }
.faq-c-item summary {
  padding: 16px 0; font-size: 15px; font-weight: 600; color: var(--dk);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-c-item summary::after { content: '+'; font-size: 20px; color: var(--sage); font-weight: 300; }
.faq-c-item[open] summary::after { content: '−'; }
.faq-c-item p { font-size: 14px; line-height: 1.75; color: var(--body); padding-bottom: 16px; }
.faq-more { margin-top: 16px; }
.faq-more a { font-size: 13px; font-weight: 600; color: var(--dk); text-decoration: none; }
.faq-more a:hover { color: var(--sage); }

.bottom-contact { background: linear-gradient(to bottom, var(--cream) 0%, var(--sage-light) 100%); padding: 64px 0; }
.bc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.bc-left h2 { font-size: clamp(22px, 2.5vw, 32px); margin-bottom: 8px; }
.bc-left p { font-size: 15px; color: var(--body); margin-bottom: 20px; }
.bc-channels { display: flex; gap: 20px; flex-wrap: wrap; }
.bc-channel { font-size: 14px; color: var(--dk); text-decoration: none; display: flex; align-items: center; gap: 6px; }
.bc-channel:hover { color: var(--sage); }
.bc-channel span { color: var(--sage); }
.bc-form { background: var(--white); border-radius: 16px; padding: 28px 24px; border: 1px solid var(--line); }
.bc-form .form-group { margin-bottom: 12px; }
.bc-form .form-label { display: block; font-size: 12px; font-weight: 600; color: var(--dk); margin-bottom: 4px; }
.bc-form .form-input, .bc-form .form-select {
  width: 100%; padding: 10px 14px; border: 1px solid var(--line); border-radius: 6px;
  font-family: 'Inter', sans-serif; font-size: 13px; color: var(--dk); background: var(--cream);
}
.bc-form .form-input:focus, .bc-form .form-select:focus { outline: none; border-color: var(--sage); }
.bc-form .form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238A8D82' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-color: var(--cream); }
.bc-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.skyline-footer-wrap {
  position: relative;
  pointer-events: none;
  background: var(--blush);
  padding-top: 60px;
}
.skyline-footer-wrap img {
  width: 100%;
  opacity: 0.3;
  display: block;
}
.skyline-bottom { width: 100%; display: block; opacity: 0.3; margin-bottom: -4px; }

@media (max-width: 768px) {
  .bc-layout { grid-template-columns: 1fr; }
  .bc-form .form-row { grid-template-columns: 1fr; }
}

/* ── SCROLL ANIMATIONS ── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-animate]:nth-child(2) { transition-delay: 0.1s; }
[data-animate]:nth-child(3) { transition-delay: 0.2s; }
[data-animate]:nth-child(4) { transition-delay: 0.3s; }
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 32px 48px 24px;
  font-size: 12px;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { font-weight: 500; color: var(--body); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; font-size: 11px; }
.footer-copy { font-size: 11px; color: var(--muted); margin-top: 4px; }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--dk); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .wrap, .nav-inner { padding-left: 24px; padding-right: 24px; }
  section { padding: 56px 0; }
  .page-header { padding: 120px 0 40px; }
  .nav-logo img { height: 40px; }
  .nav-inner { height: 64px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { height: 64px; }
  footer { padding: 20px 24px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
  .footer-links { gap: 16px; }
  .proof-logos { flex-direction: column !important; align-items: center !important; gap: 20px !important; }
}

/* Cookie Banner */
#cookie-banner{position:fixed;bottom:0;left:0;right:0;z-index:9999;background:var(--dk);color:#fff;padding:20px;transform:translateY(0);transition:transform .4s ease}
#cookie-banner.cb-hide{transform:translateY(100%)}
.cb-inner{max-width:1080px;margin:0 auto;display:flex;align-items:center;gap:24px;flex-wrap:wrap}
.cb-inner p{flex:1;font-size:13px;line-height:1.7;min-width:280px}
.cb-inner a{color:var(--sage-light)}
.cb-btns{display:flex;gap:10px}
.cb-btn{border:none;border-radius:8px;padding:10px 20px;font-size:13px;font-weight:600;cursor:pointer;font-family:inherit}
.cb-accept{background:var(--sage);color:#fff}
.cb-decline{background:transparent;color:#fff;border:1px solid rgba(255,255,255,0.3)}
