/* ============================================
   BAZAAR MODERNISM — Subachi Shri
   South-Asian-futurist brutalist type system
   ============================================ */

:root {
  --bone: #f4f0e8;
  --ink: #0a0a0a;
  --saffron: #ff6b1a;
  --cyan: #00d4ff;
  --acid: #b8ff3a;
  --hairline: #0a0a0a;
  --grid: 4px;
  --pad-x: clamp(20px, 4vw, 56px);
  --pad-y: clamp(48px, 8vw, 128px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--bone);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }

/* Type system */
.display, h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.mono, .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}

.outlined {
  -webkit-text-stroke: 3px var(--ink);
  color: transparent;
}

.outlined-saffron {
  -webkit-text-stroke: 3px var(--saffron);
  color: transparent;
}

.outlined-cyan {
  -webkit-text-stroke: 3px var(--cyan);
  color: transparent;
}

/* ============ MARQUEE ============ */
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  background: var(--bone);
  padding: 14px 0;
  position: relative;
  z-index: 30;
}

.marquee__track {
  display: flex;
  gap: 3rem;
  animation: scroll 40s linear infinite;
  flex-shrink: 0;
  white-space: nowrap;
  width: max-content;
}

.marquee__item {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.marquee__dot {
  width: 8px;
  height: 8px;
  background: var(--saffron);
  display: inline-block;
  border-radius: 50%;
}

@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bone);
  border-bottom: 1px solid var(--ink);
  padding: 14px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-size: 16px;
}

.nav__brand-mark {
  width: 28px;
  height: 28px;
  background: var(--ink);
  color: var(--bone);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 14px;
}

.nav__links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.nav__link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.nav__link:hover {
  background: var(--ink);
  color: var(--bone);
}

.nav__link--active {
  background: var(--ink);
  color: var(--bone);
}

.nav__cta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--bone);
  border: 1px solid var(--ink);
  transition: background 0.15s, color 0.15s;
}

.nav__cta:hover {
  background: var(--saffron);
  color: var(--ink);
  border-color: var(--ink);
}

.nav__toggle {
  display: none;
  width: 36px;
  height: 36px;
  border: 1px solid var(--ink);
  background: var(--bone);
  position: relative;
}

.nav__toggle span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s;
}

.nav__toggle span:nth-child(1) { top: 12px; }
.nav__toggle span:nth-child(2) { top: 17px; }
.nav__toggle span:nth-child(3) { top: 22px; }

.nav__toggle.is-open span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: block; }

  .nav__links.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bone);
    border-bottom: 4px solid var(--ink);
    flex-direction: column;
    padding: 8px;
    gap: 0;
  }
  .nav__links.is-open .nav__link {
    padding: 14px 16px;
    border-bottom: 1px solid var(--ink);
  }
  .nav__links.is-open .nav__link:last-child { border-bottom: 0; }
}

/* ============ LAYOUT ============ */
.section {
  padding: var(--pad-y) var(--pad-x);
  position: relative;
}

.section--flush { padding: 0; }

.wrap {
  max-width: 1680px;
  margin: 0 auto;
}

/* ============ 4PX GRID LINES ============ */
.grid-line-v { border-left: 4px solid var(--ink); }
.grid-line-h { border-top: 4px solid var(--ink); }
.grid-line-r { border-right: 4px solid var(--ink); }
.grid-line-b { border-bottom: 4px solid var(--ink); }

.grid-box {
  border: 4px solid var(--ink);
  transition: background 0.18s ease, color 0.18s ease;
  background: var(--bone);
  color: var(--ink);
}

.grid-box:hover {
  background: var(--acid);
  color: var(--ink);
}

.grid-frame {
  border: 4px solid var(--ink);
  background: var(--bone);
  position: relative;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 32px;
  border: 4px solid var(--ink);
  background: var(--bone);
  color: var(--ink);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-height: 56px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  text-align: center;
}

.btn:hover {
  background: var(--acid);
  color: var(--ink);
}

.btn--ink {
  background: var(--ink);
  color: var(--bone);
}

.btn--ink:hover {
  background: var(--acid);
  color: var(--ink);
}

.btn--saffron {
  background: var(--saffron);
}

