:root {
  --cream: #FAF8F5;
  --band: #E7E1D7;
  --ink: #1C1714;
  --maroon: #8B2E2E;
  --tan: #C98B6B;
  --muted: #A79C8D;
  --body: #6B6155;
  --body-dark: #4A4038;
  --tone-1: #E2DCD2;
  --tone-2: #EBE7E0;
  --tone-3: #DCD5CA;
  --tone-4: #F0ECE6;
  --tone-5: #E6E0D6;
  --rule: rgba(28, 23, 20, .12);
  --rule-soft: rgba(28, 23, 20, .08);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Instrument Sans', system-ui, sans-serif;
  --pad: 44px;
  --noise: url('data:image/svg+xml,%3Csvg viewBox=%220 0 256 256%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cfilter id=%22n%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.9%22 numOctaves=%224%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23n)%22 opacity=%220.15%22/%3E%3C/svg%3E');
  /* The brand separator is drawn, not typed. U+2733 has emoji presentation by
     default and neither brand font carries it, so iOS renders it as a green
     Apple Color Emoji tile. A mask is deterministic on every platform. */
  --star: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22%3E%3Cg stroke=%22%23000%22 stroke-width=%2211%22 stroke-linecap=%22round%22%3E%3Cline x1=%2250%22 y1=%228%22 x2=%2250%22 y2=%2292%22/%3E%3Cline x1=%228%22 y1=%2250%22 x2=%2292%22 y2=%2250%22/%3E%3Cline x1=%2220%22 y1=%2220%22 x2=%2280%22 y2=%2280%22/%3E%3Cline x1=%2280%22 y1=%2220%22 x2=%2220%22 y2=%2280%22/%3E%3C/g%3E%3C/svg%3E');
}

