/* =========================================================
   VEYRA — premium fitness accessories, customized for business
   Shared design system
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,300;0,6..72,400;0,6..72,500;1,6..72,300;1,6..72,400&family=Hanken+Grotesk:wght@400;500;600;700&family=Space+Mono&display=swap');

:root {
  /* color — VEYRA 2026 house palette: Cloud Cream / Charcoal Art / Soft Powder Blue */
  --bone:      #EDE5D5;   /* cloud cream */
  --paper:     #F5F0E6;
  --paper-2:   #E7DDCB;
  --ink:       #2A292E;   /* charcoal art */
  --ink-soft:  #4A4951;
  --ink-mute:  #55545B;
  --forest:    #26252A;   /* dark section — charcoal */
  --forest-2:  #302F35;
  --clay:      #436F8A;   /* steel powder-blue — solid accent */
  --clay-deep: #2F566D;   /* deeper blue — eyebrows, links, hover */
  --powder:    #C9D8E8;   /* soft powder blue — fills & swatches */
  --image-ground: #F8F3EC; /* warm studio surface matched to product photo edges */
  --line:      rgba(42,41,46,0.14);
  --line-2:    rgba(42,41,46,0.07);
  --on-forest: #ECE4D5;   /* cream text on charcoal */

  /* type */
  --serif: 'Newsreader', Georgia, serif;
  --sans: 'Hanken Grotesk', system-ui, sans-serif;
  --mono: 'Space Mono', ui-monospace, monospace;

  /* metrics */
  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);
  --r: 4px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section { padding-block: clamp(72px, 11vw, 150px); }
.section--tight { padding-block: clamp(48px, 7vw, 90px); }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--clay-deep);
  opacity: 0.8;
}
.eyebrow--center { justify-content: center; }
.eyebrow--light { color: #A9C4DA; }
.eyebrow--light::before { background: #A9C4DA; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; margin: 0; letter-spacing: -0.01em; }

.display {
  font-size: clamp(44px, 7.4vw, 104px);
  line-height: 0.98;
  font-weight: 300;
  letter-spacing: -0.025em;
}
.h-xl { font-size: clamp(36px, 5vw, 68px); line-height: 1.02; font-weight: 300; letter-spacing: -0.02em; }
.h-lg { font-size: clamp(28px, 3.6vw, 46px); line-height: 1.06; }
.h-md { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.12; }
.serif-it { font-style: italic; font-weight: 300; }

.lead {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--ink-mute);
  max-width: 54ch;
}
.muted { color: var(--ink-mute); }
.tnum { font-variant-numeric: tabular-nums; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--ink); color: var(--paper); }
.btn--solid:hover { background: var(--forest); }
.btn--clay { background: var(--clay); color: #fff; }
.btn--clay:hover { background: var(--clay-deep); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: transparent; }
.btn--light { background: var(--on-forest); color: var(--forest); }
.btn--light:hover { background: #fff; }
.btn--lg { padding: 18px 32px; font-size: 16px; }
.btn .arr { transition: transform .25s ease; }
.btn:hover .arr { transform: translateX(4px); }

.textlink {
  font-weight: 600; font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  transition: border-color .25s ease, gap .25s ease;
}
.textlink:hover { border-color: var(--ink); gap: 12px; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bone) 86%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-2);
}
.nav__in {
  max-width: var(--maxw); margin: 0 auto;
  padding: 16px var(--gut);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  font-family: var(--serif);
  font-size: 26px; font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 11px;
}
.brand__mark {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--clay);
  display: inline-block;
}
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: 14px; font-weight: 600; color: var(--ink-mute);
  letter-spacing: 0.01em;
  transition: color .2s ease;
  position: relative;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -22px; height: 1px; background: var(--clay);
}
.nav__cta { display: flex; align-items: center; gap: 8px; }
.nav__burger {
  display: none;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid transparent;
  border-radius: var(--r);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px 0; transition: transform .3s ease, background .2s ease; }

