:root {
  /* ─── PALETTE ─── */
  --black:     #060606;
  --deep:      #111111;
  --surface:   #f2f2f0;
  --border:    #d8d8d8;
  --ash:       #afafaf;
  --mid:       #5a5a5a;   /* was #7a7a7a — bumped for contrast */
  --silver:    #333333;   /* was #444 — richer body text */
  --light:     #1a1a1a;
  --white:     #fafafa;
  --gold:      #b8973a;   /* real amber accent — replaces useless #aaaaaa */
  --gold-dim:  #8a6e2a;
  --red:       #b91c1c;
  --amber:     #c27a00;

  /* ─── DARK SURFACE TOKENS ─── */
  --dk-bg:       #0e0e0e;
  --dk-surface:  #171717;
  --dk-border:   rgba(255,255,255,0.12);
  --dk-text-hi:  rgba(255,255,255,0.95);  /* headings on dark */
  --dk-text-md:  rgba(255,255,255,0.72);  /* body on dark — was 0.45/0.5 */
  --dk-text-lo:  rgba(255,255,255,0.50);  /* captions on dark — was 0.25 */
}

/* ─── RESET ─── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--light);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
}

/* ─── CUSTOM CURSOR ─── */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--black);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, opacity 0.2s;
}
.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1.5px solid rgba(8,8,8,0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.3s, height 0.3s;
}

/* ─── GRAIN OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(0,0,0,0.006) 3px,
      rgba(0,0,0,0.006) 4px
    );
  pointer-events: none;
  z-index: 0;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250,250,250,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-brand { display: flex; flex-direction: column; gap: 3px; }
.nav-brand-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.26em;
  color: var(--black);
}
.nav-brand-sub {
  font-size: 11px;               /* was 10px */
  letter-spacing: 0.28em;
  color: var(--mid);
  text-transform: uppercase;
}

.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 13px;               /* was 12px */
  letter-spacing: 0.22em;
  color: var(--mid);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--black);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 12px;               /* was 11px */
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  border: 1.5px solid var(--black);
  padding: 10px 26px;
  text-decoration: none;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--black);
  color: var(--white);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  padding: 0 52px 88px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 80% at 70% 40%, rgba(0,0,0,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 60%, rgba(0,0,0,0.75) 0%, transparent 60%),
    linear-gradient(160deg, rgba(6,6,6,0.92) 0%, rgba(18,18,18,0.76) 40%, rgba(10,10,10,0.92) 100%),
    url('../images/hero.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-carbon {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.022) 0px, rgba(255,255,255,0.022) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.022) 0px, rgba(255,255,255,0.022) 1px, transparent 1px, transparent 40px);
}

.hero-line-v {
  position: absolute;
  top: 0; bottom: 0;
  right: 38%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.14) 40%, rgba(255,255,255,0.06) 70%, transparent);
}

.hero-tag {
  position: absolute;
  top: 140px;
  right: 52px;
  width: 36%;
  text-align: right;
}
.hero-tag-label {
  font-size: 12px;               /* was 11px */
  letter-spacing: 0.38em;
  color: var(--dk-text-lo);
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 1s ease 1.2s forwards;
}
.hero-tag-copy {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;               /* was 19px */
  font-weight: 300;
  font-style: italic;
  color: var(--dk-text-md);      /* was 0.45 — now 0.72 */
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 1s ease 1.5s forwards;
}

.hero-content { position: relative; z-index: 2; max-width: 700px; }

.hero-eyebrow {
  font-size: 12px;               /* was 11px */
  letter-spacing: 0.42em;
  color: var(--dk-text-md);      /* was 0.6 */
  text-transform: uppercase;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.45);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(76px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}
.hero-title span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.32);
}

.hero-sub {
  margin-top: 30px;
  font-size: 16px;               /* was 15px */
  letter-spacing: 0.06em;
  color: var(--dk-text-md);      /* was 0.55 */
  line-height: 1.9;
  max-width: 440px;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}

