/* Viridis Redesign — professional static site system
   Responsive, accessible, animation-aware and deployable on standard hosting. */
:root {
  --forest-950: #0b1f1b;
  --forest-900: #102923;
  --forest-800: #173b32;
  --forest-700: #205044;
  --sage-600: #477c61;
  --sage-500: #5e9675;
  --sage-300: #acd0b4;
  --mist: #eef3ee;
  --sand: #f7f3ec;
  --cream: #fcfbf7;
  --white: #ffffff;
  --charcoal: #18241f;
  --muted: #586862;
  --border: rgba(16, 41, 35, 0.12);
  --gold: #b59455;
  --shadow-sm: 0 10px 26px rgba(11, 31, 27, 0.06);
  --shadow: 0 18px 50px rgba(11, 31, 27, 0.1);
  --shadow-lg: 0 28px 84px rgba(11, 31, 27, 0.14);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1200px;
  --header-height: 84px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --transition: 250ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open {
  overflow: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(71, 124, 97, 0.38);
  outline-offset: 3px;
}
p {
  margin: 0 0 1.2rem;
  color: var(--muted);
}
h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--forest-950);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
h1,
h2 {
  font-family: var(--serif);
}
h1 {
  font-size: clamp(2.9rem, 6.6vw, 5.7rem);
}
h2 {
  font-size: clamp(2.15rem, 4vw, 3.55rem);
}
h3 {
  font-size: clamp(1.2rem, 2vw, 1.38rem);
  letter-spacing: -0.02em;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--forest-900);
  color: var(--white);
}
.skip-link:focus {
  transform: translateY(0);
}
.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}
.narrow {
  width: min(850px, calc(100% - 48px));
  margin: 0 auto;
}
.section {
  padding: clamp(72px, 10vw, 122px) 0;
}
.section-sm {
  padding: clamp(52px, 7vw, 80px) 0;
}
.surface {
  background: var(--white);
}
.surface-mist {
  background: var(--mist);
}
.surface-dark {
  color: var(--white);
  background: var(--forest-950);
}
.surface-dark h2,
.surface-dark h3 {
  color: var(--white);
}
.surface-dark p {
  color: rgba(255, 255, 255, 0.68);
}
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  color: var(--sage-600);
  font-size: 0.73rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 31px;
  height: 1px;
  background: var(--sage-500);
}
.surface-dark .eyebrow {
  color: var(--sage-300);
}
.surface-dark .eyebrow::before {
  background: var(--sage-300);
}
.section-heading {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 58px);
}
.section-heading p {
  margin-top: 18px;
  max-width: 640px;
  font-size: 1.03rem;
}
.split {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: clamp(36px, 7vw, 88px);
}
.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 53px;
  padding: 0 25px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--white);
  background: var(--forest-900);
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition);
}
.btn:hover {
  transform: translateY(-2px);
  background: var(--forest-700);
  box-shadow: 0 14px 30px rgba(16, 41, 35, 0.16);
}
.btn-light {
  color: var(--forest-900);
  background: var(--white);
}
.btn-light:hover {
  background: var(--mist);
}
.btn-outline {
  color: var(--forest-900);
  background: transparent;
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--sage-500);
  background: rgba(71, 124, 97, 0.06);
  box-shadow: none;
}
.btn svg {
  width: 17px;
  height: 17px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest-800);
  font-weight: 600;
}
.text-link::after {
  content: "→";
  transition: transform var(--transition);
}
.text-link:hover::after {
  transform: translateX(5px);
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(252, 251, 247, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}
.site-header.is-scrolled {
  border-color: var(--border);
  background: rgba(252, 251, 247, 0.96);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 196px;
}
.brand img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}
.brand-copy {
  display: grid;
  line-height: 1.05;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.47rem;
  letter-spacing: -0.04em;
  color: var(--forest-950);
}
.brand-tag {
  font-size: 0.69rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.desktop-nav a {
  position: relative;
  font-size: 0.94rem;
  color: var(--forest-800);
  padding: 8px 0;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  height: 1.5px;
  bottom: 2px;
  left: 0;
  right: 0;
  background: var(--sage-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}
.desktop-nav a[aria-current="page"] {
  font-weight: 600;
}
.header-cta {
  min-height: 45px;
  padding-inline: 20px;
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  content: "";
  width: 20px;
  height: 1.5px;
  background: var(--forest-900);
  transition:
    transform var(--transition),
    opacity var(--transition);
}
.menu-lines {
  position: relative;
}
.menu-lines::before {
  position: absolute;
  top: -6px;
}
.menu-lines::after {
  position: absolute;
  top: 6px;
}
.menu-toggle[aria-expanded="true"] .menu-lines {
  background: transparent;
}
.menu-toggle[aria-expanded="true"] .menu-lines::before {
  top: 0;
  transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-lines::after {
  top: 0;
  transform: rotate(-45deg);
}
.mobile-panel {
  display: none;
  position: fixed;
  inset: var(--header-height) 0 0 0;
  z-index: 999;
  padding: 25px 24px;
  background: var(--cream);
  transform: translateX(100%);
  transition: transform var(--transition);
}
.mobile-panel.is-open {
  transform: translateX(0);
}
.mobile-panel nav {
  display: grid;
  gap: 2px;
}
.mobile-panel nav a {
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  font-size: 1.1rem;
}
.mobile-panel .btn {
  margin-top: 28px;
  width: 100%;
}

/* hero */
.hero {
  overflow: hidden;
  position: relative;
  padding: clamp(58px, 8vw, 105px) 0 clamp(68px, 10vw, 118px);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 820px;
  height: 820px;
  right: -430px;
  top: -210px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(94, 150, 117, 0.19),
    transparent 65%
  );
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: clamp(42px, 6vw, 82px);
}
.hero h1 span {
  color: var(--sage-600);
  font-style: italic;
}
.hero-copy > p {
  font-size: clamp(1.02rem, 1.4vw, 1.14rem);
  max-width: 550px;
  margin-top: 24px;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 50px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.proof-item {
  flex: 1;
  min-width: 118px;
}
.proof-item strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 500;
  color: var(--forest-900);
}
.proof-item small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.78rem;
}
.hero-visual {
  position: relative;
  min-height: 560px;
}
.hero-photo {
  position: absolute;
  inset: 0 42px 48px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--forest-900);
  box-shadow: var(--shadow-lg);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    185deg,
    transparent 18%,
    rgba(11, 31, 27, 0.66) 100%
  );
}
.floating-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(310px, 76%);
  padding: 27px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.floating-card .label {
  color: var(--sage-600);
  font-size: 0.7rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 700;
}
.floating-card h3 {
  margin: 11px 0 10px;
}
.floating-card p {
  font-size: 0.9rem;
  margin: 0;
}
.hero-badge {
  position: absolute;
  top: 28px;
  left: -26px;
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 13px 18px 13px 14px;
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 0.83rem;
  color: var(--forest-800);
  font-weight: 600;
}
.hero-badge i {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--sage-600);
  font-style: normal;
}

