/* ============================================================
   HERO
   Split layout: type on the left, the watch carrying the right.
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(170deg, var(--c-ice-deep) 0%, var(--c-ice) 45%, var(--c-white) 100%);
  border-bottom: 1px solid var(--c-line);
  overflow: hidden;
}
/* A single soft bloom behind the product; no neon, no glow stack */
.hero::before {
  content: ''; position: absolute; top: -18%; right: -6%;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(11,125,179,.09) 0%, rgba(11,125,179,0) 68%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid; grid-template-columns: 1fr 1.05fr;
  align-items: center; gap: var(--s-8);
  padding-block: clamp(48px, 5vw, 92px);
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-3);
  font-size: var(--t-xs); font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--c-navy);
  padding: 7px 14px; background: rgba(255,255,255,.8);
  border: 1px solid #CFE6F2; border-radius: 100px;
  margin-bottom: var(--s-5);
}
.hero__eyebrow::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--c-navy);
}
.hero__title {
  font-family: var(--f-display);
  font-size: var(--t-3xl); font-weight: 800; line-height: 1.04;
  letter-spacing: -.025em; margin-bottom: var(--s-5);
}
.hero__title em { font-style: normal; color: var(--c-navy-deep); }
.hero__lede {
  font-size: var(--t-md); color: var(--c-ink-soft);
  max-width: 46ch; margin-bottom: var(--s-6); line-height: 1.65;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-7); }

/* Facts, each one backed by the catalogue rather than invented */
.hero__facts {
  display: grid; grid-template-columns: repeat(3, auto); gap: var(--s-6);
  justify-content: start; padding-top: var(--s-5);
  border-top: 1px solid var(--c-line);
}
.hero__fact-n {
  font-family: var(--f-display); font-size: var(--t-xl); font-weight: 600;
  color: var(--c-ink); line-height: 1; font-variant-numeric: tabular-nums;
}
.hero__fact-l {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-ink-soft); margin-top: 5px;
}

/* --- Hero media --- */
.hero__media { position: relative; }
.hero-slider { display: grid; }
.hero-slider > .hero-slide { grid-area: 1 / 1; }
.hero__shot {
  position: relative; aspect-ratio: 4/3.4;
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--c-white); box-shadow: var(--sh-3);
  border: 1px solid var(--c-line);
}
.hero__shot img { width: 100%; height: 100%; object-fit: contain; padding: var(--s-6); }

/* A floating spec card so the hero has a second layer of information */
.hero__chip {
  position: absolute; bottom: var(--s-5); left: calc(var(--s-5) * -1);
  background: var(--c-white); border: 1px solid var(--c-line);
  border-radius: var(--r); box-shadow: var(--sh-3);
  padding: var(--s-3) var(--s-4);
  display: flex; align-items: center; gap: var(--s-3);
  max-width: 240px;
}
.hero__chip-icon {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  background: var(--c-ice-deep); color: var(--c-navy-deep);
  display: inline-flex; align-items: center; justify-content: center;
}
.hero__chip-icon svg { width: 17px; height: 17px; }
.hero__chip-t { font-size: var(--t-sm); font-weight: 700; line-height: 1.2; }
.hero__chip-s { font-size: 11px; color: var(--c-ink-soft); }

