:root {
  --ink: #241d17;
  --ink-soft: #40342a;
  --body-text: #423527;
  --paper: #f7f1e5;
  --paper-alt: #efe2c8;
  --paper-deep: #e4d0a3;
  --clay: #b5502f;
  --clay-dark: #8f3d22;
  --clay-light: #d97b56;
  --olive: #57624a;
  --olive-dark: #3f4835;
  --ochre: #d99a44;
  --ochre-light: #f0c47f;
  --line: #ddc99e;
  --line-soft: #e8dcc0;

  --shadow-sm: 0 1px 2px rgba(36,29,23,.10), 0 2px 5px rgba(36,29,23,.07);
  --shadow-md: 0 4px 10px rgba(36,29,23,.12), 0 14px 28px rgba(36,29,23,.10);
  --shadow-lg: 0 10px 22px rgba(36,29,23,.14), 0 28px 54px rgba(36,29,23,.16);
  --shadow-clay: 0 6px 16px rgba(181,80,47,.28), 0 18px 36px rgba(181,80,47,.16);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 36px;

  --space-2xs: .375rem;
  --space-xs: .625rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 2.75rem;
  --space-xl: 4.5rem;
  --space-2xl: 6.5rem;

  --font-display: 'Red Hat Display', sans-serif;
  --font-body: 'Red Hat Text', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--body-text);
  line-height: 1.7;
  font-size: 1.03rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 var(--space-sm);
  font-weight: 700;
}

h1 { font-size: clamp(2.6rem, 2rem + 2.6vw, 4.6rem); font-weight: 800; letter-spacing: -.01em; }
h2 { font-size: clamp(1.9rem, 1.5rem + 1.6vw, 3rem); }
h3 { font-size: clamp(1.25rem, 1.1rem + .6vw, 1.55rem); }

p { margin: 0 0 var(--space-sm); }
a { color: var(--clay-dark); text-decoration: none; transition: color .25s ease, opacity .25s ease; }
a:hover { color: var(--clay); }

ul, ol { margin: 0; padding: 0; list-style: none; }

.eyebrow-text {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  font-weight: 700;
  color: var(--clay-dark);
  margin-bottom: var(--space-xs);
}
.center-text { text-align: center; margin-left: auto; margin-right: auto; }
.section-lead { max-width: 640px; color: var(--ink-soft); font-size: 1.08rem; }

.highlight-text {
  background: linear-gradient(135deg, var(--paper-deep), var(--paper-alt));
  border-left: 4px solid var(--clay);
}


.grain-overlay { position: relative; overflow: hidden; }
.grain-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.13  0 0 0 0 0.1  0 0 0 0 0.08  0 0 0 0.55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}


.primary-action, .secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.7rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  min-height: 48px;
}
.primary-action {
  background: var(--clay);
  color: var(--paper);
  box-shadow: var(--shadow-clay);
}
.primary-action:hover {
  background: var(--clay-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(181,80,47,.32), 0 30px 50px rgba(181,80,47,.2);
}
.secondary-action {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.secondary-action:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-3px);
}


.site-header {
  background: var(--ink);
  padding: 0 var(--space-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 40;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--paper);
}
.brand-mark:hover { color: var(--ochre-light); }
.primary-nav ul { display: flex; gap: var(--space-md); }
.primary-nav a {
  color: rgba(247,241,229,.82);
  font-weight: 600;
  font-size: .98rem;
  position: relative;
  padding: .4rem 0;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  height: 2px; width: 0;
  background: var(--ochre);
  transition: width .3s ease;
}
.primary-nav a:hover { color: var(--paper); }
.primary-nav a:hover::after { width: 100%; }
.primary-nav a[aria-current="page"] { color: var(--ochre-light); }

.menu-trigger {
  display: none;
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(247,241,229,.08);
  border: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.menu-trigger span {
  width: 22px; height: 2px;
  background: var(--paper);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}


.curtain-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, var(--ink) 0%, var(--clay-dark) 100%);
  transform: translateY(-100%);
  transition: transform .6s cubic-bezier(.77,0,.18,1);
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
}
.curtain-menu.is-open { transform: translateY(0); }
.curtain-menu nav ul { display: flex; flex-direction: column; gap: var(--space-sm); margin-top: var(--space-xl); }
.curtain-menu nav a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  font-weight: 700;
  color: var(--paper);
  opacity: 0;
  transform: translateY(-24px);
  display: inline-block;
}
.curtain-menu.is-open nav a { animation: curtainLinkIn .55s ease forwards; }
.curtain-menu.is-open nav li:nth-child(1) a { animation-delay: .15s; }
.curtain-menu.is-open nav li:nth-child(2) a { animation-delay: .25s; }
.curtain-menu.is-open nav li:nth-child(3) a { animation-delay: .35s; }
.curtain-menu.is-open nav li:nth-child(4) a { animation-delay: .45s; }
.curtain-menu.is-open nav li:nth-child(5) a { animation-delay: .55s; }
@keyframes curtainLinkIn { to { opacity: 1; transform: translateY(0); } }

