:root {
  --red: #ef3123;
  --gold: #e2a024;
  --cream: #f5f0e8;
  --paper: #fbf8f2;
  --ink: #151515;
  --muted: #77736c;
  --line: rgba(21, 21, 21, 0.14);
  --header-h: 88px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

::selection {
  background: var(--gold);
  color: var(--ink);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  pointer-events: none;
}

.brand,
.nav-actions,
.menu-trigger {
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  mix-blend-mode: difference;
  color: #fff;
}

.brand-mark {
  color: var(--gold);
  font-size: 18px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.panel-count {
  display: inline-flex;
  gap: 5px;
  font-size: 12px;
  letter-spacing: .08em;
  mix-blend-mode: difference;
  color: #fff;
}

.menu-trigger {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(0,0,0,.12);
  backdrop-filter: blur(14px);
  border-radius: 50%;
  display: grid;
  place-content: center;
  gap: 4px;
  cursor: pointer;
}

.menu-trigger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: #fff;
}

.site-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(390px, 92vw);
  background: var(--paper);
  z-index: 1200;
  padding: 34px;
  transform: translateX(102%);
  transition: transform .45s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.site-menu.is-open {
  transform: translateX(0);
}

.menu-close {
  position: absolute;
  right: 28px;
  top: 26px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.menu-nav {
  margin-top: 90px;
  display: grid;
}

.menu-nav a {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 600;
  transition: color .2s ease, padding-left .25s ease;
}

.menu-nav a span {
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--muted);
}

.menu-nav a:hover,
.menu-nav a.is-current {
  color: var(--red);
  padding-left: 8px;
}

.menu-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.32);
  backdrop-filter: blur(2px);
  z-index: 1100;
}

.horizontal-shell {
  display: flex;
  width: 100vw;
  height: 100vh;
  overflow-x: auto;
  overflow-y: hidden;
scroll-snap-type: none;
  scroll-behavior: smooth;
  scrollbar-width: none;
  overscroll-behavior: none;
}

.horizontal-shell::-webkit-scrollbar {
  display: none;
}

.panel {
  width: 100vw;
  min-width: 100vw;
  height: 100vh;
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  position: relative;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow.accent {
  color: var(--red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

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

.btn-primary {
  background: var(--red);
  color: white;
}

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

.btn-disabled {
  background: rgba(255,255,255,.16);
  color: rgba(255,255,255,.68);
  border-color: rgba(255,255,255,.22);
  cursor: not-allowed;
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.text-link.light {
  color: #fff;
}

.is-hidden {
  display: none !important;
}

/* PANEL 01 */
.panel-movies {
  background: #070707;
  color: white;
}

.movie-slider,
.movie-slide {
  width: 100%;
  height: 100%;
}

.movie-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease, visibility .7s ease;
}

.movie-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.movie-poster {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
  transition: transform 1.4s var(--ease);
}

.movie-slide.is-active .movie-poster {
  transform: scale(1);
}

.poster-one {
  background:
    radial-gradient(circle at 72% 26%, rgba(239,49,35,.54), transparent 30%),
    linear-gradient(135deg, #1e2026 0%, #08090d 46%, #2a1614 100%);
}

.poster-two {
  background:
    radial-gradient(circle at 30% 25%, rgba(226,160,36,.45), transparent 28%),
    linear-gradient(135deg, #141014 0%, #090909 56%, #31110e 100%);
}

.poster-one::after,
.poster-two::after {
  content: "POSTER";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.07);
  font-weight: 800;
  font-size: clamp(64px, 15vw, 220px);
  letter-spacing: -.06em;
}

.movie-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.96) 0%, rgba(0,0,0,.68) 34%, rgba(0,0,0,.18) 68%, rgba(0,0,0,.08) 100%);
}

.movie-content {
  position: absolute;
  left: clamp(30px, 5vw, 88px);
  bottom: 190px;
  width: min(620px, 58vw);
  z-index: 2;
}

.movie-content h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 5vw, 84px);
  line-height: .94;
  letter-spacing: -.055em;
  max-width: 10ch;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.74);
}

