:root {
  --home-ink: #211d1a;
  --home-cream: #f7f3ee;
  --home-paper: #fffdf9;
  --home-gold: #d5ad55;
  --home-gold-soft: #f1dfaf;
  --home-line: rgba(57, 47, 40, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--home-ink);
  background: var(--home-cream);
  font-family: "Lato", sans-serif;
  font-weight: 400;
}
a { color: inherit; text-decoration: none; }

.home-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.8rem clamp(1.25rem, 5vw, 5rem);
  color: #fff;
}
.home-brand { display: inline-flex; align-items: center; gap: .65rem; }
.home-brand .brand-lockup-mark { width: 2.35rem; height: 2.35rem; object-fit: contain; }
.home-brand .brand-lockup-word { color: currentColor; font-size: .92rem; font-weight: 700; letter-spacing: .32em; }
.home-header nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.5vw, 2.5rem); font-size: .78rem; letter-spacing: .08em; }
.home-header nav > a:not(.header-login) { opacity: .72; transition: opacity .2s ease; }
.home-header nav > a:hover { opacity: 1; }
.header-login {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .75rem 1.1rem;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 99px;
  background: rgba(255,255,255,.06);
}

.home-hero {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  padding: 9rem clamp(1.25rem, 7vw, 7rem) 6rem;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(255,255,255,.025) 1px, transparent 1px) 0 0 / 50px 50px,
    radial-gradient(circle at 78% 35%, #51473e 0, #2e2925 35%, #211d1a 70%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-glow-one { width: 24rem; height: 24rem; right: 8%; top: 12%; background: rgba(213,173,85,.08); }
.hero-glow-two { width: 14rem; height: 14rem; left: -7rem; bottom: 4%; border: 1px solid rgba(213,173,85,.18); }
.hero-copy { position: relative; z-index: 2; max-width: 630px; }
.home-eyebrow {
  display: inline-block;
  color: var(--home-gold);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.hero-copy h1 {
  margin: 1.6rem 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(3.5rem, 5.6vw, 6.7rem);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .94;
}
.hero-copy h1 em { color: var(--home-gold-soft); font-weight: 500; }
.hero-copy > p { max-width: 560px; margin: 0; color: rgba(255,255,255,.68); font-size: clamp(1rem, 1.3vw, 1.18rem); line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; margin-top: 2.3rem; }
.home-button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .8rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 99px;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .045em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.home-button:hover { transform: translateY(-2px); }
.home-button-primary { color: #251f1b; background: var(--home-gold-soft); }
.home-button-primary:hover { background: #ffe9aa; }
.home-button-ghost { border-color: rgba(255,255,255,.2); color: #fff; }
.home-button-ghost:hover { border-color: rgba(255,255,255,.45); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2.3rem; color: rgba(255,255,255,.45); font-size: .7rem; letter-spacing: .04em; }
.hero-trust span { display: inline-flex; align-items: center; gap: .4rem; }
.hero-trust i { color: var(--home-gold); font-size: 1rem; }

.hero-showcase { position: relative; z-index: 2; width: min(100%, 730px); justify-self: end; perspective: 1200px; }
.showcase-window {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  background: #eee7de;
  box-shadow: 0 45px 90px rgba(0,0,0,.37);
  transform: rotateY(-5deg) rotateX(2deg);
}
.showcase-topbar { display: flex; height: 2.2rem; align-items: center; gap: .32rem; padding: 0 .75rem; color: #857b72; background: #f8f5f0; }
.showcase-topbar > span { width: .42rem; height: .42rem; border-radius: 50%; background: #cfc7be; }
.showcase-topbar small { margin: 0 auto; padding-right: 2.5rem; font-size: .5rem; letter-spacing: .06em; }
.showcase-cover {
  display: grid;
  min-height: 360px;
  place-content: center;
  padding: 3rem;
  text-align: center;
  background:
    linear-gradient(rgba(36,29,25,.2), rgba(36,29,25,.58)),
    radial-gradient(ellipse at 35% 15%, rgba(243,221,173,.9), transparent 28%),
    linear-gradient(145deg, #9f8b78, #463c35 65%, #28221e);
}
.showcase-cover span { color: #ead398; font-size: .55rem; letter-spacing: .35em; }
.showcase-cover h2 { margin: 1rem 0 .4rem; font-family: "Playfair Display", serif; font-size: clamp(2.6rem, 4vw, 4.2rem); font-weight: 500; letter-spacing: -.045em; }
.showcase-cover h2 i { color: #e2c578; font-weight: 400; }
.showcase-cover p { margin: 0; color: rgba(255,255,255,.65); font-family: "Playfair Display", serif; font-size: .9rem; font-style: italic; }
.showcase-gallery { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 4px; padding: 4px; background: #f4eee8; }
.showcase-gallery div { min-height: 110px; }
.showcase-gallery div:nth-child(1) { background: linear-gradient(145deg, #d6c0aa, #7c6859); }
.showcase-gallery div:nth-child(2) { background: linear-gradient(160deg, #776356, #cdb297); }
.showcase-gallery div:nth-child(3) { background: linear-gradient(25deg, #a48d79, #e3d3c1); }
.showcase-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1rem;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 12px;
  background: rgba(39,34,30,.88);
  box-shadow: 0 18px 35px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
}
.showcase-note > i { display: grid; width: 2rem; height: 2rem; place-items: center; border-radius: 50%; color: #211d1a; background: var(--home-gold-soft); font-size: 1.05rem; }
.showcase-note div { display: grid; gap: .15rem; }
.showcase-note strong { font-size: .7rem; }
.showcase-note span { color: rgba(255,255,255,.5); font-size: .55rem; }
.showcase-note-rsvp { top: 15%; right: -2.5rem; }
.showcase-note-media { left: -3rem; bottom: 11%; }

.home-intro { max-width: 900px; margin: 0 auto; padding: 8.5rem 1.5rem 5rem; text-align: center; }
.home-intro h2,
.workflow h2,
.home-cta h2 {
  margin: 1.2rem 0 1.5rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: 1.03;
}
.home-intro p { max-width: 690px; margin: 0 auto; color: #756b64; font-size: 1rem; line-height: 1.8; }

.features {
  display: grid;
  max-width: 1320px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 auto;
  padding: 0 1.5rem 8rem;
}
.feature {
  position: relative;
  min-height: 345px;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid var(--home-line);
  border-radius: 18px;
  background: var(--home-paper);
}
.feature-wide { grid-column: span 2; }
.feature-number { position: absolute; top: 1.5rem; right: 1.5rem; color: #b8aea6; font-size: .62rem; letter-spacing: .18em; }
.feature > i,
.feature > div > i { display: grid; width: 2.8rem; height: 2.8rem; place-items: center; border-radius: 50%; color: #705b4d; background: #eee4da; font-size: 1.3rem; }
.feature h3 { margin: 1.6rem 0 .7rem; font-family: "Playfair Display", serif; font-size: 1.8rem; font-weight: 500; letter-spacing: -.03em; }
.feature p { max-width: 440px; margin: 0; color: #786e67; font-size: .85rem; line-height: 1.7; }
.feature-story { display: grid; grid-template-columns: 1fr .7fr; gap: 2rem; align-items: center; color: #fff; background: #2b2622; }
.feature-story p { color: rgba(255,255,255,.54); }
.story-lines { display: grid; gap: 1rem; transform: rotate(-7deg); }
.story-lines span { height: 3px; border-radius: 99px; background: linear-gradient(90deg, transparent, var(--home-gold), transparent); }
.story-lines span:nth-child(2) { width: 80%; margin-left: 10%; }
.story-lines span:nth-child(3) { width: 58%; margin-left: 21%; }
.feature-thumbnails { position: absolute; right: 1.4rem; bottom: 1.4rem; left: 1.4rem; display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: .35rem; }
.feature-thumbnails span { height: 85px; border-radius: 7px; background: linear-gradient(145deg, #cfb99f, #745f51); }
.feature-thumbnails span:nth-child(2) { background: linear-gradient(45deg, #716258, #c9aa8a); }
.feature-thumbnails span:nth-child(3) { background: linear-gradient(140deg, #ddcdbd, #96806d); }
.rsvp-pill { position: absolute; right: 1.5rem; bottom: 1.5rem; left: 1.5rem; display: flex; align-items: center; gap: .55rem; padding: .8rem 1rem; border-radius: 9px; color: #557152; background: #edf4e9; font-size: .7rem; font-weight: 700; }
.rsvp-pill i { font-size: 1rem; }
.feature-upload { color: #fff; background: linear-gradient(145deg, #4d4138, #2a2521); }
.feature-upload p { color: rgba(255,255,255,.53); }
.upload-orbit { position: absolute; right: -2.5rem; bottom: -3.5rem; display: grid; width: 11rem; height: 11rem; place-items: center; border: 1px solid rgba(213,173,85,.3); border-radius: 50%; }
.upload-orbit::before { content: ""; position: absolute; width: 7rem; height: 7rem; border: 1px solid rgba(213,173,85,.2); border-radius: 50%; }
.upload-orbit i { z-index: 1; color: var(--home-gold-soft); font-size: 2rem; }
.feature-quality { display: flex; align-items: center; justify-content: space-between; gap: 2rem; background: #efe6dc; }
.quality-options { display: flex; align-items: end; gap: .55rem; }
.quality-options span { display: grid; place-items: center; border: 1px solid rgba(65,52,44,.13); border-radius: 8px; color: #6f5d51; background: rgba(255,255,255,.5); font-size: .65rem; font-weight: 700; }
.quality-options span:nth-child(1) { width: 8rem; height: 8rem; }
.quality-options span:nth-child(2) { width: 6.4rem; height: 6.4rem; }
.quality-options span:nth-child(3) { width: 4.8rem; height: 4.8rem; }

.workflow { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 8vw, 9rem); padding: 8rem clamp(1.5rem, 8vw, 9rem); background: #e8ddd1; }
.workflow-heading { align-self: start; position: sticky; top: 3rem; }
.workflow ol { margin: 0; padding: 0; list-style: none; }
.workflow li { display: grid; grid-template-columns: 3.5rem 1fr; gap: 1.3rem; padding: 2.2rem 0; border-top: 1px solid rgba(65,52,44,.16); }
.workflow li:last-child { border-bottom: 1px solid rgba(65,52,44,.16); }
.workflow li > span { display: grid; width: 2.6rem; height: 2.6rem; place-items: center; border-radius: 50%; color: #fff; background: #302923; font-size: .7rem; }
.workflow strong { display: block; margin-bottom: .55rem; font-family: "Playfair Display", serif; font-size: 1.5rem; font-weight: 500; }
.workflow p { margin: 0; color: #756b64; font-size: .85rem; line-height: 1.65; }

.home-cta { position: relative; overflow: hidden; padding: 9rem 1.5rem; color: #fff; text-align: center; background: #211d1a; }
.home-cta::before,
.home-cta::after { content: ""; position: absolute; border: 1px solid rgba(213,173,85,.16); border-radius: 50%; }
.home-cta::before { width: 30rem; height: 30rem; top: -20rem; left: -9rem; }
.home-cta::after { width: 22rem; height: 22rem; right: -8rem; bottom: -14rem; }
.home-cta > img { width: 4rem; height: 4rem; margin-bottom: 1.4rem; object-fit: contain; }
.home-cta h2 { position: relative; z-index: 1; }
.home-cta p { max-width: 590px; margin: 0 auto 2rem; color: rgba(255,255,255,.54); line-height: 1.8; }
.home-button-light { position: relative; z-index: 1; color: #211d1a; background: #fff; }

.home-footer { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 2.4rem clamp(1.5rem, 6vw, 6rem); background: #181512; color: rgba(255,255,255,.7); }
.home-footer p { margin: 0; font-family: "Playfair Display", serif; font-size: .8rem; font-style: italic; }
.home-footer-links { display: flex; align-items: center; gap: 1.2rem; }
.home-footer-links a,
.home-footer-links button,
.home-footer > a:last-child {
  padding: 0;
  border: 0;
  color: rgba(255,255,255,.52);
  background: transparent;
  font: inherit;
  font-size: .68rem;
  letter-spacing: .08em;
  cursor: pointer;
}
.home-footer-links a:hover,
.home-footer-links button:hover { color: #fff; }

.cookie-consent {
  position: fixed;
  z-index: 1000;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
}
.cookie-consent[hidden],
.cookie-preferences[hidden] { display: none !important; }
.cookie-consent-card {
  display: grid;
  width: min(100%, 1180px);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  color: #fff;
  background: rgba(30,26,23,.97);
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
  backdrop-filter: blur(18px);
}
.cookie-consent-copy {
  display: grid;
  grid-template-columns: 2.8rem minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
}
.cookie-consent-icon {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border-radius: 50%;
  color: #2a241f;
  background: var(--home-gold-soft);
  font-size: 1.3rem;
}
.cookie-consent h2 {
  margin: 0 0 .35rem;
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 500;
}
.cookie-consent p {
  max-width: 690px;
  margin: 0;
  color: rgba(255,255,255,.66);
  font-size: .76rem;
  line-height: 1.65;
}
.cookie-consent p a { color: var(--home-gold-soft); text-decoration: underline; text-underline-offset: 3px; }
.cookie-consent-actions,
.cookie-preferences-actions { display: flex; align-items: center; gap: .6rem; }
.cookie-button {
  min-height: 2.8rem;
  padding: .65rem 1rem;
  border: 1px solid transparent;
  border-radius: 99px;
  font: inherit;
  font-size: .69rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}
.cookie-button:focus-visible,
.cookie-preferences-close:focus-visible,
.legal-settings-link:focus-visible,
.home-footer-links button:focus-visible {
  outline: 3px solid rgba(213,173,85,.55);
  outline-offset: 3px;
}
.cookie-button-neutral { border-color: rgba(255,255,255,.38); color: #fff; background: rgba(255,255,255,.08); }
.cookie-button-settings { color: rgba(255,255,255,.75); background: transparent; }
.cookie-button-accept { color: #2a241f; background: var(--home-gold-soft); }

.cookie-preferences {
  position: fixed;
  z-index: 1100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(18,15,13,.72);
  backdrop-filter: blur(8px);
}
.cookie-preferences-card {
  position: relative;
  width: min(100%, 620px);
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border-radius: 20px;
  color: var(--home-ink);
  background: var(--home-paper);
  box-shadow: 0 30px 90px rgba(0,0,0,.4);
}
.cookie-preferences-card > h2 {
  margin: .65rem 0 .8rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -.04em;
}
.cookie-preferences-card > p { margin: 0 2.5rem 1.7rem 0; color: #756b64; font-size: .82rem; line-height: 1.7; }
.cookie-preferences-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border: 1px solid var(--home-line);
  border-radius: 50%;
  color: var(--home-ink);
  background: transparent;
  font-size: 1.3rem;
  cursor: pointer;
}
.cookie-category {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--home-line);
}
.cookie-category strong { display: block; margin-bottom: .35rem; font-size: .86rem; }
.cookie-category > div > span { color: #756b64; font-size: .74rem; line-height: 1.55; }
.cookie-switch { display: flex; align-items: center; gap: .55rem; font-size: .68rem; cursor: pointer; }
.cookie-switch input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.cookie-switch-control {
  position: relative;
  width: 2.75rem;
  height: 1.5rem;
  border-radius: 99px;
  background: #cfc6be;
  transition: background .2s ease;
}
.cookie-switch-control::after {
  content: "";
  position: absolute;
  top: .2rem;
  left: .2rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 7px rgba(0,0,0,.18);
  transition: transform .2s ease;
}
.cookie-switch input:checked + .cookie-switch-control { background: #7b674f; }
.cookie-switch input:checked + .cookie-switch-control::after { transform: translateX(1.25rem); }
.cookie-switch input:focus-visible + .cookie-switch-control { outline: 3px solid rgba(213,173,85,.45); outline-offset: 3px; }
.cookie-switch-required { color: #60715d; cursor: default; }
.cookie-preferences-actions { justify-content: flex-end; padding-top: 1.3rem; border-top: 1px solid var(--home-line); }
.cookie-preferences-actions .cookie-button-neutral { border-color: #8d8178; color: var(--home-ink); background: transparent; }
.cookie-modal-open { overflow: hidden; }

.legal-page { min-height: 100vh; background: #f3ede6; }
.legal-header {
  position: static;
  color: #fff;
  background: #211d1a;
}
.legal-header nav { gap: 1.3rem; }
.legal-settings-link {
  padding: 0;
  border: 0;
  color: rgba(255,255,255,.72);
  background: transparent;
  font: inherit;
  cursor: pointer;
}
.legal-content { width: min(100% - 2rem, 920px); margin: 0 auto; padding: clamp(4rem, 9vw, 8rem) 0; }
.legal-content > h1 {
  margin: 1rem 0 1.5rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .97;
}
.legal-lead { max-width: 690px; margin: 0; color: #6f655e; font-size: 1.08rem; line-height: 1.8; }
.legal-content section { padding-top: 3.5rem; }
.legal-content section h2 { margin: 0 0 1rem; font-family: "Playfair Display", serif; font-size: 1.65rem; font-weight: 500; }
.legal-content section p { color: #655c56; font-size: .9rem; line-height: 1.8; }
.legal-content section a { color: #755f3e; text-decoration: underline; text-underline-offset: 3px; }
.legal-table-wrap { overflow-x: auto; margin: 1.3rem 0; border: 1px solid var(--home-line); border-radius: 14px; background: var(--home-paper); }
.legal-table-wrap table { width: 100%; border-collapse: collapse; font-size: .78rem; }
.legal-table-wrap th,
.legal-table-wrap td { padding: 1rem; border-bottom: 1px solid var(--home-line); text-align: left; vertical-align: top; line-height: 1.55; }
.legal-table-wrap tr:last-child td { border-bottom: 0; }
.legal-table-wrap th { color: #766b63; background: #ebe2d8; font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
.legal-table-wrap code { color: #5c4a3c; }
.legal-choice-button { margin-top: .5rem; color: #fff; background: #302923; }
.legal-updated { margin: 4rem 0 0; color: #92867d; font-size: .72rem; }

@media (max-width: 1100px) {
  .home-hero { grid-template-columns: 1fr; padding-top: 10rem; }
  .hero-copy { text-align: center; justify-self: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-showcase { width: min(86vw, 700px); justify-self: center; }
  .features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-wide { grid-column: span 2; }
}

@media (max-width: 760px) {
  .home-header { padding: 1.2rem; }
  .home-header nav > a:not(.header-login) { display: none; }
  .home-header .home-brand .brand-lockup-word { font-size: .72rem; }
  .home-hero { min-height: 0; padding: 8rem 1.2rem 5rem; }
  .hero-copy h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .home-button { width: 100%; }
  .hero-showcase { width: 100%; margin-top: 1.5rem; }
  .showcase-window { transform: none; }
  .showcase-cover { min-height: 260px; padding: 2rem 1rem; }
  .showcase-gallery div { min-height: 70px; }
  .showcase-note { display: none; }
  .home-intro { padding-top: 6rem; }
  .features { grid-template-columns: 1fr; padding-inline: 1rem; }
  .feature,
  .feature-wide { grid-column: auto; min-height: 330px; }
  .feature-story { grid-template-columns: 1fr; }
  .story-lines { display: none; }
  .feature-quality { align-items: flex-start; flex-direction: column; }
  .quality-options { align-self: center; transform: scale(.78); transform-origin: bottom center; }
  .workflow { grid-template-columns: 1fr; padding: 6rem 1.2rem; }
  .workflow-heading { position: static; }
  .home-cta { padding: 7rem 1.2rem; }
  .home-footer { align-items: flex-start; flex-direction: column; }
  .home-footer-links { align-items: flex-start; flex-direction: column; }
  .cookie-consent { right: .6rem; bottom: .6rem; left: .6rem; }
  .cookie-consent-card { grid-template-columns: 1fr; gap: 1rem; padding: 1rem; }
  .cookie-consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-consent-actions .cookie-button-settings { grid-column: 1 / -1; grid-row: 2; }
  .cookie-button { width: 100%; white-space: normal; }
  .cookie-category { grid-template-columns: 1fr; }
  .cookie-switch { justify-self: start; }
  .cookie-preferences-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .legal-header { align-items: flex-start; gap: 1rem; }
  .legal-header nav { align-items: flex-end; flex-direction: column; gap: .55rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .home-button { transition: none; }
}
