/* ============================================
   ACURODOS SHARED STYLESHEET
   Pass this file to Kodee along with all HTML pages
   ============================================ */
:root {
  --green-dark: #1a3a2a;
  --green-mid: #243d2e;
  --green-light: #2e5c40;
  --gold: #c8a45a;
  --gold-light: #e0c88a;
  --cream: #f0e8d5;
  --cream-mid: #d4c9b0;
  --text-muted: #a8c4a8;
  --off-white: #f7f4ef;
  --white: #ffffff;
  --body-text: #3a3a3a;
  --border: rgba(200,164,90,0.2);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html { overflow-x: hidden; }
body { font-family: 'DM Sans', sans-serif; background: var(--off-white); color: var(--body-text); overflow-x: hidden; }
img { max-width: 100%; height: auto; }
a { transition: color .2s; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(26,58,42,0.97); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: space-between; padding: 0 40px; height: 64px; border-bottom: 1px solid var(--border); }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; letter-spacing: 5px; color: var(--cream); text-decoration: none; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 13px; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--green-dark) !important; font-weight: 500 !important; padding: 8px 20px !important; border-radius: 20px; }
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-toggle { display: none !important; background: none !important; border: none !important; cursor: pointer !important; padding: 8px !important; z-index: 9999 !important; width: 38px !important; height: 38px !important; flex-shrink: 0 !important; align-items: center !important; justify-content: center !important; margin-left: auto; }
.nav-toggle svg { display: block !important; }
.nav-check { position: absolute; opacity: 0; pointer-events: none; }

/* PAGE HERO */
.page-hero { background: var(--green-dark); padding: 120px 40px 70px; position: relative; overflow: hidden; }
.page-hero-arc { position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; border: 1px solid rgba(200,164,90,0.1); pointer-events: none; }
.page-hero-arc2 { position: absolute; bottom: -80px; left: -80px; width: 280px; height: 280px; border-radius: 50%; border: 1px solid rgba(200,164,90,0.07); pointer-events: none; }
.page-hero-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; }
.page-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 60px); font-weight: 700; color: var(--cream); line-height: 1.15; margin-bottom: 18px; }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p { font-size: 17px; color: var(--text-muted); line-height: 1.7; font-weight: 300; max-width: 580px; }

/* BREADCRUMB */
.breadcrumb { background: var(--green-mid); padding: 12px 40px; border-bottom: 1px solid var(--border); }
.breadcrumb a, .breadcrumb span { font-size: 12px; color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 8px; color: var(--green-light); }
.breadcrumb .current { color: var(--gold); }

