@import url('https://fonts.googleapis.com/css2?family=Onest:wght@300;400;500;600;700;800&display=swap');

:root {
  --canvas: #F6F2EA;
  --canvas-alt: #EFE8DA;
  --canvas-deep: #E4DAC5;
  --ink: #2A251F;
  --ink-soft: #5B5347;
  --ink-faint: #8A7F6C;
  --primary: #4B5842;
  --primary-dark: #333C2C;
  --primary-light: #7C8B6E;
  --accent: #B1592F;
  --accent-soft: #D9A272;
  --accent-dark: #8A4423;
  --line: #DDD3C0;
  --card: #FBF9F5;

  --shadow-sm: 0 1px 2px rgba(42,37,31,.06), 0 1px 1px rgba(42,37,31,.05);
  --shadow-md: 0 6px 16px rgba(42,37,31,.08), 0 2px 6px rgba(42,37,31,.06);
  --shadow-lg: 0 18px 40px rgba(42,37,31,.14), 0 6px 16px rgba(42,37,31,.08);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --radius-full: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Onest', sans-serif;
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-weight: 600; margin: 0; letter-spacing: -0.01em; color: var(--ink); }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.canvas { position: relative; min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.8rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  min-height: 44px;
}
.btn-accent { background: var(--accent); color: #fff; box-shadow: var(--shadow-md); }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.5); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-sm { padding: .55rem 1.1rem; font-size: .85rem; min-height: 38px; }


.mast {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246,242,234,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s ease;
}
.mast::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1px;
  height: 1px;
  width: 100%;
  background: var(--line);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.mast.is-sealed::after { transform: translateX(-50%) scaleX(1); }
.mast-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mast-brand { display: flex; align-items: center; gap: .6rem; }
.mast-logo { width: 34px; height: 34px; }
.mast-brand-text { font-weight: 700; font-size: 1.2rem; letter-spacing: -0.01em; }
.mast-nav { display: none; align-items: center; gap: 2rem; }
.mast-nav a { font-size: .95rem; color: var(--ink-soft); position: relative; padding: .3rem 0; transition: color .25s ease; }
.mast-nav a::after {
  content: '';
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.mast-nav a:hover, .mast-nav a.is-active { color: var(--ink); }
.mast-nav a:hover::after, .mast-nav a.is-active::after { transform: scaleX(1); }
.mast-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--card);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.mast-toggle:hover { border-color: var(--primary); transform: translateY(-1px); }

@media (min-width: 960px) {
  .mast-nav { display: flex; }
  .mast-toggle { display: none; }
}


.stage-curtain {
  position: fixed; inset: 0;
  background: rgba(42,37,31,.5);
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  z-index: 70;
}
.stage-curtain.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--card);
  border-radius: 28px 28px 0 0;
  box-shadow: var(--shadow-lg);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  z-index: 80;
  padding: .75rem 1.5rem 2rem;
}
.drawer.is-open { transform: translateY(0); }
.drawer-handle {
  width: 44px; height: 5px;
  background: var(--line);
  border-radius: var(--radius-full);
  margin: .5rem auto 1.25rem;
}
.drawer-nav { display: flex; flex-direction: column; gap: .25rem; }
.drawer-nav a {
  display: flex; align-items: center; gap: .9rem;
  padding: 1rem .5rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: background .2s ease, color .2s ease;
  min-height: 44px;
}
.drawer-nav a:last-child { border-bottom: none; }
.drawer-nav a i { width: 22px; color: var(--accent); }
.drawer-nav a:hover { background: var(--canvas-alt); color: var(--primary-dark); }

@media (min-width: 960px) {
  .drawer, .stage-curtain { display: none; }
}


