@font-face {
  font-family: "Medici Script LT Std";
  src: url("../assets/fonts/medici-script.woff2") format("woff2"),
       url("../assets/fonts/medici-script.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Minion Pro";
  src: url("../assets/fonts/minion-pro.woff2") format("woff2"),
       url("../assets/fonts/minion-pro.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-white: #F3F0EE;
  --taupe-1: #B19D8D;
  --taupe-2: #8C7360;
  --taupe-3: #5C4B3E;
  --taupe-4: #2B231D;
  --color-black: #0F0C0A;
  --font-header: "Minion Pro", Georgia, "Times New Roman", serif;
  --font-title: "Medici Script LT Std", "Cormorant Garamond", "Times New Roman", serif;
  --font-text: "Minion Pro", Georgia, "Times New Roman", serif;
  --container: min(1440px, calc(100% - 96px));
  --shadow-soft: 0 8px 18px rgba(43, 35, 29, 0.18);
  --shadow-card: 0 8px 14px rgba(92, 75, 62, 0.2);
  --radius-pill: 22px;
  --transition-soft: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-text);
}

main {
  opacity: 0;
  transform: translateY(8px);
  animation: pageFadeIn 0.5s ease forwards;
}

@keyframes pageFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--taupe-4);
  color: var(--color-white);
  padding: 8px 12px;
  z-index: 50;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.full-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.section-space {
  padding: 44px 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  white-space: nowrap;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 240, 238, 0.96);
  border-bottom: 1px solid rgba(92, 75, 62, 0.1);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  width: 110px;
  height: auto;
}

.site-nav {
  display: flex;
  gap: 34px;
  font-family: var(--font-header);
  font-size: clamp(2rem, 2.3vw, 2.5rem);
}

.site-nav a {
  transition: color var(--transition-soft);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--taupe-2);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--taupe-4);
  margin: 6px 0;
}

/* Hero */

.hero-home {
  min-height: 680px;
  overflow: hidden;
  position: relative;
}

.hero-home__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-home__content {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  padding: 32px;
}

.hero-logo--wide {
  width: min(1200px, 95vw);
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

.hero-logo--square {
  display: none;
  width: min(320px, 58vw);
}

/* Textes */

.intro-grid {
  display: flex;
  justify-content: center;
}

.intro-grid .text-box {
  width: min(100%, 1300px);
}

.text-box {
  background: var(--taupe-2);
  color: var(--color-white);
  padding: 36px 34px;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.text-box--tall {
  min-height: unset;
}

.text-box h1 {
  margin: 0 0 18px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(2.2rem, 3.6vw, 3.5rem);
  line-height: 1.15;
  color: var(--color-white);
}

.text-box h2,
.text-box h3,
.section-heading h2,
.article-content-block h2,
.contact-card h2,
.info-text-block h2 {
  margin: 0 0 18px;
  font-family: var(--font-title);
  font-weight: 400;
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  line-height: 1;
}

.text-box p,
.info-text-block p,
.article-content-block p,
.article-content-block li,
.contact-intro p {
  font-size: clamp(1.18rem, 1.8vw, 1.85rem);
  line-height: 1.45;
}

/* Séparateurs */

.separator-full {
  padding: 20px 0;
  overflow: hidden;
}

.separator-full img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
}

.separator-animate {
  opacity: 0;
  will-change: transform, opacity, filter;
}

.separator-left {
  transform: translateX(-40px);
}

.separator-right {
  transform: translateX(40px);
}

.separator-center {
  transform: translateY(18px) scale(0.98);
}

.separator-animate.is-visible {
  animation: separatorReveal 1.4s ease forwards;
}

@keyframes separatorReveal {
  0% {
    opacity: 0;
    filter: blur(2px);
  }

  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Titres sections */

.section-heading {
  text-align: center;
  margin-bottom: 28px;
}

.section-heading h2,
.collection-heading h1,
.article-title-row h1 {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: clamp(3.5rem, 6vw, 5.7rem);
  line-height: 1;
  margin: 0;
}

.section-heading p {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  margin-top: 10px;
}

/* Carousel accueil */

.carousel-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 280px);
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 8px 16px;
  scrollbar-width: thin;
}

.home-carousel::-webkit-scrollbar {
  height: 10px;
}

.home-carousel::-webkit-scrollbar-thumb {
  background: rgba(177, 157, 141, 0.8);
  border-radius: 999px;
}

