@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --cream: #f2f1ec;
  --cream-deep: #e4e2da;
  --white: #ffffff;
  --sage: #cfd2c4;
  --sage-mid: #9aa18c;
  --sage-deep: #2a2d28;
  --terracotta: #b7d45c;
  --terracotta-deep: #97b640;
  --ink: #171816;
  --ink-soft: #5c5f57;
  --line: #d2d0c7;
  --radius-xl: 48px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --container: 1180px;
  --font: "IBM Plex Sans", sans-serif;
  --font-display: "Space Grotesk", sans-serif;
  --header-h: 88px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-fast: 0.25s;
  --motion-med: 0.55s;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section { padding: 72px 0; }
.section--soft { background: rgba(255, 255, 255, 0.45); }
.section-head { margin-bottom: 28px; }
.section__title {
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  max-width: 16ch;
}
.section__lead {
  margin-top: 14px;
  color: var(--ink-soft);
  max-width: 42ch;
  font-size: 1.02rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform var(--motion-fast) ease, background var(--motion-fast) ease, color var(--motion-fast) ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--terra {
  background: var(--terracotta);
  color: var(--ink);
}
.btn--terra:hover { background: var(--terracotta-deep); color: var(--ink); }
.btn--sage {
  background: var(--sage-deep);
  color: var(--white);
}
.btn--sage:hover { background: #1a1c18; }
.btn--light {
  background: var(--white);
  color: var(--ink);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(242, 241, 236, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: var(--header-h);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo__mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--sage-deep);
  display: grid;
  place-items: center;
}
.logo__mark svg { width: 22px; height: 22px; }
.logo__text { display: flex; flex-direction: column; gap: 2px; }
.logo__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.logo__tag {
  font-size: 0.72rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}
.nav__link {
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color var(--motion-fast) ease, background var(--motion-fast) ease;
}
.nav__link:hover,
.nav__link.is-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
}
.header-cta { flex-shrink: 0; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  position: relative;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  content: "";
}
.nav-toggle span { top: 50%; margin-top: -1px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

/* Hero */
.hero {
  padding: 24px 0 48px;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  min-height: calc(100dvh - var(--header-h) - 48px);
}
.hero__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 12ch;
  margin-bottom: 18px;
}
.hero__text {
  color: var(--ink-soft);
  max-width: 36ch;
  margin-bottom: 28px;
  font-size: 1.05rem;
}
.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 36px;
}
.hero__point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.hero__point-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--sage-mid);
  color: var(--sage-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero__point-icon svg { width: 18px; height: 18px; }
.hero__media {
  position: relative;
  min-height: 520px;
}
.hero__blob {
  position: absolute;
  inset: 0;
  background: var(--sage);
  border-radius: 42% 58% 48% 52% / 52% 42% 58% 48%;
  overflow: hidden;
  animation: blob-breathe 10s var(--ease-out) infinite alternate;
}
.hero__blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.92;
  transform: scale(1.04);
}
.hero__badge {
  position: absolute;
  left: 8%;
  bottom: 14%;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

@keyframes blob-breathe {
  from { border-radius: 42% 58% 48% 52% / 52% 42% 58% 48%; }
  to { border-radius: 58% 42% 52% 48% / 42% 58% 42% 58%; }
}

/* Features */
.features {
  padding: 28px 0 64px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-item {
  padding: 8px 4px;
}
.feature-item__icon {
  width: 40px;
  height: 40px;
  color: var(--sage-deep);
  margin-bottom: 16px;
}
.feature-item__icon svg { width: 36px; height: 36px; }
.feature-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.feature-item p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  max-width: 24ch;
}

/* Soft band panels */
.band {
  padding: 28px 0;
}
.band__panel {
  background: var(--sage);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 48px);
  color: var(--ink);
}
.band__panel--deep { background: var(--sage-mid); }
.band__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}
.band__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  max-width: 12ch;
  margin-bottom: 12px;
}
.band__text {
  color: rgba(23, 24, 22, 0.78);
  max-width: 36ch;
  margin-bottom: 22px;
}