.curtain-close {
  align-self: center;
  background: rgba(247,241,229,.12);
  border: 2px solid rgba(247,241,229,.4);
  color: var(--paper);
  padding: .8rem 1.8rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  min-height: 48px;
  transition: background .25s ease, transform .25s ease;
}
.curtain-close:hover { background: rgba(247,241,229,.22); transform: translateY(-2px); }


.cookie-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 3px solid var(--ochre);
  transform: translateY(-110%);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
  box-shadow: var(--shadow-lg);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: .9rem var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.cookie-banner-inner p { margin: 0; font-size: .92rem; color: rgba(247,241,229,.88); }
.cookie-banner-inner p a { color: var(--ochre-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: .6rem; flex-shrink: 0; }
.cookie-solid-btn, .cookie-ghost-btn, .cookie-link-btn {
  border-radius: var(--radius-sm);
  padding: .55rem 1.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: all .25s ease;
  min-height: 44px;
}
.cookie-solid-btn { background: var(--ochre); border: 2px solid var(--ochre); color: var(--ink); }
.cookie-solid-btn:hover { background: var(--ochre-light); }
.cookie-ghost-btn { background: transparent; border: 2px solid rgba(247,241,229,.5); color: var(--paper); }
.cookie-ghost-btn:hover { border-color: var(--paper); }
.cookie-link-btn { background: transparent; border: none; color: rgba(247,241,229,.8); text-decoration: underline; }

.cookie-modal {
  position: fixed; inset: 0;
  background: rgba(36,29,23,.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: var(--space-md);
}
.cookie-modal.is-visible { display: flex; }
.cookie-modal-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  max-width: 560px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.cookie-modal-card h3 { margin-bottom: var(--space-xs); }
.cookie-category { border-top: 1px solid var(--line-soft); padding: var(--space-sm) 0; }
.cookie-category-head { display: flex; justify-content: space-between; align-items: center; font-weight: 700; color: var(--ink); }
.cookie-category-head input { width: 20px; height: 20px; }
.cookie-modal-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: var(--space-md); }


.hero-section { background: linear-gradient(150deg, var(--paper-deep) 0%, var(--paper) 55%); padding: var(--space-2xl) var(--space-lg); }
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-sub { max-width: 540px; font-size: 1.1rem; color: var(--ink-soft); }
.hero-heading { margin-bottom: var(--space-sm); }
.hero-heading .char { display: inline-block; opacity: 0; transform: translateY(.6em); animation: charIn .6s ease forwards; }

.benefit-list { margin-top: var(--space-lg); display: flex; flex-direction: column; gap: var(--space-md); }
.benefit-list li { display: flex; gap: var(--space-sm); align-items: flex-start; }
.benefit-icon {
  flex-shrink: 0;
  width: 54px; height: 54px;
  border-radius: var(--radius-sm);
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  color: var(--clay);
  font-size: 1.3rem;
  box-shadow: var(--shadow-sm);
}
.benefit-list h3 { margin-bottom: .2rem; font-size: 1.15rem; }
.benefit-list p { color: var(--ink-soft); margin: 0; font-size: .96rem; }

.form-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-soft);
  transition: box-shadow .3s ease, border-color .3s ease;
}
.form-card:has(:focus) { border-color: var(--clay); box-shadow: var(--shadow-lg), 0 0 0 4px rgba(181,80,47,.12); }
.form-card h2 { font-size: 1.4rem; }
.form-card > p { color: var(--ink-soft); font-size: .95rem; }

.lead-form { display: flex; flex-direction: column; gap: var(--space-sm); margin-top: var(--space-sm); }
.field-group { display: flex; flex-direction: column; gap: .35rem; }
.field-group label { font-size: .85rem; font-weight: 700; color: var(--ink); }
.field-group input, .field-group textarea {
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .7rem .9rem;
  font-family: var(--font-body);
  font-size: .96rem;
  background: #fffdf8;
  color: var(--ink);
  transition: border-color .25s ease, box-shadow .25s ease;
  resize: vertical;
}
.field-group input:focus, .field-group textarea:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(181,80,47,.14);
}
.privacy-row { display: flex; align-items: flex-start; gap: .55rem; font-size: .85rem; color: var(--ink-soft); }
.privacy-row input { width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; }