.carousel-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: var(--taupe-2);
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.home-card {
  background: var(--color-white);
  border: 6px solid var(--taupe-2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-soft), box-shadow var(--transition-soft);
}

.home-card:hover {
  transform: translateY(-6px) scale(1.02);
}

.home-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.home-card span {
  display: block;
  padding: 10px 14px 14px;
  font-family: var(--font-title);
  font-size: clamp(2rem, 2vw, 2.25rem);
  line-height: 1.05;
}

/* Grilles */

.two-column-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

/* Partenaires */

.partner-card {
  padding: 28px 24px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}

.partner-card img {
  width: min(250px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 30px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.15),
    0 0 60px rgba(177, 157, 141, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover img {
  transform: scale(1.04);
  box-shadow:
    0 0 0 10px rgba(177, 157, 141, 0.24),
    0 0 42px rgba(177, 157, 141, 0.30),
    0 18px 38px rgba(92, 75, 62, 0.20);
}

.partner-card span {
  display: block;
  position: relative;
  font-family: var(--font-title);
  font-size: clamp(2.1rem, 2vw, 2.8rem);
  margin-bottom: 18px;
}

.partner-card p {
  margin: 0 auto;
  max-width: 26ch;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.45;
}

/* Collection */

.collection-heading__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto 1fr;
  align-items: center;
  gap: 26px;
}

.collection-heading__flower {
  width: 100%;
  max-width: none;
}

.collection-toolbar-wrapper {
  position: sticky;
  top: 106px;
  z-index: 90;
  background: rgba(243, 240, 238, 0.96);
  padding: 0 0 20px;
}

.collection-toolbar {
  display: grid;
  gap: 18px;
}

.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.chip {
  border: 0;
  border-radius: var(--radius-pill);
  padding: 18px 28px;
  background: #ece5df;
  color: var(--color-black);
  cursor: pointer;
  font-family: var(--font-header);
  font-size: clamp(1.6rem, 2vw, 2rem);
  transition: background var(--transition-soft), color var(--transition-soft), transform var(--transition-soft);
}

.chip:hover {
  transform: translateY(-2px);
}

.chip--active {
  background: var(--taupe-1);
  color: var(--color-white);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 84px;
  padding: 0 22px;
  border-radius: 26px;
  background: var(--color-white);
  border: 2px solid rgba(43, 35, 29, 0.8);
  box-shadow: var(--shadow-soft);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  font-size: clamp(1.3rem, 1.6vw, 1.6rem);
}

.search-toggle {
  border: 0;
  background: transparent;
  color: var(--color-black);
  cursor: pointer;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  font-size: 1.7rem;
  line-height: 1;
  transform: translate(-1px, -1px);
}

.collection-toolbar-wrapper.is-search-collapsed .collection-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.collection-toolbar-wrapper.is-search-collapsed .search-box {
  min-height: 64px;
  width: 64px;
  padding: 0;
  gap: 0;
  border-radius: 999px;
  justify-self: end;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  order: 2;
  transition: width var(--transition-soft), min-height var(--transition-soft), padding var(--transition-soft), border-radius var(--transition-soft);
}

.collection-toolbar-wrapper.is-search-collapsed .search-box input {
  width: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.collection-toolbar-wrapper.is-search-collapsed .search-toggle {
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
}

.collection-toolbar-wrapper.is-search-collapsed .chips-row--main {
  align-items: center;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.collection-card {
  display: block;
  overflow: hidden;
  background: var(--taupe-2);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-soft), box-shadow var(--transition-soft);
}

.collection-card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 22px rgba(92, 75, 62, 0.24);
}

.collection-card img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
}

.collection-card__title {
  display: block;
  padding: 10px 16px 16px;
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 1.8vw, 2.25rem);
  line-height: 1.05;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-top: 28px;
}

.pagination button {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 0;
  background: #e8dfd8;
  cursor: pointer;
}

.pagination button.is-active {
  background: var(--taupe-1);
  color: var(--color-white);
}

/* Modal filtres */

.filter-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 120;
}

.filter-modal.is-open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 16px;
  overflow-y: auto;
}

.filter-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 12, 10, 0.25);
}

.filter-modal__dialog {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  background: var(--color-white);
  padding: 30px;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

.filter-modal__footer {
  display: flex;
  justify-content: center;
  padding-top: 22px;
}

/* Articles */

.article-slider {
  position: relative;
  min-height: 420px;
  height: 60vh;
  max-height: 520px;
  overflow: hidden;
  background: #e9e3de;
}

.article-slider__track {
  position: relative;
  height: 100%;
}

.article-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.article-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.article-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 12, 10, 0.55);
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-slider__arrow--left {
  left: 18px;
}