/* cards and services */
.card {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 31px);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(71, 124, 97, 0.3);
  box-shadow: var(--shadow);
}
.service-card {
  min-height: 287px;
  display: flex;
  flex-direction: column;
}
.icon-box {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 36px;
  border-radius: 13px;
  background: var(--mist);
  color: var(--forest-700);
  font-weight: 600;
  font-size: 0.84rem;
}
.service-card h3 {
  margin-bottom: 14px;
}
.service-card p {
  margin-bottom: 26px;
}
.service-card .text-link {
  margin-top: auto;
  font-size: 0.92rem;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.pill {
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--forest-800);
  font-size: 0.82rem;
  font-weight: 500;
}

/* feature / ecotrack */
.feature-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 68px);
  background: var(--forest-950);
  color: var(--white);
}
.feature-band::before {
  content: "";
  position: absolute;
  right: -190px;
  top: -130px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 1px solid rgba(172, 208, 180, 0.22);
}
.feature-band::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(172, 208, 180, 0.18);
}
.feature-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}
.feature-content h2 {
  max-width: 660px;
  color: var(--white);
}
.feature-content p {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

/* testimonials */
.quote-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 35px);
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
}
.quote-mark {
  color: var(--sage-500);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 0.8;
  margin-bottom: 16px;
}
.quote-card blockquote {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 0.96rem;
  flex: 1;
}
.quote-name {
  color: var(--forest-900);
  font-weight: 600;
}
.quote-role {
  color: var(--muted);
  font-size: 0.84rem;
}

