/* MediaShift — light creative editorial agency, Gatineau QC */
:root {
  --cream: #FAF8F5;
  --mist: #F0EDE8;
  --soft: #E4EBE7;
  --sage: #2F5D50;
  --sage-deep: #244A40;
  --sage-muted: #3D7264;
  --ink: #1C1917;
  --ink-soft: #44403C;
  --ink-faint: #78716C;
  --line: rgba(28, 25, 23, 0.1);
  --line-strong: rgba(28, 25, 23, 0.16);
  --white: #FFFFFF;
  --accent-wash: #D8E5E0;
  --shadow: 0 18px 40px rgba(28, 25, 23, 0.07);
  --shadow-soft: 0 8px 24px rgba(28, 25, 23, 0.05);
  --radius: 20px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --max: 1180px;
  --header-h: 78px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sage); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--sage-deep); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
p { margin: 0 0 1rem; color: var(--ink-soft); }
.lead { font-size: 1.18rem; max-width: 38rem; }
.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.container-wide { width: min(100% - 2.5rem, 1320px); margin-inline: auto; }

/* Surfaces */
.surface-light { background: var(--cream); }
.surface-mist { background: var(--mist); }
.surface-accent { background: var(--accent-wash); }
.surface-soft { background: var(--soft); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  background: var(--sage-deep);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--sage);
  color: var(--sage);
  background: rgba(47, 93, 80, 0.05);
}
.btn-group { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.6rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1.5rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.logo-mark {
  width: 34px;
  height: 28px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  line-height: 1;
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem 1.55rem;
}
.nav-desktop a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.35rem 0;
  position: relative;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] { color: var(--ink); }
.nav-desktop a:hover::after,
.nav-desktop a[aria-current="page"]::after { transform: scaleX(1); }
.nav-desktop a.nav-cta {
  margin-left: 0.55rem;
  padding: 0.85rem 1.45rem;
  font-size: 0.9rem;
  color: var(--white);
  background: var(--sage);
  border-color: transparent;
  box-shadow: var(--shadow-soft);
}
.nav-desktop a.nav-cta::after { display: none; }
.nav-desktop a.nav-cta:hover,
.nav-desktop a.nav-cta[aria-current="page"] {
  color: var(--white);
  background: var(--sage-deep);
}
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

/* Mobile overlay — fade + scale (not translateY) */
#shiftOverlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(250, 248, 245, 0.98);
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.96);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}
#shiftOverlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}
.overlay-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  margin-bottom: 2rem;
}
.overlay-close {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: var(--white);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--ink);
}
.overlay-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.overlay-nav a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 2.8rem);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line);
}
.overlay-nav a:hover { color: var(--sage); }
.overlay-meta {
  margin-top: auto;
  padding-top: 2rem;
  color: var(--ink-faint);
  font-size: 0.92rem;
}

/* Hero Pattern C — asymmetric magazine */
.hero-c {
  padding: 2.5rem 0 3.5rem;
  overflow: hidden;
}
.hero-c-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 1.75rem;
  align-items: start;
}
.hero-spine {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  padding-top: 0.4rem;
  align-self: stretch;
  display: flex;
  align-items: flex-start;
}
.hero-copy {
  padding-top: 0.5rem;
  max-width: 34rem;
}
.hero-kicker {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-muted);
  margin-bottom: 1rem;
}
.hero-copy h1 { margin-bottom: 1rem; }
.hero-copy .lead { margin-bottom: 0.25rem; }
.hero-media {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
}
.hero-media figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  background: var(--mist);
  position: relative;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(250, 248, 245, 0.9);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-soft);
}
@media (min-width: 900px) {
  .hero-c-grid {
    grid-template-columns: auto minmax(280px, 0.95fr) minmax(320px, 1.15fr);
    gap: 2rem 2.25rem;
    align-items: center;
  }
  .hero-media {
    grid-column: auto;
    margin-top: 0;
  }
  .hero-copy { padding-top: 1.5rem; }
}

/* Sections */
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-head {
  max-width: 40rem;
  margin-bottom: 2.75rem;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.85rem;
}
.section-head p { margin-bottom: 0; }

/* Pulse strip */
.pulse-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.pulse-item {
  background: var(--cream);
  padding: 1.6rem 1.4rem;
  text-align: center;
}
.pulse-item .num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 0.45rem;
}
.pulse-item .label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-faint);
}
@media (min-width: 768px) {
  .pulse-strip { grid-template-columns: repeat(4, 1fr); }
}

/* Cards / lanes */
.card-grid {
  display: grid;
  gap: 1.35rem;
}
.card-grid-3 { grid-template-columns: 1fr; }
.card-grid-2 { grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .card-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--sage);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card-media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--mist); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.45rem 1.45rem 1.8rem; flex: 1; display: flex; flex-direction: column; }
.card-code {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.55rem;
}
.card-body h3 { margin-bottom: 0.55rem; }
.card-body p { flex: 1; font-size: 0.98rem; }
.card-price {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--ink);
}
.card-price span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-faint);
}

/* Method steps */
.method-list {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .method-list { grid-template-columns: repeat(4, 1fr); }
}
.method-step {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.method-step::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--sage);
  border-radius: 0 0 var(--radius) var(--radius);
}
.method-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 0.85rem;
}

/* Mosaic */
.mosaic {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .mosaic {
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
  }
  .mosaic-feature { grid-row: 1 / span 2; }
}
.mosaic-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--mist);
  box-shadow: var(--shadow-soft);
  min-height: 180px;
}
.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 180px;
}
.mosaic-item .caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(transparent, rgba(28, 25, 23, 0.55));
  color: var(--cream);
  font-weight: 600;
  font-size: 1rem;
}
.mosaic-feature { min-height: 340px; }
.mosaic-feature img { min-height: 340px; }