/* --- Hero slider: several featured watches, auto-rotating --- */
.hero-slide {
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .5s var(--ease);
}
.hero-slide.is-active {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.hero-slider__dots {
  display: flex; gap: var(--s-2); justify-content: center;
  margin-top: var(--s-5);
}
.hero-slider__dot {
  width: 8px; height: 8px; border-radius: 50%; padding: 0;
  background: var(--c-line); border: none; cursor: pointer;
  transition: background-color .2s var(--ease), transform .2s var(--ease);
}
.hero-slider__dot.is-active { background: var(--c-navy-deep); transform: scale(1.2); }

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--s-7); padding-block: var(--s-7); }
  .hero__media { order: -1; }
  .hero__shot { aspect-ratio: 4/3; }
  .hero__chip { left: var(--s-4); bottom: var(--s-4); }
  .hero__facts { gap: var(--s-5); }
}
@media (max-width: 520px) {
  .hero__cta .btn { flex: 1; }
  .hero__facts { grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
  .hero__fact-l { font-size: 10px; letter-spacing: .06em; }
  .hero__chip { display: none; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  border-bottom: 1px solid var(--c-line);
  background: var(--c-white);
}
.trust-strip__inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding-block: var(--s-5);
}
.trust-item {
  display: flex; align-items: center; gap: var(--s-3);
  padding-inline: var(--s-5);
}
.trust-item + .trust-item { border-left: 1px solid var(--c-line-soft); }
.trust-item__icon {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  background: var(--c-ice); color: var(--c-navy-deep);
  display: inline-flex; align-items: center; justify-content: center;
}
.trust-item__icon svg { width: 18px; height: 18px; }
.trust-item__t { font-size: var(--t-sm); font-weight: 700; line-height: 1.25; }
.trust-item__s { font-size: 11.5px; color: var(--c-ink-soft); line-height: 1.4; }

@media (max-width: 900px) {
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
  .trust-item { padding-inline: var(--s-3); }
  .trust-item:nth-child(odd) { border-left: 0; }
  .trust-item:nth-child(n+3) { border-top: 1px solid var(--c-line-soft); padding-top: var(--s-4); }
}
@media (max-width: 480px) {
  .trust-item__icon { width: 32px; height: 32px; }
  .trust-item__s { display: none; }
}

/* ============================================================
   COLLECTIONS — mixed card sizes, per the brief
   ============================================================ */
.coll-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: var(--s-4);
}
.coll-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg); border: 1px solid var(--c-line);
  background: var(--c-white);
  display: flex; flex-direction: column;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.coll-card:hover { box-shadow: var(--sh-3); transform: translateY(-2px); border-color: #CFE0E9; }

/* The two hero tiles anchor the grid */
.coll-card--xl { grid-column: span 2; grid-row: span 2; }
.coll-card--wide { grid-column: span 2; }

.coll-card__frame {
  position: relative; flex: 1; min-height: 0;
  background: var(--c-ice);
  display: flex; align-items: center; justify-content: center;
  padding: var(--s-4);
}
.coll-card__img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform .5s var(--ease);
}
.coll-card:hover .coll-card__img { transform: scale(1.04); }
.coll-card__n {
  position: absolute; top: var(--s-3); left: var(--s-3); z-index: 2;
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 700; color: var(--c-ink);
  background: var(--c-white); border: 1px solid var(--c-line);
  border-radius: 999px; padding: 4px 10px;
}
.coll-card__in { position: relative; padding: var(--s-4) var(--s-5) var(--s-5); }
.coll-card__t {
  font-family: var(--f-display); font-weight: 700;
  font-size: var(--t-lg); line-height: 1.15; margin-bottom: 4px;
  color: var(--c-ink);
}
.coll-card--xl .coll-card__t { font-size: var(--t-xl); }
.coll-card__d {
  font-size: var(--t-sm); color: var(--c-ink-soft); line-height: 1.5;
  max-width: 34ch;
  /* Only the large tiles have room for a description */
  display: none;
}
.coll-card--xl .coll-card__d, .coll-card--wide .coll-card__d { display: block; margin-bottom: var(--s-2); }
.coll-card__go {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: var(--t-xs); font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; margin-top: var(--s-2); color: var(--c-navy-deep);
  opacity: 0; transform: translateY(4px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.coll-card:hover .coll-card__go { opacity: 1; transform: none; }
@media (hover: none) { .coll-card__go { opacity: 1; transform: none; } }

@media (max-width: 1024px) {
  .coll-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .coll-card--xl { grid-column: span 2; grid-row: span 1; min-height: 320px; }
}
@media (max-width: 560px) {
  .coll-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; gap: var(--s-3); }
  .coll-card--xl, .coll-card--wide { grid-column: span 1; }
  .coll-card__d { display: none !important; }
}

/* ============================================================
   EDITORIAL
   ============================================================ */
.editorial { display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: var(--s-9); }
.editorial--flip .editorial__media { order: 2; }
.editorial__media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/3.2; background: var(--c-ice); box-shadow: var(--sh-2);
}
.editorial__media img { width: 100%; height: 100%; object-fit: cover; }
.editorial__title {
  font-family: var(--f-display); font-size: var(--t-2xl); font-weight: 500;
  line-height: 1.1; margin-bottom: var(--s-4);
}
.editorial__text { color: var(--c-ink-soft); line-height: 1.7; margin-bottom: var(--s-5); max-width: 52ch; }
.editorial__points { display: flex; flex-direction: column; gap: var(--s-4); margin-bottom: var(--s-6); }
.editorial__point { display: flex; gap: var(--s-4); align-items: flex-start; }
.editorial__point-n {
  font-family: var(--f-display); font-size: var(--t-lg); color: var(--c-navy);
  line-height: 1; flex: none; width: 30px; font-variant-numeric: tabular-nums;
}
.editorial__point-t { font-size: var(--t-base); font-weight: 700; margin-bottom: 2px; }
.editorial__point-d { font-size: var(--t-sm); color: var(--c-ink-soft); line-height: 1.55; }

