:root {
  --forest: #0f3b2e;
  --jade: #1e6b53;
  --sage: #a7b89a;
  --cream: #f6f1e6;
  --paper: #fffaf0;
  --copper: #b8733a;
  --ink: #17352c;
  --muted: #68776d;
  --line: rgba(15, 59, 46, 0.16);
  --soft-line: rgba(184, 115, 58, 0.2);
  --shadow: 0 22px 55px rgba(15, 59, 46, 0.11);
  --soft-shadow: 0 14px 36px rgba(15, 59, 46, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(246, 241, 230, 0.98), rgba(255, 250, 240, 0.96)),
    var(--cream);
  font-family: Inter, "Source Sans 3", system-ui, sans-serif;
  line-height: 1.6;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

p + p {
  margin-top: 1rem;
}

ul {
  margin: 0;
  padding: 0;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(15, 59, 46, 0.1);
  background: rgba(246, 241, 230, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 205px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(23, 53, 44, 0.78);
  font-size: 0.84rem;
  font-weight: 650;
}

.nav a,
.nav-group > a {
  position: relative;
  padding: 8px 0;
}

.nav a::after,
.nav-group > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--copper);
  transition: transform 180ms ease;
}

.nav a:hover,
.nav a.active,
.nav-group:hover > a {
  color: var(--forest);
}

.nav a:hover::after,
.nav a.active::after,
.nav-group:hover > a::after {
  transform: scaleX(1);
}

.nav-group {
  position: relative;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 5;
  display: grid;
  min-width: 210px;
  padding: 10px;
  border: 1px solid rgba(15, 59, 46, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.98);
  box-shadow: var(--soft-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-submenu a {
  padding: 10px 12px;
  border-radius: 6px;
}

.nav-submenu a::after {
  display: none;
}

.nav-submenu a:hover,
.nav-submenu a.active {
  background: rgba(167, 184, 154, 0.18);
}

.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 2px;
  padding: 4px 9px;
  border: 1px solid rgba(15, 59, 46, 0.13);
  border-radius: 999px;
  color: rgba(23, 53, 44, 0.58);
  background: rgba(255, 250, 240, 0.48);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
}

.language-switch a {
  padding: 5px 0;
}

.language-switch a::after {
  display: none;
}

.language-switch a.active {
  color: var(--copper);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.72);
  color: var(--forest);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: relative;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 4.5px;
}

body.menu-open .menu-toggle span {
  transform: rotate(45deg);
}

body.menu-open .menu-toggle span::before {
  transform: translateY(6px) rotate(90deg);
}

body.menu-open .menu-toggle span::after {
  opacity: 0;
}

.button,
button.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 21px;
  color: #fffaf0;
  background: var(--forest);
  box-shadow: 0 15px 34px rgba(15, 59, 46, 0.16);
  max-width: 100%;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  font: 750 0.88rem/1.15 Inter, system-ui, sans-serif;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:focus-visible,
.nav a:focus-visible,
.footer-links a:focus-visible,
.footer-contact a:focus-visible,
.rm-credit a:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 4px;
}

.language-switch a:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.button:hover,
button.button:hover {
  color: #fffaf0;
  background: var(--copper);
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--forest);
  background: transparent;
  border-color: var(--soft-line);
  box-shadow: none;
}

.button.secondary:hover {
  color: #fffaf0;
  border-color: var(--copper);
  background: var(--copper);
}

.header-cta {
  min-height: 42px;
  padding: 12px 16px;
  font-size: 0.78rem;
}

main {
  padding-top: 78px;
}

.section {
  position: relative;
  padding: 86px 0;
}

.section.compact {
  padding: 58px 0;
}

.section.alt {
  background: rgba(255, 250, 240, 0.56);
  border-block: 1px solid rgba(15, 59, 46, 0.08);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--copper);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: 58px 0 64px;
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
}

.top-align {
  align-items: start;
}

.hero h1,
.page-hero h1,
.section-title {
  color: var(--forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3.05rem, 7vw, 6.6rem);
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
}

.section-title {
  max-width: 800px;
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
}

