@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600&family=Barlow+Condensed:wght@600;700;800&family=Cormorant+Garamond:ital,wght@0,500;1,500&display=swap');

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

:root {
  --black: #0d0d0d;
  --black-2: #111111;
  --black-3: #161616;
  --border: #2a2a2a;
  --border-light: #383838;
  --gold: #C9A84C;
  --gold-dim: rgba(201,168,76,0.12);
  --gold-dim2: rgba(201,168,76,0.06);
  --white: #ffffff;
  --grey-1: #aaaaaa;
  --grey-2: #888888;
  --grey-3: #666666;
  --grey-4: #444444;
  --max-w: 1240px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
.gold { color: var(--gold); }

/* CENTRED WRAPPER — used inside every section and the nav */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

/* NAV */
nav {
  background: var(--black-2);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
}

.nav-retail {
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-left: 4px;
}

.nav-links { display: flex; gap: 36px; align-items: center; }

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-link:hover, .nav-link.active { color: var(--white); }

.nav-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 10px 22px;
  border-radius: 3px;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.85; }

/* HERO */
.hero {
  background: var(--black-2);
  padding: 76px 40px 68px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 72px;
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero h1 em { font-style: normal; color: var(--gold); }

.hero-sub {
  font-size: 17px;
  color: var(--grey-1);
  line-height: 1.75;
  margin-bottom: 32px;
}

.badges-row {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 36px;
  padding: 18px 24px;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.badge { display: flex; flex-direction: column; gap: 4px; }
.badge-lbl { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-1); }
.badge-val { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; color: var(--white); letter-spacing: 0.04em; }
.bdiv { width: 1px; height: 28px; background: var(--border); }

.hero-btns { display: flex; gap: 14px; }

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 3px;
  transition: opacity 0.2s;
}

.btn-primary:hover { opacity: 0.85; }

