:root {
  --bg: #0a0a0a;
  --bg-quiet: #141414;
  --ink: #f5efe4;
  --ink-2: #b8b0a2;
  --ink-3: #7a7368;
  --rule: #2a2620;
  --accent: #e8ddc6;
  --serif: "Playfair Display", "Iowan Old Style", "Palatino", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1200px;
  --pad: clamp(24px, 4vw, 56px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 100%);
  transition: background 240ms ease;
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.wordmark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}
.nav { display: flex; gap: 28px; }
.nav a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: color 160ms ease;
}
.nav a:hover { color: var(--ink); }

/* FEEL SECTION — full-bleed image with scrim + overlaid content */
.feel {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.feel.hero { align-items: flex-end; }
.feel-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.scrim-hero {
  background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.85) 100%);
}
.scrim-left {
  background:
    linear-gradient(90deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.15) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0) 30%, rgba(10,10,10,0.5) 100%);
}
.scrim-right {
  background:
    linear-gradient(270deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.15) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0) 30%, rgba(10,10,10,0.5) 100%);
}
.feel-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  padding-top: clamp(120px, 16vh, 180px);
  padding-bottom: clamp(80px, 12vh, 140px);
}
.feel-inner-bottom { padding-top: clamp(140px, 22vh, 220px); padding-bottom: clamp(100px, 14vh, 160px); }
.feel-inner-right {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}
.feel-inner-right .feel-h,
.feel-inner-right .feel-credits { margin-left: auto; }
.feel-inner-right .feel-credits { text-align: right; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 0 0 24px 0;
}
.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  max-width: 20ch;
}

/* Hero display — subtle mask reveal per line */
.display .disp-line {
  display: inline-block;
  overflow: hidden;
}
.display .disp-line > span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 1100ms cubic-bezier(0.2, 0.75, 0.15, 1);
  transition-delay: var(--line-delay, 0ms);
}
.reveal.is-visible .disp-line > span { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .display .disp-line > span { transform: none; transition: none; }
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--ink-2);
  animation: cue-float 2.6s ease-in-out infinite;
}
@keyframes cue-float {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .scroll-cue { animation: none; } }

/* Shared type */
.feel-eye {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 28px 0;
  text-shadow: 0 1px 12px rgba(0,0,0,0.9);
}
.feel-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.8vw, 60px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 22ch;
  text-shadow: 0 2px 30px rgba(0,0,0,0.85);
  display: flex;
  flex-direction: column;
  gap: 0.15em;
}
.feel-mark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(44px, 6vw, 76px);
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
  margin: 0 0 0.15em 0;
}
.feel-lead { color: var(--ink); }
.feel-body { color: var(--ink-2); }
.feel-credits {
  list-style: none;
  padding: 32px 0 0 0;
  margin: 40px 0 0 0;
  border-top: 1px solid rgba(232, 221, 198, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 44ch;
}
.feel-credits li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.feel-credits.is-visible li { opacity: 1; transform: none; }
.feel-credits.is-visible li:nth-child(1) { transition-delay: 100ms; }
.feel-credits.is-visible li:nth-child(2) { transition-delay: 200ms; }
.feel-credits.is-visible li:nth-child(3) { transition-delay: 300ms; }
.feel-credits.is-visible li:nth-child(4) { transition-delay: 400ms; }
.feel-credits.is-visible li:nth-child(5) { transition-delay: 500ms; }
@media (prefers-reduced-motion: reduce) {
  .feel-credits li { opacity: 1; transform: none; }
}

@media (max-width: 720px) {
  .feel-inner-right { text-align: left; }
  .feel-inner-right .feel-credits { text-align: left; }
}

/* CUTOUT SECTIONS — transparent PNG over black */
.cutout {
  background: var(--bg);
  padding-top: clamp(100px, 14vh, 160px);
  padding-bottom: clamp(100px, 14vh, 160px);
  overflow: hidden;
}
.cutout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.cutout-grid-reverse {
  grid-template-columns: 0.85fr 1.15fr;
}
@media (max-width: 900px) {
  .cutout-grid,
  .cutout-grid-reverse {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .cutout-grid-reverse .cutout-media { order: 2; }
  .cutout-grid-reverse .cutout-copy { order: 1; }
}
.cutout-copy .feel-mark {
  color: var(--accent);
  text-shadow: none;
  margin-bottom: 0.2em;
}
.cutout-metric {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 0.6em 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4em;
}
.metric-num { color: var(--ink); font-variant-numeric: tabular-nums; }
.metric-sep { color: var(--ink-3); font-weight: 400; }
.cutout-lede {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.4;
  color: var(--ink-2);
  margin: 0;
  max-width: 32ch;
}
.cutout-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(360px, 60vh, 640px);
}
.cutout-img {
  max-width: 100%;
  max-height: clamp(400px, 70vh, 700px);
  object-fit: contain;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.6));
}
.cutout-img-polo { max-height: clamp(420px, 72vh, 720px); }
.cutout-img-rack { max-height: clamp(440px, 74vh, 740px); }

/* Reveal for the cutout image — subtle scale-up + fade + gentle scroll parallax */
.reveal-media {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 1400ms cubic-bezier(0.2, 0.7, 0.2, 1),
              transform 1400ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform, opacity;
}
.reveal-media.is-visible { opacity: 1; transform: translateY(0) scale(1); }
@media (prefers-reduced-motion: reduce) {
  .reveal-media { opacity: 1; transform: none; transition: none; }
}

/* RAILS */
.rails {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--bg-quiet);
  padding-top: clamp(100px, 14vh, 180px);
  padding-bottom: clamp(100px, 14vh, 180px);
}
.rails-inner { max-width: 900px; }

/* ASK */
.ask {
  padding-top: clamp(80px, 12vw, 140px);
  padding-bottom: clamp(80px, 12vw, 140px);
}
.ask-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 96px);
}
@media (max-width: 720px) {
  .ask-grid { grid-template-columns: 1fr; gap: 48px; }
}
.ask-col { display: flex; flex-direction: column; gap: 16px; }
.ask-eye {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0;
}
.ask-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
  max-width: 24ch;
}

/* CLOSING */
.closing {
  padding-top: clamp(100px, 16vw, 180px);
  padding-bottom: clamp(60px, 10vw, 100px);
  text-align: center;
  border-top: 1px solid var(--rule);
}
.closing-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.closing-eye {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--ink-2);
  margin: 0;
}
.closing-cta {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 240ms ease;
  letter-spacing: -0.01em;
}
.closing-cta:hover { border-bottom-color: var(--accent); }
.closing-fine {
  margin-top: 24px;
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--rule);
  padding-top: 28px;
  padding-bottom: 28px;
  background: var(--bg);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-mark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}
.footer-note {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}

/* REVEAL — base */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 900ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