.stage {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.stage-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.stage-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,37,31,.25) 0%, rgba(42,37,31,.35) 45%, rgba(30,26,21,.82) 100%);
}
.stage-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
  color: #fff;
  text-align: center;
}
.stage-eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .8rem;
  color: var(--accent-soft);
  margin-bottom: 1rem;
  font-weight: 600;
}
.stage-title {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 1.08;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.4rem;
}
.stage-text {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,.88);
  max-width: 600px;
  margin: 0 auto 2rem;
}
.stage-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }


.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: .8rem;
}
.section-title {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  margin-bottom: 1.2rem;
  font-weight: 700;
}
.section-text {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin-bottom: 1rem;
  max-width: 60ch;
}
.section-text-center { margin-left: auto; margin-right: auto; text-align: center; max-width: 65ch; }

.page-hero {
  background: var(--canvas-alt);
  padding: 6rem 1.5rem 4rem;
  border-bottom: 1px solid var(--line);
}
.page-hero-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.page-title { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 700; margin-bottom: 1.2rem; }
.page-lead { color: var(--ink-soft); font-size: 1.08rem; max-width: 60ch; margin: 0 auto; }


.gallery {
  padding: 5.5rem 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
}
.gallery-intro { background: transparent; }
.gallery-features { background: var(--canvas-alt); border-radius: var(--radius-lg); margin: 2rem auto; box-shadow: var(--shadow-sm); }
.gallery-photos { background: transparent; }
.gallery-team { background: var(--canvas-alt); border-radius: var(--radius-lg); margin: 2rem auto; }
.gallery-steps { background: transparent; }

.gallery-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.gallery-grid-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.gallery-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.gallery-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform .5s ease; }
.gallery-frame:hover img { transform: scale(1.04); }

@media (min-width: 900px) {
  .gallery-grid-split { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .gallery-grid-reverse { direction: rtl; }
  .gallery-grid-reverse > * { direction: ltr; }
}


.feature-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 4rem;
  padding: 1rem 1.5rem 0;
}
@media (min-width: 800px) {
  .feature-columns { grid-template-columns: 1fr 1fr; }
}
.feature-column { display: flex; flex-direction: column; }
.feature-row {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.feature-column:last-child .feature-row:last-child,
.feature-row:last-child { border-bottom: none; }
.feature-icon {
  flex-shrink: 0;
  width: 50px; height: 50px;
  border-radius: var(--radius-sm);
  background: var(--card);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .3s ease, color .3s ease;
}
.feature-row:hover .feature-icon {
  transform: rotate(-8deg) scale(1.08);
  background: var(--primary);
  color: #fff;
}
.feature-row h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.feature-row p { color: var(--ink-soft); font-size: .96rem; margin: 0; }


.photo-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
.photo-mosaic-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.photo-mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.photo-mosaic-item:hover img { transform: scale(1.05); }
@media (min-width: 800px) {
  .photo-mosaic { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; }
  .photo-mosaic-large { grid-column: span 2; grid-row: span 2; }
  .photo-mosaic-wide { grid-column: span 2; }
  .photo-mosaic-alt { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 320px; }
}


.steps-list { display: flex; flex-direction: column; gap: 0; max-width: 820px; margin: 0 auto; }
.step-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}
.step-row:last-child { border-bottom: none; }
.step-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-soft);
  font-family: 'Onest', sans-serif;
}
.step-row h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.step-row p { color: var(--ink-soft); margin: 0; }