.btn--saffron:hover {
  background: var(--ink);
  color: var(--bone);
}

.btn--block { width: 100%; }

.btn__arrow { display: inline-block; transform: translateX(0); transition: transform 0.2s; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ============ HERO ============ */
.hero {
  padding: clamp(40px, 6vw, 96px) var(--pad-x) clamp(48px, 7vw, 112px);
  border-bottom: 4px solid var(--ink);
  position: relative;
  overflow: hidden;
}

.hero__inner {
  max-width: 1680px;
  margin: 0 auto;
}

.hero__display {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  font-size: clamp(56px, 14vw, 220px);
}

.hero__line {
  display: block;
}

.hero__line--saffron { color: var(--saffron); }
.hero__line--ink { color: var(--ink); }
.hero__line--cyan { color: var(--cyan); -webkit-text-stroke: 0; }

.hero__sub {
  margin-top: clamp(24px, 4vw, 48px);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 720px;
}

.hero__bottom {
  margin-top: clamp(40px, 6vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__blessed {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero__blessed::before {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--saffron);
  display: inline-block;
}

.hero__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero__meta span {
  padding: 6px 10px;
  border: 1px solid var(--ink);
}

/* ============ SECTION HEADERS ============ */
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 4px;
  background: var(--saffron);
  display: inline-block;
}

.eyebrow--cyan::before { background: var(--cyan); }
.eyebrow--acid::before { background: var(--acid); }

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.045em;
  line-height: 0.88;
  font-size: clamp(40px, 8vw, 120px);
}

.section-title--huge { font-size: clamp(56px, 14vw, 220px); }

.section-dek {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-size: clamp(16px, 1.6vw, 24px);
  margin-top: 24px;
  max-width: 720px;
}

.section-dek--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ============ WHY GOLD FORMING CARDS ============ */
.why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}

.why__card {
  padding: clamp(24px, 3vw, 48px);
  border-right: 4px solid var(--ink);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  transition: background 0.2s, color 0.2s;
}

.why__card:last-child { border-right: 0; }

.why__card:hover {
  background: var(--acid);
}

.why__num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(64px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--saffron);
  margin-bottom: 32px;
}

.why__card:hover .why__num { color: var(--ink); }

.why__title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.95;
  font-size: clamp(22px, 2.4vw, 32px);
  margin-bottom: 16px;
}

.why__body {
  font-size: 15px;
  line-height: 1.55;
  margin-top: auto;
}

@media (max-width: 900px) {
  .why { grid-template-columns: 1fr; }
  .why__card {
    border-right: 0;
    border-bottom: 4px solid var(--ink);
  }
  .why__card:last-child { border-bottom: 0; }
}

/* ============ COLLECTIONS TILES ============ */
.collections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.collections__tile {
  position: relative;
  border-right: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  background: var(--bone);
  padding: clamp(20px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.collections__tile:nth-child(3n) { border-right: 0; }
.collections__tile:nth-last-child(-n+3) { border-bottom: 0; }

.collections__tile:hover {
  background: var(--acid);
}

.collections__tile-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
  display: inline-block;
  width: fit-content;
  padding: 4px 8px;
  border: 1px solid var(--ink);
}

.collections__tile-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.95;
  font-size: clamp(28px, 3.6vw, 48px);
  margin-bottom: 12px;
}

.collections__tile-dek {
  font-size: 14px;
  line-height: 1.5;
  margin-top: auto;
  margin-bottom: 16px;
}

.collections__tile-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 900px) {
  .collections { grid-template-columns: repeat(2, 1fr); }
  .collections__tile { border-right: 4px solid var(--ink); border-bottom: 4px solid var(--ink); }
  .collections__tile:nth-child(3n) { border-right: 4px solid var(--ink); }
  .collections__tile:nth-child(2n) { border-right: 0; }
  .collections__tile:nth-last-child(-n+3) { border-bottom: 4px solid var(--ink); }
  .collections__tile:nth-last-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 560px) {
  .collections { grid-template-columns: 1fr; }
  .collections__tile { border-right: 0 !important; border-bottom: 4px solid var(--ink) !important; }
  .collections__tile:last-child { border-bottom: 0 !important; }
}