@media (max-width: 900px) {
  .editorial { grid-template-columns: 1fr; gap: var(--s-6); }
  .editorial--flip .editorial__media { order: 0; }
  .editorial__media { aspect-ratio: 16/10; }
}

/* ============================================================
   SHOP BY STYLE
   ============================================================ */
.style-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--s-3); }
.style-card {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  border-radius: var(--r-lg); border: 1px solid var(--c-line);
  display: flex; align-items: flex-end; padding: var(--s-4);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.style-card:hover { box-shadow: var(--sh-3); transform: translateY(-3px); }
.style-card__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.style-card:hover .style-card__bg { transform: scale(1.06); }
.style-card__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,30,42,.8) 0%, rgba(12,30,42,.2) 55%, transparent 100%);
}
.style-card__in { position: relative; z-index: 2; color: #fff; }
.style-card__t {
  font-size: var(--t-sm); font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.style-card__n { font-size: 11px; opacity: .8; margin-top: 2px; }

@media (max-width: 1024px) { .style-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .style-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-3); } }

/* ============================================================
   FEATURES — only attributes the catalogue can prove
   ============================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
.feat-card {
  background: var(--c-white); border: 1px solid var(--c-line);
  border-radius: var(--r-lg); padding: var(--s-6) var(--s-5);
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), transform .22s var(--ease);
}
.feat-card:hover { border-color: #CFE0E9; box-shadow: var(--sh-2); transform: translateY(-2px); }
.feat-card__icon {
  width: 46px; height: 46px; border-radius: var(--r);
  background: var(--c-ice-deep); color: var(--c-navy-deep);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: var(--s-4);
}
.feat-card__icon svg { width: 22px; height: 22px; }
.feat-card__t { font-size: var(--t-base); font-weight: 700; margin-bottom: 6px; }
.feat-card__d { font-size: var(--t-sm); color: var(--c-ink-soft); line-height: 1.6; }

@media (max-width: 900px) { .feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .feat-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SIZE GUIDE
   ============================================================ */
