@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&display=swap");
/* Nike catalog tokens — sites/aline/DESIGN.md. Sem freehand. */













:root {
  --color-primary: #111111;
  --color-on-primary: #ffffff;
  --color-canvas: #ffffff;
  --color-soft-cloud: #f5f5f5;
  --color-ink: #111111;
  --color-charcoal: #39393b;
  --color-ash: #4b4b4d;
  --color-mute: #707072;
  --color-stone: #9e9ea0;
  --color-hairline: #cacacb;
  --color-hairline-soft: #e5e5e5;
  --color-sale: #d30005;
  --color-overlay: #111111;

  --font-display: "Bebas Neue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;

  --text-display: clamp(3rem, 14vw, 6rem);
  --leading-display: 0.9;
  --tracking-display: -0.005em;
  --text-heading-xl: 2rem;
  --text-heading-lg: 1.5rem;
  --text-heading-md: 1rem;
  --text-body: 1rem;
  --text-button: 1rem;
  --text-caption: 0.875rem;
  --text-caption-sm: 0.75rem;
  --text-utility: 0.5625rem;

  --rounded-none: 0;
  --rounded-sm: 18px;
  --rounded-md: 24px;
  --rounded-lg: 30px;
  --rounded-full: 9999px;

  --space-xxs: 2px;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 18px;
  --space-xl: 24px;
  --space-xxl: 30px;
  --space-section: 48px;

  --nav-h: 56px;
  --utility-h: 36px;
  --wrap: min(1120px, calc(100% - 32px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-canvas);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

.skip {
  position: absolute;
  left: var(--space-sm);
  top: -48px;
  background: var(--color-ink);
  color: var(--color-on-primary);
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--rounded-full);
  z-index: 20;
}

.skip:focus {
  top: var(--space-sm);
}

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

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

.eyebrow {
  margin: 0 0 var(--space-sm);
  font-size: var(--text-caption-sm);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-mute);
}

.display {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: 400;
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
  color: var(--color-on-primary);
}

.display--inverse {
  color: var(--color-on-primary);
}

.heading-xl {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: var(--tracking-display);
  text-transform: uppercase;
}

.heading-md {
  margin: 0 0 var(--space-sm);
  font-size: var(--text-heading-md);
  font-weight: 500;
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: var(--rounded-full);
  font-size: var(--text-button);
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}

.btn--primary {
  background: var(--color-ink);
  color: var(--color-on-primary);
  padding: 16px 32px;
}

.btn--secondary {
  background: var(--color-soft-cloud);
  color: var(--color-ink);
  padding: 16px 32px;
}

.btn--on-image {
  background: var(--color-canvas);
  color: var(--color-ink);
}

.link {
  font-weight: 500;
  line-height: 1.75;
  text-underline-offset: 3px;
}

.utility-bar {
  background: var(--color-soft-cloud);
  color: var(--color-ink);
  height: var(--utility-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-md);
}

.utility-bar p {
  margin: 0;
  font-size: var(--text-caption-sm);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.utility-bar a {
  color: inherit;
  text-decoration: none;
}

.utility-bar a:hover,
.utility-bar a:focus-visible {
  text-decoration: underline;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--color-canvas);
  box-shadow: inset 0 -1px 0 var(--color-hairline-soft);
}

.nav__inner {
  width: var(--wrap);
  margin-inline: auto;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  font-weight: 500;
}

.nav__brand img {
  width: 40px;
  height: 40px;
  border-radius: var(--rounded-full);
  object-fit: cover;
  background: var(--color-soft-cloud);
}

.nav__links {
  display: none;
}

.nav__toggle {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: var(--rounded-full);
  background: var(--color-soft-cloud);
  color: var(--color-ink);
  padding: 0;
}

.nav__toggle-bars,
.nav__toggle-bars::before,
.nav__toggle-bars::after {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--color-ink);
  margin-inline: auto;
  position: relative;
}

.nav__toggle-bars::before,
.nav__toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav__toggle-bars::before {
  top: -5px;
}

.nav__toggle-bars::after {
  top: 5px;
}

.nav.is-open .nav__links {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--utility-h) + var(--nav-h));
  background: var(--color-canvas);
  padding: var(--space-xl);
  gap: var(--space-lg);
  box-shadow: inset 0 1px 0 var(--color-hairline-soft);
}

.nav.is-open .nav__links a {
  text-decoration: none;
  font-weight: 500;
}