/* articles */
.article-card {
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.article-card img {
  width: 100%;
  height: 225px;
  object-fit: cover;
}
.article-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 25px;
}
.meta {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--sage-600);
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 13px;
}
.article-content h3 {
  margin-bottom: 13px;
}
.article-content p {
  font-size: 0.92rem;
  margin-bottom: 20px;
}
.article-content .text-link {
  margin-top: auto;
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 38px;
}
.filter-btn {
  cursor: pointer;
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 9px 18px;
  background: var(--white);
  color: var(--forest-800);
  font-size: 0.9rem;
}
.filter-btn.active,
.filter-btn:hover {
  color: var(--white);
  background: var(--forest-800);
  border-color: var(--forest-800);
}
[data-article].is-hidden {
  display: none;
}

/* page hero */
.page-hero {
  padding: clamp(55px, 7vw, 92px) 0 clamp(50px, 7vw, 78px);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(120deg, var(--cream), #eef3ec);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 45px;
}
.page-hero h1 {
  font-size: clamp(2.55rem, 5vw, 4.75rem);
}
.page-hero p {
  font-size: 1.06rem;
  margin: 22px 0 0;
  max-width: 650px;
}
.page-breadcrumb {
  margin-bottom: 21px;
  color: var(--sage-600);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.hero-note {
  padding: 25px;
  border-left: 1px solid var(--sage-300);
  color: var(--muted);
}

/* process / about */
.process {
  counter-reset: step;
  display: grid;
  gap: 14px;
}
.process-item {
  counter-increment: step;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 23px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--border);
}
.process-item::before {
  content: "0" counter(step);
  color: var(--sage-600);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding-top: 5px;
}
.process-item p {
  margin: 8px 0 0;
  font-size: 0.94rem;
}
.photo-frame {
  position: relative;
}
.photo-frame img {
  width: 100%;
  border-radius: var(--radius-lg);
  min-height: 490px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.photo-caption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.photo-caption strong {
  display: block;
  color: var(--forest-900);
}
.photo-caption span {
  color: var(--muted);
  font-size: 0.89rem;
}
.capability {
  padding: 25px 0;
  border-bottom: 1px solid var(--border);
}
.capability:first-child {
  padding-top: 0;
}
.capability h3 {
  margin-bottom: 9px;
}
.capability p {
  margin: 0;
}
.values-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
}
.values-card h3 {
  margin: 18px 0 10px;
}
.values-card p {
  margin: 0;
  font-size: 0.94rem;
}

/* resource cards */
.resource-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}
.resource-icon {
  display: grid;
  place-items: center;
  width: 53px;
  height: 62px;
  border-radius: 10px;
  background: var(--mist);
  color: var(--forest-700);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.resource-card h3 {
  margin-bottom: 12px;
}
.resource-card .actions {
  margin-top: 18px;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(30px, 6vw, 70px);
  align-items: start;
}
.faq-side {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}
.faq-group {
  margin-bottom: 42px;
}
.faq-group > h2 {
  margin-bottom: 21px;
  font-size: 1.5rem;
  font-family: var(--sans);
  font-weight: 600;
}
.faq-item {
  border-top: 1px solid var(--border);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  padding: 23px 0;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: var(--forest-900);
  text-align: left;
  font-weight: 600;
}
.faq-question::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--mist);
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  padding: 0 45px 24px 0;
  margin: 0;
}

/* legal */
.legal-layout {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 23px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-sm);
  max-width: 100%;
}

.legal-body {
  min-width: 0;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius);
  overflow-wrap: break-word;
}

.legal-body table {
  width: 100%;
  border-collapse: collapse;
}

.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 900px) {
  .legal-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .legal-nav {
    position: relative;
    top: auto;
    width: 100%;
    padding: 18px;
  }

  .legal-body {
    width: 100%;
    padding: 22px 16px;
  }

  .legal-body h2 {
    font-size: 1.25rem;
    line-height: 1.25;
  }

  .legal-body h3 {
    font-size: 1.05rem;
  }

  .table-wrap table {
    min-width: 720px;
  }
}

@media (max-width: 520px) {
  .legal-nav {
    padding: 16px;
  }

  .legal-nav a {
    font-size: 0.9rem;
    padding: 8px 0;
  }

  .legal-body {
    padding: 20px 14px;
  }
}


/* webinar */
.video-shell {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--forest-950);
  aspect-ratio: 16/9;
  display: grid;
  place-items: center;
  position: relative;
}
.video-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(94, 150, 117, 0.25),
    transparent 55%
  );
}
.play-circle {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--forest-900);
  font-size: 1.3rem;
}
.video-copy {
  position: absolute;
  z-index: 1;
  bottom: 28px;
  left: 30px;
  right: 30px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}
