@font-face {
  font-family: "Nourd";
  src: url("./fonts/nourd-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Nourd";
  src: url("./fonts/nourd-bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Brusher";
  src: url("./fonts/brusher.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Mistrully";
  src: url("./fonts/mistrully.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Mynerve";
  src: url("./fonts/mynerve-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #fefdfd;
  --cream: #dad0be;
  --cream-light: #f3ecdf;
  --olive: #62684a;
  --olive-dark: #50563c;
  --wine: #a4474b;
  --wine-dark: #87373d;
  --ink: #0b0908;
  --muted: #3d3934;
  --display: "Brusher", "Segoe Print", "Bradley Hand", cursive;
  --script: "Mistrully", "Segoe Script", "Brush Script MT", cursive;
  --hero-script: "Mynerve", "Segoe Print", "Bradley Hand", cursive;
  --body: "Nourd", "Trebuchet MS", Arial, sans-serif;
  --wave-smooth-a: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath d='M0 48 C170 63 340 75 520 69 S825 33 995 20 S1315 27 1440 52 L1440 100 L0 100 Z' fill='%23fff'/%3E%3C/svg%3E");
  --wave-smooth-b: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath d='M0 53 C165 37 335 20 510 23 S825 54 995 72 S1320 67 1440 44 L1440 100 L0 100 Z' fill='%23fff'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  min-width: 300px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
}

main { overflow: hidden; }
button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
section { scroll-margin-top: 24px; }

.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;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: -70px;
  padding: 11px 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: top 0.2s ease;
}

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

.section-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1500px);
  margin-inline: auto;
  padding-inline: clamp(28px, 6vw, 112px);
}

.section-olive {
  position: relative;
  background: var(--olive);
  color: var(--cream-light);
}

.brand-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.hero {
  position: relative;
  height: clamp(790px, 61vw, 900px);
  min-height: 780px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #2a1a10 url("./assets/hero-night.jpg") center 48% / cover no-repeat;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16)),
    radial-gradient(ellipse at 51% 42%, rgba(239, 190, 121, 0.44), rgba(70, 39, 19, 0.06) 59%),
    linear-gradient(180deg, rgba(255, 239, 210, 0.03), rgba(15, 9, 5, 0.09));
  backdrop-filter: blur(0.7px);
}

.hero-mini-logo {
  position: absolute;
  z-index: 3;
  top: clamp(34px, 4vw, 60px);
  left: clamp(34px, 4vw, 66px);
  width: clamp(120px, 14vw, 195px);
}

.hero-mini-logo .brand-logo { width: 100%; }

.hero-nav {
  position: absolute;
  z-index: 4;
  top: clamp(38px, 4vw, 62px);
  right: clamp(34px, 4vw, 66px);
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 34px);
  color: #dbd1bf;
  font-size: clamp(0.78rem, 1vw, 0.96rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.hero-nav a {
  position: relative;
  padding: 5px 0;
}

.hero-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.hero-nav a:hover::after,
.hero-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(94%, 900px);
  padding: 92px 20px 66px;
  text-align: center;
  color: #080604 !important;
  -webkit-text-fill-color: #080604;
}

.hero-kicker {
  margin: 0 0 42px;
  font-size: clamp(0.92rem, 1.55vw, 1.35rem);
  font-weight: 400;
  letter-spacing: clamp(0.3rem, 0.9vw, 0.72rem);
}

.hero h1 { margin: 0; font-size: inherit; font-weight: 400; }
.brand--hero {
  width: min(82vw, 830px);
  margin-inline: auto;
}

.hero-tagline,
.hero-subline {
  margin: 0;
  font-family: var(--hero-script);
  font-weight: 400;
  line-height: 1.05;
}

.hero-tagline {
  margin-top: 28px;
  font-size: clamp(2.1rem, 4.1vw, 3.75rem);
}

.hero-subline {
  margin-top: 2px;
  font-size: clamp(1.55rem, 3.1vw, 2.7rem);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 50px;
}

.hero-actions .button {
  color: #dbd1bf !important;
  -webkit-text-fill-color: #dbd1bf;
}

.button {
  display: inline-flex;
  min-width: 290px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 13px 34px;
  border-radius: 999px;
  color: #f7f0e5;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 17px 28px rgba(0, 0, 0, 0.19);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover { transform: translateY(-2px); box-shadow: 0 20px 34px rgba(0, 0, 0, 0.24); }
.button--wine { background: var(--wine); }
.button--wine:hover { background: var(--wine-dark); }
.button--olive { background: var(--olive); }
.button--olive:hover { background: var(--olive-dark); }
.button--cream { background: var(--cream-light); color: var(--ink); }

.hero-edge {
  --separator-wave: var(--wave-smooth-a);
  position: absolute;
  z-index: 3;
  inset: auto -2px -1px;
  height: clamp(68px, 5.6vw, 92px);
  background: var(--paper);
}

.artwork-title {
  display: block;
  max-width: 100%;
  line-height: 0;
}

.artwork-title img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
}

.artwork-title--concept { width: clamp(310px, 31vw, 520px); }
.artwork-title--universe { width: min(100%, 720px); margin-bottom: clamp(28px, 3vw, 40px); }
.artwork-title--measure { width: min(100%, 720px); }
.artwork-title--experience { width: min(100%, 680px); }
.artwork-title--offers { width: clamp(290px, 29vw, 460px); }

.concept {
  position: relative;
  background: var(--paper);
  padding: clamp(72px, 8vw, 125px) 0 clamp(150px, 13vw, 210px);
}

.concept-intro {
  max-width: 1240px;
  margin: clamp(48px, 5vw, 74px) 0 clamp(62px, 7vw, 102px);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.4;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 68px);
}

.feature { text-align: center; }

.feature-visual {
  height: clamp(120px, 13vw, 180px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-visual img {
  width: auto;
  max-width: 92%;
  max-height: 100%;
  object-fit: contain;
}

.feature h3 {
  min-height: 2.35em;
  margin: 0 0 20px;
  font-size: clamp(1.12rem, 1.55vw, 1.42rem);
  font-weight: 700;
  line-height: 1.02;
}

.feature p {
  max-width: 280px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(0.94rem, 1.1vw, 1.08rem);
  line-height: 1.32;
}

.universe {
  padding: clamp(105px, 9vw, 145px) 0 clamp(140px, 12vw, 195px);
}

.universe::before {
  --separator-wave: var(--wave-smooth-b);
  content: "";
  position: absolute;
  z-index: 1;
  left: -1%;
  right: -1%;
  top: clamp(-100px, -6.2vw, -74px);
  height: clamp(94px, 7.1vw, 122px);
  background: var(--olive);
}

.universe::after {
  --separator-wave: var(--wave-smooth-a);
  content: "";
  position: absolute;
  z-index: 2;
  left: -1%;
  right: -1%;
  bottom: -1px;
  height: clamp(74px, 6vw, 98px);
  background: var(--cream);
}

.universe-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(55px, 8vw, 125px);
  align-items: center;
}

.universe-photo { position: relative; margin: 0; }

.universe-photo > img:first-child {
  width: 100%;
  min-height: 330px;
  object-fit: cover;
  clip-path: polygon(
    1% 7%, 5% 3%, 9% 6%, 13% 2%, 17% 5%, 21% 3%, 25% 7%,
    29% 2%, 33% 5%, 37% 1%, 40% 6%, 43% 4%, 46% 8%, 49% 4%,
    52% 9%, 55% 4%, 59% 2%, 63% 6%, 67% 3%, 71% 7%, 75% 2%,
    80% 5%, 84% 1%, 89% 6%, 94% 3%, 99% 7%,
    98% 13%, 100% 19%, 97% 25%, 99% 31%, 98% 38%, 100% 45%,
    97% 52%, 99% 59%, 98% 66%, 100% 73%, 97% 80%, 99% 87%,
    98% 94%, 94% 97%, 90% 94%, 86% 99%, 82% 95%, 78% 98%,
    74% 93%, 70% 97%, 66% 92%, 62% 99%, 58% 95%, 55% 98%,
    52% 90%, 49% 94%, 46% 91%, 43% 98%, 39% 94%, 35% 99%,
    31% 95%, 27% 98%, 23% 93%, 19% 97%, 15% 92%, 11% 98%,
    7% 94%, 3% 97%, 1% 92%, 2% 86%, 0% 79%, 3% 72%, 0% 65%,
    2% 58%, 0% 51%, 3% 44%, 0% 37%, 2% 30%, 0% 23%, 3% 16%
  );
}

.tape {
  position: absolute;
  width: clamp(80px, 9vw, 140px);
  pointer-events: none;
  user-select: none;
}

.tape--universe { top: -38px; left: -38px; transform: rotate(-10deg); }

.universe-copy > p {
  max-width: 670px;
  margin: 0 0 25px;
  color: var(--cream-light);
  font-size: clamp(1.08rem, 1.65vw, 1.42rem);
  line-height: 1.35;
}

.story {
  position: relative;
  background: var(--cream);
  padding: clamp(92px, 8vw, 135px) 0 clamp(150px, 13vw, 220px);
}

.story::after {
  --separator-wave: var(--wave-smooth-b);
  content: "";
  position: absolute;
  z-index: 2;
  left: -1%;
  right: -1%;
  bottom: -1px;
  height: clamp(74px, 6vw, 98px);
  background: var(--paper);
}

.story-inner { display: grid; gap: clamp(80px, 9vw, 145px); }

.story-row {
  display: grid;
  grid-template-columns: 1fr 0.93fr;
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
}

.story-row--experience { grid-template-columns: 0.95fr 1fr; }
.story-copy h3 { margin: 34px 0 28px; font-size: clamp(1.3rem, 2vw, 1.75rem); font-weight: 400; }
.story-copy > p { max-width: 680px; margin: 0; font-size: clamp(1.03rem, 1.55vw, 1.3rem); line-height: 1.45; }
.story-photo { position: relative; margin: 0; }

.story-photo--measure { transform: rotate(4deg); }

.story-photo--measure > img:first-child {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  clip-path: polygon(4% 3%, 97% 5%, 99% 91%, 91% 96%, 79% 94%, 66% 98%, 52% 94%, 39% 98%, 26% 95%, 12% 98%, 2% 91%);
}

.tape--story-right { top: -36px; right: -26px; transform: rotate(38deg); }
.story-photo--experience { transform: translateX(-2%); }
.story-photo--experience > img { width: 100%; }
.story-copy--experience { padding-bottom: 30px; }

.floating-truck {
  --truck-shift: 0px;
  position: absolute;
  z-index: 3;
  right: clamp(-30px, 1vw, 20px);
  bottom: -82px;
  width: clamp(240px, 22vw, 390px);
  transform: translate3d(var(--truck-shift), 0, 0);
  filter: drop-shadow(0 14px 12px rgba(53, 40, 25, 0.15));
  pointer-events: none;
  user-select: none;
  will-change: transform;
}

.offers {
  position: relative;
  background: var(--paper);
  padding: clamp(90px, 8vw, 135px) 0 clamp(170px, 14vw, 235px);
}

.offers-intro {
  margin: 48px 0 clamp(60px, 7vw, 98px);
  font-size: clamp(1.1rem, 1.75vw, 1.48rem);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 30px);
  margin-bottom: clamp(85px, 9vw, 145px);
}

.offer-card {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.offer-card-action {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 42px;
  background: transparent;
  cursor: pointer;
}

.offer-card-action:focus-visible {
  outline: 3px solid var(--wine);
  outline-offset: 8px;
}

.offer-photo {
  width: 100%;
  height: clamp(175px, 17vw, 250px);
  object-fit: contain;
  object-position: center bottom;
  transition: transform 250ms ease, filter 250ms ease;
}

.offer-label {
  position: relative;
  z-index: 2;
  width: 94%;
  min-height: 184px;
  margin: -47px auto 0;
  padding: 34px 18px 24px 88px;
  border-radius: 46% 42% 38% 44% / 36% 46% 40% 47%;
  background: var(--cream-light);
  box-shadow: 0 6px 0 rgba(184, 174, 157, 0.5), 0 16px 24px rgba(49, 39, 29, 0.12);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.offer-card:hover .offer-photo,
.offer-card:focus-within .offer-photo {
  transform: translateY(-3px);
  filter: brightness(1.04);
}

.offer-card:hover .offer-label,
.offer-card:focus-within .offer-label {
  transform: translateY(-3px);
  box-shadow: 0 8px 0 rgba(184, 174, 157, 0.5), 0 20px 30px rgba(49, 39, 29, 0.16);
}

.offer-icon {
  position: absolute;
  left: -28px;
  top: -25px;
  display: grid;
  place-items: center;
  width: 102px;
  height: 102px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--cream-light);
  box-shadow: none;
  transform: none;
  isolation: isolate;
}

.offer-icon::before,
.offer-icon::after {
  content: "";
  position: absolute;
  z-index: 0;
  border: 0;
  background: #7f8864;
  pointer-events: none;
}

.offer-icon::before {
  inset: 0 2px 2px 0;
  border-radius: 56% 44% 51% 49% / 44% 57% 43% 56%;
  transform: rotate(-5deg) scale(0.99, 1.03);
  filter: blur(1.35px);
  opacity: 0.88;
}

.offer-icon::after {
  inset: 2px 0 0 3px;
  border-radius: 45% 55% 43% 57% / 57% 46% 54% 43%;
  transform: rotate(4deg) scale(1.02, 0.98);
  filter: blur(0.45px);
}

.offer-icon--2::before {
  inset: 1px -1px 3px 2px;
  border-radius: 43% 57% 55% 45% / 53% 42% 58% 47%;
  transform: rotate(4deg) scale(1.01, 0.99);
}

.offer-icon--2::after {
  inset: 3px 2px 0 0;
  border-radius: 58% 42% 46% 54% / 44% 56% 45% 55%;
  transform: rotate(-5deg) scale(0.98, 1.02);
}

.offer-icon--3::before {
  inset: -1px 2px 2px 1px;
  border-radius: 57% 43% 47% 53% / 46% 59% 41% 54%;
  transform: rotate(-3deg) scale(1.02, 0.98);
}

.offer-icon--3::after {
  inset: 2px -1px 1px 3px;
  border-radius: 42% 58% 54% 46% / 57% 44% 56% 43%;
  transform: rotate(6deg) scale(0.98, 1.01);
}

.offer-icon--4::before {
  inset: 2px 0 -1px 1px;
  border-radius: 46% 54% 58% 42% / 55% 43% 57% 45%;
  transform: rotate(5deg) scale(1.01, 0.99);
}

.offer-icon--4::after {
  inset: 0 3px 2px -1px;
  border-radius: 59% 41% 44% 56% / 42% 56% 44% 58%;
  transform: rotate(-4deg) scale(0.99, 1.02);
}

.offer-icon > svg {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
}

.offer-icon-glasses {
  position: relative;
  z-index: 1;
  display: block;
  width: 74px;
  height: 62px;
}

.offer-icon-glass {
  position: absolute;
  bottom: 0;
  width: 39px;
  height: 49px;
}

.offer-icon-glass--left {
  left: 5px;
  transform: rotate(9deg);
}

.offer-icon-glass--right {
  right: 5px;
  transform: rotate(-9deg);
}

.offer-icon-sparkles {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 29px;
  height: 29px;
  transform: translateX(-50%);
}
.offer-label h3 { margin: 0 0 13px; font-size: clamp(0.94rem, 1.15vw, 1.13rem); line-height: 1.08; }
.offer-label p { margin: 0; font-size: clamp(0.86rem, 1vw, 1rem); line-height: 1.35; }

.offer-detail {
  position: relative;
  scroll-margin-top: 24px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  grid-template-areas: "copy photo";
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
  height: clamp(676px, 49.5vw, 820px);
  min-height: 0;
  margin-top: clamp(58px, 6vw, 90px);
  padding: clamp(58px, 6vw, 90px) clamp(54px, 7vw, 112px);
  border-radius: 14% 15% 11% 13% / 18% 22% 19% 23%;
  background: var(--cream);
}

.offer-detail--image-left {
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-areas: "photo copy";
}

.offer-detail-copy {
  position: relative;
  z-index: 2;
  grid-area: copy;
}

.offer-detail-panel--next { animation: offer-detail-from-right 480ms cubic-bezier(0.22, 1, 0.36, 1) both; }
.offer-detail-panel--previous { animation: offer-detail-from-left 480ms cubic-bezier(0.22, 1, 0.36, 1) both; }
.detail-photo.offer-detail-panel { animation-delay: 55ms; }

@keyframes offer-detail-from-right {
  from { opacity: 0; translate: 42px 0; }
  to { opacity: 1; translate: 0 0; }
}

@keyframes offer-detail-from-left {
  from { opacity: 0; translate: -42px 0; }
  to { opacity: 1; translate: 0 0; }
}

.detail-title { position: relative; display: inline-block; margin-bottom: 28px; }
.detail-title span { display: block; margin-bottom: 0; font-family: var(--script); font-size: clamp(1.8rem, 3vw, 2.9rem); line-height: 1.6; transform: rotate(-4deg); }
.detail-title h3 { margin: 0; color: var(--olive); font-size: clamp(1.65rem, 2.7vw, 2.6rem); line-height: 1.12; }
.offer-detail--accent-wine .detail-title h3 { color: var(--wine); }
.detail-title i { display: block; width: 88%; height: 5px; margin-top: 12px; border-radius: 99px; background: var(--ink); transform: rotate(-2deg); }
.offer-detail-copy > p { margin: 0 0 24px; font-size: clamp(0.98rem, 1.25vw, 1.17rem); line-height: 1.45; }
.offer-detail-copy .button { margin-top: 8px; }
.detail-cta {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 22px);
  margin-top: 8px;
}

.offer-detail-copy .detail-cta .button {
  flex: 0 0 auto;
  margin-top: 0;
}

.animated-cta-arrow {
  display: block;
  flex: 0 1 150px;
  width: min(150px, 29%);
  height: auto;
  overflow: visible;
  color: var(--ink);
}

.animated-cta-arrow__line {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: cta-arrow-draw 3.15s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.animated-cta-arrow__head {
  fill: currentColor;
  opacity: 0;
  transform: scale(0.55);
  transform-box: fill-box;
  transform-origin: center;
  animation: cta-arrow-head 3.15s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes cta-arrow-draw {
  0% { stroke-dashoffset: 1; opacity: 0; }
  7% { stroke-dashoffset: 1; opacity: 1; }
  58%, 82% { stroke-dashoffset: 0; opacity: 1; }
  92%, 100% { stroke-dashoffset: 0; opacity: 0; }
}

@keyframes cta-arrow-head {
  0%, 54% { opacity: 0; transform: scale(0.55); }
  63%, 82% { opacity: 1; transform: scale(1); }
  92%, 100% { opacity: 0; transform: scale(1); }
}

.offer-detail--communal .detail-title { margin-bottom: 18px; }
.offer-detail--communal .detail-title span { line-height: 1.45; }
.offer-detail--communal .offer-detail-copy > p { margin-bottom: 16px; line-height: 1.38; }
.offer-detail--communal .offer-detail-copy .button { margin-top: 0; }
.offer-detail--communal .detail-cta { margin-top: 0; }
.detail-photo { position: relative; grid-area: photo; margin: 0; }

.detail-photo > img:first-child {
  width: 100%;
  height: clamp(390px, 28vw, 560px);
  object-fit: cover;
  clip-path: polygon(3% 5%, 15% 2%, 28% 4%, 42% 1%, 56% 4%, 70% 2%, 84% 5%, 98% 3%, 99% 91%, 89% 97%, 76% 94%, 63% 98%, 49% 95%, 36% 99%, 23% 95%, 10% 98%, 2% 92%);
}

.detail-photo--personal { transform: rotate(1deg); }
.detail-photo--professional { transform: rotate(-1deg); }
.detail-photo--communal { transform: rotate(1deg); }
.detail-photo--guinguette { transform: rotate(-1deg); }
.tape--detail-top { top: -36px; left: -22px; transform: rotate(-13deg); }
.tape--detail-bottom { right: -20px; bottom: -37px; transform: rotate(27deg); }
.tape--detail-prof-top { top: -36px; left: -22px; transform: rotate(28deg); }
.tape--detail-prof-bottom { right: -24px; bottom: -36px; transform: rotate(-13deg); }

.carousel-arrow {
  position: absolute;
  z-index: 4;
  top: 51%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(247, 241, 231, 0.72);
  color: #6e6a62;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(54, 45, 34, 0.12);
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.carousel-arrow svg { width: 32px; height: 32px; }
.carousel-arrow--left { left: 14px; }
.carousel-arrow--right { right: 14px; }
.carousel-arrow:hover { transform: translateY(-2px); background: #fffaf1; color: var(--ink); box-shadow: 0 12px 24px rgba(54, 45, 34, 0.18); }
.carousel-arrow:active { transform: scale(0.96); }

.testimonial {
  padding: clamp(135px, 11vw, 190px) 0 clamp(155px, 13vw, 215px);
}

.testimonial::before {
  --separator-wave: var(--wave-smooth-a);
  content: "";
  position: absolute;
  z-index: 1;
  left: -1%;
  right: -1%;
  top: clamp(-100px, -6.2vw, -74px);
  height: clamp(94px, 7.1vw, 122px);
  background: var(--olive);
}

.testimonial::after {
  --separator-wave: var(--wave-smooth-b);
  content: "";
  position: absolute;
  z-index: 2;
  left: -1%;
  right: -1%;
  bottom: -1px;
  height: clamp(74px, 6vw, 98px);
  background: var(--paper);
}

.hero-edge,
.universe::before,
.universe::after,
.story::after,
.testimonial::before,
.testimonial::after {
  -webkit-mask-image: var(--separator-wave);
  mask-image: var(--separator-wave);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.testimonial-inner > h2 {
  margin: 0 0 clamp(62px, 7vw, 105px);
  color: var(--cream-light);
  font-family: var(--script);
  font-size: clamp(3rem, 5.8vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  transform: rotate(-3deg);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr) minmax(240px, 0.8fr);
  gap: clamp(36px, 5vw, 78px);
  align-items: center;
}

.testimonial-carousel {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: clamp(8px, 1vw, 16px);
  align-items: center;
  min-width: 0;
}

.testimonial-quote {
  min-width: 0;
  margin: 0;
}

.testimonial-quote--next { animation: testimonial-from-right 420ms cubic-bezier(0.22, 1, 0.36, 1) both; }
.testimonial-quote--previous { animation: testimonial-from-left 420ms cubic-bezier(0.22, 1, 0.36, 1) both; }

@keyframes testimonial-from-right {
  from { opacity: 0; translate: 24px 0; }
  to { opacity: 1; translate: 0 0; }
}

@keyframes testimonial-from-left {
  from { opacity: 0; translate: -24px 0; }
  to { opacity: 1; translate: 0 0; }
}

.testimonial-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(243, 236, 223, 0.62);
  border-radius: 50%;
  background: rgba(243, 236, 223, 0.14);
  color: var(--cream-light);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.testimonial-arrow svg { width: 28px; height: 28px; }
.testimonial-arrow:hover { transform: scale(1.06); background: var(--cream-light); color: var(--olive); }
.testimonial-arrow:active { transform: scale(0.95); }
.testimonial-position { grid-column: 2; margin: 14px 0 0; text-align: center; font-size: 0.82rem; letter-spacing: 0.12em; opacity: 0.72; }

.quote-mark { display: block; height: 74px; color: var(--cream-light); font-family: Georgia, serif; font-size: 9rem; line-height: 0.68; }
.testimonial-quote p { margin: 18px 0 24px; font-size: clamp(1rem, 1.28vw, 1.17rem); line-height: 1.58; }
.testimonial-quote footer { font-size: clamp(1.05rem, 1.35vw, 1.25rem); font-weight: 700; }

.testimonial-photos { position: relative; min-height: 455px; }
.testimonial-photo { position: absolute; width: 63%; margin: 0; }
.testimonial-photo > img:first-child { width: 100%; aspect-ratio: 1 / 1.05; border: 11px solid #fff; object-fit: cover; box-shadow: 0 22px 36px rgba(0, 0, 0, 0.24); }
.testimonial-photo--front { z-index: 2; left: 0; bottom: 0; transform: rotate(8deg); }
.testimonial-photo--back { z-index: 1; right: 0; top: 0; transform: rotate(-6deg); }
.tape--testimonial-left { z-index: 3; top: -40px; left: -45px; transform: rotate(-25deg); }
.tape--testimonial-right { z-index: 3; top: -42px; right: -32px; transform: rotate(14deg); }

.event-callout { padding-left: 8px; }
.event-callout > svg { width: 72px; height: 72px; }
.event-callout h3 { margin: 22px 0 17px; font-size: clamp(1.1rem, 1.6vw, 1.42rem); line-height: 1.1; }
.event-callout p { margin: 8px 0; font-size: clamp(1rem, 1.3vw, 1.17rem); line-height: 1.45; }
.event-callout .button { min-width: 250px; margin-top: 28px; }

.quote-section {
  position: relative;
  background: var(--paper);
  padding: clamp(110px, 10vw, 165px) 0 clamp(130px, 11vw, 185px);
}

.quote-heading { text-align: center; }
.quote-heading span { display: block; margin-bottom: 0; font-family: var(--script); font-size: clamp(2.7rem, 5vw, 5rem); line-height: 1.6; transform: rotate(-4deg); }
.quote-heading h2 { margin: 0; font-size: clamp(4.1rem, 7.6vw, 7rem); line-height: 1; }
.quote-heading h2::after { content: ""; display: block; width: clamp(130px, 13vw, 210px); height: 6px; margin: 12px auto 0; border-radius: 999px; background: var(--ink); transform: rotate(-2deg); }
.quote-intro { max-width: 760px; margin: 46px auto 54px; text-align: center; font-size: clamp(1rem, 1.25vw, 1.15rem); }

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 27px 34px;
  max-width: 920px;
  margin: 0 auto;
}

.form-field { display: flex; flex-direction: column; gap: 9px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { padding-left: 13px; font-size: 0.83rem; font-weight: 700; }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #ded7cc;
  border-radius: 28px;
  padding: 15px 21px;
  background: #fbfaf8;
  color: var(--ink);
  box-shadow: inset 0 1px 4px rgba(44, 34, 24, 0.05), 0 2px 3px rgba(57, 45, 33, 0.07);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input, .form-field select { min-height: 59px; }
.form-field textarea { min-height: 142px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--wine); box-shadow: 0 0 0 4px rgba(164, 71, 75, 0.13); }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.submit-button {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: min(100%, 360px);
  min-height: 63px;
  margin-top: 17px;
  border: 0;
  border-radius: 999px;
  background: var(--olive);
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 18px 28px rgba(37, 39, 27, 0.29);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.submit-button:hover:not(:disabled) { transform: translateY(-2px); background: var(--olive-dark); color: #fff; }
.submit-button:disabled { cursor: wait; opacity: 0.68; }
.form-status { grid-column: 1 / -1; min-height: 1.5em; margin: 0; text-align: center; font-weight: 700; }
.form-status--success { color: #4f6c39; }
.form-status--error { color: var(--wine-dark); }

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(38px, 7vw, 110px);
  align-items: start;
  padding: clamp(70px, 7vw, 110px) max(30px, calc((100vw - 1275px) / 2));
  background: var(--cream);
}

.footer-brand { align-self: center; width: clamp(225px, 27vw, 385px); }
.footer-brand .brand-logo { width: 100%; }
.site-footer h2 { margin: 0 0 23px; font-size: clamp(1.12rem, 1.5vw, 1.35rem); }
.footer-contact a, .footer-contact p { display: flex; align-items: center; gap: 12px; margin: 13px 0; font-size: 0.98rem; overflow-wrap: anywhere; }
.footer-contact svg { width: 25px; height: 25px; flex: 0 0 auto; }
.footer-zone p { margin: 0; font-size: 1rem; line-height: 1.5; }

:focus-visible { outline: 3px solid #e8a8ad; outline-offset: 4px; }

@media (max-width: 1120px) {
  .offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 42px 28px; }
  .offer-card { max-width: 470px; margin-inline: auto; }
  .offer-photo { height: 230px; }
  .offer-label { min-height: 160px; }
  .testimonial-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .event-callout { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr auto; gap: 12px 25px; align-items: center; padding-top: 40px; border-top: 1px solid rgba(243, 236, 223, 0.4); }
  .event-callout > svg { grid-row: 1 / 3; }
  .event-callout h3 { margin: 0; }
  .event-callout p { grid-column: 2; margin: 0; }
  .event-callout .button { grid-column: 3; grid-row: 1 / 3; margin: 0; }
}

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 70px 46px; }
  .feature p { max-width: 330px; }
  .universe-inner { grid-template-columns: 1fr; }
  .universe-photo { max-width: 680px; }
  .story { padding-bottom: 90px; }
  .story-row, .story-row--experience { grid-template-columns: 1fr; gap: 42px; }
  .story-copy { max-width: 720px; }
  .story-photo { width: min(100%, 680px); max-width: 100%; transform: none; }
  .story-row--measure .story-photo { justify-self: end; width: min(100%, 680px); }
  .story-row--experience .story-copy { grid-row: 1; }
  .story-row--experience .story-photo { grid-row: 2; justify-self: start; width: min(100%, 680px); }
  .floating-truck { position: relative; right: auto; bottom: auto; width: min(300px, 42vw); margin: 24px 20px -34px auto; }
  .offer-detail {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "photo";
    height: auto;
    min-height: 0;
    padding-bottom: 122px;
    border-radius: 80px;
  }
  .offer-detail--image-left {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "photo";
  }
  .offer-detail--personal .detail-photo { margin-top: 15px; }
  .offer-detail--image-left .detail-photo { width: 100%; max-width: 680px; }
  .detail-photo > img:first-child { height: 340px; }
  .carousel-arrow { top: auto; bottom: 34px; }
  .carousel-arrow--left { left: calc(50% - 66px); }
  .carousel-arrow--right { right: calc(50% - 66px); }
}

@media (max-width: 740px) {
  html, body { overflow-x: clip; }
  .section-inner { width: 100%; max-width: 100%; padding-inline: 20px; }
  .hero { height: auto; min-height: max(700px, 100svh); padding: 92px 0 50px; background-position: 54% center; }
  .hero-mini-logo { top: 24px; left: 20px; width: 108px; }
  .hero-nav { top: 27px; right: 18px; gap: clamp(9px, 3vw, 15px); font-size: 0.7rem; letter-spacing: 0.025em; }
  .hero-content { width: 100%; padding: 48px 12px 22px; }
  .hero-kicker { margin-bottom: 38px; letter-spacing: 0.31rem; }
  .brand--hero { width: min(84vw, 560px); }
  .hero-tagline { margin-top: 34px; }
  .hero-actions { width: min(100%, 330px); margin-inline: auto; }
  .hero-actions .button { width: 100%; }
  .button { max-width: 100%; min-width: 245px; min-height: 55px; }
  .concept { padding: 74px 0 128px; }
  .concept-intro { margin-top: 42px; }
  .universe { padding: 92px 0 122px; }
  .universe-inner { gap: 58px; }
  .universe-photo { width: 100%; max-width: 100%; }
  .universe-photo > img:first-child { min-height: 0; aspect-ratio: 4 / 3; }
  .tape { width: clamp(68px, 22vw, 96px); }
  .tape--universe { top: -25px; left: -12px; }
  .story { padding: 82px 0 66px; }
  .story-inner { gap: 82px; }
  .story-copy h3 { margin: 28px 0 20px; }
  .story-row--measure .story-photo, .story-row--experience .story-photo { width: 100%; }
  .story-photo--measure > img:first-child { min-height: 0; aspect-ratio: 4 / 3; }
  .story-photo--experience > img { width: 100%; }
  .tape--story-right { top: -23px; right: -8px; }
  .floating-truck { width: min(240px, 66vw); margin: 26px 14px -28px auto; }
  .offers { padding: 84px 0 136px; }
  .offer-grid { grid-template-columns: 1fr; gap: 58px; }
  .offer-photo { height: 220px; }
  .offer-label { width: 91%; min-height: 156px; padding-left: 88px; }
  .offer-icon { left: -17px; top: -23px; width: 94px; height: 94px; }
  .offer-icon > svg { width: 47px; height: 47px; }
  .offer-detail { gap: 36px; overflow: hidden; padding: 48px 24px 116px; border-radius: 46px; }
  .offer-detail-copy, .detail-photo { min-width: 0; }
  .detail-title { max-width: 100%; margin-bottom: 24px; }
  .detail-title h3 { overflow-wrap: anywhere; }
  .offer-detail-copy > p { font-size: 1rem; line-height: 1.5; }
  .detail-photo { width: 100%; max-width: 100% !important; margin: 4px 0 0 !important; transform: none; }
  .detail-photo > img:first-child { width: 100%; height: auto; aspect-ratio: 4 / 3; }
  .tape--detail-top, .tape--detail-prof-top { top: -22px; left: -8px; }
  .tape--detail-bottom, .tape--detail-prof-bottom { right: -8px; bottom: -23px; }
  .testimonial { padding: 108px 0 128px; }
  .testimonial-inner > h2 { margin-bottom: 58px; font-size: clamp(3rem, 14vw, 4.5rem); line-height: 1.08; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 56px; }
  .testimonial-carousel { width: 100%; grid-template-columns: 44px minmax(0, 1fr) 44px; gap: 10px; }
  .testimonial-arrow { width: 44px; height: 44px; }
  .testimonial-photos { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; width: min(100%, 520px); min-height: 0; margin: 4px auto 0; padding: 18px 0; }
  .testimonial-photo { position: relative; inset: auto; width: 100%; }
  .testimonial-photo--front { left: auto; bottom: auto; transform: rotate(3deg); }
  .testimonial-photo--back { right: auto; top: auto; transform: rotate(-3deg); }
  .testimonial-photo > img:first-child { width: 100%; aspect-ratio: 4 / 5; }
  .tape--testimonial-left { top: -22px; left: -10px; }
  .tape--testimonial-right { top: -22px; right: -10px; }
  .event-callout { display: block; width: 100%; padding: 38px 0 0; }
  .event-callout > svg { width: 58px; height: 58px; }
  .event-callout h3 { margin: 19px 0 12px; }
  .event-callout p { margin: 7px 0; }
  .event-callout .button { margin-top: 23px; }
  .quote-section { padding: 94px 0 112px; }
  .quote-intro { margin: 38px auto 44px; }
  .quote-form { grid-template-columns: 1fr; }
  .form-field--full, .submit-button, .form-status { grid-column: auto; }
  .site-footer { grid-template-columns: 1fr; gap: 42px; padding-inline: 24px; }
  .footer-brand { width: min(100%, 330px); justify-self: start; }
}

@media (max-width: 520px) {
  .hero { min-height: max(680px, 100svh); padding-top: 82px; }
  .hero-kicker { font-size: 0.78rem; letter-spacing: 0.24rem; }
  .brand--hero { width: 84vw; }
  .hero-tagline { font-size: clamp(1.95rem, 10vw, 2.25rem); }
  .hero-subline { font-size: clamp(1.45rem, 7.5vw, 1.65rem); }
  .hero-actions { width: 100%; max-width: 310px; margin: 42px auto 0; }
  .hero-actions .button { min-width: 0; }
  .detail-cta { gap: 8px; }
  .detail-cta .button { width: 68%; min-width: 0; padding-inline: 12px; }
  .animated-cta-arrow { flex: 0 0 27%; width: 27%; }
  .concept { padding-bottom: 145px; }
  .feature-grid { grid-template-columns: 1fr; gap: 66px; }
  .feature-visual { height: 150px; }
  .feature h3 { min-height: 0; }
  .story-photo--measure { transform: none; }
  .offer-photo { height: 210px; }
  .offer-label { min-height: 156px; padding-left: 82px; }
  .offer-icon { left: -14px; top: -19px; width: 86px; height: 86px; }
  .offer-icon > svg { width: 43px; height: 43px; }
  .offer-icon-glasses { width: 64px; height: 55px; }
  .offer-icon-glass { width: 34px; height: 43px; }
  .offer-icon-sparkles { width: 25px; height: 25px; }
  .offer-detail { padding-inline: 19px; border-radius: 36px; }
  .detail-title h3 { font-size: clamp(1.35rem, 7vw, 1.65rem); }
  .detail-cta { display: grid; grid-template-columns: minmax(0, 1fr) 86px; width: 100%; }
  .detail-cta .button { width: 100%; }
  .animated-cta-arrow { width: 86px; max-width: 86px; }
  .testimonial-carousel { grid-template-columns: 40px minmax(0, 1fr) 40px; gap: 5px; }
  .testimonial-arrow { width: 40px; height: 40px; }
  .testimonial-arrow svg { width: 24px; height: 24px; }
  .testimonial-quote p { font-size: 0.94rem; line-height: 1.54; }
  .testimonial-quote footer { font-size: 1rem; }
  .quote-mark { height: 58px; font-size: 7rem; }
  .testimonial-photos { gap: 9px; }
  .testimonial-photo > img:first-child { border-width: 8px; }
  .event-callout .button { width: 100%; min-width: 0; }
  .quote-heading span { margin-bottom: 0; }
  .quote-heading h2 { font-size: 4rem; }
  .form-field input, .form-field select { min-height: 55px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .animated-cta-arrow__line {
    stroke-dashoffset: 0;
    opacity: 1;
    animation: none !important;
  }
  .animated-cta-arrow__head {
    opacity: 1;
    transform: scale(1);
    animation: none !important;
  }
}
