/* ============================================================
   De Bouche à Oreille — sections & components
   ============================================================ */

/* ---------- decorative pattern watermark ---------- */
.pattern-wm {
  position: absolute;
  inset: 0;
  background-image: url("../assets/pattern.jpg");
  background-size: 1000px;
  opacity: 0.85;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--cream);
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}
.loader.gone { opacity: 0; visibility: hidden; }
.loader__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.loader__logo {
  width: 150px;
  height: auto;
  opacity: 0;
  transform: translateY(12px) scale(.96);
  animation: logo-in 1s var(--ease) .15s forwards;
  filter: drop-shadow(0 18px 30px rgba(20,24,26,.18));
}
@keyframes logo-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.loader__line {
  margin-top: 26px;
  font-family: var(--hand);
  font-weight: 600;
  font-size: 2rem;
  color: var(--ink);
  opacity: 0;
  animation: fade-rise .8s var(--ease) 1s forwards;
}
/* liquid wave that rises behind the logo */
.loader__wave {
  position: absolute;
  left: 50%;
  bottom: -60px;
  width: 320px;
  height: 320px;
  transform: translateX(-50%);
  z-index: -1;
  border-radius: 44% 56% 52% 48% / 50% 46% 54% 50%;
  background: radial-gradient(circle at 50% 40%, rgba(122,15,24,.16), rgba(122,15,24,.05) 60%, transparent 72%);
  animation: wave-rise 2.6s var(--ease) infinite;
}
@keyframes wave-rise {
  0%   { transform: translate(-50%, 40px) scale(.7); opacity: 0; border-radius: 50%; }
  40%  { opacity: .9; }
  100% { transform: translate(-50%, -30px) scale(1.25); opacity: 0; border-radius: 42% 58% 48% 52% / 56% 44% 56% 44%; }
}
.loader__bar {
  margin-top: 30px;
  width: 160px; height: 2px;
  background: rgba(30,36,38,.12);
  border-radius: 2px;
  overflow: hidden;
}
.loader__bar i {
  display: block; height: 100%;
  width: 40%;
  background: var(--cherry);
  border-radius: 2px;
  animation: bar-run 1.6s var(--ease-io) infinite;
}
@keyframes bar-run {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(420%); }
}
@keyframes fade-rise { to { opacity: 1; } }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 18px 0;
}
.header.scrolled {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(30,36,38,.06), 0 12px 30px -24px rgba(20,24,26,.4);
  padding: 10px 0;
}
.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__logo { display: flex; align-items: center; position: relative; }
.header__logo img {
  height: 118px;
  width: auto;
  transform-origin: left center;
  transition: height .4s var(--ease), transform .5s var(--ease);
  filter: drop-shadow(0 14px 26px rgba(20,24,26,.18));
}
.header.scrolled .header__logo img { height: 50px; filter: none; }
.header__logo:hover img { transform: rotate(-3deg); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  position: relative;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  padding: 4px 0;
}
.nav a .scribble {
  position: absolute;
  left: -2%; bottom: -8px;
  width: 104%; height: 8px;
  color: var(--cherry);
  opacity: 0;
  transform: scaleX(.3);
  transform-origin: left;
  transition: opacity .3s var(--ease), transform .45s var(--ease);
}
.nav a:hover .scribble { opacity: 1; transform: scaleX(1); }

.header__cta { display: flex; align-items: center; gap: 16px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  padding: 8px;
}
.burger span {
  width: 26px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(82vw, 360px);
  background: var(--ink);
  z-index: 99;
  transform: translateX(100%);
  transition: transform .5s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  gap: 6px;
}
.drawer.open { transform: translateX(0); }
.drawer a {
  font-family: var(--hand);
  font-weight: 600;
  font-size: 1.9rem;
  color: var(--on-dark);
  padding: 10px 0;
  border-bottom: 1px solid rgba(244,240,231,.1);
  transition: color .3s var(--ease), padding-left .3s var(--ease);
}
.drawer a:hover { color: var(--lemon); padding-left: 8px; }
.scrim {
  position: fixed; inset: 0; z-index: 98;
  background: rgba(20,24,26,.5);
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
}
.scrim.open { opacity: 1; visibility: visible; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 168px 0 96px;
  overflow: hidden;
}
.hero .pattern-wm { opacity: .7; }
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  align-items: center;
  gap: 30px;
}
.hero__title {
  width: min(100%, 460px);
  height: auto;
  opacity: 0;
  animation: fade-rise 1s var(--ease) .2s forwards;
}
.hero__copy { padding-left: 6px; }
.hero__sub {
  margin: 30px 0 26px;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--text-2);
  opacity: 0;
  animation: fade-rise 1s var(--ease) .5s forwards;
}
.hero__cta-wrap { opacity: 0; animation: fade-rise 1s var(--ease) .7s forwards; }