/* Item cards (circular media) — no prices */
.item-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.item-card {
  text-align: center;
  padding: 8px;
}
.item-card__media {
  width: min(100%, 180px);
  aspect-ratio: 1;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream);
}
.item-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.item-card p {
  color: rgba(23, 24, 22, 0.75);
  font-size: 0.88rem;
}

/* Picks / recommend — no cart, no price */
.picks { padding: 64px 0; }
.picks__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
  text-align: center;
}
.picks__ornament {
  width: 28px;
  height: 28px;
  color: var(--sage-deep);
}
.picks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pick-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px;
}
.pick-card__media {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream-deep);
}
.pick-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pick-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.pick-card p {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

/* Spotlight */
.spotlight__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.spotlight__points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 28px;
}
.spotlight__point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 600;
}
.spotlight__point-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
}
.spotlight__media {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  min-height: 360px;
}
.spotlight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  min-height: 220px;
}
.spotlight__media img:first-child {
  border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
  min-height: 360px;
}

/* Page hero */
.page-hero {
  padding: 48px 0 24px;
}
.page-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  max-width: 14ch;
  margin-bottom: 12px;
}
.page-hero__text {
  color: var(--ink-soft);
  max-width: 48ch;
  font-size: 1.05rem;
}

/* Catalog / menu */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.catalog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.catalog-card__media {
  aspect-ratio: 4/3;
  background: var(--cream-deep);
}
.catalog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catalog-card__body { padding: 18px; }
.catalog-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.catalog-card p { color: var(--ink-soft); font-size: 0.92rem; }

/* Split content */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.split img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  min-height: 360px;
  max-height: 520px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.values-grid--4 { grid-template-columns: repeat(4, 1fr); margin-top: 0; }
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px;
}
.value-card h3 { font-size: 1rem; margin-bottom: 8px; }
.value-card p { color: var(--ink-soft); font-size: 0.9rem; }

.feature-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.feature-list li {
  padding-left: 18px;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage-deep);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  min-height: 220px;
}
.gallery-grid img:first-child { min-height: 320px; }

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 760px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.faq-item h3 { font-size: 1.02rem; margin-bottom: 8px; }
.faq-item p { color: var(--ink-soft); font-size: 0.92rem; }

.hours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.hours-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px;
}
.hours-card h3 {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 8px;
  font-family: var(--font);
}
.hours-card p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.cta-band {
  padding: 28px 0 72px;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--sage);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 36px);
}
.cta-band__inner h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 8px;
  max-width: 16ch;
}
.cta-band__inner p { color: rgba(23, 24, 22, 0.78); max-width: 40ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 10px; }

.form-lead {
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.map-embed--tall { min-height: 320px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.step-card__num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--sage-deep);
  margin-bottom: 10px;
}
.step-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step-card p { color: var(--ink-soft); font-size: 0.92rem; }

/* Contacts */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}
.contact-card,
.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px;
}
.contact-card h2,
.form-card h2 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.contact-meta {
  display: grid;
  gap: 12px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.map-embed {
  border: 0;
  width: 100%;
  min-height: 240px;
  border-radius: var(--radius-lg);
  filter: grayscale(0.15) contrast(1.02);
}
.form-grid {
  display: grid;
  gap: 12px;
}
.form-grid label {
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
}
.form-grid input,
.form-grid textarea,
.form-grid select {
  min-height: 46px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  background: var(--cream);
}
.form-grid textarea { min-height: 110px; resize: vertical; }

/* Footer */
.site-footer {
  background: var(--sage);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 48px 0 24px;
  margin-top: 48px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.8fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 28px;
}
.footer-top h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 14px;
  max-width: 12ch;
}
.footer-list {
  display: grid;
  gap: 8px;
  color: rgba(23, 24, 22, 0.8);
  font-size: 0.95rem;
}
.newsletter p {
  color: rgba(23, 24, 22, 0.8);
  margin-bottom: 14px;
  max-width: 28ch;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1;
  min-width: 180px;
  min-height: 48px;
  border: none;
  border-radius: var(--radius-pill);
  padding: 0 18px;
  background: var(--white);
}
.footer-art {
  min-height: 160px;
  display: grid;
  place-items: end center;
  color: var(--sage-deep);
  opacity: 0.85;
}
.footer-art svg { width: min(100%, 220px); height: auto; }