.btn-ghost {
  display: inline-block;
  border: 1px solid var(--border-light);
  color: var(--grey-1);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 3px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* HERO VISUAL */
.hero-visual {
  position: relative;
  height: 460px;
  width: 100%;
}

.shape { position: absolute; }

/* TV */
.s-tv { top: 10px; left: 60px; animation: f1 4.0s ease-in-out infinite; }
.screen { width: 92px; height: 60px; background: #1e1e1e; border: 2px solid var(--gold); border-radius: 4px; }
.screen-inner { margin: 6px; background: #2a2a2a; height: 40px; border-radius: 2px; display: flex; align-items: center; justify-content: center; }
.screen-inner::after { content:''; width: 30px; height: 2px; background: rgba(201,168,76,0.4); border-radius: 1px; box-shadow: 0 7px 0 rgba(201,168,76,0.2); }
.tv-stand { width: 26px; height: 10px; background: var(--gold); margin: 0 auto; border-radius: 0 0 3px 3px; opacity: 0.6; }
.tv-base { width: 46px; height: 4px; background: #333; margin: 0 auto; border-radius: 2px; }

/* Laptop */
.s-laptop { top: 20px; left: 250px; animation: f2 3.4s ease-in-out infinite; animation-delay: 0.5s; }
.lid { width: 84px; height: 54px; background: #1e1e1e; border: 2px solid var(--border-light); border-radius: 4px 4px 0 0; }
.lid-inner { margin: 5px; background: #252525; height: 36px; border-radius: 2px; display: flex; align-items: center; justify-content: center; }
.lid-inner::after { content:''; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; opacity: 0.5; }
.laptop-base { width: 92px; height: 8px; background: #282828; border: 1px solid #333; border-radius: 0 0 3px 3px; margin-left: -4px; }
.keyboard { width: 74px; height: 4px; background: #333; margin: 2px auto 0; border-radius: 1px; }

/* Headphones */
.s-head { top: 20px; left: 390px; animation: f3 3.8s ease-in-out infinite; animation-delay: 1.2s; }
.s-head svg { width: 68px; height: 68px; }

/* Speaker */
.s-speaker { top: 160px; left: 30px; animation: f4 3.2s ease-in-out infinite; animation-delay: 0.3s; }
.spk-body { width: 48px; height: 68px; background: #1e1e1e; border: 2px solid var(--border-light); border-radius: 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.spk-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; opacity: 0.8; }
.spk-line { width: 26px; height: 2px; background: var(--gold); border-radius: 1px; opacity: 0.6; }
.spk-line.sm { width: 18px; opacity: 0.3; }

/* Controller */
.s-ctrl { top: 170px; left: 190px; animation: f5 4.2s ease-in-out infinite; animation-delay: 0.8s; }
.s-ctrl svg { width: 76px; height: 52px; }

/* Tablet */
.s-tablet { top: 150px; left: 370px; animation: f6 3.6s ease-in-out infinite; animation-delay: 1.5s; }
.tab-body { width: 54px; height: 72px; background: #1e1e1e; border: 2px solid var(--border-light); border-radius: 5px; display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 5px; }
.tab-screen { width: 42px; height: 50px; background: #252525; border-radius: 2px; display: flex; align-items: center; justify-content: center; }
.tab-screen::after { content:''; width: 18px; height: 18px; border: 2px solid rgba(201,168,76,0.4); border-radius: 3px; }
.tab-btn { width: 10px; height: 3px; background: #333; border-radius: 2px; }

/* Coffee machine */
.s-coffee { top: 320px; left: 120px; animation: f7 2.9s ease-in-out infinite; animation-delay: 0.6s; }
.cof-body { width: 52px; height: 60px; background: #1e1e1e; border: 2px solid var(--border-light); border-radius: 6px 6px 3px 3px; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding-bottom: 6px; }
.cof-top { width: 32px; height: 12px; background: #252525; border: 1px solid #333; border-radius: 3px 3px 0 0; margin-bottom: 4px; }
.cof-spout { width: 4px; height: 14px; background: var(--gold); border-radius: 0 0 2px 2px; opacity: 0.5; position: absolute; bottom: 18px; left: 10px; }
.cof-cup { width: 22px; height: 12px; background: #222; border: 1px solid #333; border-radius: 0 0 4px 4px; }

/* Robot vac */
.s-vac { top: 340px; left: 300px; animation: f8 3.1s ease-in-out infinite; animation-delay: 1.8s; }
.vac-body { width: 64px; height: 20px; background: #1e1e1e; border: 2px solid var(--border-light); border-radius: 32px; display: flex; align-items: center; justify-content: center; gap: 7px; }
.vac-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; opacity: 0.8; }
.vac-dot.sm { width: 4px; height: 4px; background: #555; opacity: 1; }

@keyframes f1 { 0%,100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-14px) rotate(1deg); } }
@keyframes f2 { 0%,100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-10px) rotate(-1.5deg); } }
@keyframes f3 { 0%,100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-18px) rotate(1deg); } }
@keyframes f4 { 0%,100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-8px) rotate(-1deg); } }
@keyframes f5 { 0%,100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-12px) rotate(2deg); } }
@keyframes f6 { 0%,100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-16px) rotate(-1deg); } }
@keyframes f7 { 0%,100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-10px) rotate(1.5deg); } }
@keyframes f8 { 0%,100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-13px) rotate(-2deg); } }

