/* ============================================
   Interglobal Ecovista Ltd — Design System
   Green eco corporate theme
   ============================================ */
:root {
  --green-950: #0b2e1f;
  --green-900: #10402c;
  --green-800: #155d3b;
  --green-700: #1b7a4c;
  --green-600: #219a5c;
  --green-100: #e3f2ea;
  --green-50:  #f2f9f5;
  --gold-500:  #c9a227;
  --gold-600:  #b08d1f;
  --earth-100: #f6f1e7;
  --ink-900:   #1a2420;
  --ink-600:   #4a5a52;
  --ink-400:   #7c8a83;
  --white:     #ffffff;
  --radius:    12px;
  --shadow-sm: 0 1px 3px rgba(11,46,31,.08);
  --shadow-md: 0 6px 24px rgba(11,46,31,.12);
  --maxw:      1160px;
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, Segoe UI, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: var(--green-700); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: var(--green-950); margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.3rem; }
p  { margin: 0 0 1em; }
.lead { font-size: 1.15rem; color: var(--ink-600); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section--tint { background: var(--green-50); }
.section--dark { background: var(--green-950); color: #dcebe2; }
.section--dark h2, .section--dark h3 { color: var(--white); }
.kicker {
  display: inline-block; font-size: .8rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold-600);
  margin-bottom: 10px;
}
.center { text-align: center; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--green-950);
  color: #fff; padding: 10px 18px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--green-100);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin: 0 auto; padding: 12px 20px; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand__logo {
  width: 52px; height: 52px; flex: none; object-fit: contain;
  transition: transform .2s;
}
.brand:hover .brand__logo { transform: scale(1.04); }
@media (max-width: 480px) { .brand__logo { width: 44px; height: 44px; } }
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--green-950); line-height: 1.1; }
.brand__tag { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-400); }

.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  display: block; padding: 10px 14px; text-decoration: none; color: var(--ink-900);
  font-weight: 500; font-size: .95rem; border-radius: 8px; transition: background .2s, color .2s;
}
.nav__links a:hover { background: var(--green-50); color: var(--green-800); }
.nav__links a[aria-current="page"] { color: var(--green-800); background: var(--green-100); }

.dropdown { position: relative; }
.dropdown > a::after { content: " ▾"; font-size: .7em; }
.dropdown__menu {
  position: absolute; top: 100%; left: 0; min-width: 300px; background: #fff;
  border: 1px solid var(--green-100); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 8px; display: none; list-style: none; margin: 4px 0 0;
}
.dropdown:hover .dropdown__menu, .dropdown:focus-within .dropdown__menu { display: block; }
.dropdown__menu a { border-radius: 8px; }