.hero-actions {
  margin-top: 48px;
  display: flex;
  gap: 28px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;               /* was 12px */
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 17px 44px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.07);
  transition: left 0.4s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { background: #e0e0de; }

.btn-ghost {
  font-size: 13px;               /* was 12px */
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dk-text-md);      /* was 0.6 */
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}
.btn-ghost::after {
  content: '→';
  font-size: 17px;
  transition: transform 0.3s;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost:hover::after { transform: translateX(5px); }

.hero-stats {
  position: absolute;
  bottom: 88px;
  right: 52px;
  display: flex;
  gap: 52px;
  opacity: 0;
  animation: fadeUp 1s ease 1.3s forwards;
}
.stat { text-align: right; }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
}
.stat-unit { color: var(--dk-text-md); font-size: 24px; } /* was 0.5 */
.stat-label {
  font-size: 12px;               /* was 11px */
  letter-spacing: 0.22em;
  color: var(--dk-text-lo);      /* was 0.4 */
  text-transform: uppercase;
  margin-top: 6px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── TICKER ─── */
.ticker-wrap {
  overflow: hidden;
  background: var(--black);
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 16px 0;
}
.ticker {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  font-size: 12px;               /* was 11px */
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dk-text-lo);      /* was 0.4 */
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.ticker-item::after {
  content: '✦';
  font-size: 8px;
  color: var(--gold);            /* accent instead of near-invisible */
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SECTION BASE ─── */
section { position: relative; z-index: 1; }

.section-label {
  font-size: 12px;               /* was 11px */
  letter-spacing: 0.36em;
  color: var(--mid);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.section-label::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--ash);
  flex-shrink: 0;
}

/* ─── INTRO ─── */
.intro {
  padding: 128px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
  background: var(--white);
}

.intro-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(46px, 5vw, 70px);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: var(--black);
  margin-bottom: 32px;
}
.intro-title em {
  font-style: normal;
  color: var(--mid);
}

.intro-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;               /* was 19px */
  font-weight: 300;
  line-height: 2;
  color: var(--silver);
  margin-bottom: 32px;
}

.intro-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.intro-list li {
  font-size: 13px;               /* was 12px */
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
  display: flex;
  align-items: center;
  gap: 14px;
}
.intro-list li::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--ash);
  flex-shrink: 0;
}

.intro-visual { position: relative; height: 520px; }

.intro-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
}
.intro-card-main {
  inset: 0 40px 40px 0;
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.intro-card-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.022) 0px, rgba(255,255,255,0.022) 1px, transparent 1px, transparent 32px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.022) 0px, rgba(255,255,255,0.022) 1px, transparent 1px, transparent 32px);
}
.card-cf-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 100px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  position: absolute;
  top: 20px; right: -10px;
}
.card-main-content { position: relative; z-index: 2; }
.card-main-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 8px;
}
.card-main-sub {
  font-size: 12px;               /* was 11px */
  letter-spacing: 0.28em;
  color: var(--dk-text-md);      /* was 0.45 */
  text-transform: uppercase;
}

.intro-card-accent {
  bottom: 0; right: 0;
  width: 160px; height: 160px;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  border: none;
}
.accent-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 54px;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.02em;
}
.accent-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dk-text-md);      /* was 0.45 */
  text-align: center;
  margin-top: 6px;
}

/* ─── CATEGORIES ─── */
.categories {
  padding: 0 52px 128px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}

.cat-card {
  position: relative;
  padding: 68px 60px;
  background: var(--white);
  overflow: hidden;
  transition: background 0.4s;
  cursor: none;
}
.cat-card:hover { background: var(--surface); }

.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.4s;
}
.cat-card:hover::before { background: var(--black); }

.cat-bg-number {
  position: absolute;
  bottom: -20px; right: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 200px;
  line-height: 1;
  color: rgba(0,0,0,0.05);
  pointer-events: none;
  transition: color 0.4s;
}
.cat-card:hover .cat-bg-number { color: rgba(0,0,0,0.09); }

.cat-icon { width: 48px; height: 48px; margin-bottom: 32px; opacity: 0.6; }

.cat-eyebrow {
  font-size: 12px;               /* was 11px */
  letter-spacing: 0.32em;
  color: var(--mid);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.cat-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;               /* was 44px */
  letter-spacing: 0.04em;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 24px;
}

.cat-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 380px;
}

.cat-items { display: flex; flex-direction: column; gap: 4px; margin-bottom: 40px; }
.cat-item {
  font-size: 13px;               /* was 12px */
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}
.cat-card:hover .cat-item { border-color: var(--ash); }
.cat-item::after {
  content: '→';
  color: var(--ash);
  font-size: 15px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s;
}
.cat-card:hover .cat-item::after { opacity: 1; transform: translateX(0); }