.star {
  display: inline-block;
  width: .68em;
  height: .68em;
  vertical-align: -.08em;
  background: var(--maroon);
  -webkit-mask: var(--star) center / contain no-repeat;
  mask: var(--star) center / contain no-repeat;
  flex-shrink: 0;
  /* Both bars are flex containers, so vertical-align is ignored and the star
     would pin to the top of the line. Baseline alignment puts its bottom edge
     on the text baseline, matching how the original glyph sat. */
  align-self: baseline;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

@keyframes grain {
  0%   { transform: translate(0, 0); }
  10%  { transform: translate(-2%, -2%); }
  20%  { transform: translate(3%, 1%); }
  30%  { transform: translate(-1%, 3%); }
  40%  { transform: translate(2%, -1%); }
  50%  { transform: translate(-3%, 2%); }
  60%  { transform: translate(1%, -3%); }
  70%  { transform: translate(-2%, 1%); }
  80%  { transform: translate(3%, -2%); }
  90%  { transform: translate(-1%, 3%); }
  100% { transform: translate(0, 0); }
}
@keyframes ticker    { 0% { transform: translateX(0); }    100% { transform: translateX(-50%); } }
@keyframes marquee   { 0% { transform: translateX(0); }    100% { transform: translateX(-50%); } }
@keyframes flowLeft  { 0% { transform: translateX(0); }    100% { transform: translateX(-50%); } }
@keyframes flowRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
@keyframes heroRise { 0% { opacity: 0; transform: translateY(40px); } 55% { opacity: 1; } 100% { opacity: 1; transform: translateY(0); } }
@keyframes heroClip { 0% { clip-path: inset(0 100% 0 0); } 100% { clip-path: inset(0 0 0 0); } }
@keyframes ruleGrow { 0% { width: 0; } 100% { width: 44px; } }
@keyframes fadeUp   { 0% { opacity: 0; transform: translateY(16px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes drift    { 0%, 100% { transform: rotateX(7deg) rotateY(-8deg); } 50% { transform: rotateX(1deg) rotateY(7deg); } }
@keyframes swing    { 0%, 100% { transform: rotate(-4deg); } 50% { transform: rotate(4deg); } }

.grain {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: var(--noise);
  opacity: .42;
  pointer-events: none;
  animation: grain 8s steps(10) infinite;
}
.grain-still {
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  opacity: .35;
  pointer-events: none;
}

.img {
  position: relative;
  background-color: var(--tone, var(--tone-1));
  background-image: var(--src, none);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.img::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 26px;
  transform: translate(-50%, -50%);
  background: var(--maroon);
  -webkit-mask: var(--star) center / contain no-repeat;
  mask: var(--star) center / contain no-repeat;
  opacity: .16;
  pointer-events: none;
}
.img[style*='--src']::after { content: none; }
/* Full-bleed areas carry headline copy over them — the placeholder mark reads
   as an artifact behind the type, so it only appears on product frames. */
.hero__img::after,
.campaign__img::after,
.era__img::after,
.editorial__frame::after { content: none; }
.img-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(196, 142, 96, .12), rgba(139, 46, 46, .08));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.yearbar {
  background: var(--band);
  /* No top padding: the row is tipped back from its bottom edge, so the
     visible digits sit lower than their line box and the band reads
     bottom-heavy with any leading above. */
  padding: 0 0 14px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(28, 23, 20, .1);
}
.yearbar__stage { position: relative; z-index: 1; perspective: 700px; }
.yearbar__clip  { overflow: hidden; transform: rotateX(28deg); transform-origin: center bottom; }
.yearbar__run {
  display: flex;
  gap: 44px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  font: 400 52px/1.35 var(--serif);
  color: var(--ink);
  text-shadow: 0 3px 0 rgba(250, 248, 245, .9), 0 5px 10px rgba(28, 23, 20, .2);
}
/* Flex baseline alignment does not settle these against 52px lining figures,
   so the separator is nudged onto the digits' optical centre. */
.yearbar__run .star { transform: translateY(.34em); }
.yearbar__run .it { font-style: italic; }

.announce {
  padding: 12px var(--pad);
  background: var(--ink);
  display: flex;
  justify-content: center;
  gap: 28px;
  font: 500 10px/1 var(--sans);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, .72);
  flex-wrap: wrap;
}
.announce .star { color: var(--maroon); }

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px var(--pad);
  background: var(--cream);
  border-bottom: 1px solid var(--rule-soft);
  gap: 20px;
}
.nav__group {
  display: flex;
  gap: 30px;
  font: 500 12px/1 var(--sans);
  letter-spacing: .13em;
  text-transform: uppercase;
}
.nav__group a { padding-bottom: 3px; border-bottom: 1px solid transparent; transition: border-color .2s ease; }
.nav__group a:hover { border-bottom-color: var(--ink); }
.nav__group a[aria-current='page'] { border-bottom-color: var(--ink); }

.mark { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.mark__letters { display: flex; align-items: baseline; font: 400 44px/1 var(--serif); color: var(--ink); }
.mark__letters .s { position: relative; z-index: 3; }
.mark__letters .l { position: relative; z-index: 2; margin-left: -.16em; color: var(--maroon); font-style: italic; }
.mark__letters .v { position: relative; z-index: 1; margin-left: -.1em; }
.mark__word {
  font: 500 9px/1 var(--sans);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink);
  padding-left: .28em;
}

.section { padding: 72px var(--pad) 64px; background: var(--cream); position: relative; }
.section__inner { position: relative; z-index: 1; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 16px;
  flex-wrap: wrap;
}
.section-head__titles { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.section-head h1, .section-head h2 { font: 400 34px/1 var(--serif); color: var(--ink); margin: 0; }
.section-head__note {
  font: 500 11px/1 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.viewall {
  font: 500 12px/1 var(--sans);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--maroon);
  border-bottom: 1px solid rgba(139, 46, 46, .4);
  padding-bottom: 3px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font: 500 11px/1 var(--sans);
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--maroon);
}
.eyebrow::before { content: ''; width: 44px; height: 1px; background: var(--maroon); animation: ruleGrow 1s .2s cubic-bezier(.22, .61, .36, 1) both; }

.btn {
  display: inline-block;
  font: 500 12px/1 var(--sans);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--ink);
  padding: 17px 40px;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease;
}
.btn:hover { background: var(--maroon); border-color: var(--maroon); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--block { width: 100%; text-align: center; }
.underlink {
  font: 500 12px/1 var(--sans);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 4px;
}

.grid { display: grid; gap: 22px; align-items: start; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card { display: flex; flex-direction: column; gap: 12px; transition: transform .35s ease; }
.card:hover { transform: translateY(-5px); }
.card__frame {
  aspect-ratio: 3/4;
  border: 1px solid rgba(28, 23, 20, .1);
  box-shadow: inset 0 0 0 5px rgba(250, 248, 245, .5);
  position: relative;
  overflow: hidden;
}
.card__quick {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 11px;
  background: rgba(28, 23, 20, .88);
  font: 500 10px/1 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream);
  text-align: center;
  transform: translateY(100%);
  transition: transform .3s ease;
  z-index: 2;
}
.card:hover .card__quick { transform: translateY(0); }
.card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font: 500 9px/1 var(--sans);
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 6px 9px;
  background: rgba(250, 248, 245, .92);
  color: var(--ink);
}
.card__tag--rare { background: var(--maroon); color: var(--cream); }
.card__meta { display: flex; justify-content: space-between; gap: 10px; align-items: flex-start; }
.card__name { font: 400 14px/1.35 var(--sans); color: var(--ink); margin-bottom: 4px; }
.card__prov { font: 400 11px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.card__price { font: 500 13px/1 var(--sans); letter-spacing: .06em; color: var(--maroon); white-space: nowrap; }
.card--feature .card__name { font: 400 20px/1.3 var(--serif); margin-bottom: 5px; }
.card--feature .card__prov { font-size: 12px; }
.card--feature .card__price { font-size: 15px; }
.card--drop { margin-top: 34px; }

.campaign {
  position: relative;
  background: var(--tone-3);
  height: 520px;
}
/* The photo and grain are clipped to the band, but the card deliberately
   overhangs its bottom edge — so the clipping lives on the media, not the
   section, or the card gets cut off. */
.campaign__media { position: absolute; inset: 0; overflow: hidden; }
.campaign__img { position: absolute; inset: 0; }
.campaign__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(196, 142, 96, .16), rgba(28, 23, 20, .24));
  mix-blend-mode: multiply;
  pointer-events: none;
}
.campaign__card {
  position: absolute;
  left: var(--pad);
  bottom: -52px;
  z-index: 2;
  background: var(--cream);
  padding: 38px 42px;
  max-width: 380px;
  border: 1px solid rgba(28, 23, 20, .1);
  box-shadow: 0 18px 40px rgba(28, 23, 20, .12);
}
.campaign__kicker { font: italic 400 13px/1 var(--serif); color: var(--maroon); letter-spacing: .06em; margin-bottom: 14px; }
.campaign__head { font: 400 34px/1.12 var(--serif); margin-bottom: 14px; }
.campaign__text { font: 400 13px/1.65 var(--sans); color: var(--body); margin-bottom: 20px; }