.btn {
  display: inline-block; padding: 12px 24px; border-radius: 999px; border: 0;
  font-weight: 600; font-size: .95rem; text-decoration: none; cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s; min-height: 44px;
}
.btn--primary { background: var(--green-800); color: #fff; }
.btn--primary:hover { background: var(--green-700); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold-500); color: var(--green-950); }
.btn--gold:hover { background: var(--gold-600); color: #fff; }
.btn--ghost { background: transparent; color: var(--green-800); border: 2px solid var(--green-800); }
.btn--ghost:hover { background: var(--green-50); }
.section--dark .btn--ghost { color: #fff; border-color: #fff; }
.section--dark .btn--ghost:hover { background: rgba(255,255,255,.12); }

.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 10px;
  width: 44px; height: 44px; color: var(--green-950);
}
@media (max-width: 1100px) {
  .nav__toggle { display: grid; place-items: center; }
  .nav__links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch;
    padding: 12px 20px 20px; border-bottom: 1px solid var(--green-100); box-shadow: var(--shadow-md);
  }
  .nav__links.is-open { display: flex; }
  .dropdown__menu { position: static; display: block; box-shadow: none; border: 0; padding-left: 16px; }
  .dropdown > a::after { content: ""; }
  .nav__cta { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(201,162,39,.18), transparent 60%),
    linear-gradient(160deg, var(--green-950) 0%, var(--green-800) 100%);
  color: #e8f3ed; padding: 96px 0;
}
.hero h1 { color: #fff; }
.hero .lead { color: #cfe3d8; max-width: 640px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid--3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid--3, .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--green-100); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__icon {
  width: 52px; height: 52px; border-radius: 12px; background: var(--green-100);
  color: var(--green-800); display: grid; place-items: center; margin-bottom: 18px;
}
.card--link { text-decoration: none; color: inherit; display: block; }
.card__more { font-weight: 600; color: var(--green-700); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
@media (max-width: 620px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat__num { font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; color: var(--gold-500); }
.stat__label { color: inherit; opacity: .85; font-size: .95rem; }

/* ---------- Testimonials ---------- */
.quote {
  background: #fff; border-left: 4px solid var(--gold-500); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px; box-shadow: var(--shadow-sm);
}
.quote p { font-style: italic; color: var(--ink-600); }
.quote footer { font-weight: 600; color: var(--green-900); font-style: normal; }
.quote footer span { display: block; font-weight: 400; font-size: .85rem; color: var(--ink-400); }

/* ---------- Partner logos ---------- */
.logos { display: flex; flex-wrap: wrap; gap: 16px 40px; align-items: center; justify-content: center; }
.logos span {
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  color: var(--ink-400); letter-spacing: .02em;
}

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; }
.form--card { background: #fff; border: 1px solid var(--green-100); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.form__row { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
@media (max-width: 620px) { .form__row { grid-template-columns: 1fr; } }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.field .req { color: #b3261e; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1px solid #c9d8d0; border-radius: 8px;
  font: inherit; background: #fff; min-height: 44px;
}
.field input:hover, .field textarea:hover, .field select:hover { border-color: var(--green-600); }
.field .hint { font-size: .8rem; color: var(--ink-400); margin-top: 4px; }
.form__status { font-weight: 600; }
.form__status.ok { color: var(--green-700); }
.form__status.err { color: #b3261e; }

/* ---------- Newsletter strip ---------- */
.newsletter { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter input { flex: 1 1 240px; padding: 12px 14px; border-radius: 999px; border: 1px solid #c9d8d0; font: inherit; min-height: 44px; }

/* ---------- Map ---------- */
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--green-100); }
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ---------- Events ---------- */
.event { display: flex; gap: 20px; align-items: flex-start; }
.event__date {
  flex: none; width: 64px; text-align: center; background: var(--green-100);
  border-radius: 10px; padding: 10px 6px; color: var(--green-900);
}
.event__date b { display: block; font-size: 1.4rem; font-family: var(--font-head); }
.event__date small { text-transform: uppercase; letter-spacing: .08em; font-size: .7rem; }

/* ---------- Blog ---------- */
.post-meta { font-size: .8rem; color: var(--ink-400); text-transform: uppercase; letter-spacing: .06em; }

/* ---------- Share buttons ---------- */
.share { display: flex; gap: 10px; align-items: center; }
.share a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--green-100); color: var(--green-900); transition: background .2s;
}
.share a:hover { background: var(--gold-500); color: var(--green-950); }

/* ---------- Careers ---------- */
.job { display: flex; justify-content: space-between; gap: 16px; align-items: center; flex-wrap: wrap; }
.badge {
  display: inline-block; background: var(--green-100); color: var(--green-900);
  border-radius: 999px; padding: 4px 12px; font-size: .78rem; font-weight: 600;
}
.badge--gold { background: #f7edcc; color: var(--gold-600); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--green-900), var(--green-700));
  border-radius: 18px; padding: 48px; color: #fff; display: flex;
  justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-950); color: #b9cfc3; padding: 64px 0 0; font-size: .93rem; }
.site-footer h3, .site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; font-family: var(--font-body); font-weight: 600; }
.site-footer a { color: #cfe3d8; text-decoration: none; }
.site-footer a:hover { color: var(--gold-500); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 48px; padding: 20px 0;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .82rem;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.1); transition: background .2s;
}
.socials a:hover { background: var(--gold-500); color: var(--green-950); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow-md);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease-out, transform .5s ease-out; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Misc ---------- */
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }
.img-block { border-radius: 16px; min-height: 320px; box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--green-600), var(--green-950)); }
.checklist { list-style: none; margin: 0 0 1.2em; padding: 0; display: grid; gap: 12px; }
.checklist li { padding-left: 32px; position: relative; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 20px; height: 20px;
  border-radius: 50%; background: var(--green-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23155d3b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}
.breadcrumb { font-size: .85rem; color: #cfe3d8; margin-bottom: 12px; }
.breadcrumb a { color: var(--gold-500); text-decoration: none; }

/* ============================================
   MERGE ADDITIONS — photography, filters, FAQ,
   listing cards, placeholder markers
   ============================================ */

/* ---------- Photographic hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(11,46,31,.94) 0%, rgba(16,64,44,.88) 48%, rgba(21,93,59,.62) 100%);
}
.hero .container { position: relative; z-index: 2; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--green-50); border-bottom: 1px solid var(--green-100); padding: 26px 0; }
.trust-strip__label {
  text-align: center; font-size: .76rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-400); margin: 0 0 14px;
}
.trust-strip__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.trust-strip__list span {
  background: #fff; border: 1px solid var(--green-100); border-radius: 999px;
  padding: 8px 18px; font-size: .87rem; font-weight: 500; color: var(--ink-600);
}

/* ---------- Media cards (photo + body) ---------- */
.card--media { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card--media .card__media { position: relative; }
.card--media img { width: 100%; height: 200px; object-fit: cover; }
.card--media .card__body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.card--media .card__body > p:last-of-type { flex: 1; }
.card--media .card__body .post-meta { flex: 0 0 auto; }
.card__badge {
  position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.95);
  color: var(--green-900); font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 6px 13px; border-radius: 999px;
}
.card__meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: .82rem; color: var(--ink-400); margin: 4px 0 14px; }

/* ---------- Figure with caption ---------- */
.figure { margin: 0; }
.figure img { border-radius: 16px; box-shadow: var(--shadow-md); width: 100%; height: 100%; min-height: 320px; object-fit: cover; }

/* ---------- Filter chips ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 0 0 36px; }
.chip {
  border: 2px solid var(--green-100); background: #fff; color: var(--ink-600);
  border-radius: 999px; padding: 10px 20px; font: inherit; font-size: .9rem;
  font-weight: 600; cursor: pointer; min-height: 44px; transition: all .18s;
}
.chip:hover { border-color: var(--green-600); color: var(--green-800); }
.chip[aria-pressed="true"] { background: var(--green-800); border-color: var(--green-800); color: #fff; }
.is-filtered-out { display: none !important; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--green-100); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 18px 22px; font-family: var(--font-head); font-weight: 600;
  color: var(--green-950); list-style: none; display: flex; justify-content: space-between;
  gap: 16px; min-height: 44px; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold-600); font-size: 1.4rem; line-height: 1; flex: none; }
.faq details[open] summary::after { content: "\2013"; }
.faq details[open] { border-color: #cfe0d6; }
.faq__answer { padding: 0 22px 20px; color: var(--ink-600); }

/* ---------- Placeholder markers (replace before launch) ---------- */
.placeholder {
  background: #fffbea; outline: 1px dashed var(--gold-500); outline-offset: 2px;
  border-radius: 4px; color: var(--ink-600);
}
.placeholder-note {
  font-size: .8rem; color: var(--ink-400); text-align: center;
  margin-top: 18px; font-style: italic;
}
.section--dark .placeholder { background: rgba(201,162,39,.12); color: #e8f3ed; }
.section--dark .placeholder-note { color: #9db8ab; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step__num {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px;
  background: var(--green-800); color: #fff; font-family: var(--font-head);
  font-weight: 700; margin-bottom: 14px;
}

/* ---------- Dropdown: touch/keyboard support ---------- */
.dropdown.is-open .dropdown__menu { display: block; }
@media (max-width: 1100px) {
  .dropdown__menu { display: none; }
  .dropdown.is-open .dropdown__menu { display: block; }
}

/* ---------- Image load failure fallback ---------- */
img.img-failed {
  background: linear-gradient(135deg, var(--green-600), var(--green-950));
  min-height: 200px;
}

/* ---------- Cookie bar ---------- */
.cookie-bar {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 120;
  max-width: 760px; margin: 0 auto; background: #fff; color: var(--ink-900);
  border: 1px solid var(--green-100); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.cookie-bar[hidden] { display: none; }
.cookie-bar p { margin: 0; font-size: .92rem; flex: 1 1 320px; }
.cookie-bar__actions { display: flex; gap: 10px; }
.cookie-bar .btn { padding: 9px 18px; font-size: .88rem; min-height: 40px; }
@media (max-width: 620px) { .cookie-bar { left: 12px; right: 12px; bottom: 12px; padding: 16px; } .wa-float { bottom: 130px; } }

/* ---------- Article pages ---------- */
.article { max-width: 760px; margin: 0 auto; }
.article__meta { font-size: .85rem; color: var(--ink-400); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.article__body { font-size: 1.06rem; }
.article__body h2 { font-size: 1.5rem; margin-top: 1.8em; }
.article__body h3 { font-size: 1.15rem; margin-top: 1.5em; }
.article__body ul, .article__body ol { padding-left: 22px; margin: 0 0 1.2em; }
.article__body li { margin-bottom: 8px; }
.article__body blockquote {
  margin: 1.6em 0; padding: 18px 24px; background: var(--green-50);
  border-left: 4px solid var(--gold-500); border-radius: 0 var(--radius) var(--radius) 0;
}
.article__body blockquote p:last-child { margin: 0; }
.article__lead { font-size: 1.18rem; color: var(--ink-600); }
.article__figure { margin: 0 0 32px; }
.article__figure img { border-radius: var(--radius); width: 100%; max-height: 420px; object-fit: cover; }
.article__figure figcaption { font-size: .82rem; color: var(--ink-400); margin-top: 8px; }
.share-bar {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  border-top: 1px solid var(--green-100); border-bottom: 1px solid var(--green-100);
  padding: 18px 0; margin: 40px 0;
}
.share-bar strong { font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-400); }
.share a, .share button { border: 0; cursor: pointer; font: inherit; }
.author-box { display: flex; gap: 18px; align-items: flex-start; background: var(--green-50); border-radius: var(--radius); padding: 24px; }
.author-box__avatar {
  width: 56px; height: 56px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--green-700), var(--green-950)); color: #fff;
  font-family: var(--font-head); font-weight: 700;
}
.article__note {
  font-size: .85rem; color: var(--ink-400); border: 1px dashed var(--green-100);
  border-radius: var(--radius); padding: 14px 18px; margin-top: 32px;
}

/* ============================================
   POLISH PASS — contrast, component fixes,
   article layout, mobile navigation
   ============================================ */

/* Breadcrumb: gold-on-white failed contrast. Light variant for pale backgrounds. */

/* Body-copy links need an underline to be distinguishable without colour alone */
.article__body a, .checklist a, .faq__answer a, .placeholder-note a,
.cookie-bar a, .site-footer .footer-bottom a { text-decoration: underline; }
.article__body a:hover, .checklist a:hover, .faq__answer a:hover { color: var(--green-800); }

/* Copy-link share button was missing the circular treatment of its siblings */
.share button {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--green-100); color: var(--green-900); transition: background .2s;
}
.share button:hover { background: var(--gold-500); color: var(--green-950); }
.share button.is-copied { background: var(--green-600); color: #fff; }

/* Placeholder markers sat as bright cream circles in the dark footer */
.site-footer .placeholder,
.socials .placeholder {
  background: rgba(201,162,39,.16); outline-color: var(--gold-600); color: #fff;
}

/* Newsletter status message must clear the input/button row */
.newsletter .form__status { flex: 1 0 100%; margin: 0; font-size: .88rem; }

/* Buttons inside cards: consistent full-width block at the foot of the card */
.card--media .card__body .btn { align-self: stretch; text-align: center; margin-top: 4px; }

/* ---------- Mobile navigation ---------- */
.nav__cta-mobile { display: none; }
@media (max-width: 1100px) {
  .nav__cta { display: none; }
  .nav__cta-mobile { display: block; margin-top: 12px; }
  .nav__cta-mobile .btn { display: block; text-align: center; }
  .nav__links > li > a { padding: 12px 14px; }
}

/* ---------- Article pages ---------- */
.hero--article { padding: 72px 0; }
.hero--article .article__meta { color: #cfe3d8; margin-bottom: 10px; }
.hero--article h1 { max-width: 20ch; }
.hero--article .article__lead { color: #cfe3d8; max-width: 62ch; }
.article__body > h2:first-child { margin-top: 0; }
.article__body p > strong { color: var(--green-950); }
.article__body ol { counter-reset: none; }

/* ---------- Cookie bar / WhatsApp button stacking ---------- */
@media (max-width: 620px) {
  .wa-float { bottom: 20px; transition: transform .2s, bottom .2s; }
  body.has-cookie-bar .wa-float { bottom: 152px; }
}

/* ---------- Section rhythm: avoid two identical backgrounds meeting ---------- */
.section:not(.section--tint):not(.section--dark) + .section:not(.section--tint):not(.section--dark) { padding-top: 0; }
.section--tint + .section--tint { padding-top: 0; }

/* ---------- Footer brand lockup ---------- */
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.footer-brand img { width: 60px; height: 60px; flex: none; object-fit: contain; }
.footer-brand h3 { margin: 0; line-height: 1.25; }

/* ============================================
   Video — click-to-load facade
   ============================================ */
.video-feature { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .video-feature { grid-template-columns: 1fr; gap: 32px; } }

.video {
  position: relative; aspect-ratio: 16 / 9; border-radius: 18px; overflow: hidden;
  background: var(--green-950); box-shadow: var(--shadow-md); border: 0; padding: 0;
  width: 100%; cursor: pointer; display: block; color: inherit; font: inherit;
}
.video img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease, filter .3s ease;
}
.video::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,46,31,.62), rgba(11,46,31,.12) 55%);
  transition: background .3s;
}
.video:hover img { transform: scale(1.035); }
.video:hover::after { background: linear-gradient(to top, rgba(11,46,31,.7), rgba(11,46,31,.2) 55%); }