.spotlight-section { padding: 5rem 1.5rem; max-width: 1240px; margin: 0 auto; }
.spotlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--primary-dark);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  color: #F5F1EA;
  box-shadow: var(--shadow-lg);
}
.spotlight .section-title, .spotlight .section-eyebrow { color: #fff; }
.spotlight .section-text { color: rgba(245,241,234,.82); }
.spotlight-media { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.spotlight-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
@media (min-width: 900px) {
  .spotlight { grid-template-columns: 1fr 1fr; padding: 3.5rem; }
}


.shelf {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .shelf { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .shelf-team, .shelf-products { grid-template-columns: repeat(4, 1fr); } }

.shelf-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.shelf-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.shelf-card-media { border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 1.2rem; aspect-ratio: 1/1; }
.shelf-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.shelf-card:hover .shelf-card-media img { transform: scale(1.08); }
.shelf-card h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.shelf-card-role { color: var(--accent); font-size: .85rem; font-weight: 600; margin-bottom: .7rem; }
.shelf-card-text { color: var(--ink-soft); font-size: .93rem; margin: 0; }
.shelf-card-icon {
  display: inline-flex;
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--canvas-alt);
  color: var(--accent);
  align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.shelf-card:hover .shelf-card-icon { transform: rotate(10deg) scale(1.1); }


.cta-band { background: var(--accent); padding: 3.5rem 1.5rem; }
.cta-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
  color: #fff;
}
.cta-band-inner h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: .5rem; color: #fff; }
.cta-band-inner p { color: rgba(255,255,255,.9); max-width: 50ch; }
.cta-band-inner .btn-accent { background: #fff; color: var(--accent-dark); }
.cta-band-inner .btn-accent:hover { background: var(--canvas); }
@media (min-width: 800px) {
  .cta-band-inner { flex-direction: row; align-items: center; }
}


.contact-strip { padding: 3rem 1.5rem; max-width: 1100px; margin: 0 auto; }
.contact-form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-md);
}
.contact-form-card h2 { font-size: 1.4rem; margin-bottom: 1.5rem; }
.form-row-compact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 900px) {
  .form-row-compact { grid-template-columns: 1fr 1fr 1.6fr; gap: 1.2rem; align-items: start; }
}
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .82rem; font-weight: 600; color: var(--ink-soft); }
.field input, .field textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .8rem .9rem;
  font-family: inherit;
  font-size: .95rem;
  background: var(--canvas);
  color: var(--ink);
  transition: border-color .25s ease, box-shadow .25s ease;
  resize: none;
  min-height: 44px;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(75,88,66,.15);
}
.form-row-actions {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
  margin-top: 1.5rem;
}
@media (min-width: 700px) {
  .form-row-actions { flex-direction: row; align-items: center; justify-content: space-between; }
}
.checkbox-field { display: flex; align-items: flex-start; gap: .6rem; font-size: .88rem; color: var(--ink-soft); cursor: pointer; }
.checkbox-field input { width: 18px; height: 18px; margin-top: .15rem; accent-color: var(--primary); flex-shrink: 0; }
.checkbox-field a { color: var(--primary); text-decoration: underline; }
.form-note { font-size: .85rem; color: var(--accent-dark); margin-top: .8rem; min-height: 1.2em; }

.contact-info-list { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; }
.contact-info-list li { display: flex; align-items: center; gap: .8rem; color: var(--ink-soft); }
.contact-info-list i { color: var(--accent); width: 20px; }
.contact-info-list a { color: var(--ink); font-weight: 500; transition: color .2s ease; }
.contact-info-list a:hover { color: var(--accent); }
.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  min-height: 320px;
}


.thanks-section { padding: 7rem 1.5rem; display: flex; justify-content: center; }
.thanks-card {
  max-width: 520px;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 3rem 2.2rem;
  box-shadow: var(--shadow-lg);
}
.thanks-icon {
  display: inline-flex;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--canvas-alt);
  color: var(--primary);
  align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
}
.thanks-card h1 { font-size: 1.9rem; margin-bottom: 1rem; }
.thanks-card p { color: var(--ink-soft); margin-bottom: 1rem; }
.thanks-countdown { font-weight: 600; color: var(--ink); }
.thanks-card .btn { margin-top: 1rem; }