/* ============ PULL QUOTE ============ */
.pullquote {
  padding: clamp(64px, 12vw, 200px) var(--pad-x);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  text-align: center;
}

.pullquote__text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.045em;
  line-height: 0.9;
  font-size: clamp(40px, 11vw, 180px);
  max-width: 1680px;
  margin: 0 auto;
}

.pullquote__text--saffron { color: var(--saffron); }

/* ============ CTA STRIP ============ */
.cta-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border-top: 4px solid var(--ink);
}

.cta-strip__copy {
  padding: clamp(40px, 6vw, 96px) var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 4px solid var(--ink);
}

.cta-strip__title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.9;
  font-size: clamp(40px, 6vw, 96px);
  margin-bottom: 24px;
}

.cta-strip__body {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 520px;
}

.cta-strip__visual {
  background: var(--ink);
  color: var(--bone);
  display: grid;
  place-items: center;
  padding: clamp(40px, 6vw, 96px);
  position: relative;
  overflow: hidden;
}

.cta-strip__visual::before {
  content: 'WHATSAPP';
  position: absolute;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(80px, 18vw, 280px);
  letter-spacing: -0.05em;
  color: rgba(244, 240, 232, 0.08);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 0.85;
}

.cta-strip__visual-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-strip__number {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  display: block;
}

@media (max-width: 860px) {
  .cta-strip { grid-template-columns: 1fr; }
  .cta-strip__copy { border-right: 0; border-bottom: 4px solid var(--ink); }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(48px, 6vw, 96px) var(--pad-x) 32px;
  border-top: 4px solid var(--ink);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer__brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 16px;
}

.footer__tag {
  font-size: 14px;
  opacity: 0.8;
  max-width: 320px;
}

.footer__col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bone);
  font-family: 'JetBrains Mono', monospace;
}

.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 10px; }
.footer__col a {
  font-size: 14px;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
  display: inline-block;
}
.footer__col a:hover { opacity: 1; color: var(--acid); }

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--bone);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============ COLLECTIONS GRID PAGE ============ */
.coll-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}

.coll-card {
  position: relative;
  border-right: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  background: var(--bone);
  display: flex;
  flex-direction: column;
  min-height: 540px;
  transition: background 0.2s, color 0.2s;
}

.coll-card:nth-child(3n) { border-right: 0; }
.coll-card:nth-last-child(-n+3) { border-bottom: 0; }

.coll-card:hover { background: var(--acid); }

.coll-card__media {
  aspect-ratio: 4 / 5;
  width: 100%;
  position: relative;
  border-bottom: 4px solid var(--ink);
  overflow: hidden;
}

.coll-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
  transition: transform 0.6s ease, filter 0.3s;
}

.coll-card:hover .coll-card__media img {
  transform: scale(1.05);
  filter: grayscale(0) contrast(1.1);
}

.coll-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--ink);
  color: var(--bone);
  padding: 6px 12px;
  border: 4px solid var(--ink);
  z-index: 2;
}

.coll-card:hover .coll-card__tag {
  background: var(--bone);
  color: var(--ink);
}

.coll-card__body {
  padding: clamp(20px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.coll-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.95;
  font-size: clamp(28px, 3.6vw, 44px);
  margin-bottom: 12px;
}

.coll-card__dek {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.coll-card__price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.coll-card__price::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: currentColor;
}

.coll-card__link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--ink);
  align-self: flex-start;
  transition: background 0.2s, color 0.2s;
}

.coll-card:hover .coll-card__link {
  background: var(--ink);
  color: var(--bone);
}

@media (max-width: 1000px) {
  .coll-grid { grid-template-columns: repeat(2, 1fr); }
  .coll-card { border-right: 4px solid var(--ink); border-bottom: 4px solid var(--ink); }
  .coll-card:nth-child(3n) { border-right: 4px solid var(--ink); }
  .coll-card:nth-child(2n) { border-right: 0; }
  .coll-card:nth-last-child(-n+3) { border-bottom: 4px solid var(--ink); }
  .coll-card:nth-last-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 600px) {
  .coll-grid { grid-template-columns: 1fr; }
  .coll-card { border-right: 0 !important; border-bottom: 4px solid var(--ink) !important; }
  .coll-card:last-child { border-bottom: 0 !important; }
}