.video__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 84px; height: 84px; border-radius: 50%; z-index: 2;
  background: var(--gold-500); color: var(--green-950);
  display: grid; place-items: center; box-shadow: 0 8px 30px rgba(11,46,31,.45);
  transition: transform .25s ease, background .25s ease;
}
.video:hover .video__play, .video:focus-visible .video__play { transform: translate(-50%,-50%) scale(1.09); background: #d8b23b; }
.video__play svg { margin-left: 5px; }
@media (max-width: 620px) { .video__play { width: 66px; height: 66px; } }

.video__label {
  position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 2;
  color: #fff; text-align: left;
}
.video__label strong { display: block; font-family: var(--font-head); font-size: 1.05rem; }
.video__label span { font-size: .84rem; color: #cfe3d8; }

.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 3; }
.video.is-playing { cursor: default; }
.video.is-playing .video__play,
.video.is-playing .video__label,
.video.is-playing::after { display: none; }

.video-note {
  font-size: .84rem; color: var(--ink-400); margin-top: 14px;
  display: flex; align-items: flex-start; gap: 8px;
}
.video-unset { display: grid; place-items: center; position: absolute; inset: 0; z-index: 4;
  background: rgba(11,46,31,.9); color: #fff; padding: 24px; text-align: center; font-size: .92rem; }

/* ============================================
   Case studies, team, accordion
   ============================================ */

/* ---------- Metric-led case study cards ---------- */
.case-metric {
  display: flex; align-items: baseline; gap: 8px; margin: 0 0 10px;
  padding-bottom: 12px; border-bottom: 1px solid var(--green-100);
}
.case-metric b {
  font-family: var(--font-head); font-size: 1.9rem; line-height: 1;
  color: var(--green-800); font-weight: 700;
}
.case-metric span { font-size: .84rem; color: var(--ink-400); line-height: 1.3; }
.card--media .card__body .case-metric { flex: 0 0 auto; }

/* Metric strip on a case study page */
.case-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 0 0 40px; }
@media (max-width: 700px) { .case-facts { grid-template-columns: 1fr; gap: 12px; } }
.case-fact { background: var(--green-50); border-radius: var(--radius); padding: 20px 22px; }
.case-fact b { display: block; font-family: var(--font-head); font-size: 1.6rem; color: var(--green-800); line-height: 1.15; }
.case-fact span { font-size: .85rem; color: var(--ink-600); }

/* ---------- Team ---------- */
.team-card { text-align: center; display: flex; flex-direction: column; align-items: center; }
.team-card__photo {
  width: 132px; height: 132px; border-radius: 50%; overflow: hidden; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--green-700), var(--green-950));
  display: grid; place-items: center; color: #fff; flex: none;
  font-family: var(--font-head); font-size: 2.1rem; font-weight: 700; letter-spacing: .02em;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { margin-bottom: 2px; }