.content-block { padding: var(--space-2xl) var(--space-lg); max-width: 1280px; margin: 0 auto; }
.content-block.alt-surface { max-width: none; background: var(--paper-alt); }
.content-block.alt-surface > * { max-width: 1280px; margin-left: auto; margin-right: auto; }
.content-block.cta-block { max-width: none; background: var(--ink); border-radius: var(--radius-xl); margin: 0 var(--space-lg) var(--space-2xl); padding: var(--space-xl); }
.content-block.cta-block h2, .content-block.cta-block p { color: var(--paper); }
.cta-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.cta-actions { display: flex; gap: var(--space-sm); justify-content: center; margin-top: var(--space-md); flex-wrap: wrap; }

.editorial-columns { columns: 2; column-gap: var(--space-xl); }
.editorial-columns.two-thirds { columns: 1; max-width: 780px; margin: 0 auto; }
.editorial-text h2 { column-span: all; }
.pull-quote {
  break-inside: avoid;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--clay-dark);
  margin: var(--space-md) 0;
}


.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); margin-top: var(--space-lg); }
.info-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-soft);
  transition: transform .3s ease, box-shadow .3s ease;
}
.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.content-block.alt-surface .info-card { background: var(--paper); }
.info-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--paper-deep);
  color: var(--clay-dark);
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}
section:has(.info-card) .info-card:nth-child(4n+1) .info-icon { background: var(--paper-deep); color: var(--clay-dark); }
section:has(.info-card) .info-card:nth-child(4n+2) .info-icon { background: #e2e6da; color: var(--olive-dark); }
section:has(.info-card) .info-card:nth-child(4n+3) .info-icon { background: #f3ddb8; color: var(--ochre); }
section:has(.info-card) .info-card:nth-child(4n+4) .info-icon { background: #ecd7c5; color: var(--clay); }


.visual-break {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
}
.visual-break.reverse { direction: rtl; }
.visual-break.reverse > * { direction: ltr; }
.visual-break-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 380px; object-fit: cover; }
.visual-break-copy h2 { margin-bottom: var(--space-sm); }


.step-timeline { max-width: 900px; margin: var(--space-lg) auto 0; display: flex; flex-direction: column; gap: var(--space-md); }
.step-timeline li { display: flex; gap: var(--space-md); align-items: flex-start; padding: var(--space-sm); border-radius: var(--radius-md); transition: background .25s ease; }
.step-timeline li:hover { background: var(--paper-alt); }
.step-index {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--clay);
  flex-shrink: 0;
  width: 56px;
}


.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); margin-top: var(--space-lg); }
.article-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.article-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.article-card img { height: 200px; object-fit: cover; }
.article-body { padding: var(--space-md); display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.article-body h3 { font-size: 1.15rem; }
.read-more-link {
  margin-top: auto;
  background: none; border: none;
  color: var(--clay-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  display: inline-flex; align-items: center; gap: .4rem;
  cursor: pointer;
  padding: 0;
  transition: gap .25s ease, color .25s ease;
}
.read-more-link:hover { gap: .65rem; color: var(--clay); }

.article-modal {
  position: fixed; inset: 0;
  background: rgba(36,29,23,.65);
  display: none;
  align-items: center; justify-content: center;
  z-index: 300;
  padding: var(--space-md);
}
.article-modal.is-visible { display: flex; }
.article-modal-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.article-modal-close {
  position: absolute; top: var(--space-sm); right: var(--space-sm);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--paper-alt);
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--ink);
  transition: background .25s ease, transform .25s ease;
}
.article-modal-close:hover { background: var(--paper-deep); transform: rotate(90deg); }
.article-modal-card img { border-radius: var(--radius-md); margin-bottom: var(--space-sm); height: 240px; object-fit: cover; width: 100%; }


.module-list { display: flex; flex-direction: column; gap: var(--space-lg); }
.module-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s ease, transform .3s ease;
}
.module-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.module-head { display: flex; align-items: center; gap: var(--space-md); margin-bottom: var(--space-sm); }
.module-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--paper);
  background: var(--clay);
  width: 62px; height: 62px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-clay);
}
.module-points { margin-top: var(--space-sm); display: flex; flex-direction: column; gap: .5rem; }
.module-points li { position: relative; padding-left: 1.4rem; color: var(--ink-soft); }
.module-points li::before { content: "\f0da"; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; left: 0; color: var(--clay); }


.page-header { background: linear-gradient(150deg, var(--paper-deep), var(--paper)); padding: var(--space-2xl) var(--space-lg) var(--space-xl); }
.page-header-inner { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.page-header-inner p { color: var(--ink-soft); font-size: 1.08rem; }


.mission-quote { max-width: 720px; margin: 0 auto; text-align: center; padding: var(--space-lg); border-radius: var(--radius-lg); }
.mission-quote p { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--clay-dark); margin-bottom: var(--space-xs); }
.mission-quote cite { font-style: normal; color: var(--ink-soft); font-size: .9rem; }