/* ---------- footer ---------- */
.foot {
  background: var(--forest);
  color: var(--on-forest);
}
.foot a { color: var(--on-forest); }
.foot__top {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(56px,8vw,96px) var(--gut) clamp(40px,5vw,56px);
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
}
.foot__brand .brand { color: var(--on-forest); }
.foot h5 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #A9C4DA; margin: 0 0 18px; font-weight: 400;
}
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.foot ul a { font-size: 15px; color: #D5CDBC; transition: color .2s; }
.foot ul a:hover { color: #fff; }
.foot__bottom {
  border-top: 1px solid rgba(237,231,216,0.16);
}
.foot__bottom-in {
  max-width: var(--maxw); margin: 0 auto; padding: 24px var(--gut);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: #BDB5A3; font-family: var(--mono); letter-spacing: 0.03em;
}
.foot__news {
  display: flex; gap: 8px; margin-top: 18px; max-width: 320px;
}
.foot__news input {
  flex: 1; background: rgba(237,231,216,0.08); border: 1px solid rgba(237,231,216,0.2);
  color: var(--on-forest); padding: 12px 14px; border-radius: 100px; font-family: var(--sans); font-size: 14px;
}
.foot__news input::placeholder { color: #C7BEAA; }
.foot__news button {
  background: var(--clay); border: 0; color: #fff; width: 44px; border-radius: 50%; cursor: pointer; flex: 0 0 44px;
  font-size: 16px;
}

/* ---------- image placeholders ---------- */
.ph {
  position: relative;
  background-color: var(--paper-2);
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(30,28,23,0.05) 0 1px,
    transparent 1px 11px
  );
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex; align-items: flex-end;
  color: var(--ink-mute);
}
.ph__tag {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.ph__tag::before { content: "□"; opacity: 0.6; }
.ph--forest {
  background-color: var(--forest);
  background-image: repeating-linear-gradient(-45deg, rgba(237,231,216,0.06) 0 1px, transparent 1px 11px);
  border-color: rgba(237,231,216,0.18);
  color: #B7B0A0;
}

/* ---------- real product imagery ---------- */
/* product shot on a tinted panel; white studio bg melts away via multiply */
.pshot {
  position: relative;
  background-color: var(--image-ground);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.pshot[style*="background"] { background: var(--image-ground) !important; }
.pshot--cream { background-color: var(--paper); }
.pshot--bone  { background-color: var(--bone); }
.pshot img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.pshot--contain img { object-fit: contain; padding: 8%; }
/* photo cards that already have their own background (no blend) */
.pshot--photo { background: var(--ink); }
.pshot--photo img { mix-blend-mode: normal; object-fit: cover; }
/* real studio photography on a seamless backdrop — render true color, no blend, always fit fully inside the frame */
.pshot--real { background: var(--image-ground) !important; }
.pshot--real img { mix-blend-mode: normal; object-fit: contain; padding: 6%; }
.pshot--real.pshot--contain img { padding: 6%; }
.pshot--catalog-mat img,
.pshot--real.pshot--catalog-mat img { padding: 2%; transform: scale(1.16); }
.pshot--catalog-travel img,
.pshot--real.pshot--contain.pshot--catalog-travel img { padding: 3%; transform: scale(1.1); }
.pshot.pshot--lifestyle,
.pshot.pshot--lifestyle[style*="background"] { background:#DED4C9 !important; }
.pshot--lifestyle img { mix-blend-mode: normal; object-fit: cover; }

/* ---------- misc utility ---------- */
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.tag {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute); border: 1px solid var(--line); border-radius: 100px; padding: 6px 12px; display: inline-block;
}
.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}
.mini-tags span {
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 7px 10px;
}
.factline {
  color: var(--ink-mute);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.45;
  margin-top: 10px;
}
.grid { display: grid; gap: clamp(20px, 3vw, 36px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-5 { grid-template-columns: repeat(5, 1fr); }
.center { text-align: center; }
.stack-sm > * + * { margin-top: 14px; }
.stack > * + * { margin-top: 22px; }
.row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* shared closing band */
.cta-band {
  background: linear-gradient(180deg, var(--forest-2) 0%, var(--forest) 100%) !important;
  border-bottom: 1px solid rgba(237,231,216,0.14);
  box-shadow: inset 0 1px rgba(237,231,216,0.08);
}
.cta-band + .foot { border-top: 1px solid rgba(237,231,216,0.14); }

/* desktop product cards */
.product-preview-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}
.product-preview-grid .pcard { min-width: 0; }
.product-preview-grid .pcard .pshot { width: 100%; }
@media (min-width: 861px) {
  .product-preview-grid {
    gap: 32px 26px;
  }
  .product-preview-grid .pcard__row {
    display: grid;
    gap: 3px;
  }
  .product-preview-grid .pcard__row .muted {
    font-size: 12px;
  }
  .product-preview-grid .mini-tags {
    display: none;
  }
  .product-preview-grid .factline {
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: 0;
    line-height: 1.35;
    margin-top: 7px;
  }
}

/* index numbers list */
.steps { display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: 80px 1fr; gap: 28px;
  padding: 34px 0; border-top: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__no { font-family: var(--mono); font-size: 13px; color: var(--clay-deep); letter-spacing: 0.1em; padding-top: 6px; }
.step__body h3 { margin-bottom: 8px; }

/* feature cards */
.fcard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.fcard:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -28px rgba(30,28,23,0.4); }
.fcard__ic {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 13px; color: var(--clay-deep);
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .foot__top { grid-template-columns: 1fr 1fr; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cols-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav__in { gap: 12px; padding-block: 12px; }
  .brand { font-size: 24px; gap: 9px; letter-spacing: 0.12em; }
  .brand__mark { width: 10px; height: 10px; }
  .nav__links { display: none; }
  .nav__burger { display: grid; flex: 0 0 44px; }
  .nav__cta { gap: 4px; flex: 0 0 auto; }
  .nav__cta .btn--solid {
    font-size: 0;
    padding: 13px 18px;
    min-height: 46px;
  }
  .nav__cta .btn--solid::before {
    content: "Consult";
    font-size: 14px;
  }
  .nav__links.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    align-items: center;
    background: color-mix(in srgb, var(--bone) 96%, white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 40px -32px rgba(42,41,46,.45);
    padding: 18px var(--gut) 24px;
    gap: 8px;
  }
  .nav__links.open a {
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    min-height: 44px;
    padding: 4px 14px;
    width: min(100%, 260px);
  }
  .nav__links.open a[aria-current="page"]::after { display: none; }
  .nav__burger[aria-expanded="true"] span:first-child {
    transform: translateY(5.75px) rotate(45deg);
  }
  .nav__burger[aria-expanded="true"] span:last-child {
    transform: translateY(-5.75px) rotate(-45deg);
  }
  .cols-2, .cols-3 { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 8px; }
  .step__no { padding-top: 0; }
  .foot__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .foot__top { grid-template-columns: 1fr; }
  .cols-4 { grid-template-columns: 1fr; }
  .cols-5 { grid-template-columns: repeat(2, 1fr); }
  .wrap { padding-inline: 20px; }
  .section { padding-block: 68px; }
  .section--tight { padding-block: 46px; }
  .display { letter-spacing: -0.015em; }
  .btn--lg { padding-inline: 26px; }
  [data-screen-label] {
    padding-top: 34px !important;
  }
  [data-screen-label] .grid {
    gap: 18px !important;
    margin-top: 14px !important;
  }
  [data-screen-label] .lead {
    display: none;
  }
  [data-screen-label] .display {
    font-size: clamp(36px, 11vw, 48px) !important;
    max-width: 13ch;
  }
  [data-screen-label] .center .display,
  [data-screen-label] .wrap.center .display {
    margin-inline: auto;
  }
}
@media (max-width: 380px) {
  .nav__in { gap: 6px; }
  .brand { font-size: 20px; gap: 8px; letter-spacing: 0.09em; }
  .brand__mark { width: 9px; height: 9px; }
  .nav__cta .btn--solid { padding-inline: 12px; }
  .nav__burger { width: 40px; flex-basis: 40px; }
}
@media (max-width: 340px) {
  .brand { font-size: 19px; gap: 7px; letter-spacing: 0.08em; }
  .nav__cta .btn--solid {
    min-height: 44px;
    padding-inline: 11px;
  }
  .nav__cta .btn--solid::before { font-size: 13px; }
}

/* =========================================================
   House-accent system — Soft Powder Blue + Studio Pink
   Small, repeated touches of both house colors, site-wide.
   ========================================================= */
:root { --pink: #F2C4CE; --pink-soft: #F8DCE2; }
::selection { background: var(--pink); color: var(--ink); }
::-moz-selection { background: var(--pink); color: var(--ink); }

/* number / check badges alternate the two house accents */
.fcard__ic { color: var(--ink); border-color: transparent; background: var(--powder); }
.grid > .fcard:nth-child(even) .fcard__ic { background: var(--pink); }

/* small step markers pick up the pair */
.step__no { display: inline-flex; align-items: center; gap: 9px; }
.step__no::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--powder); flex: 0 0 auto;
}
.step:nth-child(even) .step__no::before { background: var(--pink); }

/* mobile nav CTA short label matches the new button name */
@media (max-width: 760px) {
  .nav__cta .btn--solid::before { content: "Collection"; }
}