.takeaway {
  padding: 23px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
}
.takeaway strong {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--sage-600);
  background: var(--mist);
  border-radius: 50%;
}
.takeaway p {
  margin: 6px 0 0;
}

/* CTA / contact */
.cta-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding: clamp(34px, 6vw, 62px);
  border-radius: var(--radius-lg);
  background: var(--forest-950);
}
.cta-panel h2 {
  color: var(--white);
}
.cta-panel p {
  color: rgba(255, 255, 255, 0.7);
  margin: 18px 0 0;
  max-width: 600px;
}
.contact-cards {
  display: grid;
  gap: 13px;
}
.contact-card {
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
}
.contact-card span {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-bottom: 4px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 6vw, 74px);
  align-items: start;
}
.contact-list {
  display: grid;
  gap: 15px;
  margin-top: 31px;
}
.contact-list a,
.contact-list div {
  display: flex;
  align-items: start;
  gap: 15px;
  color: var(--forest-800);
}
.contact-list i {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--mist);
  font-style: normal;
  color: var(--sage-600);
}
.contact-list small {
  display: block;
  color: var(--muted);
}
.contact-form {
  padding: clamp(25px, 5vw, 40px);
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}
.field {
  display: grid;
  gap: 7px;
  margin-bottom: 17px;
}
.field.full {
  grid-column: 1 / -1;
}
.field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest-800);
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  padding: 13px 15px;
  border-radius: 10px;
  background: var(--cream);
  color: var(--charcoal);
}
.field textarea {
  min-height: 148px;
  resize: vertical;
}
.form-note {
  font-size: 0.82rem;
  margin-top: 17px;
}

/* footer */
.site-footer {
  background: var(--forest-950);
  color: var(--white);
}
.footer-main {
  padding: 68px 0 46px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.8fr 1fr;
  gap: clamp(28px, 5vw, 54px);
}
.footer-brand .brand-name {
  color: var(--white);
}
.footer-brand .brand-tag {
  color: rgba(255, 255, 255, 0.5);
}
.footer-brand p {
  margin: 22px 0;
  color: rgba(255, 255, 255, 0.62);
  max-width: 285px;
  font-size: 0.92rem;
}
.footer-title {
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-weight: 700;
}
.footer-nav {
  display: grid;
  gap: 10px;
}
.footer-nav a,
.footer-info a,
.footer-info div {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.91rem;
}
.footer-nav a:hover,
.footer-info a:hover {
  color: var(--white);
}
.footer-info {
  display: grid;
  align-content: start;
  gap: 11px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.81rem;
  color: rgba(255, 255, 255, 0.52);
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
}
.footer-legal a:hover {
  color: var(--white);
}
/* =========================================================
   Footer social links
========================================================= */

.site-footer .social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.site-footer .social-row a {
  width: auto;
  min-width: unset;
  height: auto;
  min-height: 36px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.site-footer .social-row a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff;
}

@media (max-width: 760px) {
  .site-footer .social-row {
    gap: 8px;
  }

  .site-footer .social-row a {
    min-height: 34px;
    padding: 8px 12px;
    font-size: 0.74rem;
  }
}