.ground-line { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, #2a2a2a 20%, var(--gold) 50%, #2a2a2a 80%, transparent); }
.ground-glow { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 360px; height: 80px; background: radial-gradient(ellipse at bottom, rgba(201,168,76,0.07) 0%, transparent 70%); }

/* STATS STRIP */
.stats-strip {
  background: var(--black-3);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat-block {
  padding: 44px 44px;
  border-right: 1px solid var(--border);
}

.stat-block:last-child { border-right: none; }

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.stat-title { font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.stat-desc { font-size: 15px; color: var(--grey-2); line-height: 1.65; }

/* SECTIONS */
.section { padding: 76px 40px; border-bottom: 1px solid var(--border); }
.section-alt { background: var(--black-2); }

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before { content: ''; display: block; width: 22px; height: 1px; background: var(--gold); }

.section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.05;
}

.section-sub { font-size: 17px; color: var(--grey-1); line-height: 1.75; max-width: 680px; margin-bottom: 40px; }

/* CHANNEL CARD */
.channel-card { background: var(--black-3); border: 1px solid var(--border); border-left: 3px solid var(--gold); border-radius: 0 6px 6px 0; padding: 36px 40px; }
.channel-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.channel-icon { width: 44px; height: 44px; background: var(--gold-dim); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--gold); flex-shrink: 0; }
.channel-name { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--white); }
.channel-desc { font-size: 16px; color: var(--grey-1); line-height: 1.75; margin-bottom: 24px; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 14px; border-radius: 3px; background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(201,168,76,0.2); }

/* FOCUSED SECTION */
.focused-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 0; }

.focused-grid-wrap .eyebrow { margin-bottom: 14px; }
.focused-grid-wrap h2 { margin-bottom: 0; }
.focused-text p { font-size: 17px; color: var(--grey-1); line-height: 1.8; margin-bottom: 20px; }
.focused-text p:last-child { margin-bottom: 0; }
.focused-points { display: flex; flex-direction: column; gap: 16px; }
.focused-point { background: var(--black-3); border: 1px solid var(--border); border-left: 3px solid var(--gold); border-radius: 0 4px 4px 0; padding: 22px 26px; cursor: default; transition: transform 0.35s ease, border-color 0.3s ease, background 0.3s ease; }

.focused-point:hover { transform: translateY(-6px) scale(1.02); border-color: var(--gold); background: #1e1e1e; }
.focused-point-title { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 7px; }
.focused-point-desc { font-size: 15px; color: var(--grey-2); line-height: 1.65; }

/* CATEGORIES */
.cats { display: flex; flex-wrap: wrap; gap: 12px; }
.cat { font-size: 15px; font-weight: 500; padding: 11px 22px; border-radius: 3px; border: 1px solid var(--border-light); color: var(--grey-1); background: var(--gold-dim2); letter-spacing: 0.02em; transition: border-color 0.2s, color 0.2s; }
.cat:hover { border-color: var(--gold); color: var(--gold); }

/* TRUST GRID */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.trust-card { background: var(--black-3); border: 1px solid var(--border); border-radius: 6px; padding: 30px; }
.trust-icon { font-size: 28px; color: var(--gold); margin-bottom: 18px; }
.trust-title { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--white); margin-bottom: 10px; }
.trust-desc { font-size: 15px; color: var(--grey-2); line-height: 1.65; }

/* CTA BAND */
.cta-band { background: var(--black-2); padding: 76px 40px; text-align: center; border-top: 1px solid var(--border); }
.cta-band h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 48px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; color: var(--white); margin-bottom: 16px; }
.cta-band p { font-size: 18px; color: var(--grey-1); margin-bottom: 36px; }