.lead {
  max-width: 760px;
  color: var(--forest);
  font-size: clamp(1.13rem, 1.6vw, 1.35rem);
  line-height: 1.62;
}

.sublead {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-copy .lead {
  margin-top: 22px;
}

.hero-copy .sublead {
  margin-top: 18px;
}

.hero-trust,
.package-intro {
  max-width: 780px;
  margin-top: 20px;
  color: rgba(23, 53, 44, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-strip span,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(15, 59, 46, 0.13);
  border-radius: 999px;
  padding: 7px 12px;
  color: rgba(23, 53, 44, 0.78);
  background: rgba(255, 250, 240, 0.72);
  font-size: 0.78rem;
  font-weight: 650;
}

.editorial-image,
.founder-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 59, 46, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.84), rgba(246, 241, 230, 0.92)),
    var(--paper);
  box-shadow: var(--shadow);
}

.editorial-image {
  aspect-ratio: 4 / 3;
}

.hero-image {
  aspect-ratio: 4 / 5;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-text {
  max-width: 920px;
}

.intro-text p {
  color: var(--muted);
  font-size: 1.05rem;
}

.founder-media {
  min-height: 520px;
  padding: 0;
}

.founder-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.metric-grid,
.card-grid,
.resource-grid {
  display: grid;
  gap: 18px;
}

.metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.metric,
.card,
.resource-card,
.form-panel,
.download-callout,
.quote-panel {
  border: 1px solid rgba(15, 59, 46, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.74);
}

.metric {
  padding: 24px;
}

.metric strong {
  display: block;
  color: var(--forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 650;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.card-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.resource-card {
  padding: 28px;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card:hover,
.resource-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 115, 58, 0.28);
  box-shadow: 0 20px 48px rgba(15, 59, 46, 0.1);
}

.media-card {
  overflow: hidden;
  padding: 0;
}

.card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid rgba(184, 115, 58, 0.18);
  background: var(--cream);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 26px;
}

.card-body h3,
.card h3,
.resource-card h3,
.form-panel h2,
.download-callout h2,
.quote-panel h2 {
  color: var(--forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.78rem;
  font-weight: 650;
  line-height: 1.08;
}

.card p,
.resource-card p,
.download-callout p,
.quote-panel p {
  margin-top: 12px;
  color: var(--muted);
}

.card-body .button,
.card .button,
.resource-card .button {
  margin-top: 22px;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.tree-mark {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(184, 115, 58, 0.22);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.tree-mark img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: contain;
  padding: 24px;
}

.page-hero {
  padding: 104px 0 72px;
  background:
    linear-gradient(90deg, rgba(246, 241, 230, 0.98), rgba(255, 250, 240, 0.8)),
    var(--cream);
  border-bottom: 1px solid rgba(15, 59, 46, 0.08);
}

.page-hero .lead {
  margin-top: 22px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 74px);
  align-items: start;
}

.side-label {
  position: sticky;
  top: 110px;
}

.side-label p {
  margin-top: 18px;
  color: var(--muted);
}

.rich-text p,
.rich-text li {
  color: var(--muted);
  font-size: 1.03rem;
}

.rich-text h2 {
  margin-top: 34px;
  color: var(--forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 650;
  line-height: 1.05;
}

.rich-text h2:first-child {
  margin-top: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.check-list li {
  position: relative;
  list-style: none;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
}

.list-panels {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.list-panel {
  border: 1px solid rgba(15, 59, 46, 0.12);
  border-left: 3px solid var(--copper);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: var(--soft-shadow);
}

.list-panel h2 {
  margin-top: 0;
}

.service-intro {
  margin-bottom: 30px;
}

.quote-panel {
  margin: 28px 0;
  padding: 30px;
  border-left: 3px solid var(--copper);
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.92), rgba(246, 241, 230, 0.98)),
    var(--paper);
  box-shadow: var(--soft-shadow);
}

.quote-panel p {
  color: var(--forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.download-callout {
  margin-top: 34px;
  padding: 30px;
  border-left: 3px solid var(--copper);
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.9), rgba(246, 241, 230, 0.96)),
    var(--cream);
  box-shadow: var(--soft-shadow);
}

.legal-note {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 59, 46, 0.14);
  color: var(--muted);
  font-size: 0.92rem;
}

.process-grid,
.package-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-step,
.package-card,
.global-disclaimer .container {
  border: 1px solid rgba(15, 59, 46, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.76);
  box-shadow: var(--soft-shadow);
}

.process-step {
  padding: 24px;
}

.process-step span {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 820;
}

.process-step h3,
.package-card h3 {
  margin-top: 10px;
  color: var(--forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.72rem;
  font-weight: 650;
  line-height: 1.08;
}

.process-step p {
  margin-top: 10px;
  color: var(--muted);
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.package-card {
  padding: 26px;
}

.package-card.featured {
  border-color: rgba(184, 115, 58, 0.34);
  background: rgba(255, 250, 240, 0.92);
}

.package-card strong {
  display: block;
  margin-top: 12px;
  color: var(--jade);
  font-size: 1rem;
}

.comparison-wrap {
  margin-top: 36px;
  overflow-x: auto;
  border: 1px solid rgba(15, 59, 46, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.74);
  box-shadow: var(--soft-shadow);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 15px 16px;
  border-bottom: 1px solid rgba(15, 59, 46, 0.1);
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  color: #fffaf0;
  background: var(--forest);
  font-size: 0.86rem;
}

.comparison-table tbody th {
  color: var(--forest);
  font-weight: 760;
}

.comparison-table td {
  color: var(--muted);
  font-size: 0.92rem;
}

.comparison-table .category-row th {
  color: var(--copper);
  background: rgba(167, 184, 154, 0.14);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compact-resources .resource-card {
  min-height: 124px;
}

.resource-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.resource-card h4 {
  margin-top: 10px;
  color: var(--forest);
  font-size: 0.98rem;
}

.resource-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding-right: 96px;
}

.resource-card::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  width: 46px;
  height: 60px;
  border: 1px solid rgba(184, 115, 58, 0.28);
  border-radius: 5px;
  background:
    linear-gradient(rgba(167, 184, 154, 0.24), rgba(167, 184, 154, 0.24)) 10px 16px / 24px 3px no-repeat,
    linear-gradient(rgba(167, 184, 154, 0.24), rgba(167, 184, 154, 0.24)) 10px 28px / 19px 3px no-repeat,
    rgba(255, 250, 240, 0.74);
  pointer-events: none;
}

.form-panel {
  padding: 34px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 7px;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(15, 59, 46, 0.16);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.54);
  font: 500 0.95rem/1.3 Inter, system-ui, sans-serif;
}

input[type="checkbox"] {
  width: auto;
  accent-color: var(--forest);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(184, 115, 58, 0.32);
  border-color: var(--copper);
}

.consent {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-message {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(30, 107, 83, 0.22);
  border-radius: 6px;
  color: var(--forest);
  background: rgba(167, 184, 154, 0.18);
  font-weight: 650;
}

.form-message.is-visible {
  display: block;
}

.form-message.error {
  border-color: rgba(184, 115, 58, 0.28);
  color: #7a3f18;
  background: rgba(184, 115, 58, 0.12);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  color: var(--muted);
}

.contact-list a {
  color: var(--forest);
  font-weight: 720;
}

.contact-highlight {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(184, 115, 58, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.74);
  box-shadow: var(--soft-shadow);
}

.contact-highlight strong {
  display: block;
  color: var(--forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.1;
}

.contact-highlight a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--jade);
  font-weight: 800;
}

.final-cta {
  text-align: center;
  background:
    linear-gradient(135deg, rgba(15, 59, 46, 0.94), rgba(30, 107, 83, 0.9)),
    var(--forest);
}

.final-cta .section-title,
.final-cta p {
  margin-inline: auto;
  color: #fffaf0;
}

.final-cta p {
  max-width: 680px;
  margin-top: 16px;
  opacity: 0.82;
}

.final-cta .button {
  margin-top: 28px;
  color: var(--forest);
  background: #fffaf0;
}

.final-cta .button:hover {
  color: #fffaf0;
  background: var(--copper);
}

.site-footer {
  background: #0c3026;
  color: rgba(255, 250, 240, 0.76);
}

.global-disclaimer {
  padding: 42px 0;
  background: rgba(246, 241, 230, 0.92);
  border-top: 1px solid rgba(15, 59, 46, 0.1);
}

.global-disclaimer .container {
  padding: 24px;
}

.global-disclaimer h2 {
  color: var(--forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 650;
  line-height: 1.06;
}

.global-disclaimer p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.93rem;
}

.footer-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 34px;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 36px;
}

.footer-logo {
  width: 200px;
  height: auto;
}

.footer-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(246, 241, 230, 0.22);
  border-radius: 8px;
  padding: 12px 16px;
  background: var(--cream);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.site-footer p {
  max-width: 420px;
  color: rgba(255, 250, 240, 0.76);
}

.site-footer h2 {
  margin-bottom: 14px;
  color: #fffaf0;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 9px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 250, 240, 0.78);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fffaf0;
}

.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255, 250, 240, 0.12);
  color: rgba(255, 250, 240, 0.56);
  font-size: 0.82rem;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.rm-credit a {
  color: rgba(220, 200, 159, 0.86);
  font-weight: 700;
}

