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

:root {
  --bg: #050505;
  --bg-soft: #111111;
  --accent: #f19593;
  --paper: #f6efdf;
  --paper-strong: #efe4cb;
  --paper-card: #fffaf0;
  --text: #151515;
  --text-soft: rgba(21, 21, 21, 0.74);
  --text-inverse: #f8f3e8;
  --text-inverse-soft: rgba(248, 243, 232, 0.72);
  --gold: #f5d318;
  --gold-soft: #ffe77c;
  --line-dark: rgba(21, 21, 21, 0.1);
  --line-light: rgba(255, 255, 255, 0.1);
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 24px 80px rgba(0, 0, 0, 0.22);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --container: 1180px;
  --pad: 20px;
  --font-display: "Homeboin", "Barlow Condensed", sans-serif;
  --font-body: "Barlow Condensed", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 460ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

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

p {
  margin: 0 0 14px;
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--text-soft);
}

strong {
  color: inherit;
}

.muted {
  color: rgba(21, 21, 21, 0.58);
}

.inline-link {
  color: var(--text);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.container {
  width: min(var(--container), calc(100% - 2 * var(--pad)));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 16px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--text);
  font-weight: 700;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 999;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.scroll-progress__bar {
  width: 0;
  height: 100%;
  background: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(18px);
  background: rgba(5, 5, 5, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand__logo {
  width: auto;
  height: 34px;
}

.nav {
  display: flex;
  align-items: center;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__link {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(248, 243, 232, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background var(--dur) var(--ease),
    color var(--dur) var(--ease);
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-inverse);
}

.nav__toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-inverse);
  cursor: pointer;
}

.nav__toggle-label {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav__toggle-icon {
  position: relative;
  width: 18px;
  height: 12px;
}

.nav__toggle-icon::before,
.nav__toggle-icon::after,
.nav__toggle-icon span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--text-inverse);
}

.nav__toggle-icon::before {
  top: 0;
}

.nav__toggle-icon span {
  top: 50%;
  transform: translateY(-50%);
}

.nav__toggle-icon::after {
  bottom: 0;
}

body.nav-open .nav__menu {
  display: flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform var(--dur) var(--ease),
    background var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

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

.btn--primary {
  background: var(--gold);
  color: var(--text);
  box-shadow: 0 16px 36px rgba(245, 211, 24, 0.24);
}

.btn--primary:hover {
  box-shadow: 0 22px 48px rgba(245, 211, 24, 0.32);
}

.hero {
  padding: 0;
  background: #050505;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 63px);
  width: 100%;
  background: #050505;
}

.hero-stage__art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-stage__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.12) 0%, rgba(5, 5, 5, 0.28) 42%, rgba(5, 5, 5, 0.12) 100%),
    radial-gradient(circle at center, rgba(5, 5, 5, 0.38) 0%, rgba(5, 5, 5, 0.18) 24%, rgba(5, 5, 5, 0) 54%);
}

.hero-stage__copy {
  position: relative;
  z-index: 1;
}