.contact-info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.contact-info-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.contact-info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.contact-info-card .info-icon { margin: 0 auto var(--space-sm); }

.contact-form-card {
  max-width: 1000px; margin: 0 auto;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-soft);
  transition: border-color .3s ease;
}
.contact-form-card:has(:focus) { border-color: var(--clay); }
.compact-form { margin-top: var(--space-sm); }
.compact-row { display: grid; grid-template-columns: 1fr 1fr 2fr; gap: var(--space-sm); }
.compact-row.secondary-row { grid-template-columns: 1fr auto; align-items: center; margin-top: var(--space-sm); }
.field-group.grow textarea { min-height: 48px; }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); max-width: 1100px; margin: 0 auto; }


.thanks-section { padding: var(--space-2xl) var(--space-lg); display: flex; justify-content: center; min-height: 60vh; align-items: center; }
.thanks-card { text-align: center; max-width: 520px; position: relative; z-index: 2; }
.check-circle { stroke: var(--clay); stroke-dasharray: 264; stroke-dashoffset: 264; animation: drawCircle 1s ease forwards; }
.check-path { stroke: var(--clay); stroke-dasharray: 60; stroke-dashoffset: 60; animation: drawCheck .5s ease forwards .9s; }
.thanks-heading { opacity: 0; animation: fadeUp .6s ease forwards 1.4s; }
.thanks-card p { opacity: 0; animation: fadeUp .6s ease forwards 1.6s; }
.thanks-card .primary-action { opacity: 0; animation: fadeUp .6s ease forwards 1.8s; }
@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes charIn { to { opacity: 1; transform: translateY(0); } }


.legal-page { padding: var(--space-2xl) var(--space-lg); }
.legal-inner { max-width: 820px; margin: 0 auto; }
.legal-updated { color: var(--ink-soft); font-size: .9rem; margin-bottom: var(--space-lg); }
.legal-section { margin-bottom: var(--space-lg); padding-bottom: var(--space-lg); border-bottom: 1px solid var(--line-soft); }
.legal-section:last-child { border-bottom: none; }
.legal-section h2 { font-size: 1.3rem; margin-bottom: var(--space-xs); }


.site-footer { background: var(--ink); color: rgba(247,241,229,.85); margin-top: auto; }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-lg);
}
.footer-brand { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-brand p { font-size: .92rem; color: rgba(247,241,229,.65); }
.footer-col h4 { color: var(--paper); font-size: 1rem; margin-bottom: var(--space-sm); }
.footer-col ul { display: flex; flex-direction: column; gap: .55rem; }
.footer-col a { color: rgba(247,241,229,.72); font-size: .92rem; }
.footer-col a:hover { color: var(--ochre-light); }
.footer-contact li { display: flex; align-items: flex-start; gap: .5rem; font-size: .9rem; color: rgba(247,241,229,.72); }
.footer-contact i { color: var(--ochre); margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(247,241,229,.12); padding: var(--space-sm) var(--space-lg); text-align: center; }
.footer-bottom p { margin: 0; font-size: .85rem; color: rgba(247,241,229,.55); }

body { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; }


.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--paper);
  border: none;
  box-shadow: var(--shadow-clay);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, background .3s ease;
  z-index: 60;
}
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--clay-dark); transform: translateY(-4px); }


.scroll-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.scroll-reveal.is-in-view { opacity: 1; transform: translateY(0); }


@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .editorial-columns { columns: 1; }
  .visual-break { grid-template-columns: 1fr; }
  .visual-break.reverse { direction: ltr; }
  .visual-break-media img { height: 300px; }
}

@media (max-width: 780px) {
  .primary-nav { display: none; }
  .menu-trigger { display: flex; }
  .site-header { padding: 0 var(--space-md); }
  .content-block, .page-header-inner, .legal-page { padding-left: var(--space-md); padding-right: var(--space-md); }
  .content-block.cta-block { margin-left: var(--space-md); margin-right: var(--space-md); padding: var(--space-lg); }
  .info-grid, .blog-grid, .contact-info-grid { grid-template-columns: 1fr; }
  .compact-row { grid-template-columns: 1fr; }
  .compact-row.secondary-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; text-align: left; }
  .cookie-actions { flex-wrap: wrap; }
  .hero-section, .page-header { padding-top: var(--space-xl); padding-bottom: var(--space-lg); }
  h1 { line-height: 1.2; }
}

@media (max-width: 480px) {
  .form-card, .contact-form-card { padding: var(--space-md); }
  .module-card { padding: var(--space-md); }
  .module-head { flex-direction: column; align-items: flex-start; }
}