.cat-link {
  font-size: 12px;               /* was 11px */
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: gap 0.3s;
}
.cat-link::after { content: '→'; font-size: 17px; }
.cat-card:hover .cat-link { gap: 22px; }

/* ─── PROCESS ─── */
.process {
  padding: 128px 52px;
  background: var(--dk-bg);
  border-top: 1px solid #202020;
  border-bottom: 1px solid #202020;
}
.process-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  margin-bottom: 80px;
  align-items: end;
}
.process-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(46px, 5vw, 66px);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--white);
}
.process-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 300;
  color: var(--dk-text-md);      /* was 0.5 */
  line-height: 2;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.step {
  background: var(--dk-surface);
  padding: 48px 38px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.step:hover { background: #202020; }
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 76px;
  line-height: 1;
  color: rgba(255,255,255,0.09);
  margin-bottom: 20px;
  transition: color 0.3s;
}
.step:hover .step-num { color: rgba(255,255,255,0.18); }
.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 23px;
  letter-spacing: 0.07em;
  color: var(--white);
  margin-bottom: 14px;
}
.step-desc {
  font-size: 14px;               /* was 13px */
  line-height: 1.85;
  color: var(--dk-text-md);      /* was 0.45 */
  letter-spacing: 0.02em;
}
.step-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);       /* accent color instead of plain white */
  transition: width 0.6s ease;
}
.step:hover .step-bar { width: 100%; }

/* ─── WHY SECTION ─── */
.why {
  padding: 128px 52px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 108px;
  align-items: start;
  background: var(--white);
}
.why-sticky { position: sticky; top: 120px; }
.why-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(46px, 5vw, 66px);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: var(--black);
  margin-bottom: 24px;
}
.why-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 300;
  color: var(--silver);
  line-height: 2;
}

.why-features { display: flex; flex-direction: column; gap: 2px; }
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 38px 42px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  align-items: start;
  transition: border-color 0.3s, background 0.3s;
}
.feature:hover {
  border-color: var(--mid);
  background: var(--white);
}
.feature-icon {
  width: 46px; height: 46px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s;
}
.feature:hover .feature-icon { border-color: var(--mid); }
.feature-icon svg { width: 20px; height: 20px; }
.feature-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 23px;               /* was 21px */
  letter-spacing: 0.06em;
  color: var(--black);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 15px;               /* was 14px */
  line-height: 1.85;
  color: var(--silver);
  letter-spacing: 0.02em;
}

/* ─── SPECS BAR ─── */
.specs-bar {
  padding: 52px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
.spec {
  padding: 30px 32px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.spec:last-child { border-right: none; }
.spec-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 46px;               /* was 44px */
  letter-spacing: 0.02em;
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
}
.spec-val span { color: var(--mid); font-size: 28px; }
.spec-name {
  font-size: 12px;               /* was 11px */
  letter-spacing: 0.28em;
  color: var(--mid);
  text-transform: uppercase;
}

/* ─── BESPOKE ─── */
.bespoke {
  padding: 128px 52px;
  background: var(--dk-bg);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 88px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.bespoke::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.014) 0px, rgba(255,255,255,0.014) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.014) 0px, rgba(255,255,255,0.014) 1px, transparent 1px, transparent 40px);
}
.bespoke-content { position: relative; z-index: 2; }
.bespoke-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(50px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 32px;
}
.bespoke-title em {
  font-style: normal;
  display: block;
  color: var(--ash);             /* was --mid (#7a7a7a) on black = poor contrast */
}
.bespoke-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 300;
  line-height: 2;
  color: var(--dk-text-md);      /* was 0.5 */
  margin-bottom: 44px;
}

.bespoke-panel {
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 52px 48px;
  backdrop-filter: blur(4px);
}
.bespoke-panel-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 25px;               /* was 24px */
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.bp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;               /* was 12px */
  letter-spacing: 0.1em;
  text-transform: uppercase;
  gap: 12px;
}
.bp-label { color: var(--dk-text-lo); flex-shrink: 0; }
.bp-val   { color: var(--dk-text-hi); text-align: right; }
.bp-val.gold { color: var(--gold); }