.hero-stage__copy {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.hero__title,
.section__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: rgba(21, 21, 21, 0.66);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section__eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.hero__title {
  max-width: none;
  color: var(--gold);
  white-space: nowrap;
  font-size: clamp(2.9rem, 9vw, 8rem);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero__title--image {
  position: relative;
  display: inline-grid;
  place-items: center;
  white-space: normal;
  line-height: 0;
}

.hero__title-image {
  display: block;
  width: min(94vw, 860px);
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.section {
  position: relative;
  padding: 76px 0;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(var(--container), calc(100% - 2 * var(--pad)));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(21, 21, 21, 0.1), transparent);
}

.section--dark {
  background:
    radial-gradient(circle at top right, rgba(245, 211, 24, 0.12), transparent 22%),
    linear-gradient(180deg, #090909 0%, #111111 100%);
}

.section--dark::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.section--where {
  background: #fffaf0;
}

.section--events {
  background: #000000;
}

.section.section--events .section__eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.section.section--events .section__title,
.section.section--events .section__lead,
.section.section--events p,
.section.section--events .inline-link {
  color: #ffffff;
}

.section.section--events .btn--primary {
  background: #f09492;
  color: #151515;
  box-shadow: 0 16px 36px rgba(240, 148, 146, 0.34);
}

.section.section--events .btn--primary:hover {
  background: #f09492;
  box-shadow: 0 22px 48px rgba(240, 148, 146, 0.42);
}

.section--real-life-photo {
  padding: 0;
  background: #050505;
}

.section--real-life-photo::before {
  display: none;
}

.real-life-photo {
  width: 100%;
  height: auto;
}

.real-life-photo-wrap {
  position: relative;
  overflow: hidden;
}

.real-life-photo__title {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: min(92vw, 980px);
  margin: 0;
  padding: 0 16px;
  transform: translate(-50%, -50%);
  color: var(--text-inverse);
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5.2vw, 4.8rem);
  line-height: 1.02;
  text-align: center;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.section__header {
  margin-bottom: 28px;
}

.section__header.section__header--where {
  max-width: none;
}

.section-copy,
.section__header {
  max-width: 40rem;
}

.section--light .section__eyebrow {
  color: rgba(21, 21, 21, 0.66);
}

.section__title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  color: var(--text);
}

.section__lead {
  margin: 0 0 16px;
  color: rgba(21, 21, 21, 0.76);
  font-size: 1.16rem;
  line-height: 1.45;
}

.product-quote {
  font-style: italic;
}

.section--dark p,
.section--dark .section__title,
.section--dark .movement-panel__title,
.section--dark .location-card h3,
.section--dark .contact-card a {
  color: var(--text-inverse);
}

.section--dark .section__eyebrow {
  color: rgba(248, 243, 232, 0.68);
}

.section--dark p,
.section--dark .section__lead {
  color: var(--text-inverse-soft);
}

.split,
.split--product,
.contact-shell,
.movement-panel {
  display: grid;
  gap: 24px;
}

.media-panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.media-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-panel--tall {
  min-height: 440px;
}

.media-panel--square {
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.media-panel--wide {
  min-height: 220px;
}

.media-panel--small {
  min-height: 180px;
}

.media-panel--product-main {
  min-height: 0;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-strong);
}

.media-panel__badge {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.92);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.events-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.events-media__image {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}

.cards-grid {
  display: grid;
  gap: 14px;
}

.cards-grid--vision {
  margin-top: 24px;
}

.cards-grid--concept {
  margin-bottom: 22px;
}

.concept-strip {
  display: flex;
  align-items: stretch;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding-bottom: 0;
  scroll-padding-inline: 0;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
}

.concept-item {
  flex: 0 0 auto;
  width: auto;
  height: clamp(340px, 50vw, 620px);
  scroll-snap-align: start;
}

.concept-item img {
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.concept-strip::-webkit-scrollbar {
  display: none;
}

.card,
.contact-card,
.location-card {
  padding: 22px;
  border-radius: 24px;
}

.card {
  background: var(--paper-card);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-soft);
}

.card--dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.card__title,
.movement-panel__title,
.sauce-card h3,
.location-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
}

.card__title,
.sauce-card h3,
.location-card h3 {
  font-size: 2rem;
}

.card--dark .card__title {
  color: var(--text-inverse);
}

.card p {
  margin: 0;
}

.movement-panel {
  padding: 22px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.movement-panel__title {
  font-size: clamp(2.2rem, 7vw, 3.4rem);
  color: var(--text-inverse);
}

.movement-panel__media {
  display: grid;
  gap: 12px;
}

.product-gallery,
.product-points,
.contact-grid,
.location-grid,
.sauce-grid {
  display: grid;
  gap: 12px;
}

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

.product-points {
  margin-top: 14px;
}

.feature-card {
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--paper-card);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-soft);
}