/* cookie panel */
.cookie-panel {
  display: none;
  position: fixed;
  z-index: 1500;
  left: max(18px, calc((100vw - var(--container)) / 2));
  right: max(18px, calc((100vw - var(--container)) / 2));
  bottom: 18px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 23px;
  border-radius: 17px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.cookie-panel.is-visible {
  display: flex;
}
.cookie-panel p {
  margin: 0;
  font-size: 0.89rem;
  max-width: 780px;
}
.cookie-panel p a {
  color: var(--sage-600);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  flex: none;
  gap: 9px;
}
.cookie-actions .btn {
  min-height: 43px;
  padding-inline: 17px;
  font-size: 0.85rem;
}

/* animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}

@media (max-width: 1060px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .mobile-panel {
    display: block;
  }
  .hero-grid,
  .page-hero-grid,
  .feature-content,
  .cta-panel,
  .contact-grid,
  .split {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 490px;
  }
  .hero-photo {
    inset: 0 36px 45px 0;
  }
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .legal-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .legal-nav,
  .faq-side {
    position: static;
  }
  .legal-nav {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  .legal-nav span {
    width: 100%;
    margin-bottom: 0;
  }
}
@media (max-width: 760px) {
  :root {
    --header-height: 73px;
  }
  .container,
  .narrow {
    width: min(var(--container), calc(100% - 32px));
  }
  .brand img {
    width: 39px;
    height: 39px;
  }
  .brand-name {
    font-size: 1.32rem;
  }
  .brand-tag {
    display: none;
  }
  .hero {
    padding-top: 38px;
  }
  .hero-visual {
    min-height: 408px;
  }
  .hero-photo {
    inset: 0 18px 50px 0;
  }
  .hero-badge {
    left: 10px;
    top: 16px;
  }
  .floating-card {
    right: 0;
    bottom: 0;
    padding: 21px;
  }
  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: auto;
  }
  .icon-box {
    margin-bottom: 24px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }
  .footer-brand p {
    max-width: none;
  }
  .cookie-panel {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-actions .btn {
    flex: 1;
  }
  .photo-frame img {
    min-height: 410px;
  }
  .resource-card {
    grid-template-columns: 1fr;
  }
  .cta-panel {
    padding: 33px 25px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.checkbox-field label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted, #64748b);
}
.checkbox-field input[type="checkbox"],
.newsletter-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex-shrink: 0;
  accent-color: var(--sage-600);
}

.checkbox-field label,
.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-field input {
  width: auto;
  margin-top: 4px;
}

.contact-form select {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  background: #fff;
  color: inherit;
}

[data-form-status] {
  min-height: 24px;
}

.newsletter-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: start;
  padding: 44px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
}

.newsletter-panel h2 {
  margin-top: 10px;
}

.newsletter-panel p {
  margin-top: 18px;
  color: var(--muted, #64748b);
}

.newsletter-form {
  display: grid;
  gap: 14px;
}

.newsletter-form .field {
  display: grid;
  gap: 6px;
}

.newsletter-form label {
  font-size: 0.88rem;
  font-weight: 600;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}

.newsletter-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--muted, #64748b);
}

.newsletter-consent input {
  width: auto;
  margin-top: 4px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

[data-form-status] {
  min-height: 22px;
}

@media (max-width: 860px) {
  .newsletter-panel {
    grid-template-columns: 1fr;
    padding: 28px;
    border-radius: 26px;
  }
}

.form-note.success {
  color: #7fdc9c;
}

.form-note.error {
  color: #ff9b9b;
}

.newsletter-form .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-note.success {
  color: #2f7d55;
  font-weight: 600;
}

.form-note.error {
  color: #b91c1c;
  font-weight: 600;
}
/* =========================================================
   BOOK CONSULTATION PAGE
========================================================= */

.booking-hero {
  padding-top: 120px;
  padding-bottom: 70px;
}

.booking-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.booking-hero h1 {
  max-width: 780px;
}

.booking-hero p {
  max-width: 720px;
}

.booking-side-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(26, 46, 30, 0.12);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.booking-side-card h2 {
  margin-bottom: 14px;
}

.booking-list {
  margin: 24px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.booking-panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(26, 46, 30, 0.1);
  border-radius: 32px;
  padding: 42px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.brevo-calendar-frame {
  width: 100%;
  min-height: 620px;
  border-radius: 26px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(26, 46, 30, 0.1);
}

.brevo-calendar-frame iframe {
  width: 100%;
  min-height: 720px;
  border: 0;
  display: block;
}

.booking-placeholder {
  min-height: 520px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 48px 24px;
}

.booking-placeholder h3 {
  margin-bottom: 12px;
}

.booking-placeholder p {
  max-width: 520px;
  margin: 0 auto 24px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .booking-hero {
    padding-top: 92px;
  }

  .booking-hero-grid {
    grid-template-columns: 1fr;
  }

  .booking-panel {
    padding: 26px;
    border-radius: 24px;
  }

  .brevo-calendar-frame {
    min-height: 560px;
  }
}

.article-hero {
  padding-bottom: 56px;
}

.article-meta {
  margin-top: 22px;
  color: var(--muted, #64748b);
  font-size: 0.95rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
}

.article-content {
  max-width: 780px;
}

.article-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 22px;
  color: #334155;
}

.article-content h2 {
  margin-top: 42px;
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: #1a2e1e;
}

.article-content ul {
  margin: 18px 0 28px;
  padding-left: 22px;
}

.article-content li {
  margin-bottom: 12px;
  line-height: 1.7;
  color: #334155;
}

.article-sidebar {
  display: grid;
  gap: 20px;
  position: sticky;
  top: 110px;
}

.sidebar-card {
  padding: 26px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.sidebar-card h3 {
  margin: 0 0 12px;
  color: #1a2e1e;
}

.sidebar-card p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.sidebar-card a:not(.btn) {
  display: block;
  color: #2d4a32;
  text-decoration: none;
  margin-top: 12px;
}

.sidebar-card a:not(.btn):hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }
}

.article-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.article-card .article-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article-card .text-link {
  margin-top: auto;
}

.video-shell {
  position: relative;
  width: 100%;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.video-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

@media (max-width: 720px) {
  .video-shell {
    min-height: 260px;
    border-radius: 22px;
  }

  .video-shell iframe {
    min-height: 260px;
  }
}

.video-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: auto;
  border-radius: 28px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
  display: block;
  pointer-events: auto;
}

.video-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: auto;
  z-index: 2;
}