/* ============ BRIDAL SECTIONS ============ */
.bridal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-top: 4px solid var(--ink);
}

.bridal-row--reverse { direction: rtl; }
.bridal-row--reverse > * { direction: ltr; }

.bridal-row__media {
  position: relative;
  min-height: 520px;
  border-right: 4px solid var(--ink);
  overflow: hidden;
  background: var(--ink);
}

.bridal-row--reverse .bridal-row__media { border-right: 0; border-left: 4px solid var(--ink); }

.bridal-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  filter: grayscale(0.1);
}

.bridal-row__copy {
  padding: clamp(40px, 6vw, 96px) var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bridal-row__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.bridal-row__num::before {
  content: '';
  width: 32px;
  height: 4px;
  background: var(--saffron);
  display: inline-block;
}

.bridal-row__title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.92;
  font-size: clamp(40px, 5.5vw, 84px);
  margin-bottom: 24px;
}

.bridal-row__title em {
  font-style: normal;
  -webkit-text-stroke: 3px var(--ink);
  color: transparent;
}

.bridal-row__body {
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 24px;
}

.bridal-row__list {
  list-style: none;
  margin-bottom: 32px;
}

.bridal-row__list li {
  padding: 12px 0;
  border-top: 1px solid var(--ink);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

.bridal-row__list li::before {
  content: '◆';
  color: var(--saffron);
  font-size: 10px;
}

.bridal-row__list li:last-child { border-bottom: 1px solid var(--ink); }

@media (max-width: 900px) {
  .bridal-row { grid-template-columns: 1fr; }
  .bridal-row__media { min-height: 380px; border-right: 0; border-bottom: 4px solid var(--ink); }
  .bridal-row--reverse .bridal-row__media { border-left: 0; border-bottom: 4px solid var(--ink); }
}

/* VS comparison */
.vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  background: var(--bone);
}

.vs__card {
  padding: clamp(32px, 5vw, 80px) var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vs__card--real { border-right: 4px solid var(--ink); }

.vs__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid var(--ink);
}

.vs__label--real { background: var(--ink); color: var(--bone); }
.vs__label--gf { background: var(--acid); color: var(--ink); }

.vs__title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.9;
  font-size: clamp(28px, 3.6vw, 56px);
  margin-bottom: 16px;
}

.vs__price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 80px);
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 16px;
}

.vs__card--real .vs__price { color: var(--ink); -webkit-text-decoration: line-through; text-decoration: line-through; }
.vs__card--gf .vs__price { color: var(--saffron); }

.vs__list {
  list-style: none;
  margin-top: 16px;
}

.vs__list li {
  padding: 10px 0;
  border-top: 1px solid var(--ink);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.vs__list li::before {
  content: '✕';
  font-weight: 700;
  color: var(--ink);
}

.vs__card--gf .vs__list li::before {
  content: '✓';
  color: var(--saffron);
}

.vs__list li:last-child { border-bottom: 1px solid var(--ink); }

.vs__divider {
  display: grid;
  place-items: center;
  padding: 0 12px;
  background: var(--ink);
  color: var(--bone);
  min-width: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.05em;
  line-height: 1;
}

@media (max-width: 800px) {
  .vs { grid-template-columns: 1fr; }
  .vs__card--real { border-right: 0; border-bottom: 4px solid var(--ink); }
  .vs__divider { padding: 16px; }
}

/* ============ STATS ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}

.stats__cell {
  padding: clamp(32px, 4vw, 64px) clamp(20px, 2.5vw, 32px);
  border-right: 4px solid var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 240px;
}

.stats__cell:last-child { border-right: 0; }

.stats__num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  line-height: 0.88;
  font-size: clamp(48px, 7vw, 96px);
  margin-bottom: 12px;
  color: var(--ink);
}

.stats__cell:nth-child(1) .stats__num { color: var(--saffron); }
.stats__cell:nth-child(2) .stats__num { color: var(--cyan); }
.stats__cell:nth-child(3) .stats__num { color: var(--ink); }
.stats__cell:nth-child(4) .stats__num { color: var(--acid); -webkit-text-stroke: 2px var(--ink); }

.stats__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: auto;
}

@media (max-width: 860px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats__cell { border-bottom: 4px solid var(--ink); }
  .stats__cell:nth-child(2) { border-right: 0; }
  .stats__cell:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ============ STORY BLOCK ============ */
.story {
  border: 4px solid var(--ink);
  padding: clamp(40px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
}

.story__lead h2,
.story__lead h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.9;
  font-size: clamp(36px, 4vw, 64px);
  margin-bottom: 24px;
}

.story__lead h3 { font-size: clamp(22px, 2.4vw, 32px); margin-bottom: 16px; margin-top: 32px; }
.story__lead h3:first-of-type { margin-top: 0; }

.story__lead p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.story__meta {
  border-left: 4px solid var(--ink);
  padding-left: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
}

.story__meta-block .label {
  display: block;
  margin-bottom: 8px;
}

.story__meta-block p {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-size: clamp(20px, 2.2vw, 28px);
}

.story__meta-block .accent { color: var(--saffron); }

@media (max-width: 860px) {
  .story { grid-template-columns: 1fr; }
  .story__meta { border-left: 0; border-top: 4px solid var(--ink); padding-left: 0; padding-top: 24px; }
}

/* ============ JOURNAL CARDS ============ */
.journal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}