.hero__visual { position: relative; }
.hero__arrow {
  position: absolute;
  left: -78px; top: 46%;
  width: 92px;
  z-index: 3;
  opacity: 0;
  animation: fade-rise 1s var(--ease) .9s forwards;
}
.hero__bottles {
  position: relative;
  z-index: 2;
  width: 100%;
  --slot-frame-bg: transparent;
  aspect-ratio: 1.05 / 1;
  opacity: 0;
  transform: translateY(40px);
  animation: bottles-up 1.2s var(--ease) .55s forwards;
}
@keyframes bottles-up { to { opacity: 1; transform: translateY(0); } }

/* floating natural elements */
.hero__fruit {
  position: absolute;
  z-index: 3;
  font-size: 0; /* svg inside */
}
.hero__fruit.cherries { width: 86px; left: 4%;  bottom: 4%;  --r: -6deg; }
.hero__fruit.berries  { width: 70px; left: 26%; bottom: -2%; --r: 5deg; animation-delay: 1.4s; }
.hero__fruit.lemon    { width: 78px; right: 16%; bottom: 0%; --r: 8deg; animation-delay: .7s; }
.hero__fruit.flower   { width: 96px; right: -2%; bottom: 8%; --r: -4deg; animation-delay: 2s; }

/* ============================================================
   torn-paper dark section edge
   ============================================================ */
.torn {
  position: absolute; left: 0; width: 100%;
  z-index: 3; line-height: 0;
}
.torn svg { width: 100%; height: 60px; display: block; }
.torn.top { top: -1px; }
.torn.bottom { bottom: -1px; transform: scaleY(-1); }

/* ============================================================
   PRODUCT (dark) SECTION
   ============================================================ */
.product {
  position: relative;
  background: var(--product-bg, var(--ink));
  color: var(--on-dark);
  padding: 132px 0;
  overflow: hidden;
  transition: background .5s var(--ease);
}
.product .blob { opacity: .26; }
.product__grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.product__media {
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.7);
}
.product__media img.slot { width: 100%; height: 440px; display:block; }
.product__title { color: var(--on-dark); }
.product__text { color: var(--on-dark-2); font-size: 1.04rem; line-height: 1.75; max-width: 44ch; }
.product__text + .product__text { margin-top: 16px; }

/* ============================================================
   RECIPES SECTION
   ============================================================ */