.hero {
  position: relative;
  min-height: 78vh;
  background: var(--color-soft-cloud);
  display: flex;
  align-items: flex-end;
}

.hero__photo {
  margin: 0;
  position: absolute;
  inset: 0;
}

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

.hero__wash {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  opacity: 0.42;
}

.hero__copy {
  position: relative;
  z-index: 1;
  width: var(--wrap);
  margin-inline: auto;
  padding: var(--space-section) 0;
}

.hero .eyebrow {
  color: var(--color-on-primary);
}

.hero__lead {
  margin: var(--space-lg) 0 var(--space-xl);
  max-width: 28rem;
  color: var(--color-on-primary);
  font-size: var(--text-body);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.section {
  padding: var(--space-section) 0;
  background: var(--color-canvas);
}

.section--cloud {
  background: var(--color-soft-cloud);
}

.section__head {
  margin-bottom: var(--space-xxl);
}

.sku {
  list-style: none;
  margin: 0 0 var(--space-xxl);
  padding: 0;
}

.sku li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-md);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-hairline-soft);
  font-weight: 500;
}

.sku strong {
  font-weight: 500;
  white-space: nowrap;
}

.sku-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.tile {
  margin: 0;
  background: var(--color-soft-cloud);
  border-radius: var(--rounded-none);
}

.tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--color-soft-cloud);
}

.tile figcaption {
  padding: var(--space-md) 0 var(--space-sm);
  font-size: var(--text-caption);
  font-weight: 500;
}

.campaign {
  background: var(--color-ink);
  color: var(--color-on-primary);
  padding: var(--space-section) 0;
  text-align: center;
}

.campaign .display {
  width: var(--wrap);
  margin-inline: auto;
}

.campaign__meta {
  margin: var(--space-lg) 0 0;
  font-size: var(--text-caption);
  font-weight: 500;
  color: var(--color-on-primary);
}

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.gallery__item {
  margin: 0;
  background: var(--color-soft-cloud);
  border-radius: var(--rounded-none);
}

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

.gallery__item--wide img {
  aspect-ratio: 16 / 9;
}

.reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.review {
  background: var(--color-soft-cloud);
  padding: var(--space-xl);
  border-radius: var(--rounded-none);
}

.review__stars {
  margin: 0 0 var(--space-md);
  font-size: var(--text-caption);
  font-weight: 500;
  letter-spacing: 0.12em;
}

.review__text {
  margin: 0 0 var(--space-lg);
}

.review__name {
  margin: 0;
  font-size: var(--text-caption-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-mute);
}

.place {
  display: grid;
  gap: var(--space-xxl);
}

.place__info p {
  margin: 0 0 var(--space-xl);
}

.place__info .heading-md {
  margin-top: var(--space-xl);
}

.hours {
  list-style: none;
  margin: 0 0 var(--space-xxl);
  padding: 0;
}

.hours li {
  display: flex;
  justify-content: space-between;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-hairline);
  font-weight: 500;
}

.place__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.place__visual {
  display: grid;
  gap: var(--space-sm);
}

.map {
  background: var(--color-soft-cloud);
  min-height: 280px;
}

.map iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.footer {
  background: var(--color-canvas);
  color: var(--color-mute);
  font-size: var(--text-caption);
  font-weight: 500;
  line-height: 1.5;
  padding: var(--space-section) 0;
  box-shadow: inset 0 1px 0 var(--color-hairline-soft);
}

.footer__grid {
  display: grid;
  gap: var(--space-xxl);
}

.footer__brand {
  margin: 0 0 var(--space-sm);
  color: var(--color-ink);
  font-weight: 500;
}

.footer__label {
  margin: 0 0 var(--space-sm);
  color: var(--color-ink);
  font-size: var(--text-caption-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer p {
  margin: 0;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer a {
  color: var(--color-mute);
  text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
  text-decoration: underline;
}

@media (min-width: 720px) {
  :root {
    --wrap: min(1120px, calc(100% - 48px));
    --space-section: 64px;
  }

  .nav__toggle {
    display: none;
  }

  .nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
  }

  .nav__links a {
    text-decoration: none;
    font-weight: 500;
  }

  .nav__cta {
    min-height: 40px;
    padding: 8px 20px;
  }

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

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

  .gallery__item--wide {
    grid-column: 1 / -1;
  }

  .place {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }

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

  .map iframe {
    height: 360px;
  }
}

@media (min-width: 960px) {
  .sku-photos {
    grid-template-columns: repeat(3, 1fr);
  }

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

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