.driftband { overflow: hidden; }
.driftrow {
  display: flex;
  gap: 20px;
  align-items: center;
  width: max-content;
}
.driftrow:hover { animation-play-state: paused; }
.driftcard {
  position: relative;
  flex-shrink: 0;
  border: 1px solid rgba(28, 23, 20, .1);
  box-shadow: inset 0 0 0 5px rgba(250, 248, 245, .5);
  background-color: var(--tone, var(--tone-1));
}
.driftcard .img { position: absolute; inset: 0; }

.shoprow { display: flex; gap: 22px; width: max-content; }
.shoprow:hover { animation-play-state: paused; }
.shopcard { flex-shrink: 0; width: 224px; display: flex; flex-direction: column; gap: 12px; }
.shopcard__frame {
  position: relative;
  width: 224px;
  height: 298px;
  border: 1px solid rgba(28, 23, 20, .1);
  box-shadow: inset 0 0 0 5px rgba(250, 248, 245, .5);
  background-color: var(--tone, var(--tone-1));
}

.footer { background: var(--ink); padding: 64px var(--pad) 32px; color: var(--cream); }
.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250, 248, 245, .14);
}
.footer__blurb { max-width: 400px; }
.footer__mark { display: flex; align-items: baseline; font: 400 84px/1 var(--serif); margin-bottom: 16px; }
.footer__mark .s { position: relative; z-index: 3; }
.footer__mark .l { position: relative; z-index: 2; margin-left: -.16em; color: var(--maroon); font-style: italic; }
.footer__mark .v { position: relative; z-index: 1; margin-left: -.1em; }
.footer__word {
  font: 500 9px/1 var(--sans);
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, .7);
  margin-bottom: 14px;
  padding-left: .32em;
}
.footer__text { font: 400 13px/1.7 var(--sans); color: rgba(250, 248, 245, .6); }
.footer__cols { display: flex; flex-wrap: wrap; gap: 44px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__label {
  font: 500 10px/1 var(--sans);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, .45);
  margin-bottom: 4px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; font: 400 13px/1 var(--sans); color: rgba(250, 248, 245, .82); white-space: nowrap; }