.legal-section { padding: 5rem 1.5rem; }
.legal-inner { max-width: 820px; margin: 0 auto; }
.legal-inner h1 { margin-bottom: 1rem; }
.legal-inner h2 { font-size: 1.3rem; margin: 2.4rem 0 1rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.legal-inner h2:first-of-type { border-top: none; padding-top: 0; }
.legal-inner p { color: var(--ink-soft); margin-bottom: 1rem; }
.legal-inner p:first-of-type { color: var(--ink-soft); }
.legal-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0 2rem; font-size: .92rem; }
.legal-table th, .legal-table td { border: 1px solid var(--line); padding: .8rem 1rem; text-align: left; }
.legal-table th { background: var(--canvas-alt); font-weight: 600; }
.legal-table td { color: var(--ink-soft); }
.legal-defs { margin: 1.5rem 0; }
.legal-defs dt { font-weight: 700; margin-top: 1.2rem; color: var(--ink); }
.legal-defs dd { margin: .3rem 0 0; color: var(--ink-soft); }


.footer { background: var(--primary-dark); color: #EFE9DC; margin-top: auto; }
.footer-accent { height: 5px; background: linear-gradient(90deg, var(--accent), var(--accent-soft)); }
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 800px) {
  .footer-inner { grid-template-columns: 1.6fr 1fr 1.2fr 1fr; }
}
.footer-brand p { color: rgba(239,233,220,.7); font-size: .9rem; margin-top: 1rem; max-width: 32ch; }
.footer-col h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.1rem; }
.footer-col a { display: block; color: rgba(239,233,220,.75); font-size: .92rem; margin-bottom: .7rem; transition: color .2s ease; }
.footer-col a:hover { color: var(--accent-soft); }
.footer-col p { color: rgba(239,233,220,.75); font-size: .9rem; margin-bottom: .7rem; display: flex; align-items: center; gap: .6rem; }
.footer-col p i { color: var(--accent-soft); width: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(239,233,220,.15);
  padding: 1.5rem;
  text-align: center;
}
.footer-bottom p { color: rgba(239,233,220,.55); font-size: .85rem; }


.cookie-card {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 2rem);
  max-width: 420px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}
.cookie-card.is-visible { opacity: 1; visibility: visible; }
.cookie-card-inner {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.4rem 1.6rem;
  transition: max-width .45s cubic-bezier(.2,.8,.2,1), transform .45s cubic-bezier(.2,.8,.2,1);
}
.cookie-compact p { font-size: .88rem; color: var(--ink-soft); margin-bottom: 1rem; }
.cookie-compact a { color: var(--primary); text-decoration: underline; }
.cookie-actions { display: flex; gap: .8rem; justify-content: flex-end; }
.cookie-panel { display: none; max-height: 70vh; overflow-y: auto; }
.cookie-panel h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.cookie-category { padding: .9rem 0; border-bottom: 1px solid var(--line); }
.cookie-category:last-of-type { border-bottom: none; }
.cookie-category-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .3rem; font-weight: 600; font-size: .92rem; }
.cookie-category p { font-size: .82rem; color: var(--ink-soft); margin: 0; }
.cookie-panel-actions { display: flex; gap: .8rem; justify-content: flex-end; margin-top: 1.2rem; }

.switch { position: relative; display: inline-block; width: 42px; height: 24px; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch-track {
  position: absolute; cursor: pointer; inset: 0;
  background: var(--line);
  border-radius: var(--radius-full);
  transition: background .25s ease;
}
.switch-track::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .25s ease;
  box-shadow: var(--shadow-sm);
}
.switch input:checked + .switch-track { background: var(--primary); }
.switch input:checked + .switch-track::before { transform: translateX(18px); }
.switch-disabled { opacity: .6; cursor: not-allowed; }

.cookie-card.is-expanded .cookie-card-inner { max-width: 480px; }
.cookie-card.is-expanded .cookie-compact { display: none; }
.cookie-card.is-expanded .cookie-panel { display: block; }
.cookie-card.is-expanded { max-width: 480px; width: calc(100% - 2rem); }

@media (min-width: 540px) {
  .cookie-card { max-width: 440px; }
}


@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}