.recipes {
  position: relative;
  background: var(--cream);
  padding: 120px 0;
  overflow: hidden;
}
.recipes .pattern-wm { opacity: .6; }
.recipes__grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}
.polaroids {
  position: relative;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.polaroid {
  position: absolute;
  width: 246px;
  background: #fff;
  padding: 14px 14px 44px;
  box-shadow: 0 22px 44px -22px rgba(20,24,26,.5);
  border-radius: 3px;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), z-index 0s;
  will-change: transform;
}
.polaroid img.slot { width: 100%; height: 230px; display: block; }
.polaroid figcaption {
  font-family: var(--hand);
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--ink);
  text-align: center;
  margin-top: 8px;
  line-height: 1;
}
.polaroid:nth-child(1) { transform: rotate(-9deg) translate(-118px, 14px); z-index: 1; }
.polaroid:nth-child(2) { transform: rotate(3deg)  translate(0, -18px);    z-index: 3; }
.polaroid:nth-child(3) { transform: rotate(11deg) translate(120px, 22px); z-index: 2; }
.polaroids:hover .polaroid { filter: saturate(.96); }
.polaroid:hover {
  z-index: 10 !important;
  box-shadow: 0 36px 60px -24px rgba(20,24,26,.55);
  filter: none !important;
}
/* keep each card's horizontal position on hover so the pointer stays over it */
.polaroid:nth-child(1):hover { transform: rotate(0deg) translate(-118px, -22px) scale(1.05) !important; }
.polaroid:nth-child(2):hover { transform: rotate(0deg) translate(0, -48px) scale(1.05) !important; }
.polaroid:nth-child(3):hover { transform: rotate(0deg) translate(120px, -16px) scale(1.05) !important; }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-sec {
  position: relative;
  background: var(--cream-2);
  padding: 116px 0;
}
.video-sec__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 5px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 36px 70px -36px rgba(20,24,26,.55);
}
.video-frame img.slot { width: 100%; height: 100%; display: block; object-fit: cover; }
.video-yt { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 2; }
.video-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,24,26,.05), rgba(20,24,26,.35));
  pointer-events: none;
}
.video-frame.playing::after { display: none; }
.play-btn {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  z-index: 3;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--cherry);
  border: none;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px -8px rgba(122,15,24,.7);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.play-btn::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--cherry);
  animation: pulse 2.4s var(--ease-io) infinite;
}
.play-btn:hover { transform: translate(-50%,-50%) scale(1.08); background: var(--cherry-2); }
.play-btn svg { margin-left: 5px; }
@keyframes pulse {
  0%   { transform: scale(1); opacity: .7; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ============================================================
   VALUES (dark) SECTION
   ============================================================ */
.values {
  position: relative;
  background: var(--ink-2);
  color: var(--on-dark);
  padding: 116px 0 124px;
  overflow: hidden;
}
.values__head {
  text-align: center;
  margin-bottom: 76px;
}
.values__head .uline { margin: 14px auto 0; }
.values__grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.value {
  position: relative;
  text-align: center;
  padding: 8px 30px 0;
}
/* hand-drawn dashed divider between columns */
.value::after {
  content: "";
  position: absolute;
  top: 14px; right: 0;
  width: 1px; height: 168px;
  background-image: linear-gradient(var(--gold) 55%, transparent 0);
  background-size: 1px 13px;
  opacity: .3;
}
.value:last-child::after { display: none; }

.value__badge {
  position: relative;
  width: 104px; height: 104px;
  margin: 0 auto 26px;
  display: grid;
  place-items: center;
}
.value__badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(200,162,75,.85);
  border-radius: 50%;
  background: rgba(200,162,75,.06);
}
.value__badge::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(200,162,75,.45);
  border-radius: 50%;
}
.value__num {
  position: absolute;
  top: -6px; right: 2px;
  z-index: 3;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--cherry);
  color: var(--cream);
  font-family: var(--hand);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  box-shadow: 0 6px 16px -8px rgba(0,0,0,.7);
}
.value__icon {
  position: relative; z-index: 2;
  width: 50px; height: 50px;
  color: var(--gold);
}
.value__icon svg { width: 100%; height: 100%; }
.value h3 {
  font-family: var(--hand);
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: 0.01em;
  color: var(--on-dark);
  margin-bottom: 10px;
  line-height: 1;
}
.value p { font-size: 0.92rem; line-height: 1.65; color: var(--on-dark-2); max-width: 22ch; margin: 0 auto; }

/* draw-in stroke for value icons */
.value__icon path, .value__icon line, .value__icon circle, .value__icon polyline {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  transition: stroke-dashoffset 1.3s var(--ease);
}
.values.in .value__icon path,
.values.in .value__icon line,
.values.in .value__icon circle,
.values.in .value__icon polyline { stroke-dashoffset: 0; }

/* ============================================================
   EVENTS GALLERY (festive)
   ============================================================ */
.events {
  position: relative;
  background: var(--cream);
  padding: 116px 0 124px;
  overflow: hidden;
}
.events .pattern-wm { opacity: .5; }
.events__head {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.events__head .uline { margin: 14px auto 0; }

/* confetti dots scattered behind the header */
.events__head::before,
.events__head::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 12px; height: 12px;
  border-radius: 50%;
}
.events__head::before {
  top: 4px; left: 4%;
  background: var(--lemon);
  box-shadow: 40px 60px 0 -2px var(--cherry), 90px 12px 0 -4px var(--sage),
              -10px 90px 0 -3px var(--cherry-3);
}
.events__head::after {
  top: 10px; right: 6%;
  background: var(--cherry);
  box-shadow: -36px 64px 0 -2px var(--lemon), -86px 16px 0 -4px var(--sage),
              16px 92px 0 -3px var(--cherry-2);
}

.events__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 210px 210px 210px;
  grid-template-areas:
    "a a b b"
    "a a c d"
    "note note e e";
  gap: 22px;
}
.ev {
  position: relative;
  margin: 0;
  border-radius: 4px;
  transform: rotate(var(--r, 0deg));
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  will-change: transform;
}
.ev--a { grid-area: a; }
.ev--b { grid-area: b; }
.ev--c { grid-area: c; }
.ev--d { grid-area: d; }
.ev--e { grid-area: e; }
.ev--note { grid-area: note; }