/* FOOTER */
footer { background: #0a0a0a; border-top: 1px solid var(--border); padding: 28px 40px; display: flex; justify-content: center; }
.footer-inner { max-width: var(--max-w); width: 100%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-left { font-size: 13px; color: var(--grey-3); line-height: 1.8; }
.footer-right { font-size: 13px; color: var(--grey-3); text-align: right; }
.footer-right a { color: var(--gold); }
.footer-right a:hover { text-decoration: underline; }
.footer-privacy { font-size: 12px; color: var(--grey-4); margin-top: 4px; }
.footer-privacy a { color: var(--grey-3); }
.footer-privacy a:hover { color: var(--gold); }

/* PAGE HEADER */
.page-header { background: var(--black-2); padding: 64px 40px 56px; border-bottom: 1px solid var(--border); }
.page-header h1 { font-family: 'Barlow Condensed', sans-serif; font-size: 56px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; color: var(--white); margin-bottom: 14px; }
.page-header p { font-size: 18px; color: var(--grey-1); max-width: 620px; line-height: 1.75; }

/* TWO COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

/* COMPANY DETAILS */
.company-details { background: var(--black-3); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.company-details-header { padding: 18px 24px; border-bottom: 1px solid var(--border); font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--grey-3); }
.company-detail-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; border-bottom: 1px solid var(--border); font-size: 15px; }
.company-detail-row:last-child { border-bottom: none; }
.detail-label { color: var(--grey-2); }
.detail-value { color: var(--white); font-weight: 600; font-family: 'Barlow Condensed', sans-serif; font-size: 17px; letter-spacing: 0.04em; }
.detail-value.gold { color: var(--gold); }

/* FORM */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }

label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-2); }

input, textarea, select { background: var(--black-3); border: 1px solid var(--border-light); border-radius: 4px; padding: 13px 16px; font-family: 'Barlow', sans-serif; font-size: 15px; color: var(--white); outline: none; transition: border-color 0.2s; width: 100%; }
input:focus, textarea:focus, select:focus { border-color: var(--gold); }
input::placeholder, textarea::placeholder { color: var(--grey-4); }
textarea { resize: vertical; min-height: 130px; }
select option { background: var(--black-3); }

.form-submit { background: var(--gold); color: var(--black); border: none; font-family: 'Barlow', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 15px 36px; border-radius: 3px; cursor: pointer; transition: opacity 0.2s; margin-top: 8px; }
.form-submit:hover { opacity: 0.85; }

/* PROSE */
.prose { max-width: 760px; }
.prose h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--white); margin: 44px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 16px; color: var(--grey-1); line-height: 1.85; margin-bottom: 16px; }
.prose ul { padding-left: 20px; margin-bottom: 16px; }
.prose ul li { font-size: 16px; color: var(--grey-1); line-height: 1.85; margin-bottom: 6px; }

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { gap: 16px; }
  .nav-link { display: none; }

  .hero { padding: 48px 20px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 48px; }
  .hero-sub { font-size: 15px; }
  .badges-row { gap: 16px; padding: 14px 16px; }

  .stats-inner { grid-template-columns: 1fr; }
  .stat-block { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 20px; }
  .stat-block:last-child { border-bottom: none; }

  .section { padding: 48px 20px; }
  .focused-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }

  .page-header { padding: 40px 20px 32px; }
  .cta-band { padding: 56px 20px; }
  .cta-band h2 { font-size: 34px; }
  footer { padding: 24px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-right { text-align: left; }
}

/* CHANNEL TWO COL */
.channel-two-col {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 56px;
  align-items: start;
}

.channel-text p {
  font-size: 17px;
  color: var(--grey-1);
  line-height: 1.8;
  margin-bottom: 16px;
}

.channel-credentials {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cred-block {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cred-icon { font-size: 18px; color: var(--gold); margin-bottom: 4px; }
.cred-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-3); }
.cred-value { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; color: var(--white); letter-spacing: 0.03em; }
.cred-value.gold { color: var(--gold); }

/* CENTRED SECTION */
.section-centered {
  text-align: center;
}

.section-centered .eyebrow {
  justify-content: center;
}

.section-centered .section-sub {
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.cats-centered {
  justify-content: center;
}

@media (max-width: 768px) {
  .channel-two-col { grid-template-columns: 1fr; }
}

/* CATEGORY SHAPES */
.cats-shapes {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 16px;
  margin-top: 24px;
}

.cats-section .section-sub {
  max-width: 100%;
}

.cat-shape {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
  cursor: default;
}

.cat-shape-icon {
  width: 100%;
  aspect-ratio: 1;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(40px, 8vw, 80px);
  color: var(--gold);
  transition: transform 0.35s ease, border-color 0.3s ease, background 0.3s ease;
}

.cat-shape:hover .cat-shape-icon {
  transform: translateY(-8px) scale(1.04);
  border-color: var(--gold);
  background: #1e1e1e;
}

.cat-shape-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--grey-2);
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.cat-shape:hover .cat-shape-label { color: var(--grey-1); }

