@font-face {
  font-family: "Poppins";
  src: url("assets/Poppins-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/Poppins-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/Poppins-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/Poppins-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --orange: #ed5a1f;
  --orange-deep: #c83f0e;
  --orange-soft: #f08a55;
  --orange-glass: rgba(237, 90, 31, 0.8);
  --orange-mist: rgba(237, 90, 31, 0.2);
  --ink: #10100f;
  --ink-soft: #4b4743;
  --paper: #f5f1eb;
  --white: #ffffff;
  --line: rgba(16, 16, 15, 0.16);
  --line-light: rgba(255, 255, 255, 0.22);
  --title: "Poppins", "Avenir Next", Avenir, Arial, sans-serif;
  --body: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --container: min(1240px, calc(100% - 48px));
  --shadow: 0 24px 70px rgba(31, 22, 16, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.panel-open,
body.menu-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 0;
  font-family: var(--title);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

h3 {
  letter-spacing: -0.025em;
}

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

.section {
  padding: 110px 0;
}

.section--paper {
  background: var(--paper);
}

.skip-link {
  position: fixed;
  z-index: 500;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.kicker--light {
  color: var(--white);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: 0.2s ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--orange {
  color: var(--white);
  background: var(--orange);
}

.button--orange:hover {
  background: var(--orange-deep);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button--dark:hover {
  background: var(--orange);
}

.button--light {
  color: var(--ink);
  background: var(--white);
}

.button--outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(16, 16, 15, 0.12);
}

.button--outline-light:hover {
  color: var(--ink);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.text-link--light {
  color: var(--white);
  border-color: var(--white);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

.section-title {
  margin-bottom: 52px;
}

.section-title h2 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 82px);
}

.section-title--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: end;
  gap: 50px;
}

.section-title--split > p {
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.announcement {
  position: relative;
  z-index: 100;
  display: grid;
  min-height: 34px;
  place-items: center;
  padding: 6px 50px;
  color: var(--white);
  background: var(--orange);
}

.announcement p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announcement p strong {
  font: inherit;
}

.announcement p i {
  width: 4px;
  height: 4px;
  background: var(--white);
  border-radius: 50%;
}

.announcement button {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  transform: translateY(-50%);
  cursor: pointer;
}

.announcement svg,
.round-button svg,
.cart-button svg,
.header-search svg,
.catalog-search svg,
.product-card__more svg,
.newsletter button svg,
.social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: sticky;
  z-index: 90;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 16, 15, 0.1);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  width: min(1360px, calc(100% - 36px));
  min-height: 78px;
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
}

.brand span {
  display: none;
}

.brand strong,
.brand small {
  display: block;
}

.main-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 38px);
}

.main-nav a {
  position: relative;
  display: flex;
  min-height: 78px;
  align-items: center;
  font-size: 12px;
  font-weight: 850;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  height: 3px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.round-button,
.cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.round-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.round-button:hover {
  background: var(--paper);
}

.cart-button {
  gap: 7px;
  min-height: 44px;
  padding: 0 2px 0 9px;
  font-size: 12px;
  font-weight: 900;
}

.cart-button__icon {
  display: flex;
}

.cart-count {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-size: 11px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.header-search {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  visibility: hidden;
  padding: 28px max(24px, calc((100% - 900px) / 2)) 30px;
  background: var(--white);
  box-shadow: 0 28px 60px rgba(16, 16, 15, 0.16);
  opacity: 0;
  transform: translateY(-8px);
  transition: 0.2s ease;
}

.header-search.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.header-search > label {
  display: block;
  margin-bottom: 9px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-search > div {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  border-bottom: 3px solid var(--ink);
}

.header-search input {
  min-width: 0;
  padding: 14px 0;
  border: 0;
  outline: 0;
  font-size: 20px;
}

.header-search button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 0;
  background: transparent;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.header-search .search-close {
  padding-right: 0;
}

.home-hero {
  position: relative;
  min-height: min(790px, calc(100vh - 112px));
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.home-hero__image,
.home-hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero__image {
  object-fit: cover;
}

.home-hero__veil {
  background: linear-gradient(90deg, rgba(16, 16, 15, 0.92) 0%, rgba(16, 16, 15, 0.6) 45%, rgba(16, 16, 15, 0.16) 100%);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(790px, calc(100vh - 112px));
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 90px 0 120px;
}

.home-hero h1 {
  max-width: 900px;
  font-size: clamp(58px, 9.5vw, 132px);
}

.hero-copy {
  max-width: 570px;
  margin: 30px 0 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.55;
}

.hero-address {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  display: flex;
  width: min(350px, 32vw);
  min-height: 145px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 42px;
  color: var(--white);
  background: var(--orange);
}

.hero-address span,
.hero-address small {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-address strong {
  margin: 8px 0 4px;
  font-family: var(--title);
  font-size: 23px;
  letter-spacing: -0.04em;
}

.category-band {
  color: var(--white);
  background: var(--ink);
}

.category-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.category-band a {
  position: relative;
  min-height: 175px;
  padding: 32px;
  border-right: 1px solid var(--line-light);
  transition: background 0.2s ease;
}

.category-band a:first-child {
  border-left: 1px solid var(--line-light);
}

.category-band a:hover {
  background: var(--orange);
}

.category-band span {
  display: block;
  margin-bottom: 27px;
  color: var(--orange-soft);
  font-size: 11px;
  font-weight: 900;
}

.category-band a:hover span {
  color: var(--white);
}

.category-band strong,
.category-band small {
  display: block;
}

.category-band strong {
  font-size: 17px;
}

.category-band small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

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

.product-card {
  min-width: 0;
}

.product-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1.08;
  background: #eae4db;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card__image[href*="livres"] img,
.product-card__image img[src$="logo.jpg"] {
  object-fit: contain;
  padding: 18%;
  background: var(--white);
}

.product-card:hover .product-card__image img {
  transform: scale(1.04);
}

.product-card__image > span {
  position: absolute;
  top: 12px;
  left: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 9px;
  color: var(--white);
  background: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card__body {
  padding-top: 17px;
}

.product-card__body > p {
  margin-bottom: 7px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 43px;
  margin: 0 0 15px;
  font-size: 17px;
  line-height: 1.25;
}

.product-card__foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.product-card__foot > div {
  min-width: 0;
}

.product-card__foot strong,
.product-card__foot small {
  display: block;
}

.product-card__foot strong {
  font-size: 14px;
}

.product-card__foot small {
  margin-top: 5px;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card__add,
.product-card__more {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  color: var(--white);
  background: var(--ink);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.product-card__add {
  width: auto;
  padding: 0 12px;
}

.product-card__add:hover,
.product-card__more:hover {
  background: var(--orange);
}

.product-card__more svg {
  width: 18px;
}

.orange-manifesto {
  padding: 110px 0;
  color: var(--white);
  background: var(--orange);
}

.orange-manifesto__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 90px;
}

.orange-manifesto h2 {
  font-size: clamp(58px, 8vw, 108px);
}

.manifesto-copy p {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.7;
}

.story-preview {
  background: var(--white);
}

.story-preview__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 90px;
}

.story-preview__image {
  position: relative;
}

.story-preview__image img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.story-preview__image span {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 16px 22px;
  color: var(--white);
  background: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-preview__copy h2 {
  font-size: clamp(44px, 5vw, 72px);
}

.story-preview__copy > p:not(.kicker) {
  margin: 28px 0 32px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.events-preview {
  background: var(--paper);
}

.events-preview__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, minmax(245px, 1fr));
  gap: 18px;
}

.event-teaser {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.event-teaser--large {
  grid-row: 1 / 3;
}

.event-teaser img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: 0.45s ease;
}

.event-teaser:hover img {
  opacity: 0.65;
  transform: scale(1.035);
}

.event-teaser div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px;
  background: linear-gradient(transparent, rgba(16, 16, 15, 0.92));
}

.event-teaser span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-teaser h3 {
  margin: 0;
  font-family: var(--title);
  font-size: clamp(23px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.event-teaser:not(.event-teaser--large) h3 {
  font-size: 22px;
}

.page-hero {
  padding: 105px 0 95px;
}

.page-hero--orange {
  color: var(--white);
  background: var(--orange);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: end;
  gap: 70px;
}

.page-hero h1 {
  font-size: clamp(64px, 10vw, 136px);
}

.page-hero__aside {
  padding-bottom: 8px;
}

.page-hero__aside p {
  margin-bottom: 28px;
  font-size: 17px;
  line-height: 1.65;
}

.page-hero__aside strong {
  display: inline-block;
  padding-top: 12px;
  border-top: 2px solid var(--white);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-section {
  padding: 38px 0 110px;
  background: var(--paper);
}

.catalog-tools {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  margin-bottom: 38px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.catalog-search {
  display: flex;
  max-width: 620px;
  align-items: center;
  gap: 12px;
  border-bottom: 2px solid var(--ink);
}

.catalog-search input {
  width: 100%;
  padding: 13px 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 15px;
}

.filter-toggle {
  display: none;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
  gap: 42px;
}

.catalog-filters {
  position: sticky;
  top: 110px;
}

.catalog-filters > p {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#category-filters {
  display: grid;
}

#category-filters button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-size: 12px;
  text-align: left;
  cursor: pointer;
}

#category-filters button.is-active span {
  color: var(--orange);
  font-weight: 900;
}

#category-filters small {
  color: #77716b;
  font-size: 10px;
}

.catalog-note {
  margin-top: 34px;
  padding: 20px;
  color: var(--white);
  background: var(--ink);
}

.catalog-note strong {
  color: var(--orange-soft);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.catalog-note p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  line-height: 1.55;
}

.catalog-results__head {
  display: flex;
  min-height: 38px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.catalog-results__head p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.catalog-results__head select {
  padding: 7px 28px 7px 8px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-size: 11px;
  font-weight: 800;
}

.catalog-results .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.empty-state {
  padding: 80px 24px;
  border: 1px solid var(--line);
  text-align: center;
}

.alcohol-notice {
  padding: 32px 0;
  color: var(--white);
  background: var(--ink);
}

.alcohol-notice .container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.alcohol-notice strong {
  flex: 0 0 auto;
  color: var(--orange-soft);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.alcohol-notice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.events-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 690px;
  color: var(--white);
  background: var(--orange);
}

.events-hero__media {
  overflow: hidden;
}

.events-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.events-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px clamp(38px, 6vw, 100px);
}

.events-hero h1 {
  font-size: clamp(60px, 8vw, 112px);
}

.events-hero__copy > p:last-child {
  max-width: 480px;
  margin: 34px 0 0;
  font-size: 18px;
  line-height: 1.65;
}

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

.event-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ink);
}

.event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.event-card:hover img {
  transform: scale(1.035);
}

.event-card__image span {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 10px 13px;
  color: var(--white);
  background: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-card__copy {
  padding-top: 20px;
}

.event-card__copy > p:first-child {
  margin-bottom: 7px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-card h3 {
  margin: 0 0 13px;
  font-family: var(--title);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.08;
}

.event-card__copy > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.event-types {
  padding: 80px 0;
  color: var(--white);
  background: var(--ink);
}

.event-types__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.event-types article,
.event-types__grid > div {
  min-height: 210px;
  padding: 24px 30px;
  border-left: 1px solid var(--line-light);
}

.event-types__grid > div:last-child {
  border-right: 1px solid var(--line-light);
}

.event-types span {
  color: var(--orange-soft);
  font-size: 11px;
  font-weight: 900;
}

.event-types h3 {
  margin: 42px 0 10px;
  font-family: var(--title);
  font-size: 20px;
  font-weight: 400;
}

.event-types p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.55;
}

.event-contact {
  background: var(--white);
}

.event-contact__inner {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: 90px;
}

.event-contact h2 {
  max-width: 770px;
  font-size: clamp(52px, 7vw, 92px);
}

.event-contact__inner > div:last-child > p {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.about-hero {
  padding: 125px 0 105px;
  background: var(--paper);
}

.about-hero__grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  align-items: end;
  gap: 80px;
}

.about-hero h1 {
  font-size: clamp(60px, 9vw, 124px);
}

.about-hero__grid > div:last-child p {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.about-image {
  width: 100%;
  height: min(650px, 68vw);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-story {
  background: var(--white);
}

.values-story__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 100px;
}

.values-story h2 {
  font-size: clamp(48px, 6vw, 82px);
}

.values-story__copy p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.values-story__copy .large-copy {
  margin-bottom: 28px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.6;
}

.pillars {
  color: var(--white);
  background: var(--orange);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.pillars article {
  min-height: 340px;
  padding: 54px 42px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.pillars article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.pillars span {
  display: block;
  margin-bottom: 90px;
  font-size: 12px;
  font-weight: 900;
}

.pillars h3 {
  margin: 0 0 14px;
  font-family: var(--title);
  font-size: 27px;
  font-weight: 400;
}

.pillars p {
  max-width: 280px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.coworking {
  background: var(--paper);
}

.coworking__grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: stretch;
  gap: 80px;
}

.coworking__copy {
  align-self: center;
}

.coworking h2 {
  font-size: clamp(48px, 6vw, 78px);
}

.coworking__copy > p:not(.kicker) {
  margin: 28px 0 22px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.coworking ul {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.coworking li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.coworking li::before {
  margin-right: 10px;
  color: var(--orange);
  content: "—";
}

.coworking__image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.about-cta {
  padding: 100px 0;
  color: var(--white);
  background: var(--ink);
}

.about-cta h2 {
  margin-bottom: 36px;
  font-size: clamp(54px, 8vw, 108px);
}

.contact-hero {
  padding: 120px 0 110px;
  color: var(--white);
  background: var(--orange);
}

.contact-hero h1 {
  font-size: clamp(64px, 10vw, 136px);
}

.contact-main {
  padding: 100px 0;
  background: var(--paper);
}

.contact-main__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 100px;
}

.contact-address h2 {
  font-size: clamp(44px, 5.5vw, 70px);
  line-height: 1.05;
}

.contact-address > p:not(.kicker) {
  margin: 24px 0 30px;
  color: var(--ink-soft);
}

.contact-details {
  border-top: 1px solid var(--ink);
}

.contact-details > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details a {
  font-size: 17px;
  font-weight: 800;
}

.hours {
  padding: 90px 0;
  color: var(--white);
  background: var(--ink);
}

.hours__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 100px;
}

.hours h2 {
  max-width: 650px;
  font-size: clamp(48px, 6.5vw, 82px);
}

.hours__table > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 15px;
}

.hours__table p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  line-height: 1.6;
}

.contact-form-section {
  background: var(--white);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 100px;
}

.contact-form-grid h2 {
  font-size: clamp(42px, 5.5vw, 70px);
  line-height: 1.02;
}

.contact-form-grid > div > p:last-child {
  margin: 28px 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 2px solid var(--ink);
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  justify-self: start;
  margin-top: 8px;
}

.product-page {
  padding: 42px 0 100px;
  background: var(--paper);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  gap: 80px;
}

.product-detail__image {
  position: relative;
  min-height: 650px;
  background: #e8e2d8;
}

.product-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail__image img[src$="logo.jpg"] {
  object-fit: contain;
  padding: 22%;
  background: var(--white);
}

.product-detail__image > span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 9px 11px;
  color: var(--white);
  background: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail__copy {
  align-self: center;
}

.product-detail h1 {
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.98;
}

.product-detail__brand {
  margin: 17px 0 0;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail__description {
  margin: 30px 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.product-detail__price {
  margin-bottom: 24px;
  font-family: var(--title);
  font-size: 28px;
}

.product-detail__info {
  display: grid;
  margin-top: 38px;
}

.product-detail__info > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.product-detail__info span {
  color: var(--ink-soft);
}

.product-not-found {
  padding: 100px 0;
  text-align: center;
}

.product-not-found .kicker {
  justify-content: center;
}

.product-not-found h1 {
  max-width: 800px;
  margin: 0 auto 34px;
  font-size: clamp(48px, 7vw, 86px);
}

.related-section {
  background: var(--white);
}

.newsletter {
  padding: 68px 0;
  color: var(--white);
  background: var(--orange);
}

.newsletter__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 90px;
}

.newsletter h2 {
  max-width: 710px;
  font-size: clamp(38px, 5vw, 64px);
}

.newsletter form > div {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 2px solid var(--white);
}

.newsletter input {
  min-width: 0;
  padding: 15px 0;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  font-size: 16px;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter button {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  color: var(--white);
  background: transparent;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.newsletter form > p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
}

.site-footer {
  padding: 70px 0 24px;
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand img {
  width: 78px;
  height: 78px;
  object-fit: cover;
}

.footer-brand p {
  max-width: 270px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.6;
}

.footer-grid h3 {
  margin: 0 0 20px;
  color: var(--orange-soft);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:not(.footer-brand) p {
  display: block;
  margin: 0 0 11px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
  line-height: 1.55;
}

.footer-grid a:hover {
  color: var(--white) !important;
}

.social-link {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.social-link svg {
  width: 17px;
  height: 17px;
}

.social-link .fill-dot {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-backdrop {
  position: fixed;
  z-index: 190;
  inset: 0;
  background: rgba(16, 16, 15, 0.58);
  backdrop-filter: blur(3px);
}

.cart-drawer {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  width: min(470px, 100%);
  flex-direction: column;
  padding: 30px;
  background: var(--white);
  box-shadow: -20px 0 70px rgba(16, 16, 15, 0.2);
  transform: translateX(105%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--ink);
}

.cart-drawer__head p {
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-drawer__head h2 {
  font-size: 35px;
}

.drawer-count {
  color: var(--orange);
}

.cart-empty {
  margin: auto 0;
  text-align: center;
}

.cart-empty strong {
  font-family: var(--title);
  font-size: 25px;
}

.cart-empty p {
  max-width: 290px;
  margin: 12px auto 24px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.cart-items {
  overflow: auto;
  margin-right: -10px;
  padding-right: 10px;
}

.cart-line {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 14px;
  padding: 20px 0 28px;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  width: 78px;
  height: 92px;
  object-fit: cover;
}

.cart-line p {
  margin-bottom: 5px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-line h3 {
  margin: 0 0 11px;
  font-size: 13px;
}

.cart-line > strong {
  font-size: 12px;
}

.quantity {
  display: inline-grid;
  grid-template-columns: 26px 26px 26px;
  border: 1px solid var(--line);
}

.quantity button,
.quantity span {
  display: grid;
  height: 26px;
  place-items: center;
  border: 0;
  background: transparent;
  font-size: 11px;
}

.quantity button {
  cursor: pointer;
}

.cart-remove {
  position: absolute;
  right: 0;
  bottom: 10px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-size: 9px;
  cursor: pointer;
}

.cart-summary {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--ink);
}

.cart-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.cart-summary > div strong {
  font-family: var(--title);
  font-size: 24px;
}

.cart-summary > p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 10px;
}

.cart-summary .button {
  width: 100%;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 24px;
  bottom: 24px;
  max-width: min(380px, calc(100% - 48px));
  visibility: hidden;
  padding: 15px 18px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(15px);
  transition: 0.2s ease;
  font-size: 12px;
}

.toast.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 11px;
  }

  .product-grid,
  .catalog-results .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .catalog-layout {
    grid-template-columns: 195px minmax(0, 1fr);
    gap: 28px;
  }

  .product-detail {
    gap: 45px;
  }
}

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

  .section {
    padding: 80px 0;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    min-height: 70px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .brand {
    justify-self: center;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .main-nav {
    display: none;
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    height: calc(100vh - 70px);
    visibility: hidden;
    flex-direction: column;
    padding: 30px 24px;
    color: var(--white);
    background: var(--ink);
    opacity: 0;
    transform: translateY(-8px);
    transition: 0.2s ease;
  }

  .mobile-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--title);
    font-size: 25px;
  }

  .cart-button__label,
  .search-toggle {
    display: none;
  }

  .section-title--split,
  .orange-manifesto__grid,
  .story-preview__grid,
  .page-hero__grid,
  .event-contact__inner,
  .about-hero__grid,
  .values-story__grid,
  .coworking__grid,
  .contact-main__grid,
  .hours__grid,
  .contact-form-grid,
  .product-detail,
  .newsletter__grid {
    grid-template-columns: 1fr;
  }

  .section-title--split,
  .orange-manifesto__grid,
  .story-preview__grid,
  .event-contact__inner,
  .about-hero__grid,
  .values-story__grid,
  .coworking__grid,
  .contact-main__grid,
  .hours__grid,
  .contact-form-grid,
  .newsletter__grid {
    gap: 42px;
  }

  .category-band__grid,
  .event-types__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-band a:nth-child(3),
  .event-types__grid > div:nth-child(3) {
    border-left: 1px solid var(--line-light);
  }

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

  .events-preview__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .event-teaser--large {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 440px;
  }

  .events-hero {
    grid-template-columns: 1fr;
  }

  .events-hero__media {
    min-height: 520px;
  }

  .events-hero__copy {
    padding: 75px 32px;
  }

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

  .pillars article,
  .pillars article:last-child {
    min-height: 230px;
    padding: 38px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .pillars span {
    margin-bottom: 44px;
  }

  .coworking__image {
    order: -1;
  }

  .coworking__image img {
    min-height: 500px;
  }

  .catalog-tools {
    grid-template-columns: 1fr auto;
  }

  .filter-toggle {
    display: block;
    padding: 0 18px;
    border: 1px solid var(--ink);
    background: transparent;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-filters {
    position: static;
    display: none;
    padding: 22px;
    background: var(--white);
  }

  .catalog-filters.is-open {
    display: block;
  }

  .catalog-note {
    display: none;
  }

  .product-detail__image {
    min-height: auto;
    aspect-ratio: 1 / 1;
  }

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

@media (max-width: 580px) {
  :root {
    --container: calc(100% - 28px);
  }

  .section {
    padding: 66px 0;
  }

  .announcement {
    min-height: 30px;
    padding: 6px 36px 6px 14px;
  }

  .announcement p {
    gap: 0;
    font-size: 8px;
    text-align: center;
  }

  .announcement p i,
  .announcement p span {
    display: none;
  }

  .announcement button {
    right: 6px;
  }

  .header-inner {
    width: calc(100% - 18px);
    gap: 6px;
  }

  .home-hero,
  .home-hero__content {
    min-height: 680px;
  }

  .home-hero__content {
    justify-content: flex-start;
    padding-top: 100px;
  }

  .home-hero__veil {
    background: linear-gradient(180deg, rgba(16, 16, 15, 0.82) 0%, rgba(16, 16, 15, 0.42) 65%, rgba(16, 16, 15, 0.9) 100%);
  }

  .home-hero h1 {
    font-size: clamp(52px, 18vw, 78px);
  }

  .hero-copy {
    margin: 24px 0 28px;
    font-size: 16px;
  }

  .hero-address {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    min-height: 100px;
    padding: 18px 22px;
  }

  .category-band__grid,
  .event-types__grid {
    grid-template-columns: 1fr;
  }

  .category-band a,
  .category-band a:first-child,
  .category-band a:nth-child(3),
  .event-types__grid > div,
  .event-types__grid > div:nth-child(3),
  .event-types__grid > div:last-child {
    min-height: 132px;
    padding: 24px;
    border-right: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
    border-left: 1px solid var(--line-light);
  }

  .category-band span {
    margin-bottom: 17px;
  }

  .section-title {
    margin-bottom: 34px;
  }

  .section-title h2,
  .orange-manifesto h2,
  .story-preview__copy h2,
  .event-contact h2,
  .values-story h2,
  .coworking h2,
  .contact-address h2,
  .hours h2,
  .contact-form-grid h2,
  .newsletter h2 {
    font-size: 42px;
  }

  .section-title--split {
    gap: 24px;
  }

  .product-grid,
  .catalog-results .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 10px;
  }

  .product-card__image {
    aspect-ratio: 1 / 1.12;
  }

  .product-card__body {
    padding-top: 12px;
  }

  .product-card h3 {
    min-height: 42px;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .product-card__foot {
    padding-top: 10px;
  }

  .product-card__foot strong {
    font-size: 12px;
  }

  .product-card__foot small {
    max-width: 110px;
    font-size: 9px;
  }

  .product-card__add,
  .product-card__more {
    width: 36px;
    height: 36px;
    padding: 0;
    font-size: 0;
  }

  .product-card__add::before {
    font-size: 18px;
    content: "+";
  }

  .orange-manifesto {
    padding: 72px 0;
  }

  .manifesto-copy p {
    font-size: 15px;
  }

  .story-preview__image img {
    aspect-ratio: 1 / 1;
  }

  .events-preview__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .event-teaser--large {
    grid-column: auto;
    min-height: 400px;
  }

  .event-teaser {
    min-height: 320px;
  }

  .page-hero,
  .about-hero,
  .contact-hero {
    padding: 78px 0 70px;
  }

  .page-hero h1,
  .about-hero h1,
  .contact-hero h1,
  .events-hero h1 {
    font-size: 58px;
  }

  .page-hero__grid {
    gap: 34px;
  }

  .catalog-section {
    padding-top: 24px;
  }

  .catalog-tools {
    grid-template-columns: 1fr;
  }

  .filter-toggle {
    min-height: 44px;
  }

  .catalog-results__head {
    align-items: center;
  }

  .events-hero__media {
    min-height: 420px;
  }

  .events-hero__copy {
    padding: 64px 20px;
  }

  .events-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .event-card__image {
    aspect-ratio: 4 / 4.5;
  }

  .event-types h3 {
    margin-top: 28px;
  }

  .about-image {
    height: 420px;
  }

  .values-story__copy .large-copy {
    font-size: 18px;
  }

  .coworking__image img {
    min-height: 430px;
  }

  .contact-details > div,
  .product-detail__info > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hours__table > div {
    font-size: 13px;
  }

  .product-page {
    padding-top: 24px;
  }

  .product-detail {
    gap: 35px;
  }

  .product-detail h1 {
    font-size: 42px;
  }

  .product-detail__description {
    font-size: 15px;
  }

  .product-detail__add,
  .product-detail__copy > .button {
    width: 100%;
  }

  .newsletter {
    padding: 58px 0;
  }

  .newsletter form > div {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .newsletter input {
    border-bottom: 2px solid var(--white);
  }

  .newsletter button {
    min-height: 50px;
    justify-content: center;
    color: var(--ink);
    background: var(--white);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 22px;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .cart-drawer {
    padding: 22px;
  }
}

/* Palette plus douce, surfaces légèrement transparentes et événements éditoriaux */
.announcement,
.hero-address,
.button--orange,
.orange-manifesto,
.page-hero--orange {
  background: var(--orange-glass);
}

.announcement,
.hero-address {
  backdrop-filter: blur(10px) saturate(80%);
}

.button--orange:hover {
  background: rgba(168, 80, 54, 0.88);
}

.category-band a:hover,
.event-card__image span {
  background: var(--orange-glass);
}

.news-carousel::before,
.news-carousel::after {
  position: absolute;
  z-index: 7;
  right: 0;
  left: 0;
  height: 8px;
  background: rgba(255, 255, 255, 0.94);
  content: "";
  pointer-events: none;
}

.news-carousel::before {
  top: 0;
}

.news-carousel::after {
  bottom: 0;
}

.news-carousel .news-slide__copy {
  padding-bottom: 120px;
}

.news-carousel .news-carousel__controls {
  bottom: 20px;
}

.events-preview {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 20%, var(--orange-mist), transparent 34%),
    var(--paper);
}

.events-preview::before {
  position: absolute;
  top: 8%;
  right: -8%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(237, 90, 31, 0.32);
  border-radius: 50%;
  content: "";
  animation: eventOrbit 12s ease-in-out infinite alternate;
}

.events-preview .container {
  position: relative;
  z-index: 1;
}

.events-preview__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 22px;
}

.event-teaser {
  grid-column: 8 / 13;
  min-height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 24px 65px rgba(24, 19, 16, 0.12);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}

.event-teaser--large {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.event-teaser::after {
  position: absolute;
  z-index: 2;
  inset: 13px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  content: "";
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.event-teaser:hover {
  box-shadow: 0 32px 80px rgba(24, 19, 16, 0.22);
  transform: translateY(-7px);
}

.event-teaser:hover::after {
  opacity: 1;
  transform: scale(1);
}

.event-teaser img {
  opacity: 0.88;
  transition: opacity 0.5s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.event-teaser:hover img {
  opacity: 0.72;
  transform: scale(1.055);
}

.event-teaser div {
  z-index: 3;
  padding: 34px;
  background: linear-gradient(transparent, rgba(14, 14, 13, 0.92));
}

.event-teaser h3 {
  font-weight: 600;
  letter-spacing: -0.035em;
}

.events-hero {
  position: relative;
  display: block;
  min-height: 720px;
  overflow: hidden;
  background: var(--ink);
}

.events-hero__media {
  position: absolute;
  inset: 0;
}

.events-hero__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 13, 12, 0.76), rgba(13, 13, 12, 0.16) 70%),
    linear-gradient(180deg, transparent 45%, rgba(13, 13, 12, 0.7));
  content: "";
}

.events-hero__media img {
  transform: scale(1.035);
  animation: eventsHeroDrift 12s ease-in-out infinite alternate;
}

.events-hero__copy {
  position: relative;
  z-index: 2;
  width: var(--container);
  min-height: 720px;
  margin: auto;
  padding: 110px 0 85px;
  justify-content: flex-end;
}

.events-hero h1 {
  max-width: 860px;
  font-size: clamp(62px, 8vw, 112px);
  font-weight: 600;
}

.events-hero__copy > p:last-child {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.82);
}

.events-ticker {
  overflow: hidden;
  padding: 17px 0;
  border-top: 1px solid rgba(16, 16, 15, 0.1);
  border-bottom: 1px solid rgba(16, 16, 15, 0.1);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
}

.events-ticker > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 26px;
  animation: eventsTicker 28s linear infinite;
}

.events-ticker span {
  font-family: var(--title);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.events-ticker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(237, 90, 31, 0.8);
}

.events-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, var(--orange-mist), transparent 27%),
    #f2efea;
}

.events-showcase::after {
  position: absolute;
  top: 140px;
  right: -160px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(237, 90, 31, 0.26);
  border-radius: 50%;
  content: "";
}

.events-showcase .container {
  position: relative;
  z-index: 1;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  counter-reset: event-card;
  gap: 34px 24px;
}

.event-card {
  position: relative;
  grid-column: span 6;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 15, 0.1);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 22px 60px rgba(33, 25, 19, 0.08);
  counter-increment: event-card;
  backdrop-filter: blur(14px);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.event-card:first-child {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1.18fr 0.82fr;
}

.event-card:last-child {
  grid-column: 4 / 10;
}

.event-card::before {
  position: absolute;
  z-index: 4;
  top: 20px;
  right: 22px;
  color: rgba(255, 255, 255, 0.86);
  content: "0" counter(event-card);
  font-family: var(--title);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.05em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.32);
}

.event-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--orange-glass);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.event-card:hover {
  box-shadow: 0 34px 80px rgba(33, 25, 19, 0.16);
  transform: translateY(-8px);
}

.event-card:hover::after {
  transform: scaleX(1);
}

.event-card__image {
  aspect-ratio: 16 / 10;
}

.event-card:first-child .event-card__image {
  min-height: 520px;
  aspect-ratio: auto;
}

.event-card__image img {
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.event-card:hover img {
  filter: saturate(0.82);
  transform: scale(1.055);
}

.event-card__image span {
  top: 18px;
  right: auto;
  bottom: auto;
  left: 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
}

.event-card__copy {
  padding: 30px 34px 38px;
}

.event-card:first-child .event-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px clamp(36px, 5vw, 72px);
}

.event-card h3 {
  max-width: 520px;
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.event-card__copy > p:last-child {
  max-width: 570px;
  font-size: 15px;
  line-height: 1.75;
}

.event-types {
  background:
    linear-gradient(rgba(16, 16, 15, 0.94), rgba(16, 16, 15, 0.94)),
    radial-gradient(circle at 12% 50%, var(--orange-mist), transparent 34%);
}

.event-types__grid > div {
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.event-types__grid > div::after {
  position: absolute;
  right: 30px;
  bottom: 24px;
  width: 42px;
  height: 1px;
  background: rgba(217, 154, 130, 0.9);
  content: "";
  transform: scaleX(0.4);
  transform-origin: right;
  transition: transform 0.45s ease;
}

.event-types__grid > div:hover {
  background: var(--orange-mist);
  transform: translateY(-6px);
}

.event-types__grid > div:hover::after {
  transform: scaleX(1);
}

@keyframes eventsTicker {
  to { transform: translateX(-50%); }
}

@keyframes eventOrbit {
  from { transform: translate3d(0, -12px, 0) scale(0.95); }
  to { transform: translate3d(-60px, 36px, 0) scale(1.08); }
}

@keyframes eventsHeroDrift {
  from { transform: scale(1.035) translate3d(0, 0, 0); }
  to { transform: scale(1.09) translate3d(-1.5%, 1%, 0); }
}

@media (max-width: 1000px) {
  .event-card,
  .event-card:last-child {
    grid-column: span 6;
  }

  .event-card:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .events-preview__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .event-teaser,
  .event-teaser--large {
    grid-column: auto;
    grid-row: auto;
  }

  .event-teaser--large {
    grid-column: 1 / -1;
    min-height: 440px;
  }

  .events-hero,
  .events-hero__copy {
    min-height: 640px;
  }

  .events-hero__copy {
    width: var(--container);
    padding: 90px 0 60px;
  }

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

  .event-card,
  .event-card:first-child,
  .event-card:last-child {
    display: block;
    grid-column: auto;
  }

  .event-card:first-child .event-card__image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .event-card:first-child .event-card__copy {
    padding: 34px 30px 42px;
  }
}

@media (max-width: 580px) {
  .news-carousel .news-carousel__controls {
    bottom: 18px;
  }

  .events-preview__grid {
    grid-template-columns: 1fr;
  }

  .event-teaser,
  .event-teaser--large {
    grid-column: auto;
    min-height: 340px;
  }

  .events-hero,
  .events-hero__copy {
    min-height: 570px;
  }

  .events-hero h1 {
    font-size: 52px;
  }

  .events-ticker {
    padding: 13px 0;
  }

  .events-showcase {
    padding-top: 72px;
  }

  .event-card__copy,
  .event-card:first-child .event-card__copy {
    padding: 28px 22px 34px;
  }

  .event-card h3 {
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .events-preview::before,
  .events-ticker > div,
  .events-hero__media img {
    animation: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Carrousel immersif et nouvelle hiérarchie typographique */
body,
input,
select,
textarea {
  font-family: var(--body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.button,
.kicker,
.text-link,
.main-nav,
.product-card__brand,
.product-card__price,
.category-band,
.filter-panel,
.sort-select {
  font-family: var(--title);
}

.news-carousel {
  position: relative;
  background: var(--ink);
}

.news-carousel__viewport {
  min-height: clamp(540px, 53vw, 720px);
}

.news-slide {
  display: block;
}

.news-slide__media {
  position: absolute;
  inset: 0;
}

.news-slide__media::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 10, 9, 0.08) 22%, rgba(10, 10, 9, 0.82) 100%),
    linear-gradient(90deg, rgba(10, 10, 9, 0.38), transparent 62%);
}

.news-slide__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-slide__copy {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  max-width: none;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 70px max(24px, calc((100vw - 1240px) / 2 + 24px)) 112px;
  background: transparent;
  color: var(--white);
}

.news-slide__copy .kicker {
  color: #ff9a70;
}

.news-slide__copy h2 {
  max-width: 850px;
  margin: 18px 0 24px;
  color: var(--white);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.03;
}

.news-slide__copy > p:not(.kicker) {
  display: none;
}

.news-slide__copy .text-link {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.news-carousel__controls {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 16px;
  left: 0;
  width: var(--container);
  min-height: 62px;
  margin: auto;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.news-carousel__controls > p,
.news-carousel__controls > p span:first-child {
  color: var(--white);
  font-family: var(--title);
}

.news-carousel__dots button {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.news-carousel__dots button.is-active {
  background: rgba(255, 255, 255, 0.35);
}

.news-carousel__dots button.is-active::after {
  position: absolute;
  inset: 0;
  width: 100%;
  background: var(--orange);
  content: "";
  transform-origin: left;
  animation: newsCarouselProgress 5s linear forwards;
}

.news-carousel__arrows button {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(16, 16, 15, 0.18);
  backdrop-filter: blur(8px);
}

@keyframes newsCarouselProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 860px) {
  .news-carousel__viewport {
    min-height: 590px;
  }

  .news-slide {
    display: block;
  }

  .news-slide__copy {
    padding: 42px 28px 105px;
  }

  .news-slide__copy h2 {
    max-width: 680px;
    font-size: clamp(36px, 7vw, 54px);
  }
}

@media (max-width: 580px) {
  .news-carousel__viewport {
    min-height: 520px;
  }

  .news-slide {
    display: block;
  }

  .news-slide__copy {
    padding: 30px 20px 96px;
  }

  .news-slide__copy h2 {
    margin: 14px 0 18px;
    font-size: 34px;
  }

  .news-carousel__controls {
    bottom: 10px;
    min-height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-carousel__dots button.is-active::after {
    animation: none;
    transform: scaleX(1);
  }
}

/* Direction premium : typographie plus légère et mouvements éditoriaux */
:root {
  --title: "Poppins", "Avenir Next", Avenir, Arial, sans-serif;
  --body: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

h1,
h2 {
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.home-hero h1 {
  max-width: 780px;
  font-size: clamp(52px, 7.4vw, 98px);
}

.section-title h2 {
  font-size: clamp(40px, 4.8vw, 64px);
}

.orange-manifesto h2,
.about-cta h2 {
  font-size: clamp(50px, 6.4vw, 82px);
}

.story-preview__copy h2,
.event-contact h2,
.values-story h2,
.coworking h2,
.hours h2,
.contact-form-grid h2 {
  font-size: clamp(40px, 4.9vw, 62px);
}

.page-hero h1,
.about-hero h1,
.contact-hero h1 {
  font-size: clamp(54px, 7.6vw, 96px);
}

.events-hero h1 {
  font-size: clamp(52px, 6.8vw, 88px);
}

.contact-address h2,
.product-detail h1 {
  font-size: clamp(40px, 5vw, 62px);
}

.product-not-found h1 {
  font-size: clamp(42px, 5.8vw, 70px);
}

.newsletter h2 {
  font-size: clamp(35px, 4.3vw, 54px);
}

.button,
.kicker,
.text-link,
.main-nav a,
.product-card__body > p {
  font-weight: 750;
}

.hero-copy,
.manifesto-copy p,
.story-preview__copy > p:not(.kicker),
.page-hero__aside p,
.events-hero__copy > p:last-child,
.values-story__copy p,
.contact-form-grid > div > p:last-child {
  font-weight: 400;
  letter-spacing: -0.008em;
}

.news-carousel {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.news-carousel__viewport {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.news-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0s linear 0.7s, opacity 0.55s ease;
}

.news-slide.is-active {
  z-index: 2;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.news-slide__media {
  position: relative;
  overflow: hidden;
  background: #d9d2c8;
}

.news-slide__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 50%, rgba(16, 16, 15, 0.13));
  content: "";
}

.news-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1.15s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.news-slide.is-active .news-slide__media img {
  transform: scale(1);
}

.news-slide__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 60px clamp(38px, 6vw, 92px);
  background: var(--white);
}

.news-slide__copy h2 {
  max-width: 610px;
  font-size: clamp(40px, 4.7vw, 64px);
  transform: translateY(22px);
  opacity: 0;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.12s, opacity 0.5s ease 0.12s;
}

.news-slide__copy > p:not(.kicker) {
  max-width: 540px;
  margin: 24px 0 28px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.2s, opacity 0.5s ease 0.2s;
}

.news-slide__copy .text-link {
  transform: translateY(14px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.28s, opacity 0.5s ease 0.28s;
}

.news-slide.is-active .news-slide__copy h2,
.news-slide.is-active .news-slide__copy > p:not(.kicker),
.news-slide.is-active .news-slide__copy .text-link {
  transform: translateY(0);
  opacity: 1;
}

.news-carousel__controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 76px;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
}

.news-carousel__controls > p {
  display: flex;
  gap: 8px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.news-carousel__controls > p span:first-child {
  color: var(--orange);
}

.news-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 9px;
}

.news-carousel__dots button {
  width: 34px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(16, 16, 15, 0.22);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.news-carousel__dots button.is-active {
  width: 54px;
  background: var(--orange);
}

.news-carousel__arrows {
  display: flex;
  gap: 8px;
}

.news-carousel__arrows button {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.news-carousel__arrows button:hover {
  color: var(--white);
  border-color: var(--orange);
  background: var(--orange);
}

.news-carousel__arrows svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease var(--reveal-delay, 0ms), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.reveal-ready.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  animation: premiumHeaderIn 0.7s ease both;
}

.home-hero__image {
  animation: premiumHeroImage 1.6s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.home-hero__content > * {
  animation: premiumContentIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-hero__content > :nth-child(1) { animation-delay: 0.08s; }
.home-hero__content > :nth-child(2) { animation-delay: 0.16s; }
.home-hero__content > :nth-child(3) { animation-delay: 0.24s; }
.home-hero__content > :nth-child(4) { animation-delay: 0.32s; }

@keyframes premiumHeaderIn {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes premiumHeroImage {
  from { opacity: 0.65; transform: scale(1.07); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes premiumContentIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 860px) {
  .news-carousel__viewport {
    min-height: 720px;
  }

  .news-slide {
    grid-template-columns: 1fr;
    grid-template-rows: 390px 1fr;
  }

  .news-slide__copy {
    padding: 46px 32px;
  }

  .news-slide__copy h2 {
    font-size: clamp(38px, 7vw, 54px);
  }
}

@media (max-width: 580px) {
  .home-hero h1,
  .page-hero h1,
  .about-hero h1,
  .contact-hero h1,
  .events-hero h1 {
    font-size: 49px;
  }

  .section-title h2,
  .orange-manifesto h2,
  .about-cta h2,
  .story-preview__copy h2,
  .event-contact h2,
  .values-story h2,
  .coworking h2,
  .hours h2,
  .contact-form-grid h2,
  .newsletter h2 {
    font-size: 38px;
  }

  .news-carousel__viewport {
    min-height: 650px;
  }

  .news-slide {
    grid-template-rows: 300px 1fr;
  }

  .news-slide__copy {
    padding: 34px 20px 38px;
  }

  .news-slide__copy h2 {
    font-size: 38px;
  }

  .news-slide__copy > p:not(.kicker) {
    margin: 18px 0 22px;
    font-size: 13px;
  }

  .news-carousel__controls {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .news-carousel__dots button {
    width: 20px;
  }

  .news-carousel__dots button.is-active {
    width: 34px;
  }

  .news-carousel__arrows button {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .home-hero__image,
  .home-hero__content > * {
    animation: none !important;
  }

  .reveal-ready,
  .news-slide__media img,
  .news-slide__copy h2,
  .news-slide__copy > p:not(.kicker),
  .news-slide__copy .text-link {
    transition: none !important;
  }
}

/* Priorité finale : chaque actualité occupe toute la largeur du carrousel. */
.news-carousel {
  position: relative;
  background: var(--ink);
}

.news-carousel__viewport {
  min-height: clamp(540px, 53vw, 720px);
}

.news-carousel .news-slide {
  display: block;
}

.news-carousel .news-slide__media {
  position: absolute;
  inset: 0;
}

.news-carousel .news-slide__media::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 10, 9, 0.06) 18%, rgba(10, 10, 9, 0.84) 100%),
    linear-gradient(90deg, rgba(10, 10, 9, 0.36), transparent 65%);
}

.news-carousel .news-slide__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-carousel .news-slide__copy {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  max-width: none;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 70px max(24px, calc((100vw - 1240px) / 2 + 24px)) 112px;
  background: transparent;
  color: var(--white);
}

.news-carousel .news-slide__copy .kicker {
  color: #ff9a70;
}

.news-carousel .news-slide__copy h2 {
  max-width: 850px;
  margin: 18px 0 24px;
  color: var(--white);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.03;
}

.news-carousel .news-slide__copy > p:not(.kicker) {
  display: none;
}

.news-carousel .news-slide__copy .text-link {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.news-carousel .news-carousel__controls {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 16px;
  left: 0;
  width: var(--container);
  min-height: 62px;
  margin: auto;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.news-carousel .news-carousel__controls > p,
.news-carousel .news-carousel__controls > p span:first-child {
  color: var(--white);
}

.news-carousel .news-carousel__dots button,
.news-carousel .news-carousel__dots button.is-active {
  background: rgba(255, 255, 255, 0.35);
}

.news-carousel .news-carousel__arrows button {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(16, 16, 15, 0.18);
  backdrop-filter: blur(8px);
}

@media (max-width: 860px) {
  .news-carousel__viewport {
    min-height: 590px;
  }

  .news-carousel .news-slide {
    display: block;
  }

  .news-carousel .news-slide__copy {
    padding: 42px 28px 105px;
  }

  .news-carousel .news-slide__copy h2 {
    max-width: 680px;
    font-size: clamp(36px, 7vw, 54px);
  }
}

@media (max-width: 580px) {
  .news-carousel__viewport {
    min-height: 520px;
  }

  .news-carousel .news-slide__copy {
    padding: 30px 20px 96px;
  }

  .news-carousel .news-slide__copy h2 {
    margin: 14px 0 18px;
    font-size: 34px;
  }

  .news-carousel .news-carousel__controls {
    bottom: 10px;
    min-height: 54px;
  }
}

/* Ajustements placés après les anciennes règles pour garantir la nouvelle direction. */
.news-carousel .news-slide__copy {
  padding-bottom: 120px;
}

.news-carousel .news-carousel__controls {
  bottom: 20px;
}

.event-card.reveal-ready.is-revealed:hover,
.event-teaser.reveal-ready.is-revealed:hover {
  transform: translateY(-8px);
}

.event-card:first-child .event-card__image {
  height: 600px;
}

@media (max-width: 860px) {
  .event-card:first-child .event-card__image {
    height: auto;
  }
}

@media (max-width: 580px) {
  .news-carousel .news-slide__copy {
    padding-bottom: 104px;
  }

  .news-carousel .news-carousel__controls {
    bottom: 18px;
  }
}

/* Finition juillet 2026 : orange originel, carrousel compact et mouvements premium. */
.button,
.kicker,
.text-link,
.main-nav a,
.product-card__body > p {
  font-weight: 600;
}

.home-hero {
  --hero-x: 0px;
  --hero-y: 0px;
  isolation: isolate;
  overflow: hidden;
}

.home-hero::before {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100vw - 1240px) / 2 + 24px));
  top: 30%;
  width: 1px;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  content: "";
  animation: premiumLineFloat 3.8s ease-in-out infinite;
}

.home-hero__image {
  transform: translate3d(var(--hero-x), var(--hero-y), 0) scale(1.045);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  animation: none;
}

.home-hero__veil {
  background:
    radial-gradient(circle at 72% 34%, rgba(237, 90, 31, 0.13), transparent 30%),
    linear-gradient(90deg, rgba(10, 10, 9, 0.78) 0%, rgba(10, 10, 9, 0.35) 55%, rgba(10, 10, 9, 0.12) 100%),
    linear-gradient(180deg, rgba(10, 10, 9, 0.06), rgba(10, 10, 9, 0.5));
}

.home-hero__content h1 {
  max-width: 720px;
  font-size: clamp(48px, 6.2vw, 82px);
}

.home-hero__content h1::after {
  display: block;
  width: 86px;
  height: 3px;
  margin-top: 25px;
  background: var(--orange);
  content: "";
  transform-origin: left;
  animation: premiumAccentIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.58s both;
}

.news-carousel {
  border-top: 8px solid var(--white);
  border-bottom: 8px solid var(--white);
}

.news-carousel__viewport {
  min-height: clamp(420px, 42vw, 540px);
}

.news-carousel .news-slide__copy {
  padding: 52px max(24px, calc((100vw - 1240px) / 2 + 24px)) 104px;
}

.news-carousel .news-slide__copy h2 {
  max-width: 760px;
  font-size: clamp(34px, 4.3vw, 58px);
}

.news-carousel .news-slide.is-active .news-slide__media img {
  animation: premiumCarouselDrift 5.2s cubic-bezier(0.2, 0.72, 0.25, 1) both;
}

.news-carousel .news-slide__copy::before {
  width: 42px;
  height: 2px;
  margin-bottom: 18px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
}

.news-carousel .news-slide.is-active .news-slide__copy::before {
  animation: premiumAccentIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}

.section-title h2 {
  font-size: clamp(36px, 4.1vw, 56px);
}

.section-title .kicker,
.story-preview__copy .kicker {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title .kicker::before,
.story-preview__copy .kicker::before {
  width: 0;
  height: 1px;
  background: var(--orange);
  content: "";
  transition: width 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.is-revealed .section-title .kicker::before,
.story-preview__copy.is-revealed .kicker::before {
  width: 34px;
}

.category-band__grid a {
  isolation: isolate;
  overflow: hidden;
}

.category-band__grid a::after {
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 4px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.category-band__grid a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.product-card {
  transition:
    box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.product-card:hover {
  border-color: rgba(237, 90, 31, 0.36);
  box-shadow: 0 28px 58px rgba(22, 15, 10, 0.13);
  transform: translateY(-7px);
}

.product-card__image {
  isolation: isolate;
  overflow: hidden;
}

.product-card__image::after {
  position: absolute;
  z-index: 2;
  inset: -40% auto -40% -55%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  content: "";
  transform: skewX(-17deg);
  transition: left 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.product-card:hover .product-card__image::after {
  left: 125%;
}

.orange-manifesto {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.orange-manifesto::after {
  position: absolute;
  z-index: -1;
  right: -7vw;
  top: -16vw;
  width: 36vw;
  height: 36vw;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  content: "";
  animation: premiumOrbit 9s ease-in-out infinite alternate;
}

.story-preview__image,
.boutique-gallery figure,
.coworking__image {
  overflow: hidden;
}

.story-preview__image img,
.boutique-gallery img,
.coworking__image img {
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
}

.story-preview__image:hover img,
.boutique-gallery figure:hover img,
.coworking__image:hover img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.035);
}

.boutique-gallery {
  background: var(--white);
}

.boutique-gallery__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(2, minmax(250px, 32vw));
  gap: 18px;
  margin-top: 50px;
}

.boutique-gallery figure {
  position: relative;
  margin: 0;
  background: var(--ink);
}

.boutique-gallery__wide {
  grid-row: 1 / 3;
}

.boutique-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.boutique-gallery figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 13px 15px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(16, 16, 15, 0.64);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
}

@keyframes premiumLineFloat {
  0%, 100% { opacity: 0.35; transform: translateY(-14px); }
  50% { opacity: 0.95; transform: translateY(14px); }
}

@keyframes premiumAccentIn {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: 1; transform: scaleX(1); }
}

@keyframes premiumCarouselDrift {
  from { transform: scale(1.075) translate3d(-0.6%, 0.4%, 0); }
  to { transform: scale(1.015) translate3d(0, 0, 0); }
}

@keyframes premiumOrbit {
  from { opacity: 0.35; transform: translate3d(-18px, 6px, 0) scale(0.94); }
  to { opacity: 0.75; transform: translate3d(18px, -10px, 0) scale(1.04); }
}

@media (max-width: 860px) {
  .news-carousel__viewport {
    min-height: 500px;
  }

  .news-carousel .news-slide__copy {
    padding: 38px 28px 94px;
  }

  .news-carousel .news-slide__copy h2 {
    font-size: clamp(34px, 6.7vw, 48px);
  }

  .boutique-gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 460px 260px;
  }

  .boutique-gallery__wide {
    grid-column: 1 / 3;
    grid-row: auto;
  }
}

@media (max-width: 580px) {
  .home-hero__content h1 {
    font-size: 46px;
  }

  .home-hero::before {
    display: none;
  }

  .news-carousel__viewport {
    min-height: 440px;
  }

  .news-carousel .news-slide__copy {
    padding: 28px 20px 88px;
  }

  .news-carousel .news-slide__copy h2 {
    max-width: 92%;
    font-size: 31px;
  }

  .news-carousel .news-carousel__controls {
    bottom: 12px;
  }

  .boutique-gallery__grid {
    display: block;
    margin-top: 34px;
  }

  .boutique-gallery figure {
    min-height: 340px;
    margin-top: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero::before,
  .orange-manifesto::after,
  .news-carousel .news-slide.is-active .news-slide__media img,
  .news-carousel .news-slide.is-active .news-slide__copy::before,
  .home-hero__content h1::after {
    animation: none !important;
  }

  .home-hero__image {
    transform: scale(1.02);
  }
}

/* Finition mobile et expérience boutique — version Netlify juillet 2026. */
.home-hero__gallery {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  transform: translate3d(var(--hero-x), var(--hero-y), 0) scale(1.012);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-hero__gallery .home-hero__image {
  position: absolute;
  inset: -1.5%;
  width: 103%;
  height: 103%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  transition:
    opacity 2.25s ease-in-out,
    transform 10.5s cubic-bezier(0.18, 0.72, 0.22, 1);
  animation: none;
  will-change: opacity, transform;
}

.home-hero__gallery .home-hero__image.is-visible {
  z-index: 1;
  opacity: 1;
  transform: scale(1.015);
}

.home-hero__gallery .home-hero__image:nth-child(1),
.home-hero__gallery .home-hero__image:nth-child(2),
.home-hero__gallery .home-hero__image:nth-child(3) {
  object-position: center 46%;
}

.home-hero__gallery .home-hero__image:nth-child(4) {
  object-position: center 54%;
}

.home-hero__gallery .home-hero__image:nth-child(5),
.home-hero__gallery .home-hero__image:nth-child(6) {
  object-position: center;
}

.home-hero__veil {
  z-index: 1;
}

.about-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.about-hero::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -9vw;
  width: clamp(290px, 34vw, 530px);
  aspect-ratio: 1;
  border: 1px solid rgba(237, 90, 31, 0.28);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
  animation: boutiqueOrbit 10s ease-in-out infinite alternate;
}

.boutique-opening {
  position: relative;
  overflow: hidden;
  padding: 0 0 120px;
  background:
    linear-gradient(180deg, var(--paper) 0 48%, var(--white) 48%),
    var(--paper);
}

.boutique-opening::before {
  position: absolute;
  top: 4%;
  left: -1vw;
  color: rgba(16, 16, 15, 0.035);
  content: "NOUT KAZ";
  font-family: var(--title);
  font-size: clamp(90px, 15vw, 230px);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.8;
  white-space: nowrap;
}

.boutique-opening__stage {
  position: relative;
  z-index: 1;
  height: clamp(570px, 57vw, 720px);
}

.boutique-opening figure {
  margin: 0;
  overflow: hidden;
  background: #d8d0c5;
  box-shadow: 0 32px 90px rgba(26, 18, 13, 0.15);
}

.boutique-opening figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s ease;
}

.boutique-opening figure:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.035);
}

.boutique-opening__main {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 78%;
}

.boutique-opening__main img {
  object-position: center 48%;
  animation: boutiqueImageDrift 14s ease-in-out infinite alternate;
}

.boutique-opening__detail {
  position: absolute;
  z-index: 2;
  top: 11%;
  right: 0;
  width: 32%;
  height: 54%;
  padding: 9px;
  border: 1px solid rgba(16, 16, 15, 0.12);
  background: var(--white);
}

.boutique-opening__address {
  position: absolute;
  z-index: 3;
  right: 1.5%;
  bottom: 4%;
  display: flex;
  width: min(280px, 24vw);
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  color: var(--white);
  background: rgba(16, 16, 15, 0.94);
  box-shadow: 0 25px 65px rgba(16, 16, 15, 0.2);
  animation: boutiqueAddressFloat 5.5s ease-in-out infinite alternate;
}

.boutique-opening__address span,
.boutique-opening__address small {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.boutique-opening__address span {
  color: var(--orange-soft);
}

.boutique-opening__address strong {
  font-family: var(--title);
  font-size: clamp(27px, 2.5vw, 38px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.boutique-opening__address small {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
}

.values-story__signature {
  width: max-content;
  max-width: 100%;
  margin-top: 42px;
  padding-top: 14px;
  border-top: 1px solid var(--orange);
  color: var(--orange);
  font-family: var(--title);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.boutique-gallery figure::before {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(16, 16, 15, 0.24);
  content: attr(data-gallery);
  font-family: var(--title);
  font-size: 9px;
  font-weight: 600;
  backdrop-filter: blur(9px);
}

.boutique-gallery figure:nth-child(2) {
  transform: translateY(20px);
}

.boutique-gallery figure:nth-child(3) {
  transform: translateY(-10px);
}

.boutique-gallery figure.reveal-ready {
  transform: translateY(30px);
}

.boutique-gallery figure.reveal-ready.is-revealed:nth-child(2) {
  transform: translateY(20px);
}

.boutique-gallery figure.reveal-ready.is-revealed:nth-child(3) {
  transform: translateY(-10px);
}

.pillars article {
  position: relative;
  overflow: hidden;
  transition: background 0.45s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.pillars article::after {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 38px;
  height: 1px;
  background: rgba(255, 255, 255, 0.72);
  content: "";
  transform: scaleX(0.45);
  transform-origin: right;
  transition: transform 0.45s ease;
}

.pillars article:hover {
  background: rgba(16, 16, 15, 0.12);
  transform: translateY(-7px);
}

.pillars article:hover::after {
  transform: scaleX(1);
}

@keyframes boutiqueOrbit {
  from { opacity: 0.35; transform: translate3d(0, -52%, 0) scale(0.94); }
  to { opacity: 0.75; transform: translate3d(-34px, -47%, 0) scale(1.05); }
}

@keyframes boutiqueImageDrift {
  from { transform: scale(1.02) translate3d(0, -0.5%, 0); }
  to { transform: scale(1.075) translate3d(-1.2%, 0.8%, 0); }
}

@keyframes boutiqueAddressFloat {
  from { transform: translateY(-5px); }
  to { transform: translateY(8px); }
}

@media (max-width: 860px) {
  .boutique-opening {
    padding-bottom: 90px;
  }

  .boutique-opening__stage {
    height: 610px;
  }

  .boutique-opening__main {
    width: 82%;
  }

  .boutique-opening__detail {
    top: 8%;
    width: 38%;
    height: 49%;
  }

  .boutique-opening__address {
    right: 2%;
    width: 230px;
    min-height: 190px;
    padding: 24px;
  }
}

@media (max-width: 580px) {
  :root {
    --container: calc(100% - 36px);
  }

  .section {
    padding: 50px 0;
  }

  .announcement {
    min-height: 28px;
  }

  .header-inner {
    width: calc(100% - 20px);
    min-height: 62px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .round-button,
  .cart-button {
    min-height: 40px;
  }

  .round-button {
    width: 40px;
    height: 40px;
  }

  .mobile-nav {
    height: calc(100svh - 62px);
    overflow-y: auto;
    padding: 14px 22px 24px;
  }

  .mobile-nav a {
    padding: 13px 0;
    font-size: 19px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-nav.is-open a {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav.is-open a:nth-child(1) { transition-delay: 0.03s; }
  .mobile-nav.is-open a:nth-child(2) { transition-delay: 0.07s; }
  .mobile-nav.is-open a:nth-child(3) { transition-delay: 0.11s; }
  .mobile-nav.is-open a:nth-child(4) { transition-delay: 0.15s; }
  .mobile-nav.is-open a:nth-child(5) { transition-delay: 0.19s; }

  .button {
    min-height: 44px;
    padding: 0 17px;
    font-size: 10px;
  }

  .kicker {
    margin-bottom: 13px;
    font-size: 9px;
  }

  .kicker::before {
    width: 22px;
  }

  .home-hero,
  .home-hero__content {
    min-height: 600px;
  }

  .home-hero__content {
    padding: 66px 0 122px;
  }

  .home-hero__content h1,
  .home-hero h1 {
    font-size: 41px;
    line-height: 1.02;
  }

  .home-hero__content h1::after {
    width: 56px;
    height: 2px;
    margin-top: 17px;
  }

  .hero-copy {
    max-width: 330px;
    margin: 17px 0 20px;
    font-size: 14px;
    line-height: 1.48;
  }

  .home-hero__gallery {
    transform: none;
  }

  .home-hero__gallery .home-hero__image {
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: center 46%;
  }

  .home-hero__veil {
    background:
      linear-gradient(180deg, rgba(10, 10, 9, 0.72) 0%, rgba(10, 10, 9, 0.27) 57%, rgba(10, 10, 9, 0.9) 100%),
      radial-gradient(circle at 72% 34%, rgba(237, 90, 31, 0.12), transparent 34%);
  }

  .hero-address {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: 78px;
    padding: 13px 17px;
  }

  .hero-address strong {
    margin: 4px 0 2px;
    font-size: 18px;
  }

  .news-carousel {
    border-top-width: 6px;
    border-bottom-width: 6px;
  }

  .news-carousel__viewport {
    min-height: 390px;
  }

  .news-carousel .news-slide__copy {
    padding: 25px 18px 76px;
  }

  .news-carousel .news-slide__copy::before {
    width: 30px;
    margin-bottom: 10px;
  }

  .news-carousel .news-slide__copy h2 {
    max-width: 96%;
    margin: 10px 0 13px;
    font-size: 28px;
  }

  .news-carousel .news-carousel__controls {
    bottom: 8px;
    min-height: 48px;
  }

  .category-band a,
  .category-band a:first-child,
  .category-band a:nth-child(3) {
    min-height: 96px;
    padding: 17px 19px;
  }

  .category-band span {
    margin-bottom: 10px;
  }

  .category-band strong {
    font-size: 15px;
  }

  .category-band small {
    margin-top: 3px;
    font-size: 9px;
  }

  .section-title {
    margin-bottom: 26px;
  }

  .section-title--split,
  .orange-manifesto__grid,
  .story-preview__grid,
  .event-contact__inner,
  .about-hero__grid,
  .values-story__grid,
  .coworking__grid,
  .contact-main__grid,
  .hours__grid,
  .contact-form-grid,
  .newsletter__grid {
    gap: 26px;
  }

  .section-title h2,
  .orange-manifesto h2,
  .about-cta h2,
  .story-preview__copy h2,
  .event-contact h2,
  .values-story h2,
  .coworking h2,
  .hours h2,
  .contact-form-grid h2,
  .newsletter h2 {
    font-size: 31px;
    line-height: 1.07;
  }

  .section-title--split > p,
  .story-preview__copy > p:not(.kicker),
  .event-contact__inner > div:last-child > p {
    font-size: 14px;
    line-height: 1.6;
  }

  .center-action {
    margin-top: 34px;
  }

  .orange-manifesto {
    padding: 52px 0;
  }

  .manifesto-copy p {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.6;
  }

  .story-preview__image img {
    aspect-ratio: 4 / 3;
  }

  .story-preview__image span {
    padding: 11px 14px;
    font-size: 8px;
  }

  .story-preview__copy > p:not(.kicker) {
    margin: 18px 0 22px;
  }

  .events-preview::before {
    width: 230px;
    height: 230px;
  }

  .events-preview__grid {
    gap: 12px;
  }

  .event-teaser,
  .event-teaser--large {
    height: 220px;
    min-height: 0;
  }

  .event-teaser--large {
    height: 275px;
  }

  .event-teaser div {
    padding: 18px;
  }

  .event-teaser span {
    margin-bottom: 5px;
    font-size: 8px;
  }

  .event-teaser h3,
  .event-teaser:not(.event-teaser--large) h3 {
    font-size: 20px;
    line-height: 1.04;
  }

  .page-hero,
  .about-hero,
  .contact-hero {
    padding: 54px 0 48px;
  }

  .page-hero h1,
  .about-hero h1,
  .contact-hero h1,
  .events-hero h1 {
    font-size: 41px;
  }

  .about-hero__grid > div:last-child p {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.55;
  }

  .events-hero,
  .events-hero__copy {
    min-height: 475px;
  }

  .events-hero__copy {
    padding: 58px 0 42px;
  }

  .events-hero__copy > p:last-child {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.55;
  }

  .events-ticker {
    padding: 10px 0;
  }

  .events-ticker span {
    font-size: 10px;
  }

  .events-showcase {
    padding-top: 50px;
  }

  .events-grid {
    gap: 20px;
  }

  .event-card .event-card__image,
  .event-card:first-child .event-card__image {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .event-card__copy,
  .event-card:first-child .event-card__copy {
    padding: 20px 18px 24px;
  }

  .event-card::before {
    top: 13px;
    right: 14px;
    font-size: 21px;
  }

  .event-card__image span {
    top: 12px;
    left: 12px;
    padding: 7px 9px;
    font-size: 8px;
  }

  .event-card h3 {
    margin-bottom: 9px;
    font-size: 22px;
  }

  .event-card__copy > p:last-child {
    font-size: 13px;
    line-height: 1.55;
  }

  .event-types {
    padding: 45px 0;
  }

  .event-types__grid > div,
  .event-types__grid > div:nth-child(3),
  .event-types__grid > div:last-child {
    min-height: 0;
    padding: 17px 19px 19px;
  }

  .event-types h3 {
    margin: 13px 0 7px;
    font-size: 18px;
  }

  .event-types p {
    max-width: 310px;
    font-size: 11px;
    line-height: 1.45;
  }

  .event-types__grid > div::after {
    right: 18px;
    bottom: 18px;
    width: 28px;
  }

  .boutique-opening {
    padding-bottom: 62px;
  }

  .boutique-opening::before {
    top: 1%;
    font-size: 76px;
  }

  .boutique-opening__stage {
    height: 455px;
  }

  .boutique-opening__main {
    top: 0;
    bottom: auto;
    width: 88%;
    height: 340px;
  }

  .boutique-opening__detail {
    top: 34px;
    width: 42%;
    height: 190px;
    padding: 5px;
  }

  .boutique-opening__address {
    right: 0;
    bottom: 0;
    width: 190px;
    min-height: 142px;
    padding: 18px;
  }

  .boutique-opening__address strong {
    font-size: 24px;
  }

  .boutique-opening__address small {
    font-size: 7px;
  }

  .values-story__copy .large-copy {
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.52;
  }

  .values-story__copy p {
    font-size: 14px;
    line-height: 1.65;
  }

  .values-story__signature {
    margin-top: 25px;
  }

  .boutique-gallery__grid {
    margin-top: 26px;
  }

  .boutique-gallery figure,
  .boutique-gallery figure:nth-child(2),
  .boutique-gallery figure:nth-child(3),
  .boutique-gallery figure.reveal-ready.is-revealed:nth-child(2),
  .boutique-gallery figure.reveal-ready.is-revealed:nth-child(3) {
    min-height: 215px;
    margin-top: 10px;
    transform: none;
  }

  .boutique-gallery__wide {
    min-height: 270px !important;
  }

  .boutique-gallery figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 10px 11px;
    font-size: 10px;
  }

  .boutique-gallery figure::before {
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    font-size: 8px;
  }

  .pillars article,
  .pillars article:last-child {
    min-height: 0;
    padding: 24px 21px;
  }

  .pillars span {
    margin-bottom: 24px;
  }

  .pillars h3 {
    margin-bottom: 8px;
    font-size: 22px;
  }

  .pillars p {
    font-size: 13px;
    line-height: 1.5;
  }

  .coworking__image img {
    min-height: 300px;
  }

  .coworking__copy > p:not(.kicker) {
    margin: 18px 0 15px;
    font-size: 14px;
    line-height: 1.6;
  }

  .coworking li {
    padding: 9px 0;
    font-size: 12px;
  }

  .about-cta {
    padding: 58px 0;
  }

  .newsletter {
    padding: 52px 0;
  }

  .newsletter__grid {
    gap: 24px;
  }

  .footer-grid {
    gap: 34px 18px;
  }

  .contact-details > div,
  .hours__table > div,
  .product-detail__info > div {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

@media (max-width: 380px) {
  .home-hero__content h1,
  .home-hero h1,
  .page-hero h1,
  .about-hero h1,
  .contact-hero h1,
  .events-hero h1 {
    font-size: 37px;
  }

  .section-title h2,
  .orange-manifesto h2,
  .about-cta h2,
  .story-preview__copy h2,
  .event-contact h2,
  .values-story h2,
  .coworking h2,
  .hours h2,
  .contact-form-grid h2,
  .newsletter h2 {
    font-size: 29px;
  }

  .home-hero,
  .home-hero__content {
    min-height: 580px;
  }

  .button-row {
    gap: 8px;
  }

  .button {
    padding: 0 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero__gallery,
  .home-hero__gallery .home-hero__image,
  .about-hero::after,
  .boutique-opening__main img,
  .boutique-opening__address {
    transition: none !important;
    animation: none !important;
  }
}

/* Carte d’accès Google Maps. */
.contact-map {
  position: relative;
  overflow: hidden;
  padding: 105px 0 115px;
  background:
    radial-gradient(circle at 88% 12%, rgba(237, 90, 31, 0.1), transparent 28%),
    var(--paper);
}

.contact-map__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.contact-map__heading h2 {
  max-width: 760px;
  font-size: clamp(44px, 5.7vw, 76px);
}

.contact-map__stage {
  position: relative;
  height: clamp(480px, 47vw, 650px);
  margin-top: 52px;
  overflow: hidden;
  border: 1px solid rgba(16, 16, 15, 0.14);
  background: #ded9d1;
  box-shadow: 0 30px 85px rgba(27, 20, 16, 0.12);
}

.contact-map__stage::after {
  position: absolute;
  z-index: 2;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  content: "";
  pointer-events: none;
}

.contact-map iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.78) contrast(1.03);
  transition: filter 0.6s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-map__stage:hover iframe {
  filter: saturate(1) contrast(1);
  transform: scale(1.006);
}

.contact-map__card {
  position: absolute;
  z-index: 3;
  bottom: 32px;
  left: 32px;
  display: flex;
  width: min(360px, calc(100% - 64px));
  min-height: 218px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 30px 34px;
  color: var(--white);
  background: rgba(16, 16, 15, 0.93);
  box-shadow: 0 24px 65px rgba(16, 16, 15, 0.22);
  backdrop-filter: blur(14px);
}

.contact-map__card span {
  margin-bottom: 17px;
  color: var(--orange-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-map__card strong {
  font-family: var(--title);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.contact-map__card p {
  margin: 8px 0 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.contact-map__card a {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--orange-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .contact-map {
    padding: 75px 0 85px;
  }

  .contact-map__heading {
    display: grid;
    justify-items: start;
    gap: 26px;
  }

  .contact-map__stage {
    height: 540px;
    margin-top: 38px;
  }
}

@media (max-width: 580px) {
  .contact-map {
    padding: 50px 0;
  }

  .contact-map__heading {
    gap: 19px;
  }

  .contact-map__heading h2 {
    font-size: 31px;
    line-height: 1.07;
  }

  .contact-map__stage {
    height: auto;
    margin-top: 27px;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .contact-map__stage::after {
    inset: 8px 8px auto;
    height: 318px;
  }

  .contact-map iframe {
    height: 334px;
    border: 1px solid rgba(16, 16, 15, 0.14);
    box-shadow: 0 18px 48px rgba(27, 20, 16, 0.12);
  }

  .contact-map__card {
    position: relative;
    bottom: auto;
    left: auto;
    width: calc(100% - 24px);
    min-height: 0;
    margin: -34px 12px 0;
    padding: 22px 23px;
  }

  .contact-map__card span {
    margin-bottom: 10px;
  }

  .contact-map__card strong {
    font-size: 24px;
  }

  .contact-map__card p {
    margin: 6px 0 16px;
  }
}