.video-shell .play-circle,
.video-shell .video-copy {
  display: none;
}
/* =========================================================
   Cookie banner
========================================================= */

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  background: rgba(15, 23, 42, 0.96);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.cookie-banner__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px;
}

.cookie-banner__text strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 600;
}

.cookie-banner__text p {
  margin: 0 0 10px;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.5;
}

.cookie-banner__link {
  color: #b7f7d0;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.9rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-banner__btn {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    background 0.2s ease;
}

.cookie-banner__btn:hover {
  transform: translateY(-1px);
}

.cookie-banner__btn--primary {
  background: #b7f7d0;
  color: #0f172a;
}

.cookie-banner__btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.cookie-preferences {
  margin: 14px 0;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.cookie-preferences__item {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
}

.cookie-preferences__item input {
  width: 16px;
  height: 16px;
}

@media (max-width: 760px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 20px;
  }

  .cookie-banner__content {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner__btn {
    flex: 1 1 100%;
  }
}

/* Webinar video fix */
body[data-page="webinar"] .split {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: start;
}

body[data-page="webinar"] .webinar-video {
  position: relative !important;
  width: 100% !important;
  max-width: 850px !important;
  aspect-ratio: 16 / 9 !important;
  min-height: 360px !important;
  background: #000 !important;
  border-radius: 24px;
  overflow: hidden;
  z-index: 5;
}

body[data-page="webinar"] .webinar-video iframe {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 360px !important;
  border: 0 !important;
  display: block !important;
  z-index: 10 !important;
  pointer-events: auto !important;
}

body[data-page="webinar"] .webinar-video::before,
body[data-page="webinar"] .webinar-video::after {
  display: none !important;
  content: none !important;
}

@media (max-width: 900px) {
  body[data-page="webinar"] .split {
    grid-template-columns: 1fr;
  }

  body[data-page="webinar"] .webinar-video {
    max-width: 100% !important;
    min-height: 260px !important;
  }

  body[data-page="webinar"] .webinar-video iframe {
    min-height: 260px !important;
  }
}
/* =========================================================
   ARTICLE MOBILE FIX — robust version
   Use this instead of the previous mobile article fix.
========================================================= */

@media (max-width: 900px) {
  .article-hero,
  .article-layout,
  .article-layout *,
  .article-content,
  .article-content *,
  .article-sidebar,
  .article-sidebar * {
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .article-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .article-content {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex: none !important;
    padding: 0 !important;
  }

  .article-content p,
  .article-content li {
    display: block !important;
    color: #334155 !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
  }

  .article-content h2 {
    display: block !important;
    color: #1a2e1e !important;
    font-size: 24px !important;
    line-height: 1.25 !important;
    margin-top: 34px !important;
    margin-bottom: 14px !important;
  }

  .article-content h3 {
    display: block !important;
    color: #1a2e1e !important;
    font-size: 20px !important;
    line-height: 1.3 !important;
  }

  .article-content ul,
  .article-content ol {
    display: block !important;
    margin: 18px 0 28px !important;
    padding-left: 22px !important;
  }

  .article-content ul {
    list-style: disc !important;
  }

  .article-content ol {
    list-style: decimal !important;
  }

  .article-sidebar {
    position: static !important;
    width: 100% !important;
  }
}