.rm-credit a:hover {
  color: #fffaf0;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fffaf0;
  background: var(--jade);
  box-shadow: 0 15px 36px rgba(15, 59, 46, 0.24);
  font-weight: 850;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: none;
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid rgba(15, 59, 46, 0.16);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 250, 240, 0.98);
  box-shadow: var(--shadow);
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.cookie-inner p {
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions .button {
  min-height: 40px;
  padding: 11px 14px;
  font-size: 0.78rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(15, 59, 46, 0.42);
}

.modal.is-visible {
  display: grid;
}

.modal-panel {
  width: min(640px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: 8px;
  padding: 30px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.modal-panel h2 {
  color: var(--forest);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 650;
}

.cookie-option {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 59, 46, 0.12);
}

.cookie-option label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-option p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

@media (max-width: 980px) {
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    gap: 0;
    max-height: calc(100vh - 78px);
    overflow: auto;
    padding: 12px 20px 24px;
    border-bottom: 1px solid rgba(15, 59, 46, 0.12);
    background: rgba(246, 241, 230, 0.98);
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  .nav-group,
  .nav-group > a {
    display: grid;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    padding: 0 0 0 16px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  body.menu-open .nav {
    transform: translateY(0);
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(15, 59, 46, 0.08);
  }

  .language-switch {
    justify-content: flex-start;
    width: fit-content;
    margin-top: 14px;
    margin-left: 0;
    padding: 8px 12px;
  }

  .language-switch a {
    border-bottom: 0;
    padding: 4px 0;
  }

  .hero-grid,
  .split-grid,
  .story-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .side-label {
    position: static;
  }

  .card-grid,
  .metric-grid,
  .footer-grid,
  .process-grid,
  .package-grid,
  .card-grid.two-col {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .header-inner,
  .container,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 28px, 1180px);
  }

  .brand img {
    width: 172px;
  }

  .hero,
  .page-hero {
    padding-top: 42px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.55rem, 11vw, 3.15rem);
    max-width: calc(100vw - 28px);
    overflow-wrap: break-word;
  }

  .hero-copy,
  .lead,
  .sublead,
  .intro-text,
  .rich-text,
  .card,
  .resource-card,
  .form-panel,
  .download-callout,
  .founder-media {
    max-width: calc(100vw - 28px);
  }

  .button,
  button.button {
    max-width: calc(100vw - 28px);
    padding-inline: 16px;
    font-size: 0.82rem;
  }

  .section {
    padding: 64px 0;
  }

  .resource-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .resource-card {
    min-height: auto;
    padding-right: 82px;
  }

  .field.full {
    grid-column: auto;
  }

  .cookie-inner {
    grid-template-columns: 1fr;
  }

  .cookie-actions,
  .modal-actions,
  .cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
