@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('./assets/fonts/montserrat-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./assets/fonts/montserrat-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('./assets/fonts/montserrat-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('./assets/fonts/montserrat-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('./assets/fonts/montserrat-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('./assets/fonts/montserrat-800.woff2') format('woff2');
}

:root {
  --bg: #F3F1EB;
  --bg-alt: #EDEAE2;
  --bg-soft: #F7F5F0;
  --ink: #111110;
  --ink-2: #302d27;
  --ink-3: #4b4740;
  --ink-4: #6b675e;
  --ink-5: #918c80;
  --line: #e4e0d6;
  --line-2: #d9d4c8;
  --white: #FFFFFF;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: opacity .15s ease; }
a:hover { opacity: .65; }

p { margin: 0; }

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

/* placeholder media fallback (shown when real photo/video assets are absent) */
[data-media] { position: relative; background: repeating-linear-gradient(135deg, #e4e0d6, #e4e0d6 12px, #dad5c8 12px, #dad5c8 24px); }
[data-media]::after {
  content: attr(data-fallback-label);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: monospace; font-size: 11px; letter-spacing: .06em;
  color: #6b675e; text-transform: uppercase; pointer-events: none;
}
[data-media] img, [data-media] video { position: relative; z-index: 1; }
[data-media] img[src=""], [data-media] img:not([src]) { display: none; }
[data-media].media-missing img, [data-media].media-missing video { display: none; }

/* ===== header ===== */
.site-header {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 48px;
  background: rgba(243,241,235,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.logo { font-size: 15px; font-weight: 700; letter-spacing: .08em; }
.main-nav { display: flex; gap: 32px; font-size: 13px; letter-spacing: .04em; color: var(--ink-3); }

/* ===== section C ===== */
.section-c {
  position: relative; height: 725px; width: 100%; overflow: hidden;
  display: flex; align-items: flex-end;
}
.section-c__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.section-c__caption {
  position: relative; z-index: 2; padding: 56px;
  font-size: 10pt; font-weight: 300; color: var(--ink);
  max-width: 480px;
}

/* ===== section A — hero ===== */
.section-a { min-height: 65vh; width: 100%; padding: 36px 48px; display: flex; flex-direction: column; }
.hero { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 28px; }
.hero__title {
  margin: 0; font-size: clamp(64px, 12vw, 168px); font-weight: 700;
  letter-spacing: -0.02em; line-height: .98; position: relative;
}
.hero__airhands-row { display: inline-flex; align-items: flex-start; }
.hero__tm { font-size: 0.175em; font-weight: 700; line-height: 1; margin-left: 4px; position: relative; top: 20px; }
.hero__tagline { max-width: none; white-space: nowrap; font-size: 15px; line-height: 1.6; color: var(--ink-3); font-weight: 400; }

.search { position: relative; width: 100%; max-width: 520px; margin-top: 12px; }
.search__bar {
  display: flex; align-items: center; background: var(--white);
  border: 1px solid var(--line-2); border-radius: 999px; padding: 6px 6px 6px 22px;
}
.search__input { flex: 1; border: none; outline: none; background: transparent; font-size: 15px; font-family: inherit; color: var(--ink); }
.search__btn {
  width: 38px; height: 38px; border-radius: 50%; background: var(--ink); color: var(--bg);
  border: none; display: flex; align-items: center; justify-content: center; cursor: pointer;
  flex-shrink: 0; font-size: 15px;
}
.search__suggestions {
  position: absolute; top: 56px; left: 0; right: 0; background: var(--white);
  border: 1px solid var(--line-2); border-radius: 16px; padding: 8px;
  box-shadow: 0 12px 28px rgba(17,17,16,0.08); text-align: left; z-index: 10;
}
.search__suggestion { padding: 12px 14px; border-radius: 10px; cursor: pointer; font-size: 14px; color: var(--ink-2); }
.search__suggestion:hover { background: var(--bg); opacity: 1; }
.search__no-results { padding: 12px 14px; font-size: 14px; color: var(--ink-5); }

/* ===== section D — heritage video ===== */
.section-d {
  position: relative; height: 690px; width: 100%; overflow: hidden;
  background: var(--ink); margin-top: 132px; color: var(--white);
}
.section-d__video { position: absolute !important; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.section-d__heading {
  position: absolute; left: 23px; top: 25px; width: 260px; z-index: 2;
  font-size: clamp(22px, 3vw, 36px); font-weight: 800;
}
.section-d__body { position: absolute; left: 19px; top: 232px; width: 240px; font-size: 13px; line-height: 1.5; z-index: 2; }
.section-d__eyebrow-top { position: absolute; left: 21px; top: 474px; width: 160px; font-size: 15px; z-index: 2; }
.section-d__eyebrow-bottom { position: absolute; left: 22px; top: 602px; width: 110px; font-size: 15px; z-index: 2; }

/* ===== section B — shorts grid ===== */
.section-b { padding: 80px 48px 60px; width: 100%; }
.section-b__intro { text-align: center; margin-bottom: 44px; }
.section-b__intro h2 { margin: 0 0 14px; font-size: 35px; font-weight: 800; }
.section-b__intro p { max-width: 640px; margin: 0 auto; font-size: 13px; color: var(--ink-3); line-height: 1.6; }
.video-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 1100px; margin: 0 auto;
}
.video-cell { position: relative; aspect-ratio: 9/16; overflow: hidden; background: repeating-linear-gradient(45deg,#e4e0d6,#e4e0d6 10px,#dad5c8 10px,#dad5c8 20px); }
.video-cell video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.video-cell__play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.video-cell__play span {
  width: 42px; height: 42px; border-radius: 50%; background: rgba(17,17,16,0.55);
  display: flex; align-items: center; justify-content: center;
}
.video-cell__play span::after {
  content: ''; width: 0; height: 0; border-top: 8px solid transparent; border-bottom: 8px solid transparent;
  border-left: 13px solid var(--bg); margin-left: 3px;
}
.video-cell__label { position: absolute; bottom: 10px; left: 10px; font-family: monospace; font-size: 10px; color: var(--ink-4); letter-spacing: .04em; z-index: 1; }
.section-b__outro { max-width: 800px; margin: 40px auto 0; font-size: 13px; color: var(--ink-3); line-height: 1.6; text-align: center; }

/* ===== full-bleed video ===== */
.section-full-video { position: relative; width: 100%; aspect-ratio: 1264/720; overflow: hidden; background: var(--bg); }
.section-full-video__video { position: absolute !important; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.section-full-video__heading {
  position: absolute; left: 23px; top: 25px; width: 260px; z-index: 2;
  font-size: clamp(22px, 3vw, 36px); font-weight: 800; color: var(--ink);
}
.section-full-video__body { position: absolute; left: 19px; top: 232px; width: 240px; font-size: 13px; line-height: 1.5; color: var(--ink); z-index: 2; }
.section-full-video__eyebrow-top { position: absolute; left: 21px; top: 474px; width: 160px; font-size: 15px; color: var(--ink); z-index: 2; }
.section-full-video__eyebrow-bottom { position: absolute; left: 22px; top: 557px; width: 110px; font-size: 15px; color: var(--ink); z-index: 2; }

/* ===== section E — half/half purchase ===== */
.section-e { min-height: 100vh; width: 100%; display: flex; flex-wrap: wrap; }
.section-e__image { position: relative; flex: 1 1 480px; min-height: 480px; }
.section-e__image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.section-e__panel {
  flex: 1 1 480px; padding: 80px 64px; display: flex; flex-direction: column;
  justify-content: center; gap: 24px; background: var(--white);
}
.section-e__kicker { font-size: 13px; letter-spacing: .12em; color: var(--ink-5); margin-bottom: 10px; }
.section-e__title { font-size: 34px; font-weight: 800; margin-bottom: 8px; }
.section-e__stars { display: flex; gap: 4px; font-size: 14px; }
.section-e__stars span { color: var(--ink-5); margin-left: 6px; }
.section-e__desc { font-size: 12pt; color: var(--ink-3); line-height: 1.6; max-width: 420px; }
.section-e__sizes-label { font-size: 12px; letter-spacing: .08em; color: var(--ink-5); margin-bottom: 10px; }
.size-options { display: flex; gap: 10px; flex-wrap: wrap; }
.size-option {
  padding: 10px 20px; border-radius: 999px; font-size: 14px; cursor: pointer;
  border: 1px solid var(--ink); background: transparent; font-family: inherit; color: var(--ink);
}
.size-option:hover { opacity: .7; }
.size-option.is-selected { background: var(--ink); color: var(--bg); }
.section-e__cta {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--ink); color: var(--bg); border-radius: 14px; padding: 20px 26px; margin-top: 8px;
}
.section-e__cta span:first-child { font-size: 15px; font-weight: 600; }
.section-e__cta span:last-child { font-size: 17px; font-weight: 700; }

/* ===== accordion (shared by F / G / I) ===== */
.accordion__item { border-top: 1px solid var(--line); padding: 22px 0; max-width: 480px; }
.accordion__head {
  display: flex; justify-content: space-between; align-items: center; cursor: pointer;
  font-size: 14px; font-weight: 700; letter-spacing: .04em; background: none; border: none;
  width: 100%; text-align: left; padding: 0; font-family: inherit; color: var(--ink);
}
.accordion__body { font-size: 14px; color: var(--ink-3); line-height: 1.7; margin-top: 14px; white-space: pre-line; max-width: 640px; display: none; }
.accordion__item.is-open .accordion__body { display: block; }

/* ===== section F ===== */
.section-f { min-height: 100vh; width: 100%; display: flex; flex-wrap: wrap; }
.section-f__left { flex: 1 1 480px; background: var(--white); padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.section-f__intro { margin-bottom: 32px; max-width: 480px; }
.section-f__intro h2 { margin: 0 0 14px; font-size: 28px; font-weight: 800; }
.section-f__intro p { font-size: 13px; color: var(--ink-3); line-height: 1.6; }
.section-f__image { position: relative; flex: 1 1 480px; min-height: 640px; }
.section-f__image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.section-f__image-label { position: absolute; top: 24px; left: 24px; z-index: 1; font-family: monospace; font-size: 11px; color: var(--ink-4); }

/* ===== section G ===== */
.section-g { min-height: 100vh; width: 100%; display: flex; flex-wrap: wrap; }
.section-g__image { position: relative; flex: 1 1 480px; min-height: 640px; }
.section-g__image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.section-g__right { flex: 1 1 480px; background: var(--white); padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }

/* ===== gallery ===== */
.gallery { width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 113px; }
.gallery__tile { position: relative; aspect-ratio: 2/3; display: block; cursor: pointer; }
.gallery__tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gallery__tile[data-media]::after { font-size: 13px; }

/* ===== section H — reviews ===== */
.section-h { background: var(--white); padding: 100px 64px; }
.section-h__inner { max-width: 1200px; margin: 0 auto; }
.section-h__head { display: flex; align-items: baseline; gap: 20px; border-bottom: 1px solid var(--line); padding-bottom: 28px; margin-bottom: 40px; flex-wrap: wrap; }
.section-h__stars { font-size: 20px; }
.section-h__title { font-size: 32px; font-weight: 800; }
.section-h__count { font-size: 14px; color: var(--ink-5); }
.section-h__tools { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.section-h__search { flex: 1 1 240px; padding: 14px 18px; border-radius: 10px; border: 1px solid var(--line); background: var(--bg-soft); font-size: 14px; font-family: inherit; outline: none; }
.section-h__chip { padding: 14px 18px; border-radius: 10px; background: var(--bg-soft); font-size: 14px; color: var(--ink-3); }
.review-list { display: flex; flex-direction: column; }
.review { border-top: 1px solid var(--line); padding: 28px 0; }
.review__top { display: flex; justify-content: space-between; margin-bottom: 10px; }
.review__stars { font-size: 14px; }
.review__date { font-size: 13px; color: var(--ink-5); }
.review__name { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.review__text { font-size: 15px; color: var(--ink-2); line-height: 1.6; max-width: 760px; }

/* ===== section I — FAQ ===== */
.section-i { background: var(--white); padding: 100px 64px; border-top: 1px solid var(--line); }
.section-i__inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 64px; flex-wrap: wrap; }
.section-i__left { flex: 1 1 240px; }
.section-i__title { font-size: 28px; font-weight: 800; }
.section-i__right { flex: 2 1 480px; }

/* ===== section J — footer ===== */
.section-j { background: var(--bg-alt); padding: 100px 48px 40px; }
.section-j__banner { text-align: center; margin-bottom: 80px; font-size: clamp(22px, 3vw, 34px); line-height: 1.4; }
.section-j__banner span { font-style: italic; }
.section-j__grid { max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; border-top: 1px solid var(--line-2); padding-top: 56px; }
.footer-col { flex: 1 1 160px; display: flex; flex-direction: column; gap: 10px; font-size: 13px; color: var(--ink-4); }
.footer-col__title { font-size: 13px; font-weight: 700; margin-bottom: 4px; color: var(--ink); }
.footer-col__body { line-height: 1.7; }
.section-j__copyright { max-width: 1300px; margin: 60px auto 0; font-size: 12px; color: var(--ink-5); }

@media (max-width: 860px) {
  .site-header { padding: 16px 20px; }
  .main-nav { gap: 18px; font-size: 11px; }
  .section-a, .section-b, .section-h, .section-i { padding-left: 20px; padding-right: 20px; }
  .hero__tagline { white-space: normal; max-width: 480px; }
  .hero__tm { top: 0; }
  .section-c__caption { padding: 28px; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .section-f__left, .section-g__right { padding: 48px 28px; }
  .section-j { padding: 60px 20px 30px; }
  /* aspect-ratio makes this section too short on narrow viewports to fit the
     absolutely-positioned overlay text (it's tuned for desktop width), so give it
     a fixed height like section D instead once the screen gets narrow */
  .section-full-video { aspect-ratio: auto; height: 690px; }
}