.bespoke-panel-cta {
  display: block;
  text-align: center;
  margin-top: 30px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;               /* was 12px */
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 18px;
  text-decoration: none;
  transition: all 0.3s;
}
.bespoke-panel-cta:hover {
  background: var(--white);
  color: var(--black);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  padding: 108px 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: 'SERIGALA';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20vw;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.035);
  white-space: nowrap;
  pointer-events: none;
}

.cta-eyebrow {
  font-size: 12px;               /* was 11px */
  letter-spacing: 0.38em;
  color: var(--mid);
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
}
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 100px);
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--black);
  margin-bottom: 22px;
  position: relative;
}
.cta-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;               /* was 19px */
  font-weight: 300;
  font-style: italic;
  color: var(--silver);
  margin-bottom: 52px;
  position: relative;
  max-width: 500px;
  line-height: 1.85;
}
.cta-actions { display: flex; gap: 20px; position: relative; }

.btn-primary-dark {
  background: var(--black);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;               /* was 12px */
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 17px 44px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.btn-primary-dark:hover { background: #2a2a2a; }

.cta-contact {
  font-size: 13px;               /* was 12px */
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 52px;
  position: relative;
  line-height: 2.2;
}
.cta-contact a {
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--ash);
  transition: border-color 0.3s;
}
.cta-contact a:hover { border-color: var(--black); }

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  border-top: 1px solid #222;
  padding: 48px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;               /* was 15px */
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.45); /* was 0.35 */
}
.footer-brand span { color: rgba(255,255,255,0.22); }
.footer-copy {
  font-size: 12px;               /* was 11px */
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.38); /* was 0.25 */
  text-transform: uppercase;
}
.footer-how {
  font-size: 12px;               /* was 11px */
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.38); /* was 0.3 */
  text-transform: uppercase;
  text-align: right;
  line-height: 2;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── DIVIDER ─── */
.divider {
  width: 80px; height: 1px;
  background: linear-gradient(to right, var(--ash), transparent);
  margin: 44px 0;
}