.feature-card__label,
.contact-card__label,
.location-card__tag {
  display: inline-flex;
  margin-bottom: 8px;
  color: rgba(21, 21, 21, 0.56);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-card__value {
  display: block;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.3;
}

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

.sauce-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sauce-card p {
  margin: 0;
  color: var(--text-inverse-soft);
}

.sauce-card h3 {
  color: var(--gold);
}

.sauce-card--accent {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.menu-note {
  margin: 20px 0 0;
}

.section-note {
  margin-top: 20px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-note p {
  margin: 0 0 8px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link::after {
  content: "→";
}

.real-life {
  display: grid;
  gap: 12px;
}

.real-life__item {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--paper-card);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-soft);
}

.real-life__item strong {
  color: var(--text);
  font-size: 1.14rem;
}

.real-life__item span {
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.45;
}

.location-grid {
  margin-bottom: 20px;
}

.location-header-row {
  display: grid;
  gap: 14px;
  align-items: start;
}

.location-callout {
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  background-color: #f09492;
  background-image: none;
  opacity: 1;
  color: #151515;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 600;
}

.location-callout a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.location-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  background: #ffffff;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-soft);
}

.location-card--coming-soon {
  position: relative;
}

.location-card--coming-soon > * {
  filter: none;
}

.location-card--coming-soon::before {
  content: none;
}

.location-card--coming-soon::after {
  content: none;
}

.location-card h3 {
  color: var(--text);
}

.location-card__subtitle {
  display: block;
  margin-top: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(21, 21, 21, 0.72);
}

.location-card p {
  color: var(--text-soft);
}

.location-card__hint {
  margin-top: 6px;
}

.location-card__hint a {
  color: var(--text);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.location-social {
  display: grid;
  gap: 10px;
}

.location-social__label {
  margin: 0;
}

.location-social__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.location-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(21, 21, 21, 0.16);
  color: var(--text);
  transition:
    background var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}

.location-social__link:hover {
  background: rgba(245, 211, 24, 0.45);
  transform: translateY(-1px);
}

.location-social__icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
}

.location-social__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.location-social__link:nth-child(2) .location-social__icon svg {
  fill: currentColor;
  stroke: none;
}

.location-media {
  width: 100%;
  min-height: 0;
  margin-top: auto;
  aspect-ratio: 16 / 9;
}

.where-cta {
  display: flex;
  justify-content: flex-start;
}

.contact-shell {
  align-items: start;
}

.contact-social {
  display: grid;
  gap: 10px;
}

.contact-social__title {
  margin: 0;
  color: var(--text-inverse);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-social__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(245, 211, 24, 0.7);
  background: rgba(245, 211, 24, 0.12);
  color: var(--gold);
  transition:
    transform var(--dur) var(--ease),
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.contact-social__link:hover {
  transform: translateY(-1px);
  background: rgba(245, 211, 24, 0.2);
  border-color: rgba(245, 211, 24, 0.95);
}

.contact-social__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
}

