/* ==========================================================================
   VELNOR7 — Design System
   Crafted for Cold.
   ========================================================================== */

:root {
  /* Colour — sampled from the brand posters and woven label */
  --bone:      #F4F0E8;   /* page ground */
  --cream:     #FBF9F5;   /* raised panels, cards */
  --ink:       #1C2430;   /* wordmark, headings, body */
  --gold:      #B08D57;   /* accent, rules, decorative marks */
  --gold-deep: #96733F;   /* gold carrying small text (AA safe on bone) */
  --forest:    #3E4A3A;   /* secondary accent */
  --charcoal:  #2B2E33;   /* footer ground */
  --muted:     #6B6F76;   /* secondary text */
  --hairline:  #E2DCD1;   /* rules and dividers */

  /* Type */
  --display: 'Playfair Display', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans:    'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Tracking */
  --track-wordmark: 0.34em;
  --track-label:    0.18em;

  /* Rhythm */
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4rem, 11vw, 9rem);
  --measure: 46ch;
}

/* --- Reset ------------------------------------------------------------- */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

h1, h2, h3 { margin: 0; font-weight: 400; line-height: 1.15; }

p { margin: 0; }

/* --- Shared layout ----------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.center { text-align: center; }

/* --- Brand lockup ------------------------------------------------------ */

.emblem {
  width: clamp(76px, 11vw, 116px);
  margin-inline: auto;
}

.wordmark {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.1rem, 1rem + 5.4vw, 4.6rem);
  letter-spacing: var(--track-wordmark);
  /* lining figures: the 7 must sit on the cap line, as on the brand poster */
  font-variant-numeric: lining-nums;
  font-feature-settings: 'lnum' 1;
  /* compensate for trailing letter-space so the word sits optically centred */
  text-indent: var(--track-wordmark);
  color: var(--ink);
  margin-top: clamp(1rem, 2.2vw, 1.75rem);
}

/* --- Snowflake divider (from the posters) ------------------------------ */

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin: clamp(1rem, 2.4vw, 1.6rem) auto;
  width: min(20rem, 72vw);
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.divider svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex: none;
}

/* --- Micro label ------------------------------------------------------- */

.label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--gold-deep);
}

.tagline {
  font-size: clamp(0.72rem, 0.66rem + 0.28vw, 0.9rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* --- Hero -------------------------------------------------------------- */

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(3rem, 9vw, 6rem) var(--gutter);
  background:
    radial-gradient(120% 85% at 50% 0%, #FFFFFF 0%, rgba(255,255,255,0) 62%),
    var(--bone);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: clamp(2rem, 4.5vw, 3.25rem);
  padding: 0.5rem 1.15rem;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--cream);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--muted);
}

.status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

.launching {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.4rem, 1rem + 7vw, 5.75rem);
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-top: clamp(0.75rem, 2vw, 1.25rem);
}

.lede {
  max-width: var(--measure);
  margin: clamp(1.25rem, 3vw, 2rem) auto 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.075rem);
}

.signature {
  margin-top: 1.4rem;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
  color: var(--ink);
}

.scroll-cue {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  font-size: 0.66rem;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  display: inline-block;
}

.scroll-cue:hover { color: var(--gold-deep); }

/* --- Section scaffolding ----------------------------------------------- */

.section { padding-block: var(--section-y); }

.section-head { text-align: center; margin-bottom: clamp(2.5rem, 6vw, 4rem); }

.section-title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 1.1rem + 2.2vw, 2.7rem);
  margin-top: 0.6rem;
}

/* --- Product preview grid ---------------------------------------------- */

.grid {
  display: grid;
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  grid-template-columns: 1fr;
}

@media (min-width: 40rem)  { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem)  { .grid { grid-template-columns: repeat(3, 1fr); } }

.card { display: flex; flex-direction: column; }

.card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--hairline);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.card:hover .card-media img { transform: scale(1.035); }

.card-line {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  padding: 0.3rem 0.7rem;
  background: rgba(251, 249, 245, 0.92);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--ink);
}

.card-body { padding-top: 1.15rem; }

.card-name {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}

.card-note {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.card-price {
  margin-top: 0.6rem;
  font-size: 0.68rem;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* --- Pillars ----------------------------------------------------------- */

.pillars {
  background: var(--cream);
  border-block: 1px solid var(--hairline);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  text-align: center;
}

@media (min-width: 52rem) { .pillar-grid { grid-template-columns: repeat(4, 1fr); } }

.pillar-mark {
  color: var(--gold);
  display: flex;
  justify-content: center;
}

.pillar-mark svg { width: 30px; height: 30px; }

.pillar-name {
  margin-top: 0.85rem;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
}

.pillar-note {
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: var(--muted);
}

/* --- Story ------------------------------------------------------------- */

.story-body {
  max-width: 58ch;
  margin-inline: auto;
  text-align: center;
  color: var(--muted);
}

.story-body p + p { margin-top: 1.1rem; }

.meaning {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  margin-top: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}

@media (min-width: 46rem) { .meaning { grid-template-columns: repeat(3, 1fr); } }

.meaning-key {
  font-family: var(--display);
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem);
  color: var(--gold);
  letter-spacing: 0.1em;
}

.meaning-note {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* --- Footer ------------------------------------------------------------ */

.site-footer {
  background: var(--charcoal);
  color: var(--bone);
  padding-block: clamp(3.5rem, 8vw, 6rem);
  text-align: center;
}

.site-footer .emblem { width: clamp(52px, 6vw, 68px); }

.footer-word {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.2rem, 1rem + 1.2vw, 1.7rem);
  letter-spacing: var(--track-wordmark);
  text-indent: var(--track-wordmark);
  font-variant-numeric: lining-nums;
  font-feature-settings: 'lnum' 1;
  margin-top: 1rem;
}

.footer-tagline {
  margin-top: 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-contact {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--bone);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.2rem;
  border-bottom: 1px solid transparent;
  transition: border-color 220ms ease, color 220ms ease;
}

.footer-link:hover,
.footer-link:focus-visible { color: #FFFFFF; border-bottom-color: var(--gold); }

.footer-pending {
  font-size: 0.78rem;
  color: rgba(244, 240, 232, 0.55);
  font-style: italic;
}

.footer-rule {
  width: min(320px, 60%);
  height: 1px;
  background: rgba(244, 240, 232, 0.18);
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  border: 0;
}

.colophon {
  margin-top: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: rgba(244, 240, 232, 0.5);
}

/* --- Focus ------------------------------------------------------------- */

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* --- Print ------------------------------------------------------------- */

@media print {
  .hero { min-height: auto; }
  .scroll-cue { display: none; }
}