.journal__card {
  border-right: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  background: var(--bone);
  padding: clamp(28px, 3.5vw, 56px);
  display: flex;
  flex-direction: column;
  min-height: 480px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}

.journal__card:nth-child(2n) { border-right: 0; }
.journal__card:nth-last-child(-n+2) { border-bottom: 0; }

.journal__card:hover { background: var(--acid); }

.journal__kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  padding: 6px 10px;
  background: var(--ink);
  color: var(--bone);
  border: 1px solid var(--ink);
}

.journal__card:hover .journal__kicker {
  background: var(--bone);
  color: var(--ink);
}

.journal__title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.035em;
  line-height: 0.95;
  font-size: clamp(28px, 3.2vw, 44px);
  margin-bottom: 20px;
}

.journal__dek {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 16px;
}

.journal__body {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.journal__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--ink);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.journal__link { font-weight: 700; }

@media (max-width: 800px) {
  .journal { grid-template-columns: 1fr; }
  .journal__card { border-right: 0 !important; border-bottom: 4px solid var(--ink) !important; }
  .journal__card:last-child { border-bottom: 0 !important; }
}

/* ============ CONTACT CARDS ============ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.contact-card {
  border: 4px solid var(--ink);
  padding: clamp(28px, 3.5vw, 56px);
  display: flex;
  flex-direction: column;
  min-height: 380px;
  background: var(--bone);
  transition: background 0.2s, color 0.2s;
  margin: -2px 0 0 -2px;
}

.contact-card:hover { background: var(--acid); }

.contact-card__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  align-self: flex-start;
  padding: 6px 10px;
  border: 1px solid var(--ink);
}

.contact-card__label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--saffron);
  display: inline-block;
}

.contact-card:nth-child(2) .contact-card__label::before { background: var(--cyan); }
.contact-card:nth-child(3) .contact-card__label::before { background: var(--acid); }

.contact-card__text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.95;
  font-size: clamp(24px, 2.8vw, 36px);
  margin-bottom: 12px;
}

.contact-card__sub {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 24px;
  flex-grow: 1;
}

.contact-card__link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid var(--ink);
  align-self: flex-start;
  transition: background 0.2s, color 0.2s;
}

.contact-card__link:hover { background: var(--ink); color: var(--bone); }

@media (max-width: 800px) {
  .contact-cards { grid-template-columns: 1fr; }
  .contact-card { margin: 0 0 -4px 0; }
  .contact-card:last-child { margin-bottom: 0; }
}

/* ============ FORM ============ */
.form {
  border: 4px solid var(--ink);
  padding: clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form__full { grid-column: 1 / -1; }

.form__field { display: flex; flex-direction: column; gap: 8px; }

.form__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.form__label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--saffron);
  display: inline-block;
}