.size-wrap { display: grid; grid-template-columns: 1fr 1.25fr; gap: var(--s-8); align-items: center; }
.size-row { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.size-pill {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 92px; padding: var(--s-4) var(--s-3);
  background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--r);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.size-pill:hover {
  border-color: var(--c-navy); box-shadow: 0 0 0 3px rgba(11,125,179,.09);
  transform: translateY(-2px);
}
.size-pill__n { font-family: var(--f-display); font-size: var(--t-lg); font-weight: 600; line-height: 1; }
.size-pill__c { font-size: 11px; color: var(--c-ink-soft); margin-top: 4px; }
.size-note {
  background: var(--c-white); border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-navy);
  border-radius: var(--r); padding: var(--s-5);
}
.size-note__t { font-size: var(--t-base); font-weight: 700; margin-bottom: var(--s-3); }
.size-note__l { display: flex; flex-direction: column; gap: 9px; }
.size-note__i { display: flex; gap: var(--s-3); font-size: var(--t-sm); color: var(--c-ink-soft); }
.size-note__i strong { color: var(--c-ink); font-weight: 600; flex: none; min-width: 74px; }

@media (max-width: 900px) { .size-wrap { grid-template-columns: 1fr; gap: var(--s-6); } }
@media (max-width: 480px) { .size-pill { min-width: 0; flex: 1 1 calc(33% - var(--s-3)); } }

/* ============================================================
   JOURNAL
   ============================================================ */
.jour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.jour-card {
  display: flex; flex-direction: column;
  background: var(--c-white); border: 1px solid var(--c-line);
  border-radius: var(--r-lg); overflow: hidden;
  transition: box-shadow .22s var(--ease), transform .22s var(--ease);
}
.jour-card:hover { box-shadow: var(--sh-3); transform: translateY(-3px); }
.jour-card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--c-ice); }
.jour-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.jour-card:hover .jour-card__media img { transform: scale(1.05); }
.jour-card__body { padding: var(--s-5); display: flex; flex-direction: column; gap: var(--s-2); flex: 1; }
.jour-card__tag {
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--c-navy);
}
.jour-card__t { font-family: var(--f-display); font-size: var(--t-lg); font-weight: 500; line-height: 1.25; }
.jour-card__d { font-size: var(--t-sm); color: var(--c-ink-soft); line-height: 1.6; }
.jour-card__go {
  margin-top: auto; padding-top: var(--s-3);
  font-size: var(--t-xs); font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--c-navy);
  display: inline-flex; align-items: center; gap: 6px;
}
@media (max-width: 900px) { .jour-grid { grid-template-columns: 1fr; } }

/* ============================================================
   COMMITMENT — stands in for reviews, which we do not have
   ============================================================ */
.commit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.commit-card {
  background: var(--c-white); border: 1px solid var(--c-line);
  border-radius: var(--r-lg); padding: var(--s-6);
}
.commit-card__q {
  font-family: var(--f-display); font-size: 2.4rem; line-height: 1;
  color: var(--c-ice-deep); margin-bottom: var(--s-2);
}
.commit-card__t { font-size: var(--t-md); font-weight: 700; margin-bottom: var(--s-3); }
.commit-card__d { font-size: var(--t-sm); color: var(--c-ink-soft); line-height: 1.7; }
@media (max-width: 900px) { .commit-grid { grid-template-columns: 1fr; } }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.news {
  background: var(--c-navy); color: #fff;
  border-radius: var(--r-lg); padding: clamp(36px, 4vw, 64px);
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-8); align-items: center;
}
.news__t { font-family: var(--f-display); font-size: var(--t-xl); font-weight: 500; margin-bottom: var(--s-3); }
.news__d { color: rgba(255,255,255,.72); font-size: var(--t-sm); line-height: 1.7; }
.news__form { display: flex; gap: var(--s-3); }
.news__form input {
  flex: 1; padding: 14px var(--s-4); border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08);
  color: #fff; font-size: var(--t-base);
}
.news__form input::placeholder { color: rgba(255,255,255,.45); }
.news__form input:focus { outline: none; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.13); }
.news__form .btn { background: var(--c-white); color: var(--c-ink); }
.news__form .btn:hover { background: var(--c-ice-deep); }
.news__fine { font-size: 11px; color: rgba(255,255,255,.5); margin-top: var(--s-3); }
@media (max-width: 860px) {
  .news { grid-template-columns: 1fr; gap: var(--s-5); }
}
@media (max-width: 480px) {
  .news__form { flex-direction: column; }
}