.movie-program {
  position: absolute;
  left: clamp(30px, 5vw, 88px);
  right: clamp(30px, 5vw, 88px);
  bottom: 34px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.28);
}

.movie-program-item {
  background: transparent;
  color: rgba(255,255,255,.55);
  border: 0;
  border-right: 1px solid rgba(255,255,255,.2);
  text-align: left;
  padding: 20px 28px 10px 0;
  cursor: pointer;
  display: grid;
  gap: 3px;
  transition: color .25s ease, padding-left .25s ease;
}

.movie-program-item:last-child {
  border-right: 0;
  padding-left: 28px;
}

.movie-program-item.is-active,
.movie-program-item:hover {
  color: white;
}

.program-index {
  font-size: 10px;
  color: var(--gold);
}

.program-title {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 600;
}

.program-detail {
  font-size: 11px;
  color: rgba(255,255,255,.52);
}

/* PANEL 02 */
.panel-aperitivo {
  background: var(--cream);
}

.aperitivo-layout {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.aperitivo-content {
  padding: 120px clamp(42px, 5vw, 92px) 54px;
  overflow-y: auto;
}

.aperitivo-content h2 {
  margin: 0 0 26px;
  font-size: clamp(60px, 7.2vw, 118px);
  line-height: .82;
  letter-spacing: -.07em;
}

.lead {
  max-width: 620px;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.45;
}

.content-tabs {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  border-bottom: 1px solid var(--line);
}

.tab-button {
  border: 0;
  background: none;
  padding: 0 0 14px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .09em;
  cursor: pointer;
  position: relative;
}

.tab-button::after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 0;
  bottom: -1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.tab-button.is-active::after {
  transform: scaleX(1);
}

.tab-panels {
  min-height: 110px;
  padding-top: 24px;
}

.tab-panel {
  display: none;
  max-width: 580px;
  line-height: 1.65;
  color: #4d4942;
}

.tab-panel.is-active {
  display: block;
}

.selected-venue {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.selected-label {
  margin: 0 0 6px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--red);
  font-weight: 700;
}

.selected-venue h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.selected-venue p {
  margin: 0;
  color: var(--muted);
}

.aperitivo-map-wrap {
  position: relative;
  min-width: 0;
  background: #ddd2c1;
}

.map {
  width: 100%;
  height: 100%;
}

.map-note {
  position: absolute;
  z-index: 500;
  left: 18px;
  bottom: 18px;
  right: 18px;
  padding: 13px 16px;
  background: rgba(251,248,242,.92);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.custom-map-pin {
  width: 18px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: var(--red);
  border: 2px solid white;
  transform: rotate(-45deg);
  box-shadow: 0 4px 12px rgba(0,0,0,.22);
}

.custom-map-pin::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 4.5px;
  top: 4.5px;
}

/* PANEL 03 */
.panel-upcoming {
  background: var(--paper);
}

.upcoming-layout {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 68px;
}

.upcoming-main {
  min-width: 0;
  padding: 118px 44px 50px clamp(36px, 5vw, 84px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 92px);
  line-height: .92;
  letter-spacing: -.06em;
}

.event-slider-controls {
  display: flex;
  gap: 8px;
}

.event-slider-controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.event-reel {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 6px 0 20px;
}

.event-reel::-webkit-scrollbar {
  display: none;
}

.event-card {
  flex: 0 0 clamp(260px, 24vw, 390px);
  scroll-snap-align: start;
}

.event-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: visible;
  margin-bottom: 18px;
  background-size: cover;
  background-position: center;
}