/* SECTIONS */
.section { padding: 80px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 4vw, 46px); font-weight: 700; color: var(--green-dark); line-height: 1.2; margin-bottom: 14px; }
.section-title em { color: var(--gold); font-style: italic; }
.section-sub { font-size: 16px; color: #666; line-height: 1.75; font-weight: 300; max-width: 580px; }
.bg-white { background: var(--white); }
.bg-offwhite { background: var(--off-white); }
.bg-dark { background: var(--green-dark); }
.bg-dark .section-title { color: var(--cream); }
.bg-dark .section-sub { color: var(--text-muted); }

/* BUTTONS */
.btn { display: inline-block; text-decoration: none; padding: 14px 32px; border-radius: 30px; font-weight: 500; font-size: 14px; transition: all .2s; cursor: pointer; border: none; }
.btn-gold { background: var(--gold); color: var(--green-dark); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline-cream { background: transparent; color: var(--cream); border: 1px solid rgba(240,232,213,0.35); }
.btn-outline-cream:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-dark { background: transparent; color: var(--green-dark); border: 1px solid var(--green-dark); }
.btn-outline-dark:hover { background: var(--green-dark); color: var(--cream); }

/* CARDS */
.card { background: var(--white); border: 1px solid #e8e0d4; border-radius: 12px; padding: 28px; transition: all .2s; }
.card:hover { border-color: var(--gold); box-shadow: 0 6px 24px rgba(200,164,90,0.1); }
.card-dark { background: var(--green-mid); border: 1px solid var(--border); border-radius: 12px; padding: 28px; transition: border-color .2s; }
.card-dark:hover { border-color: var(--gold); }

/* TRUST BAR */
.trust-bar { background: var(--green-mid); padding: 18px 40px; border-bottom: 1px solid var(--border); }
.trust-bar-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.trust-item strong { color: var(--cream); font-weight: 500; }

/* DIVIDER GOLD */
.gold-line { height: 3px; background: var(--gold); width: 60px; margin: 16px 0; border-radius: 2px; }

/* FOOTER */
footer { background: #111f17; padding: 50px 40px 30px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 22px; letter-spacing: 5px; color: var(--cream); margin-bottom: 12px; }
.footer-tagline { font-size: 12px; color: #3d6650; line-height: 1.7; margin-bottom: 16px; }
.footer-contact a { display: block; font-size: 13px; color: #6a9a7a; text-decoration: none; margin-bottom: 6px; }
.footer-contact a:hover { color: var(--gold); }
.footer-col h4 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: #3d6650; text-decoration: none; margin-bottom: 8px; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid #1d3024; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: #2d4a36; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { font-size: 12px; color: #3d6650; text-decoration: none; }
.footer-social a:hover { color: var(--gold); }

/* MOBILE STICKY */
.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99; background: var(--green-dark); border-top: 1px solid var(--border); padding: 12px 20px; }
.mobile-cta a { display: block; text-align: center; background: var(--gold); color: var(--green-dark); text-decoration: none; padding: 14px; border-radius: 30px; font-weight: 500; font-size: 15px; }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-toggle { display: flex !important; }
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--green-dark); flex-direction: column; align-items: flex-start; gap: 0; padding: 10px 20px 20px; border-bottom: 1px solid rgba(200,164,90,0.2); }
  .nav-check:checked ~ .nav-links { display: flex !important; }
  .nav-links .nav-cta { display: none !important; }
  .nav-links a { padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(200,164,90,0.08); }
  .nav-links .nav-cta { margin-top: 10px; text-align: center; border-bottom: none; }
  .section { padding: 50px 20px; }
  .page-hero { padding: 90px 20px 50px; }
  .breadcrumb { padding: 10px 20px; }
  .trust-bar { padding: 14px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .mobile-cta { display: block; }
  body { padding-bottom: 75px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* COOKIE CONSENT BANNER */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: #111f17; border-top: 1px solid rgba(200,164,90,0.3); padding: 16px 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cookie-banner p { font-size: 13px; color: #a8c4a8; line-height: 1.6; flex: 1; min-width: 260px; }
.cookie-banner p a { color: #c8a45a; text-decoration: underline; }
.cookie-banner-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept { background: #c8a45a; color: #1a3a2a; border: none; padding: 10px 22px; border-radius: 20px; font-size: 13px; font-weight: 500; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.cookie-decline { background: transparent; color: #a8c4a8; border: 1px solid rgba(168,196,168,0.3); padding: 10px 22px; border-radius: 20px; font-size: 13px; cursor: pointer; font-family: 'DM Sans', sans-serif; }
.cookie-banner.hidden { display: none; }
@media (max-width: 600px) { .cookie-banner { padding: 14px 16px; } }

/* GDPR CONSENT CHECKBOX */
.consent-check { display: flex; align-items: flex-start; gap: 10px; margin: 10px 0; }
.consent-check input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: #1a3a2a; width: 16px; height: 16px; }
.consent-check label { font-size: 12px; color: #777; line-height: 1.6; }
.consent-check label a { color: #1a3a2a; text-decoration: underline; }

/* LEGAL DISCLAIMER BLOCK */
.legal-note { background: rgba(26,58,42,0.06); border-left: 3px solid rgba(200,164,90,0.4); border-radius: 0 8px 8px 0; padding: 12px 16px; font-size: 13px; color: #666; line-height: 1.65; margin: 20px 0; }
.legal-note strong { color: #1a3a2a; }