.article-slider__arrow--right {
  right: 18px;
}

.article-slider__zoom {
  position: absolute;
  right: 78px;
  bottom: 18px;
  z-index: 4;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 12, 10, 0.62);
  color: var(--color-white);
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-soft), background var(--transition-soft);
}

.article-slider__zoom:hover {
  transform: scale(1.06);
  background: rgba(15, 12, 10, 0.8);
}

.article-title-row {
  display: grid;
  grid-template-columns: minmax(180px, 280px) auto minmax(180px, 280px);
  align-items: center;
  gap: 20px;
  text-align: center;
}

.title-flower {
  width: 100%;
  max-width: none;
}

.article-content-block,
.info-text-block {
  padding: 12px 0 24px;
}

.article-content-block ul {
  margin-top: 0;
  padding-left: 28px;
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.lightbox.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 12, 10, 0.88);
}

.lightbox__content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 80px 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox__content img {
  display: block;
  max-width: calc(100vw - 180px);
  max-height: calc(100vh - 160px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  cursor: zoom-in;
  transition: transform 0.25s ease;
  transform-origin: center center;
}

.lightbox__close,
.lightbox__arrow {
  position: fixed;
  z-index: 10001;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: rgba(243, 240, 238, 0.96);
  color: var(--taupe-4);
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__close {
  top: 18px;
  right: 18px;
}

.lightbox__arrow {
  top: 50%;
  transform: translateY(-50%);
  background: rgba(243, 240, 238, 0.92);
}

.lightbox__arrow--left {
  left: 18px;
}

.lightbox__arrow--right {
  right: 18px;
}

/* Contact */

.contact-intro {
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: 34px;
  align-items: start;
}

.contact-card {
  background: var(--color-white);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  padding: 30px;
  border: 1px solid rgba(92, 75, 62, 0.2);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 20px;
  border: 2px solid rgba(177, 157, 141, 0.9);
  padding: 18px 20px;
  background: var(--color-white);
  font-size: 1.1rem;
  box-shadow: var(--shadow-soft);
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-consent input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact-consent a {
  text-decoration: underline;
}

.btn-primary {
  justify-self: center;
  border: 0;
  border-radius: 18px;
  background: var(--taupe-1);
  color: var(--color-white);
  padding: 16px 34px;
  cursor: pointer;
  transition: transform var(--transition-soft), background var(--transition-soft);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  appearance: none;
  border: 1px solid var(--taupe-2);
  background: transparent;
  color: var(--taupe-4);
  border-radius: 999px;
  padding: 12px 20px;
  cursor: pointer;
  transition: background var(--transition-soft), transform var(--transition-soft);
}

.btn-secondary:hover {
  background: rgba(177, 157, 141, 0.12);
  transform: translateY(-2px);
}

.contact-side {
  display: grid;
  gap: 26px;
}

.contact-side-list {
  margin: 0;
  padding-left: 24px;
  font-size: clamp(1.3rem, 1.6vw, 1.7rem);
  line-height: 1.8;
}

.contact-side-list a {
  position: relative;
}

/* Footer */

.site-footer {
  margin-top: 20px;
  background: var(--taupe-2);
  color: var(--color-white);
  padding: 46px 0 52px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.site-footer h2 {
  margin: 0 0 18px;
  font-family: var(--font-title);
  font-weight: 400;
  font-size: clamp(3rem, 4vw, 4.5rem);
}

.site-footer ul {
  margin: 0;
  padding-left: 24px;
}

.site-footer li,
.site-footer a,
.contact-reveal {
  font-size: clamp(1.2rem, 1.4vw, 1.45rem);
  line-height: 1.75;
}

.site-footer a {
  position: relative;
}

.site-footer a::after,
.contact-side-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1.5px;
  background: currentColor;
  transition: width 220ms ease;
}

.site-footer a:hover::after,
.contact-side-list a:hover::after,
.site-footer a:focus-visible::after,
.contact-side-list a:focus-visible::after {
  width: 100%;
}

.site-update {
  margin: 34px 0 0;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  opacity: 0.9;
}

/* Cookie banner */

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  background: var(--color-white);
  border: 1px solid rgba(43, 35, 29, 0.14);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(43, 35, 29, 0.14);
  padding: 18px 20px;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-banner__content p {
  margin: 0;
  color: var(--taupe-4);
  line-height: 1.6;
  font-size: 0.98rem;
}

.cookie-banner__content a {
  color: inherit;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* Animations */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 120ms;
}

/* Responsive */

@media (min-width: 1400px) {
  .collection-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1800px) {
  .collection-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 1200px) {
  :root {
    --container: min(100%, calc(100% - 56px));
  }

  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid,
  .two-column-cards,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    max-width: 920px;
    margin: 0 auto;
  }
}

@media (max-width: 1100px) {
  .chips-row--main {
    gap: 12px;
  }

  .chip {
    padding: 14px 22px;
    font-size: 0.95rem;
    border-radius: 20px;
  }
}

@media (max-width: 920px) {
  :root {
    --container: min(100%, calc(100% - 32px));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    flex-direction: column;
    gap: 16px;
    background: rgba(243, 240, 238, 0.98);
    padding: 18px;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-home,
  .hero-home__content {
    min-height: 420px;
  }

  .hero-logo--wide {
    display: none;
  }

  .hero-logo--square {
    display: block;
  }

  .collection-heading__grid,
  .article-title-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .collection-heading__flower,
  .title-flower {
    max-width: 420px;
    margin: 0 auto;
  }

  .collection-toolbar-wrapper {
    top: 84px;
  }
}

@media (max-width: 768px) {
  .chips-row--main {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: start;
    padding-right: 86px;
  }

  .chips-row--main .chip {
    width: 100%;
    text-align: center;
    padding: 14px 16px;
    font-size: 0.98rem;
  }

  .collection-toolbar-wrapper {
    top: 84px;
    padding: 0 0 14px;
  }

  .collection-toolbar {
    position: relative;
    gap: 14px;
  }

  .collection-toolbar-wrapper.is-search-collapsed .search-box {
    position: absolute;
    top: 0;
    right: 0;
    width: 62px;
    min-width: 62px;
    min-height: 62px;
    height: 62px;
    padding: 0;
    gap: 0;
    border-radius: 999px;
    overflow: hidden;
    z-index: 5;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-soft);
  }

  .collection-toolbar-wrapper.is-search-collapsed .search-box input {
    width: 0;
    opacity: 0;
    pointer-events: none;
    padding: 0;
  }

  .collection-toolbar-wrapper.is-search-collapsed .search-toggle {
    width: 62px;
    height: 62px;
    min-width: 62px;
    min-height: 62px;
  }

  .collection-toolbar-wrapper.is-search-collapsed.is-search-expanded .search-box {
    width: min(280px, calc(100vw - 48px));
    padding: 0 18px;
    gap: 10px;
    justify-content: flex-start;
  }

  .collection-toolbar-wrapper.is-search-collapsed.is-search-expanded .search-box input {
    width: 100%;
    opacity: 1;
    pointer-events: auto;
  }

  .filter-modal.is-open {
    padding: 12px;
    align-items: flex-start;
  }

  .filter-modal__dialog {
    width: 100%;
    max-height: calc(100vh - 24px);
    padding: 22px 18px;
    border-radius: 22px;
  }

  .chips-row--all {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .chips-row--all .chip {
    width: 100%;
    text-align: center;
  }

  .article-slider {
    height: 38vh;
    min-height: 180px;
    max-height: 300px;
  }

  .lightbox__content {
    padding: 72px 16px 24px;
  }

  .lightbox__content img {
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 120px);
  }

  .lightbox__close,
  .lightbox__arrow {
    width: 46px;
    height: 46px;
  }

  .lightbox__close {
    top: 12px;
    right: 12px;
  }

  .lightbox__arrow--left {
    left: 10px;
  }

  .lightbox__arrow--right {
    right: 10px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
  }

  .cookie-banner__content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-banner__actions .btn-primary,
  .cookie-banner__actions .btn-secondary {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 84px;
  }

  .brand-logo {
    width: 72px;
  }

  .site-nav {
    font-size: 1.55rem;
  }

  .collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .home-carousel {
    grid-auto-columns: minmax(180px, 72vw);
  }

  .carousel-arrow {
    display: none;
  }

  .text-box,
  .contact-card {
    padding: 22px;
  }

  .text-box h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
    line-height: 1.12;
  }

  .title-flower {
    display: none;
  }

  .article-slider__zoom {
    right: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
    font-size: 1.5rem;
  }

  .footer-grid {
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .article-slider {
    height: 32vh;
    min-height: 160px;
    max-height: 240px;
  }
}