.team-card__role { font-size: .88rem; font-weight: 600; color: var(--gold-600); margin-bottom: 12px; }
.team-card__creds {
  list-style: none; padding: 0; margin: 0 0 16px; font-size: .86rem; color: var(--ink-400);
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: center;
}
.team-card__creds li { background: var(--green-50); border-radius: 999px; padding: 4px 12px; }
.team-card__link {
  margin-top: auto; display: inline-flex; align-items: center; gap: 7px;
  font-size: .88rem; font-weight: 600;
}

/* ---------- Accordion (About differentiators) ---------- */
.accordion details {
  border-bottom: 1px solid var(--green-100); background: none; border-radius: 0; margin: 0;
}
.accordion details:first-child { border-top: 1px solid var(--green-100); }
.accordion summary {
  font-family: var(--font-head); font-size: 1.12rem; font-weight: 600; color: var(--green-950);
  padding: 20px 0; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  transition: color .2s;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary:hover { color: var(--green-700); }
.accordion summary::after {
  content: ""; flex: none; width: 13px; height: 13px;
  border-right: 2.5px solid var(--gold-600); border-bottom: 2.5px solid var(--gold-600);
  transform: rotate(45deg) translate(-3px,-3px); transition: transform .25s;
}
.accordion details[open] summary { color: var(--green-800); }
.accordion details[open] summary::after { transform: rotate(-135deg) translate(-3px,-3px); }
.accordion__answer { padding: 0 0 22px; color: var(--ink-600); max-width: 58ch; }
.accordion__answer p:last-child { margin: 0; }

/* Parent nav item of the active section (the exact page carries aria-current) */
.nav__links a.is-current-section { color: var(--green-800); background: var(--green-100); }

/* Visually hidden but available to screen readers */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Value proposition cards ---------- */
.value-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius); padding: 28px;
}
.value-card b {
  display: block; font-family: var(--font-head); font-size: 2.4rem; line-height: 1;
  color: var(--gold-500); margin-bottom: 12px;
}
.value-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 8px; }
.value-card p { color: #cfe3d8; margin: 0; font-size: .95rem; }
.value-card--plain { background: none; border-color: rgba(255,255,255,.09); }

/* Service arm label above the card heading */
.tag-line {
  display: block; font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-600); margin-bottom: 6px;
}