.form__input,
.form__textarea,
.form__select {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--ink);
  background: var(--bone);
  color: var(--ink);
  outline: 0;
  transition: background 0.2s, box-shadow 0.2s;
  min-height: 50px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  background: var(--bone);
  box-shadow: 4px 4px 0 var(--saffron);
}

.form__textarea { min-height: 140px; resize: vertical; font-family: 'Inter', sans-serif; }

.form__submit { grid-column: 1 / -1; margin-top: 8px; }

@media (max-width: 700px) {
  .form { grid-template-columns: 1fr; padding: 24px; }
}

/* ============ UTILS ============ */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }

.divider {
  height: 4px;
  background: var(--ink);
  width: 100%;
}

.saffron-bar { height: 4px; background: var(--saffron); width: 100%; }
.cyan-bar { height: 4px; background: var(--cyan); width: 100%; }

.underline-thick {
  border-bottom: 4px solid var(--ink);
  padding-bottom: 0.1em;
  display: inline-block;
}

.underline-saffron {
  border-bottom: 4px solid var(--saffron);
  padding-bottom: 0.1em;
  display: inline-block;
}

.underline-cyan {
  border-bottom: 4px solid var(--cyan);
  padding-bottom: 0.1em;
  display: inline-block;
}

.text-saffron { color: var(--saffron); }
.text-cyan { color: var(--cyan); }
.text-acid { color: var(--acid); }
.text-ink { color: var(--ink); }
.text-bone { color: var(--bone); }

/* Reveal animation initial state */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
}

/* Focus visibility */
:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 2px;
}

a, button, .btn, .nav__link, .nav__cta, .nav__toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav__toggle { padding: 0; }

/* Cross-page header block */
.page-head {
  padding: clamp(48px, 8vw, 128px) var(--pad-x) clamp(40px, 5vw, 80px);
  border-bottom: 4px solid var(--ink);
}

.page-head__inner {
  max-width: 1680px;
  margin: 0 auto;
}

.page-head__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 12px;
  border: 1px solid var(--ink);
}

.page-head__title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.045em;
  line-height: 0.88;
  font-size: clamp(56px, 14vw, 220px);
}

.page-head__title--saffron { color: var(--saffron); }
.page-head__title--ink { color: var(--ink); }
.page-head__title--cyan { color: var(--cyan); }

.page-head__dek {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-size: clamp(16px, 1.8vw, 26px);
  margin-top: 24px;
  max-width: 760px;
}

/* Image error fallback */
img.broken {
  background: var(--ink);
  color: var(--bone);
  display: grid;
  place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
img.broken::after { content: 'IMAGE UNAVAILABLE'; }

/* Selection */
::selection {
  background: var(--saffron);
  color: var(--ink);
}

/* ----- Scroll progress bar (premium touch) ----- */
.scroll-progress {
  background: var(--saffron, #ff6b1a);
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  z-index: 9999;
  pointer-events: none;
  transition: width 80ms linear;
}

/* ----- Brand logo (in nav) ----- */
.brand-logo {
  height: 52px;
  width: auto;
  max-width: 180px;
  display: block;
}
.nav__brand .brand-logo,
.brand .brand-logo {
  display: block;
}

/* ----- Real product section (about page) ----- */
.real-product-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(184, 149, 42, 0.04) 50%, transparent);
  border-top: 1px solid rgba(184, 149, 42, 0.2);
  border-bottom: 1px solid rgba(184, 149, 42, 0.2);
}
.real-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.real-product__img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 1px solid rgba(184, 149, 42, 0.3);
  background: #faf6ee;
}
.real-product__caption {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.real-product__caption .mono {
  color: #b8952a;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.real-product__quote {
  font-family: var(--font-display, Georgia, serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.3;
  color: var(--ink, #1a1a1a);
}
.real-product__cta {
  display: inline-block;
  font-family: var(--font-mono, monospace);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold, #b8952a);
  border-bottom: 1px solid var(--gold, #b8952a);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: all 200ms;
}
.real-product__cta:hover {
  color: var(--ink, #1a1a1a);
  border-color: var(--ink, #1a1a1a);
}
@media (max-width: 720px) {
  .real-product {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