/* LOGO MARK */
.logo-mark {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 96px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  user-select: none;
  opacity: 0.06;
  color: var(--white);
  text-align: right;
  pointer-events: none;
}

.logo-mark .lv-gold { color: var(--gold); opacity: 1; }

.page-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.page-header-inner > div:first-child {
  flex: 0 0 60%;
}

.page-header-inner > div:last-child {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-header-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 130px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.9;
  text-align: center;
  color: var(--white);
  user-select: none;
  pointer-events: none;
  flex-shrink: 0;
}

.page-header-logo-retail {
  font-weight: 400;
  font-size: 56px;
  letter-spacing: 0.12em;
  display: block;
  color: var(--white);
  margin-top: 10px;
}

.page-header-logo .phv { color: var(--gold); }

@media (max-width: 768px) {
  .cats-shapes { flex-wrap: wrap; height: auto; gap: 24px; }
  .page-header-inner { grid-template-columns: 1fr; }
  .page-header-logo { display: none; }
}

/* CREDS ROW — horizontal credential blocks */
.creds-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.creds-row .cred-block {
  border-radius: 6px;
  border-left: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 20px;
  cursor: default;
  transition: transform 0.35s ease, border-color 0.3s ease, background 0.3s ease;
}

.creds-row .cred-block:hover {
  transform: translateY(-8px) scale(1.04);
  border-color: var(--gold);
  background: #1e1e1e;
}

.creds-row .cred-icon {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 10px;
}

.creds-row .cred-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-3);
}

.creds-row .cred-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .creds-row { grid-template-columns: 1fr 1fr; }
}

/* TRADE PAGE HEADER — single col full width */
.page-header-single {
  display: block !important;
  flex-direction: unset !important;
}

.page-header-single .eyebrow,
.page-header-single h1,
.page-header-single .page-header-wide {
  display: block;
  max-width: 100%;
  width: 100%;
}

.page-header-wide {
  font-size: 18px;
  color: var(--grey-1);
  line-height: 1.75;
  max-width: 100% !important;
  width: 100%;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .page-header-inner { flex-direction: column; }
  .page-header-logo { font-size: 72px; text-align: left; }
  .page-header-logo-retail { font-size: 36px; }
}

/* ===== EVERGREEN ENHANCEMENTS ===== */

/* Serif accent (hero intro line) */
.hero-serif {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  color: var(--grey-1);
  margin-bottom: 18px;
}

/* Pull-quote band */
.quote-band {
  padding: 88px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--black-2);
  text-align: center;
}

.quote-band blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 38px;
  color: #ddd;
  line-height: 1.45;
  max-width: 800px;
  margin: 0 auto 18px;
}

.quote-band blockquote .gq { color: var(--gold); }

.quote-attr {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-3);
}

/* Founder note */
.founder {
  padding: 76px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--black-2);
}

.founder-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  align-items: start;
}

.founder-mark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #1e1e1e;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: var(--gold);
  flex-shrink: 0;
}

.founder-text p {
  font-size: 17px;
  color: var(--grey-1);
  line-height: 1.85;
  margin-bottom: 16px;
  max-width: 800px;
}

.founder-sig {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 26px;
  color: var(--gold);
}

.founder-role {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-3);
  margin-top: 4px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* No-JS fallback: content stays visible if script doesn't run */
.no-observer .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 768px) {
  .quote-band blockquote { font-size: 26px; }
  .founder-inner { grid-template-columns: 1fr; }
  .hero-serif { font-size: 21px; }
}