.footer-policies {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 8px 0 24px;
}
a.policy-block {
  display: block;
  background: rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-md);
  padding: 16px;
  color: inherit;
  transition: transform var(--motion-fast) ease, background var(--motion-fast) ease;
}
a.policy-block:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.55);
}
.policy-block h3 {
  font-size: 0.92rem;
  margin-bottom: 6px;
}
.policy-block p {
  font-size: 0.82rem;
  color: rgba(23, 24, 22, 0.75);
  line-height: 1.45;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 24, 22, 0.12);
  font-size: 0.88rem;
  color: rgba(23, 24, 22, 0.75);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
}
.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Cookie / modal / legal */
.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  max-width: 520px;
  margin-inline: auto;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  display: none;
  gap: 14px;
  align-items: center;
}
.cookie-bar.is-visible { display: flex; }
.cookie-bar__text { flex: 1; font-size: 0.88rem; }
.cookie-bar__text strong { display: block; margin-bottom: 4px; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(23, 24, 22, 0.45);
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--motion-fast) ease, visibility var(--motion-fast) ease;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal__panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 420px;
  width: 100%;
}
.modal__panel h2 { margin-bottom: 10px; font-size: 1.4rem; }
.modal__panel p { color: var(--ink-soft); margin-bottom: 20px; }

.page-enter { animation: page-fade 0.55s var(--ease-out) both; }
@keyframes page-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal,
.reveal-stagger {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--motion-med) var(--ease-out), transform var(--motion-med) var(--ease-out);
}
.reveal.is-inview,
.reveal-stagger.is-inview {
  opacity: 1;
  transform: none;
}
.reveal-stagger.is-inview > * {
  animation: rise-in 0.55s var(--ease-out) both;
}
.reveal-stagger.is-inview > *:nth-child(2) { animation-delay: 0.07s; }
.reveal-stagger.is-inview > *:nth-child(3) { animation-delay: 0.14s; }
.reveal-stagger.is-inview > *:nth-child(4) { animation-delay: 0.21s; }
@keyframes rise-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.legal-page { padding: 56px 0 80px; }
.legal-page__inner {
  width: min(100% - 40px, 760px);
  margin-inline: auto;
}
.legal-back {
  display: inline-flex;
  margin-bottom: 24px;
  opacity: 0.7;
  font-weight: 600;
}
.legal-back:hover { opacity: 1; }
.legal-page h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 10px;
  max-width: 16ch;
}
.legal-updated {
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.legal-lead { margin-bottom: 22px; font-size: 1.05rem; }
.legal-body h2 {
  font-size: 1.1rem;
  margin: 28px 0 10px;
}
.legal-body p {
  color: var(--ink-soft);
  margin-bottom: 12px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .hero__grid,
  .band__layout,
  .spotlight__layout,
  .split,
  .contact-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }
  .feature-grid,
  .item-grid,
  .picks__grid,
  .catalog-grid,
  .values-grid,
  .values-grid--4,
  .steps,
  .hours-grid,
  .gallery-grid,
  .footer-policies {
    grid-template-columns: 1fr 1fr;
  }
  .hero__media { min-height: 380px; }
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(var(--header-h) - 8px);
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  }
  .nav.is-open { display: flex; }
  .header-cta { display: none; }
  .site-header__inner { position: relative; }
}

@media (max-width: 640px) {
  .feature-grid,
  .item-grid,
  .picks__grid,
  .catalog-grid,
  .values-grid,
  .values-grid--4,
  .steps,
  .hours-grid,
  .gallery-grid,
  .footer-policies {
    grid-template-columns: 1fr;
  }
  .cookie-bar { flex-direction: column; align-items: stretch; }
  .pick-card { grid-template-columns: 80px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__blob { animation: none; }
  .reveal, .reveal-stagger { opacity: 1; transform: none; }
  .page-enter { animation: none; }
}

/* Dimensions intrinsèques sans déformation des images responsives. */


.form-status{grid-column:1/-1;flex-basis:100%;overflow-wrap:anywhere;}