/* photo cards: white frame + tilt + caption */
.ev:not(.ev--note) {
  background: #fff;
  padding: 12px 12px 12px;
  box-shadow: 0 20px 40px -22px rgba(20,24,26,.5);
  overflow: hidden;
}
.ev:not(.ev--note) img.slot {
  border-radius: 3px;
  overflow: hidden;
  height: 100% !important;
}
.ev figcaption {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 3;
  padding: 14px 16px 12px;
  font-family: var(--hand);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(20,24,26,.78));
  border-radius: 0 0 3px 3px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  pointer-events: none;
}
.ev:not(.ev--note):hover {
  transform: rotate(0deg) translateY(-8px) scale(1.015);
  box-shadow: 0 34px 56px -26px rgba(20,24,26,.55);
  z-index: 5;
}
.ev:not(.ev--note):hover figcaption { opacity: 1; transform: none; }

/* note / text card */
.ev--note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 36px;
  background: var(--ink);
  color: var(--on-dark);
  overflow: visible;
  box-shadow: 0 24px 48px -26px rgba(20,24,26,.6);
}
.ev--note .ev__hand {
  font-family: var(--hand);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: .95;
  color: var(--lemon);
}
.ev--note .ev__sub {
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--on-dark-2);
  max-width: 30ch;
}

@media (max-width: 980px) {
  .events__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 200px 200px 180px;
    grid-template-areas:
      "a a"
      "b b"
      "c d"
      "note note";
    gap: 18px;
  }
  .ev--e { display: none; }
}
@media (max-width: 560px) {
  .events__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
    grid-template-areas: "a" "b" "c" "d" "note";
    gap: 16px;
  }
  .ev--note { min-height: 160px; }
}

/* ============================================================
   CONTACT / NEWSLETTER
   ============================================================ */
.contact {
  position: relative;
  background: var(--cream);
  padding: 110px 0 60px;
  overflow: hidden;
}
.contact .pattern-wm { opacity: .55; }
.contact__card {
  position: relative;
  z-index: 2;
  background: var(--paper);
  border: 1px solid rgba(30,36,38,.07);
  border-radius: 8px;
  box-shadow: 0 40px 80px -50px rgba(20,24,26,.45);
  padding: 64px 64px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
}
.contact__flower {
  position: absolute;
  right: -10px; bottom: -16px;
  width: 150px;
  color: var(--sage);
  opacity: .8;
  pointer-events: none;
}
.contact__form { display: grid; gap: 16px; position: relative; z-index: 2; }
.field {
  position: relative;
}
.field input,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  color: var(--text);
  background: var(--cream-2);
  border: 1.5px solid transparent;
  border-bottom: 1.5px solid rgba(30,36,38,.16);
  border-radius: 4px;
  padding: 16px 18px;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder,
.field textarea::placeholder { color: var(--text-mute); }
.field input:focus,
.field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--cherry);
  box-shadow: 0 6px 18px -10px rgba(122,15,24,.4);
}
.contact .btn { width: fit-content; margin-top: 4px; }
.contact__ok {
  font-family: var(--hand);
  font-size: 1.5rem;
  color: var(--cherry);
  margin-top: 4px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  background: var(--cream);
  padding: 30px 0 40px;
}
.footer__top {
  border-top: 1px solid rgba(30,36,38,.1);
  padding-top: 50px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer__brand img { width: 96px; height: auto; }
.footer__col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 18px;
}
.footer__col a {
  display: block;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-2);
  padding: 6px 0;
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}
.footer__col a:hover { color: var(--cherry); padding-left: 5px; }
.socials { display: flex; gap: 14px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: grid; place-items: center;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.socials a:hover { transform: translateY(-3px); background: var(--cherry); color: #fff; padding-left: 0; }
.footer__bottom {
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(30,36,38,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-mute);
  font-weight: 300;
}
.footer__bottom .heart { color: var(--cherry); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav, .header__cta .btn { display: none; }
  .burger { display: flex; }
  .hero__grid { grid-template-columns: 1fr; gap: 10px; }
  .hero__visual { order: 2; }
  .hero__arrow { display: none; }
  .hero__title { margin: 0 auto; }
  .hero__copy { text-align: center; }
  .lead, .product__text, .hero__sub { margin-left: auto; margin-right: auto; }
  .product__grid, .recipes__grid, .video-sec__grid, .contact__card { grid-template-columns: 1fr; gap: 40px; }
  .product__media { order: 2; }
  .polaroids { order: 2; height: 380px; }
  .values__grid { grid-template-columns: 1fr 1fr; gap: 56px 24px; }
  .value { padding: 0 12px; }
  .value::after { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .container { padding: 0 22px; }
  .hero { padding: 140px 0 70px; }
  .hero__title { width: 86%; }
  .contact__card { padding: 40px 26px; }
  .values__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .section-title { font-size: 2.5rem; }
}
