/* ── MINDFUL EARTH · SHARED STYLES ── */
@import url('https://fonts.googleapis.com/css2?family=Gloock&family=Lora:ital,wght@0,400;0,500;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

:root {
  --bark:      #5d4133;
  --forest:    #4d554c;
  --sage:      #bfc0ab;
  --sage-mid:  #8e988f;
  --sage-light:#f0f1eb;
  --sand:      #d9b382;
  --blush:     #d8aca4;
  --parchment: #f5f0e8;
  --off-white: #f8f6f1;
  --white:     #ffffff;
  --mauve:     #754b4d;
  --clay:      #966a62;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
a { color:inherit; text-decoration:none; }
html { scroll-behavior:smooth; }

body {
  font-family:'Lora',Georgia,serif;
  background:var(--off-white);
  color:var(--forest);
  font-weight:400;
  line-height:1.7;
}
h1,h2,h3,h4 { font-family:'Gloock',Georgia,serif; font-weight:400; color:var(--bark); }

/* ── NAV ── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:200;
  padding:0 40px; height:68px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  background:rgba(77,85,76,0.97);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(77,85,76,0.3);
  transition:box-shadow 0.3s;
}
nav.scrolled { box-shadow:0 2px 24px rgba(0,0,0,0.15); }
nav.dark {
  background:rgba(77,85,76,0.97);
  border-bottom:1px solid rgba(77,85,76,0.9);
}

/* Logo SVG ginkgo */
.nav-logo {
  display:flex; align-items:center; gap:10px;
  text-decoration:none; flex-shrink:0;
}
.nav-logo-mark { width:32px; height:40px; flex-shrink:0; }
.nav-logo-text { line-height:1.15; }
.nav-logo-name {
  display:block;
  font-family:'Gloock',serif; font-size:17px;
  color:var(--off-white); line-height:1;
}
.nav-logo-tagline { color:var(--sage); opacity:0.75; }
nav.dark .nav-logo-name { color:var(--off-white); }
.nav-logo-tagline {
  display:block;
  font-family:'Lora',serif; font-style:italic; font-size:8.5px;
  letter-spacing:0.12em; color:var(--clay); line-height:1;
  margin-top:3px;
}
nav.dark .nav-logo-tagline { color:rgba(191,192,171,0.65); }

.nav-center { display:flex; align-items:center; gap:2px; list-style:none; }
.nav-center > li { position:relative; }
.nav-center > li > a {
  display:flex; align-items:center; gap:3px;
  font-family:'Jost',sans-serif; font-size:11px; font-weight:400;
  letter-spacing:0.09em; text-transform:uppercase;
  color:var(--sage); text-decoration:none;
  padding:7px 10px; border-radius:2px;
  transition:color 0.2s, background 0.2s; white-space:nowrap;
}
.nav-center > li > a:hover { color:var(--off-white); background:rgba(255,255,255,0.08); }
nav.dark .nav-center > li > a { color:var(--sage); }
.nav-center > li > a:hover { color:var(--bark); background:rgba(93,65,51,0.06); }
nav.dark .nav-center > li > a:hover { color:var(--off-white); background:rgba(255,255,255,0.08); }
.nav-arrow { font-size:7px; opacity:0.45; transition:transform 0.2s; }
.nav-center > li:hover .nav-arrow { transform:rotate(180deg); }

.nav-dropdown {
  position:absolute; top:calc(100% + 6px); left:0;
  min-width:210px; background:var(--white);
  border:1px solid rgba(191,192,171,0.35); border-radius:4px;
  box-shadow:0 8px 28px rgba(93,65,51,0.1);
  padding:6px 0; list-style:none;
  opacity:0; visibility:hidden; transform:translateY(-6px);
  transition:opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.nav-center > li:hover .nav-dropdown { opacity:1; visibility:visible; transform:translateY(0); }
.nav-dropdown li a {
  display:block; padding:9px 18px;
  font-family:'Jost',sans-serif; font-size:12px; font-weight:300; letter-spacing:0.03em;
  color:var(--forest); text-decoration:none;
  transition:background 0.15s, color 0.15s;
}
.nav-dropdown li a:hover { background:var(--off-white); color:var(--bark); }
.nav-dropdown .divider { height:1px; background:rgba(191,192,171,0.25); margin:4px 0; }

.nav-cta {
  font-family:'Jost',sans-serif; font-size:10px; font-weight:500;
  letter-spacing:0.1em; text-transform:uppercase;
  color:var(--bark); background:var(--sand);
  padding:9px 20px; text-decoration:none; border-radius:2px;
  white-space:nowrap; flex-shrink:0; transition:background 0.2s;
}
.nav-cta:hover { background:var(--parchment); }

/* Mobile nav */
.nav-hamburger {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:4px;
}
.nav-hamburger span {
  display:block; width:22px; height:1.5px;
  background:var(--off-white); transition:all 0.3s;
}
nav.dark .nav-hamburger span { background:var(--off-white); }

.mobile-menu {
  display:none; position:fixed; top:68px; left:0; right:0; bottom:0;
  background:var(--forest); z-index:190; overflow-y:auto;
  padding:32px 24px 48px;
}
.mobile-menu.open { display:block; }
.mobile-nav-item {
  border-bottom:1px solid rgba(191,192,171,0.25);
}
.mobile-nav-link {
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 0;
  font-family:'Jost',sans-serif; font-size:14px; font-weight:400;
  letter-spacing:0.06em; text-transform:uppercase;
  color:var(--bark); text-decoration:none;
  background:none; border:none; width:100%; cursor:pointer;
}
.mobile-sub { display:none; padding:0 0 8px 16px; }
.mobile-sub.open { display:block; }
.mobile-sub a {
  display:block; padding:9px 0;
  font-family:'Jost',sans-serif; font-size:13px; font-weight:300;
  color:var(--forest); text-decoration:none; letter-spacing:0.02em;
  border-bottom:1px solid rgba(191,192,171,0.15);
}
.mobile-cta {
  margin-top:24px;
  display:block; text-align:center;
  font-family:'Jost',sans-serif; font-size:12px; font-weight:500;
  letter-spacing:0.12em; text-transform:uppercase;
  color:var(--white); background:var(--forest);
  padding:16px; text-decoration:none;
}

/* ── BUTTONS ── */
.btn-primary { display:inline-block; font-family:'Jost',sans-serif; font-size:11px; font-weight:500; letter-spacing:0.12em; text-transform:uppercase; padding:14px 30px; background:var(--sand); color:var(--bark); text-decoration:none; border-radius:2px; transition:background 0.2s; }
.btn-primary:hover { background:var(--parchment); }
.btn-ghost { display:inline-block; font-family:'Jost',sans-serif; font-size:11px; font-weight:400; letter-spacing:0.12em; text-transform:uppercase; padding:14px 30px; border:1px solid rgba(239,232,220,0.45); color:rgba(239,232,220,0.9); text-decoration:none; border-radius:2px; transition:border-color 0.2s,color 0.2s; }
.btn-ghost:hover { border-color:var(--sand); color:var(--sand); }
.btn-forest { display:inline-block; font-family:'Jost',sans-serif; font-size:11px; font-weight:500; letter-spacing:0.12em; text-transform:uppercase; padding:14px 30px; background:var(--forest); color:var(--off-white); text-decoration:none; border-radius:2px; transition:background 0.2s; }
.btn-forest:hover { background:var(--bark); }
.btn-sand { display:inline-block; font-family:'Jost',sans-serif; font-size:11px; font-weight:500; letter-spacing:0.12em; text-transform:uppercase; padding:14px 30px; background:var(--sand); color:var(--bark); text-decoration:none; border-radius:2px; transition:background 0.2s; }
.btn-sand:hover { background:var(--parchment); }
.btn-bark { display:inline-block; font-family:'Jost',sans-serif; font-size:11px; font-weight:500; letter-spacing:0.12em; text-transform:uppercase; padding:14px 30px; background:var(--bark); color:var(--off-white); text-decoration:none; border-radius:2px; transition:background 0.2s; }
.btn-bark:hover { background:var(--mauve); }
.btn-outline { display:inline-block; font-family:'Jost',sans-serif; font-size:11px; font-weight:400; letter-spacing:0.12em; text-transform:uppercase; padding:13px 28px; border:1px solid var(--bark); color:var(--bark); text-decoration:none; border-radius:2px; transition:background 0.2s,color 0.2s; }
.btn-outline:hover { background:var(--bark); color:var(--off-white); }
.btn-outline-light { display:inline-block; font-family:'Jost',sans-serif; font-size:11px; font-weight:400; letter-spacing:0.12em; text-transform:uppercase; padding:14px 30px; border:1px solid rgba(239,232,220,0.35); color:rgba(239,232,220,0.85); text-decoration:none; border-radius:2px; transition:border-color 0.2s,color 0.2s; }
.btn-outline-light:hover { border-color:var(--sand); color:var(--sand); }

/* ── SHARED ELEMENTS ── */
.eyebrow { font-family:'Jost',sans-serif; font-size:10px; font-weight:500; letter-spacing:0.22em; text-transform:uppercase; color:var(--sage-light); display:block; margin-bottom:18px; }
.sand-rule { width:44px; height:1px; background:var(--sand); margin-bottom:24px; }
.page-top { padding-top:68px; }

/* ── PAGE HERO (inner pages) ── */
.inner-hero {
  background:var(--parchment);
  padding:80px 10vw 64px;
  border-bottom:1px solid rgba(191,192,171,0.25);
}
.inner-hero.forest { background:var(--forest); }
.inner-hero.bark { background:var(--bark); }
.inner-hero.mauve { background:var(--mauve); }
.inner-hero h1 { font-size:clamp(36px,4.5vw,60px); line-height:1.1; margin-bottom:16px; }
.inner-hero h1 em { font-style:italic; color:var(--mauve); }
.inner-hero.forest h1, .inner-hero.bark h1, .inner-hero.mauve h1 { color:var(--off-white); }
.inner-hero.forest h1 em, .inner-hero.bark h1 em { color:var(--sand); }
.inner-hero.mauve h1 em { color:var(--sand); }
.inner-hero p { font-size:16px; line-height:1.85; max-width:560px; margin-bottom:32px; }
.inner-hero.forest p, .inner-hero.bark p, .inner-hero.mauve p { color:rgba(239,232,220,0.75); }

/* Coming soon badge */
.coming-soon-tag {
  display:inline-block;
  font-family:'Jost',sans-serif; font-size:9px; font-weight:500;
  letter-spacing:0.18em; text-transform:uppercase;
  padding:5px 12px; border:1px solid rgba(191,192,171,0.5);
  color:var(--sage-light); margin-bottom:20px;
}

/* ── NEWSLETTER ── */
.newsletter { background:var(--parchment); padding:80px 10vw; text-align:center; border-top:1px solid rgba(191,192,171,0.25); }
.newsletter h2 { font-size:clamp(26px,3vw,38px); margin-bottom:14px; color:var(--bark); }
.newsletter p { font-size:15px; line-height:1.8; color:var(--forest); max-width:480px; margin:0 auto 32px; }
.email-form { display:flex; max-width:420px; margin:0 auto; }
.email-form input { flex:1; padding:14px 18px; font-family:'Lora',serif; font-size:14px; border:1px solid var(--sage); border-right:none; background:var(--white); color:var(--bark); outline:none; border-radius:2px 0 0 2px; }
.email-form input::placeholder { color:var(--sage); }
.email-form button { font-family:'Jost',sans-serif; font-size:11px; font-weight:500; letter-spacing:0.12em; text-transform:uppercase; padding:14px 26px; background:var(--forest); color:var(--white); border:none; cursor:pointer; border-radius:0 2px 2px 0; transition:background 0.2s; white-space:nowrap; }
.email-form button:hover { background:var(--bark); }

/* ── FOOTER ── */
footer { background:var(--forest); padding:64px 10vw 32px; }
.footer-top { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:48px; margin-bottom:32px; padding-bottom:32px; border-bottom:1px solid rgba(191,192,171,0.15); }
.footer-brand-name { font-family:'Gloock',serif; font-size:22px; color:var(--off-white); display:block; margin-bottom:6px; }
.footer-tagline { font-family:'Lora',serif; font-style:italic; font-size:12px; color:var(--sand); display:block; margin-bottom:14px; }
.footer-desc { font-size:13px; line-height:1.75; color:var(--sage); }
.footer-col h4 { font-family:'Jost',sans-serif; font-size:10px; font-weight:500; letter-spacing:0.16em; text-transform:uppercase; color:var(--sand); margin-bottom:16px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
.footer-col a { font-size:13px; color:var(--sage); text-decoration:none; transition:color 0.2s; }
.footer-col a:hover { color:var(--off-white); }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; padding-top:24px; border-top:1px solid rgba(191,192,171,0.15); }
.footer-legal { display:flex; gap:22px; flex-wrap:wrap; }
.footer-legal a { font-family:'Jost',sans-serif; font-size:10px; letter-spacing:0.08em; color:rgba(191,192,171,0.55); text-decoration:none; transition:color 0.2s; }
.footer-legal a:hover { color:var(--off-white); }
.footer-legal .eco { color:var(--sand) !important; }
.footer-copy { font-family:'Jost',sans-serif; font-size:10px; color:rgba(191,192,171,0.4); }

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .footer-top { grid-template-columns:1fr 1fr; gap:32px; }
}
@media(max-width:768px) {
  nav { padding:0 20px; }
  .nav-center, .nav-cta { display:none; }
  .nav-hamburger { display:flex; }
  .footer-top { grid-template-columns:1fr; gap:32px; }
  .inner-hero { padding:60px 6vw 48px; }
}


/* ── GLOBAL ADDITIONS ── */

/* Top announcement bar */
.top-bar {
  background:rgba(77,85,76,0.9);
  padding:8px 6vw;
  display:flex; align-items:center; justify-content:center; gap:24px;
  flex-wrap:wrap;
}
.top-bar a {
  font-family:'Jost',sans-serif; font-size:10px; font-weight:400;
  letter-spacing:0.1em; color:var(--sage);
  text-decoration:none; transition:color 0.2s;
}
.top-bar a:hover { color:var(--off-white); }
.top-bar-sep { color:rgba(191,192,171,0.3); font-size:10px; }
.top-bar-sep { color:rgba(191,192,171,0.3); font-size:10px; }

/* Back to top button */
.back-to-top {
  position:fixed; bottom:28px; right:28px; z-index:100;
  width:44px; height:44px; border-radius:50%;
  background:var(--bark); border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transition:opacity 0.3s, visibility 0.3s, background 0.2s;
  box-shadow:0 4px 16px rgba(93,65,51,0.2);
}
.back-to-top.visible { opacity:1; visibility:visible; }
.back-to-top:hover { background:var(--mauve); }
.back-to-top svg { width:16px; height:16px; }

/* Sticky mobile CTA */
.mobile-sticky-cta {
  display:none;
  position:fixed; bottom:0; left:0; right:0; z-index:150;
  background:var(--bark); padding:14px 24px;
  text-align:center;
}
.mobile-sticky-cta a {
  font-family:'Jost',sans-serif; font-size:12px; font-weight:500;
  letter-spacing:0.12em; text-transform:uppercase;
  color:var(--off-white); text-decoration:none;
  display:flex; align-items:center; justify-content:center; gap:8px;
}

/* Cookie banner */
.cookie-banner {
  position:fixed; bottom:0; left:0; right:0; z-index:9999;
  background:var(--bark); padding:16px 6vw;
  display:flex; align-items:center; justify-content:space-between;
  gap:20px; flex-wrap:wrap;
  box-shadow:0 -4px 20px rgba(0,0,0,0.2);
  transform:translateY(100%); transition:transform 0.4s;
}
.cookie-banner.visible { transform:translateY(0); }
.cookie-banner p {
  font-family:'Jost',sans-serif; font-size:12px; font-weight:300;
  color:rgba(239,232,220,0.75); line-height:1.6; flex:1; min-width:200px;
}
.cookie-banner p a { color:var(--sand); text-decoration:none; }
.cookie-banner-btns { display:flex; gap:10px; flex-shrink:0; }
.cookie-accept {
  font-family:'Jost',sans-serif; font-size:10px; font-weight:500;
  letter-spacing:0.1em; text-transform:uppercase;
  padding:9px 20px; background:var(--sand); color:var(--bark);
  border:none; cursor:pointer; border-radius:2px; transition:background 0.2s;
}
.cookie-accept:hover { background:var(--parchment); }
.cookie-decline {
  font-family:'Jost',sans-serif; font-size:10px; font-weight:400;
  letter-spacing:0.1em; text-transform:uppercase;
  padding:9px 16px; background:transparent;
  color:rgba(239,232,220,0.5); border:1px solid rgba(239,232,220,0.2);
  cursor:pointer; border-radius:2px; transition:color 0.2s;
}
.cookie-decline:hover { color:var(--off-white); }

/* Print styles for careers */
@media print {
  .top-bar, nav, .mobile-sticky-cta, .cookie-banner, .back-to-top, footer { display:none !important; }
  body { font-size:12pt; color:#000; }
  h1,h2,h3,h4 { color:#000; }
  a { color:#000; text-decoration:none; }
}

@media(max-width:768px) {
  .mobile-sticky-cta { display:block; }
  .back-to-top { bottom:80px; }
}