.event-image-1 {
  background: linear-gradient(150deg, #e3b036, #8e1e17);
}
.event-image-2 {
  background: linear-gradient(150deg, #1f3044, #8396a8);
}
.event-image-3 {
  background: linear-gradient(150deg, #c86b48, #431a18);
}
.event-image-4 {
  background: linear-gradient(150deg, #565335, #bab27a);
}

.ticket-badge {
  position: absolute;
  top: -14px;
  right: -10px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: white;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--red);
  font-size: 9px;
  line-height: 1.15;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 800;
  box-shadow: 0 6px 25px rgba(0,0,0,.08);
}

.event-card-meta {
  display: flex;
  gap: 14px;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.event-card h3 {
  margin: 8px 0 6px;
  font-size: 24px;
}

.event-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.partner-rail {
  position: relative;
  width: 78px;
  min-width: 78px;
  height: 100%;
  background: var(--red);
  color: white;
  overflow: hidden;
  transition:
    width .4s var(--ease),
    transform .4s var(--ease);
  z-index: 20;
}

.partner-rail:hover,
.partner-rail.is-open {
  width: 300px;
  transform: translateX(-222px);
}

.partner-rail-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 30px 22px;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: 11px;
  font-weight: 700;
  transition: opacity .2s ease;
}

.partner-rail-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  padding: 90px 34px 34px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(28px);
  transition: opacity .3s ease, transform .4s var(--ease);
  box-sizing: border-box;
}

.partner-rail-content h3 {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.partner-rail-content p:not(.eyebrow) {
  line-height: 1.55;
  color: rgba(255,255,255,.78);
}

.partner-rail:hover,
.partner-rail.is-open {
  width: 300px;
}

.partner-rail:hover .partner-rail-label,
.partner-rail.is-open .partner-rail-label {
  opacity: 0;
}

.partner-rail:hover .partner-rail-content,
.partner-rail.is-open .partner-rail-content {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

/* PANEL 04 */
.panel-past {
  background: #171717;
  color: white;
}

.past-layout {
  height: 100%;
  padding: 118px clamp(36px, 5vw, 84px) 54px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 28px;
}

.past-heading {
  margin-bottom: 0;
}

.memory-wall {
  position: relative;
  min-height: 0;
}

.memory {
  position: absolute;
  display: flex;
  align-items: end;
  padding: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform .3s var(--ease), filter .3s ease;
}

.memory::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.68), transparent 66%);
}

.memory span {
  position: relative;
  z-index: 1;
  font-weight: 600;
  font-size: 14px;
}

.memory:hover {
  transform: translateY(-6px);
}

.memory-a {
  left: 0;
  top: 8%;
  width: 28%;
  height: 62%;
  background: linear-gradient(140deg, #8a1b13, #d08125);
}

.memory-b {
  left: 31%;
  top: 0;
  width: 21%;
  height: 44%;
  background: linear-gradient(140deg, #324e59, #c2a78a);
}

.memory-c {
  left: 55%;
  top: 16%;
  width: 18%;
  height: 58%;
  background: linear-gradient(140deg, #5d2c49, #aa8a62);
}

.memory-d {
  right: 0;
  top: 2%;
  width: 24%;
  height: 38%;
  background: linear-gradient(140deg, #384e33, #c6b76c);
}

.memory-e {
  right: 4%;
  bottom: 0;
  width: 29%;
  height: 38%;
  background: linear-gradient(140deg, #8d3728, #d0a34c);
}

/* PANEL 05 */
.panel-contact {
  background: var(--red);
  color: white;
}

.contact-inner {
  height: 100%;
  padding: 122px clamp(36px, 7vw, 120px) 46px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.newsletter {
  max-width: 900px;
}

.newsletter h2 {
  margin: 0 0 20px;
  font-size: clamp(58px, 7.4vw, 126px);
  line-height: .88;
  letter-spacing: -.07em;
}

.newsletter > p:not(.eyebrow):not(.form-message) {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  margin-top: 34px;
  max-width: 760px;
  border-bottom: 2px solid rgba(255,255,255,.84);
}

.newsletter-form input {
  min-width: 0;
  border: 0;
  background: transparent;
  color: white;
  outline: none;
  padding: 16px 0;
  font-size: 16px;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,.62);
}

.newsletter-form button {
  border: 0;
  background: transparent;
  color: white;
  padding: 0 0 0 28px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
}

.form-message {
  min-height: 22px;
  margin: 12px 0 0;
  font-size: 12px;
}

.footer-socials {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .08em;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.26);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,.7);
}

.footer-bottom span:last-child {
  display: flex;
  gap: 16px;
}

/* Progress */
.scroll-progress {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  height: 3px;
  z-index: 1300;
  background: rgba(0,0,0,.08);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--red);
}

/* Floating LINE */
.line-chat {
  position: fixed;
  right: 26px;
  bottom: 24px;
  z-index: 1050;
}

.line-button {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0;
  background: #06c755;
  color: white;
  font-weight: 800;
  font-size: 11px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,.16);
}

.line-popover {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: 280px;
  padding: 24px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}

.line-popover.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.line-popover h3 {
  margin: 0 0 8px;
  font-size: 23px;
}

.line-popover p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.5;
}

.line-popover-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 24px;
}