/* Split */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .split-reverse .split-media { order: 2; }
  .split-reverse .split-copy { order: 1; }
}
.split-media figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: var(--mist);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.portrait-frame {
  aspect-ratio: 3 / 4;
  max-width: 420px;
}

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 0.85rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}
.faq-item::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--sage);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.faq-item.is-open::after { opacity: 1; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  padding: 1.25rem 1.4rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.faq-num {
  flex-shrink: 0;
  width: 2rem;
  color: var(--sage);
  font-variant-numeric: tabular-nums;
}
.faq-a {
  padding: 0 1.4rem 1.35rem 4.2rem;
  color: var(--ink-soft);
}
.faq-a p:last-child { margin-bottom: 0; }
.js .faq-a { display: none; }
.js .faq-item.is-open .faq-a { display: block; }
.faq-q .chev {
  margin-left: auto;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  transition: transform 0.25s ease, background 0.25s ease;
  font-size: 0.85rem;
  color: var(--sage);
}
.js .faq-item.is-open .chev { transform: rotate(45deg); background: var(--accent-wash); }

/* CTA band */
.cta-band {
  padding: 4.5rem 0;
  text-align: center;
}
.cta-band .inner {
  max-width: 40rem;
  margin-inline: auto;
  padding: 3rem 2rem;
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.cta-band .inner::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 5px;
  background: var(--sage);
}
.cta-band h2 { margin-bottom: 0.75rem; }
.cta-band p { margin-bottom: 0; }
.cta-band .btn-group { justify-content: center; }

/* Forms */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.6rem;
  position: relative;
}
.form-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--sage);
  border-radius: 0 0 var(--radius) var(--radius);
}
.form-grid {
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 700px) {
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
}
.form-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(47, 93, 80, 0.15);
  background: var(--white);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.consent input { margin-top: 0.3rem; flex-shrink: 0; accent-color: var(--sage); }
.form-note {
  font-size: 0.88rem;
  color: var(--ink-faint);
  margin-top: 1rem;
}
.alert {
  padding: 1rem 1.2rem;
  border-radius: 14px;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.alert-success {
  background: var(--accent-wash);
  color: var(--sage-deep);
  border: 1px solid rgba(47, 93, 80, 0.25);
}
.alert-error {
  background: #F5E6E4;
  color: #7A2E28;
  border: 1px solid rgba(122, 46, 40, 0.2);
}
.contact-details {
  display: grid;
  gap: 1.25rem;
}
.contact-details dt {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.25rem;
}
.contact-details dd {
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
}
.contact-details a { text-decoration: none; color: var(--ink); font-weight: 500; }
.contact-details a:hover { color: var(--sage); }

/* Page hero compact */
.page-hero {
  padding: 3.25rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero .lead { margin-bottom: 0; }

/* Legal */
.legal-content {
  max-width: 46rem;
}
.legal-content h2 {
  font-size: 1.55rem;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}
.legal-content ul { padding-left: 1.2rem; color: var(--ink-soft); }
.legal-content li { margin-bottom: 0.45rem; }
.legal-meta {
  font-size: 0.9rem;
  color: var(--ink-faint);
  margin-bottom: 2rem;
}

/* 404 */
.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.error-page .code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 9rem);
  font-weight: 700;
  color: var(--sage);
  line-height: 0.9;
  margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
  background: var(--mist);
  border-top: 1px solid var(--line);
  padding: 4rem 0 2rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  gap: 2.25rem;
  margin-bottom: 2.75rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.95rem;
  max-width: 22rem;
  margin-bottom: 1rem;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.footer-col a:hover { color: var(--sage); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: grid;
  gap: 1rem;
}
.footer-disclaimer {
  font-size: 0.82rem;
  color: var(--ink-faint);
  max-width: 58rem;
  margin: 0;
  line-height: 1.55;
}
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.85rem;
  color: var(--ink-faint);
}
.footer-meta a { color: var(--ink-faint); text-decoration: none; }
.footer-meta a:hover { color: var(--sage); }

/* Cookie banner */
#cookieBanner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 300;
  width: calc(100% - 1.5rem);
  max-width: 1180px;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.35rem;
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}
#cookieBanner.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}
#cookieBanner h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}
#cookieBanner p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.cookie-actions .btn { padding: 0.7rem 1.05rem; font-size: 0.85rem; }
@media (min-width: 720px) {
  #cookieBanner {
    width: calc(100% - 2.5rem);
    padding: 1.35rem 1.6rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.35rem 1.5rem;
    align-items: center;
  }
  #cookieBanner h3 {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
  }
  #cookieBanner > p {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 0;
  }
  .cookie-actions {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
    justify-content: flex-end;
  }
  #cookiePanel { grid-column: 1 / -1; }
}
@media (max-width: 699px) {
  #cookieBanner {
    bottom: 0.65rem;
    width: calc(100% - 1.1rem);
    padding: 1.1rem 1rem 1.15rem;
    border-radius: 14px;
  }
  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .cookie-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 0.65rem;
    font-size: 0.82rem;
  }
  .cookie-actions .btn:last-child { grid-column: 1 / -1; }
}
#cookiePanel {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
#cookiePanel.is-open { display: block; }
.cookie-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  font-size: 0.9rem;
}
.cookie-opt input:disabled { opacity: 0.6; }

/* Reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
.site-header,
.hero-c,
.page-hero { /* never reveal */ }

/* Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.list-check {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}
.list-check li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  color: var(--ink-soft);
}
.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--sage);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}