.footer__seal {
  width: 112px;
  height: 112px;
  border: 1px solid rgba(201, 139, 107, .5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  font: 500 8px/1.8 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--tan);
}
.footer__base {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font: 400 11px/1 var(--sans);
  letter-spacing: .08em;
  color: rgba(250, 248, 245, .4);
  gap: 20px;
  flex-wrap: wrap;
}

.signup { padding: 64px var(--pad); background: var(--band); position: relative; overflow: hidden; }
.signup__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.signup__head { font: italic 400 40px/1.15 var(--serif); margin-bottom: 10px; }
.signup__sub { font: 400 14px/1.6 var(--sans); color: var(--body); max-width: 440px; }
.signup__form { display: flex; width: 440px; max-width: 100%; border: 1.5px solid var(--ink); background: var(--cream); }
.signup__form input {
  flex: 1;
  min-width: 0;
  padding: 16px 18px;
  font: 400 13px/1 var(--sans);
  color: var(--ink);
  border: 0;
  background: transparent;
  outline: none;
}
.signup__form input::placeholder { color: var(--muted); }
.signup__form button {
  padding: 16px 26px;
  background: var(--ink);
  font: 500 11px/1 var(--sans);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream);
  border: 0;
  cursor: pointer;
  transition: background .25s ease;
}
.signup__form button:hover { background: var(--maroon); }

.notice {
  font: 400 12px/1.6 var(--sans);
  color: var(--body);
  background: rgba(139, 46, 46, .07);
  border-left: 2px solid var(--maroon);
  padding: 12px 14px;
  margin-top: 14px;
}
.notice[hidden] { display: none; }

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

@media (max-width: 1100px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .signup__inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 860px) {
  :root { --pad: 22px; }
  .campaign { height: 420px; }
  .campaign__card { right: var(--pad); max-width: none; padding: 28px 24px; }

  /* Stack the nav with the mark centred on its own row. Wrapping a
     space-between row just pushed the logo to one side. */
  .nav {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 18px var(--pad);
  }
  .nav .mark { order: -1; }
  .nav__group { width: 100%; justify-content: center; gap: 22px; font-size: 11px; }
  .grid--3 { grid-template-columns: 1fr; }
  .card--drop { margin-top: 0; }
  .yearbar__run { font-size: 34px; gap: 28px; }
  .section-head h1, .section-head h2 { font-size: 26px; }
  .footer__mark { font-size: 60px; }
  .signup__head { font-size: 28px; }
}

@media (max-width: 640px) {
  /* Three short centred lines reads as intentional; a wrapped row leaves
     separators stranded at the ends. */
  .announce {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 12px var(--pad);
    font-size: 9px;
    letter-spacing: .2em;
  }
  .announce .star { display: none; }
}

@media (max-width: 560px) {
  .grid--4 { grid-template-columns: 1fr; }
}

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