/* ════════════════════════════════════════
   MOBILE — 768px and below
   Key goals:
   · Consistent 24px horizontal padding
   · Min font-size 13px everywhere
   · Single-column grids with breathing room
   · Dark sections retain legible contrast
════════════════════════════════════════ */
@media (max-width: 768px) {

  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }

  /* ── NAV ── */
  nav {
    padding: 14px 24px;
    /* keep brand + CTA, hide links */
  }
  .nav-links { display: none; }
  .nav-brand-main { font-size: 17px; }
  .nav-brand-sub { font-size: 11px; letter-spacing: 0.18em; }
  .nav-cta { padding: 9px 18px; font-size: 11px; letter-spacing: 0.18em; }

  /* ── HERO ── */
  .hero {
    padding: 0 24px 64px;
    align-items: flex-end;
    min-height: 100svh;
    /* stack stats below content */
    flex-direction: column;
    justify-content: flex-end;
  }
  .hero-tag, .hero-line-v { display: none; }
  .hero-content { max-width: 100%; width: 100%; }
  .hero-title { font-size: clamp(58px, 16vw, 86px); }
  .hero-eyebrow { font-size: 12px; letter-spacing: 0.28em; }
  .hero-sub {
    font-size: 15px;
    letter-spacing: 0.04em;
    max-width: 100%;
    color: var(--dk-text-md);
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 32px;
  }
  .btn-primary { font-size: 13px; padding: 15px 36px; }
  .btn-ghost   { font-size: 13px; }

  /* Stats: pulled out of absolute, placed inline */
  .hero-stats {
    position: static;
    margin-top: 40px;
    justify-content: flex-start;
    gap: 32px;
    opacity: 1 !important;
    animation: none !important;
  }
  .stat { text-align: left; }
  .stat-number { font-size: 34px; }
  .stat-unit   { font-size: 20px; }
  .stat-label  { font-size: 12px; letter-spacing: 0.18em; }

  /* ── TICKER ── */
  .ticker-item { font-size: 12px; padding: 0 28px; letter-spacing: 0.18em; }

  /* ── SECTION LABEL ── */
  .section-label { font-size: 12px; letter-spacing: 0.26em; }

  /* ── INTRO ── */
  .intro {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 24px;
  }
  .intro-body { font-size: 18px; }
  .intro-list li { font-size: 13px; letter-spacing: 0.12em; }
  .intro-visual { height: 280px; }
  .intro-card-accent { width: 136px; height: 136px; }
  .accent-number { font-size: 44px; }
  .accent-label  { font-size: 11px; letter-spacing: 0.18em; }

  /* ── CATEGORIES ── */
  .categories {
    grid-template-columns: 1fr;
    padding: 0 0 80px;
    gap: 2px;
  }
  .cat-card { padding: 48px 24px; }
  .cat-bg-number { font-size: 140px; }
  .cat-eyebrow { font-size: 12px; }
  .cat-title   { font-size: 40px; }
  .cat-desc    { font-size: 17px; max-width: 100%; }
  .cat-item    { font-size: 13px; letter-spacing: 0.08em; padding: 13px 0; }
  .cat-link    { font-size: 12px; }

  /* ── SPECS BAR ── */
  .specs-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 20px;
    gap: 0;
  }
  .spec { padding: 20px 14px; border-right: none; }
  .spec:nth-child(odd) { border-right: 1px solid var(--border); }
  .spec:nth-child(n+3) { border-top: 1px solid var(--border); }
  .spec-val  { font-size: 32px; }
  .spec-val span { font-size: 20px; }
  .spec-name { font-size: 11px; letter-spacing: 0.18em; }

  /* ── PROCESS ── */
  .process { padding: 80px 24px; }
  .process-header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 44px;
  }
  .process-title  { font-size: clamp(40px, 10vw, 54px); }
  .process-intro  { font-size: 17px; }
  .process-steps  { grid-template-columns: 1fr 1fr; gap: 2px; }
  .step           { padding: 32px 20px; }
  .step-num       { font-size: 54px; }
  .step-title     { font-size: 19px; }
  .step-desc      { font-size: 14px; }

  /* ── WHY ── */
  .why {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 24px;
  }
  .why-sticky { position: static; }
  .why-title  { font-size: clamp(40px, 10vw, 54px); }
  .why-sub    { font-size: 17px; }
  .feature {
    grid-template-columns: 52px 1fr;
    padding: 28px 24px;
    gap: 20px;
  }
  .feature-title { font-size: 20px; }
  .feature-desc  { font-size: 15px; }

  /* ── BESPOKE ── */
  .bespoke {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 24px;
  }
  .bespoke-title { font-size: clamp(46px, 12vw, 68px); }
  .bespoke-body  { font-size: 17px; }
  .bespoke-panel { padding: 36px 24px; }
  .bp-row { font-size: 13px; letter-spacing: 0.08em; flex-wrap: wrap; }
  .bp-label { font-size: 12px; }
  .bespoke-panel-cta { font-size: 13px; letter-spacing: 0.22em; }

  /* ── CTA ── */
  .cta-banner { padding: 80px 24px; }
  .cta-eyebrow { font-size: 12px; letter-spacing: 0.28em; }
  .cta-sub     { font-size: 18px; }
  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
  }
  .btn-primary-dark { width: 100%; text-align: center; padding: 16px 32px; }
  .cta-contact { font-size: 13px; letter-spacing: 0.14em; }

  /* ── FOOTER ── */
  footer {
    flex-direction: column;
    gap: 16px;
    padding: 36px 24px;
    text-align: center;
  }
  .footer-brand { font-size: 15px; }
  .footer-copy  { font-size: 12px; letter-spacing: 0.1em; }
  .footer-how   { text-align: center; font-size: 12px; }
}

/* ════════════════════════════════════════
   SMALL MOBILE — 480px and below
════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-title        { font-size: clamp(50px, 14vw, 68px); }
  .process-steps     { grid-template-columns: 1fr; }
  .step              { padding: 28px 20px; }
  .specs-bar         { grid-template-columns: 1fr 1fr; } /* keep 2-col */
  .feature           { grid-template-columns: 46px 1fr; gap: 14px; }
  .intro-visual      { height: 230px; }
  .intro-card-accent { width: 114px; height: 114px; }
  .cat-card          { padding: 40px 20px; }
  .bespoke-panel     { padding: 28px 20px; }
  .nav-cta           { display: none; } /* too tight on 360px screens */
}