/* Mobile / tablet */
@media (max-width: 900px) {
  body {
    overflow: auto;
  }

  .horizontal-shell {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
    scroll-snap-type: none;
  }

  .panel {
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }

  .site-header {
    height: 74px;
    padding: 0 18px;
  }

  .movie-slider {
    min-height: 100svh;
  }

  .movie-slide {
    min-height: 100svh;
  }

  .movie-content {
    left: 22px;
    right: 22px;
    bottom: 220px;
    width: auto;
  }

  .movie-content h1 {
    font-size: clamp(42px, 12vw, 70px);
  }

  .movie-program {
    left: 22px;
    right: 22px;
    bottom: 30px;
    grid-template-columns: 1fr;
  }

  .movie-program-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
    padding: 13px 0;
  }

  .movie-program-item:last-child {
    padding-left: 0;
    border-bottom: 0;
  }

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

  .aperitivo-content {
    padding: 100px 24px 48px;
    min-height: auto;
  }

  .aperitivo-content h2 {
    font-size: clamp(56px, 16vw, 90px);
  }

  .aperitivo-map-wrap {
    min-height: 62svh;
  }

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

  .upcoming-main {
    padding: 100px 24px 46px;
  }

  .section-heading {
    align-items: start;
  }

  .event-slider-controls {
    display: none;
  }

  .event-card {
    flex-basis: 78vw;
  }

  .partner-rail {
    width: 100%;
    height: auto;
    min-height: 72px;
  }

  .partner-rail-label {
    position: relative;
    writing-mode: horizontal-tb;
    transform: none;
    min-height: 72px;
    padding: 0 24px;
    flex-direction: row;
  }

  .partner-rail-content {
    position: relative;
    width: 100%;
    max-height: 0;
    padding: 0 24px;
    opacity: 0;
    transform: none;
    overflow: hidden;
  }

  .partner-rail:hover,
  .partner-rail.is-open {
    width: 100%;
  }

  .partner-rail.is-open .partner-rail-content {
    max-height: 420px;
    padding: 30px 24px 34px;
    opacity: 1;
  }

  .past-layout {
    min-height: 100svh;
    padding: 100px 24px 40px;
  }

  .memory-wall {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .memory {
    position: relative;
    inset: auto !important;
    width: auto !important;
    height: auto !important;
    min-height: 220px;
  }

  .memory:first-child {
    grid-column: 1 / -1;
    min-height: 320px;
  }

  .contact-inner {
    min-height: 100svh;
    padding: 100px 24px 38px;
  }

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

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-form button {
    padding: 14px 0;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .scroll-progress {
    display: none;
  }

  .line-chat {
    right: 16px;
    bottom: 16px;
  }
}

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