.contact-social__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-social__link--facebook .contact-social__icon svg {
  fill: currentColor;
  stroke: none;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card__label {
  color: rgba(248, 243, 232, 0.56);
  margin-bottom: 0;
}

.contact-card a {
  display: block;
  max-width: 100%;
  margin-top: auto;
  color: var(--gold);
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.site-footer {
  padding: 34px 0 42px;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-inverse);
}

.footer-inner {
  display: grid;
  gap: 18px;
}

.footer-brand__logo {
  width: auto;
  height: 34px;
}

.footer-brand__tagline {
  margin: 12px 0 0;
  color: rgba(248, 243, 232, 0.68);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-legal a {
  color: rgba(248, 243, 232, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-legal p {
  margin: 0 0 8px;
  color: rgba(248, 243, 232, 0.58);
}

.footer-legal__policies {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-legal__policies a {
  color: rgba(248, 243, 232, 0.85);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 998;
  width: min(320px, calc(100vw - 32px));
  padding: 12px;
  border-radius: 14px;
  background: rgba(5, 5, 5, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-strong);
  transition:
    opacity 180ms var(--ease),
    transform 180ms var(--ease);
}

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.cookie-banner__text {
  margin: 0;
  color: rgba(248, 243, 232, 0.9);
  font-size: 0.92rem;
  line-height: 1.35;
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.cookie-banner__btn {
  flex: 1;
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(248, 243, 232, 0.92);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-banner__btn--accept {
  background: var(--accent);
  border-color: var(--accent);
  color: #151515;
}

.cookie-banner__progress {
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.cookie-banner__progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
  transition: width 3000ms linear;
}

.cookie-banner.is-running .cookie-banner__progress-bar {
  width: 100%;
}

.js [data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity var(--dur) var(--ease),
    transform var(--dur) var(--ease);
  will-change: opacity, transform;
}

.js [data-animate="fade-in"] {
  transform: none;
}

.js .hero__title {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  animation: hero-title-in 900ms 320ms var(--ease) forwards;
}

.js [data-animate="reveal-left"] {
  transform: translateX(-18px);
}

.js [data-animate="reveal-right"] {
  transform: translateX(18px);
}

.js .in-view[data-animate],
.js [data-animate].in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes hero-title-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }

  .js [data-animate] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .js .hero__title {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

@media (min-width: 720px) {
  :root {
    --pad: 28px;
  }

  .brand__logo {
    height: 38px;
  }

  .hero {
    padding: 0;
  }

  .hero-stage {
    min-height: calc(100svh - 67px);
  }

  .hero-stage__copy {
    padding: 40px;
  }

  .hero__title {
    font-size: clamp(4.6rem, 8vw, 8.5rem);
  }

  .hero__title-image {
    width: min(86vw, 980px);
  }

  .section {
    padding: 100px 0;
  }

  .section--real-life-photo {
    padding: 0;
  }

  .split,
  .split--product,
  .contact-shell {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
  }

  .cards-grid--vision {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cards-grid--concept {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .movement-panel {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    align-items: center;
    gap: 24px;
  }

  .movement-panel__media {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
  }

  .product-gallery {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-points {
    margin-top: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  .contact-card {
    min-height: 0;
  }

  .location-header-row {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
    gap: 20px;
  }

  .section__header--where .section__title {
    margin-bottom: 0;
  }

  .events-media__image {
    width: 108%;
    max-width: 620px;
  }
}

@media (min-width: 1040px) {
  .section--real-life-photo .real-life-photo-wrap {
    width: 100vw;
    max-width: none;
    height: clamp(500px, 43vw, 680px);
    margin-inline: calc(50% - 50vw);
  }

  .section--real-life-photo .real-life-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    will-change: transform;
  }

  #concept .container {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .concept-strip {
    width: 100%;
    margin-inline: 0;
    padding-inline: 20px;
    overflow: visible;
    justify-content: flex-start;
    scroll-snap-type: none;
  }

  .concept-item {
    flex: 0 0 calc((100% - 56px) / 5);
    width: calc((100% - 56px) / 5);
    height: auto;
    aspect-ratio: 2 / 3;
  }

  .concept-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cards-grid--vision {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .hero-stage__art {
    object-fit: contain;
    object-position: center bottom;
  }

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

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

  .footer-inner {
    grid-template-columns: 1.3fr 0.8fr 0.9fr;
    align-items: start;
  }
}

@media (max-width: 719px) {
  .hero-stage__art {
    object-position: center center;
    transform: scale(1.08);
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav__menu {
    display: none;
    position: absolute;
    top: 68px;
    right: 18px;
    width: min(320px, calc(100vw - 36px));
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border-radius: 20px;
    background: rgba(5, 5, 5, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-strong);
  }

  .nav__link {
    justify-content: center;
  }

  #salse {
    padding: 58px 0;
  }

  #salse .section__header {
    margin-bottom: 18px;
  }

  #salse .section__title {
    font-size: clamp(2rem, 9vw, 2.7rem);
    margin-bottom: 10px;
  }

  #salse .section__lead {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.35;
  }

  #salse .sauce-grid {
    gap: 10px;
  }

  #salse .sauce-card {
    padding: 14px;
    border-radius: 18px;
  }

  #salse .sauce-card h3 {
    margin-bottom: 6px;
    font-size: 1.5rem;
  }

  #salse .sauce-card p,
  #salse .menu-note {
    font-size: 0.95rem;
    line-height: 1.35;
  }

  #salse .menu-note {
    margin-top: 14px;
  }

  #dove .location-card {
    gap: 8px;
  }

  #dove .location-social__link {
    width: 38px;
    height: 38px;
  }

  #dove .location-callout {
    padding-bottom: 22px;
  }

  #dove .location-media {
    aspect-ratio: 16 / 9;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: min(300px, calc(100vw - 24px));
    padding: 11px;
  }
}

::selection {
  background: rgba(245, 211, 24, 0.6);
  color: var(--text);
}
