/* ============================================
   RATHOD MEN'S WEAR — Brand Identity Kit
   Design System: Luxury / Refined / Editorial
   ============================================ */

:root {
  --charcoal: #1A1A1A;
  --slate: #2F2F2F;
  --ivory: #F5F0EB;
  --linen: #E8E0D5;
  --gold: #C9A84C;
  --taupe: #8C7B5E;
  --white: #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  --radius: 0px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(245, 240, 235, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--linen);
  transition: var(--transition);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--charcoal); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(201,168,76,0.06) 79px,
      rgba(201,168,76,0.06) 80px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(201,168,76,0.06) 79px,
      rgba(201,168,76,0.06) 80px
    );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  animation: fadeUp 1s ease both;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-logo-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.logo-emblem {
  width: 100px; height: 100px;
  animation: fadeUp 1s 0.2s ease both;
}
.logo-emblem svg { width: 100%; height: 100%; }
.hero-wordmark {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  color: var(--ivory);
  line-height: 1;
  animation: fadeUp 1s 0.3s ease both;
}
.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  animation: fadeUp 1s 0.4s ease both;
}
.hero-descriptor {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(245,240,235,0.55);
  max-width: 480px;
  line-height: 1.6;
  animation: fadeUp 1s 0.5s ease both;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  animation: bounce 2s 1.5s ease infinite;
}

/* ── SECTIONS ── */
.section {
  padding: var(--space-xl) clamp(1.5rem, 6vw, 6rem);
  background: var(--ivory);
}
.section--alt {
  background: var(--charcoal);
  color: var(--ivory);
}
.section-header {
  max-width: 700px;
  margin-bottom: 4rem;
}
.section-number {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.section--alt .section-title { color: var(--ivory); }
.section-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--taupe);
  line-height: 1.7;
  max-width: 560px;
}
.section--alt .section-desc { color: rgba(245,240,235,0.55); }

/* ── LOGO GRID ── */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  background: var(--linen);
  border: 1.5px solid var(--linen);
  margin-bottom: 3rem;
}
.logo-card {
  display: flex;
  flex-direction: column;
  background: var(--ivory);
}
.logo-card--dark { background: var(--charcoal); }
.logo-card--gold { background: var(--linen); }
.logo-card-inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 2rem;
  min-height: 200px;
}
.logo-card-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
  padding: 0.75rem 1.5rem;
  border-top: 1px solid var(--linen);
}
.logo-card--dark .logo-card-label { border-top-color: rgba(255,255,255,0.08); }

.logo-full {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo-emblem-sm { width: 52px; height: 52px; flex-shrink: 0; }
.logo-emblem-sm svg { width: 100%; height: 100%; }
.logo-text-stack {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.logo-text-stack--light .logo-name { color: var(--ivory); }
.logo-text-stack--light .logo-sub { color: var(--gold); }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--charcoal);
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
}
.logo-monogram-only { width: 90px; height: 90px; }
.logo-monogram-only svg { width: 100%; height: 100%; }
.logo-wordmark-only {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.logo-wordmark-only span:first-child {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: var(--charcoal);
}
.logo-rule {
  width: 100%;
  height: 1px;
  background: var(--gold);
}
.logo-wordmark-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* Clear space card */
.logo-rule-card {
  background: var(--white);
  border: 1px solid var(--linen);
  padding: 2.5rem;
}
.logo-rule-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--charcoal);
}
.clearspace-demo {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.clearspace-box {
  position: relative;
  width: 120px; height: 120px;
  border: 1px dashed var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.clearspace-inner {
  width: 60px; height: 60px;
  border: 1px dashed rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.clearspace-arrows {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.arrow-top, .arrow-side {
  position: absolute;
  font-size: 0.55rem;
  font-family: var(--font-body);
  color: var(--gold);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.arrow-top { top: 2px; left: 50%; transform: translateX(-50%); }
.arrow-side { right: -60px; top: 50%; transform: translateY(-50%); }
.clearspace-rules {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--slate);
  font-family: var(--font-body);
}
.rule-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45rem;
}

/* ── COLOR GRID ── */
.color-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 3rem;
}
.color-swatch {
  min-height: 160px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-end;
  transition: transform var(--transition);
  cursor: default;
}
.color-swatch--large { min-height: 220px; }
.color-swatch:hover { transform: scale(1.02); z-index: 2; }
.swatch-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.swatch-info--light .swatch-name,
.swatch-info--light .swatch-hex,
.swatch-info--light .swatch-role,
.swatch-info--light .swatch-values span { color: rgba(245,240,235,0.9) !important; }
.swatch-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
}
.swatch-hex {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}
.swatch-role {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 0.1rem;
}
.swatch-values {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-top: 0.4rem;
}
.swatch-values span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: var(--taupe);
  letter-spacing: 0.05em;
}

/* Color usage */
.color-usage {
  margin-bottom: 3rem;
}
.color-usage h3,
.color-combos h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}
.usage-bar {
  display: flex;
  height: 48px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.usage-segment {
  height: 100%;
  transition: var(--transition);
}
.usage-legend {
  display: flex;
  gap: 2rem;
}
.usage-legend span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(245,240,235,0.6);
  letter-spacing: 0.05em;
}
.usage-legend i {
  display: inline-block;
  width: 14px; height: 14px;
  flex-shrink: 0;
}

/* Color combos */
.combo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5px;
  background: rgba(255,255,255,0.08);
}
.combo {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: var(--transition);
}
.combo:hover { opacity: 0.85; }
.combo-label {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
}
.combo-name {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ── TYPOGRAPHY ── */
.type-showcase {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 3rem;
  border: 1px solid var(--linen);
}
.type-family {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
}
.type-meta {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--linen);
  background: var(--white);
}
.type-role {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.type-name {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.type-desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--taupe);
  line-height: 1.6;
}
.type-specimens {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  background: var(--ivory);
}
.specimen { display: flex; flex-direction: column; gap: 0.5rem; }
.specimen-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
}
.specimen-text { color: var(--charcoal); }
.type-divider {
  height: 1px;
  background: var(--linen);
}

/* Type scale */
.type-scale-card {
  background: var(--white);
  border: 1px solid var(--linen);
  padding: 2.5rem;
}
.type-scale-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.scale-table { display: flex; flex-direction: column; }
.scale-row {
  display: grid;
  grid-template-columns: 80px 220px 100px 80px 80px;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--linen);
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--slate);
  align-items: center;
}
.scale-row--header {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  padding-bottom: 0.75rem;
}
.scale-row:last-child { border-bottom: none; }

/* ── SOCIAL TEMPLATES ── */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}
.social-template-wrap { display: flex; flex-direction: column; gap: 0.75rem; }
.social-template-wrap--wide { grid-column: 1 / -1; }
.template-platform {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,235,0.4);
}

/* Instagram Post */
.ig-post {
  aspect-ratio: 1/1;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border: 1px solid rgba(201,168,76,0.2);
}
.ig-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%),
    repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(201,168,76,0.03) 30px, rgba(201,168,76,0.03) 31px);
}
.ig-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.ig-top-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: auto;
}
.ig-monogram {
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory);
}
.ig-handle {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(245,240,235,0.5);
}
.ig-main { margin-top: auto; margin-bottom: 1.5rem; }
.ig-eyebrow {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.ig-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.ig-headline em { font-style: italic; color: var(--gold); }
.ig-rule {
  width: 40px; height: 1px;
  background: var(--gold);
  margin-bottom: 0.75rem;
}
.ig-body {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(245,240,235,0.6);
  line-height: 1.6;
  max-width: 240px;
}
.ig-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.ig-tag {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: rgba(201,168,76,0.6);
  letter-spacing: 0.05em;
}
.ig-cta {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Instagram Story */
.ig-story {
  aspect-ratio: 9/16;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(201,168,76,0.2);
}
.story-accent-line {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.story-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.story-monogram {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ivory);
}
.story-brand {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,240,235,0.7);
}
.story-mid { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.story-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.story-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
}
.story-headline em { font-style: italic; color: var(--gold); }
.story-bottom { text-align: center; }
.story-swipe {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,235,0.5);
}
.story-arrow {
  font-size: 1rem;
  color: var(--gold);
  animation: bounce 2s ease infinite;
}

/* LinkedIn Banner */
.linkedin-banner {
  aspect-ratio: 4/1;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  gap: 2rem;
  border: 1px solid rgba(201,168,76,0.2);
  position: relative;
  overflow: hidden;
}
.linkedin-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.li-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.li-brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.li-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--ivory);
}
.li-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.li-center { flex: 1; text-align: center; }
.li-tagline {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ivory);
  margin-bottom: 0.4rem;
}
.li-desc {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(245,240,235,0.4);
}
.li-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}
.li-divider {
  width: 1px; height: 40px;
  background: rgba(201,168,76,0.3);
}
.li-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: right;
}
.li-contact span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(245,240,235,0.5);
  letter-spacing: 0.05em;
}

/* Facebook Post */
.fb-post {
  aspect-ratio: 1200/630;
  background: var(--charcoal);
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(201,168,76,0.2);
  overflow: hidden;
  position: relative;
}
.fb-left {
  flex: 1;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  border-right: 1px solid rgba(201,168,76,0.15);
}
.fb-eyebrow {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.fb-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
}
.fb-rule {
  width: 40px; height: 1px;
  background: var(--gold);
}
.fb-body {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(245,240,235,0.55);
  line-height: 1.6;
  max-width: 320px;
}
.fb-cta-btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--gold);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  width: fit-content;
  transition: var(--transition);
  cursor: pointer;
}
.fb-cta-btn:hover {
  background: var(--gold);
  color: var(--charcoal);
}
.fb-right {
  width: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(201,168,76,0.04);
}
.fb-monogram-large {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 300;
  color: rgba(201,168,76,0.15);
  line-height: 1;
}
.fb-brand-name {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.4);
}

/* ── USAGE GUIDELINES ── */
.usage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  background: var(--linen);
  border: 1.5px solid var(--linen);
  margin-bottom: 3rem;
}
.usage-card {
  background: var(--white);
  padding: 2.5rem;
}
.usage-icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.usage-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.voice-pairs { display: flex; flex-direction: column; gap: 0.75rem; }
.voice-pair {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
}
.voice-is {
  font-weight: 600;
  color: var(--charcoal);
  min-width: 110px;
}
.voice-not {
  color: var(--taupe);
  font-style: italic;
}
.copy-examples { display: flex; flex-direction: column; gap: 1rem; }
.copy-do, .copy-dont {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.copy-tag {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.copy-tag--do { color: #2D6A1E; }
.copy-tag--dont { color: #B5563E; }
.copy-do p, .copy-dont p {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--slate);
  line-height: 1.4;
}
.usage-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.usage-list li {
  font-family: var(--font-body);
  font-size: 0.825rem;
  color: var(--slate);
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}
.usage-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

/* Taglines */
.taglines-card {
  background: var(--charcoal);
  border: 1px solid var(--linen);
  padding: 2.5rem;
}
.taglines-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 2rem;
}
.taglines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5px;
  background: rgba(255,255,255,0.06);
}
.tagline-item {
  background: rgba(26,26,26,0.8);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: var(--transition);
}
.tagline-item:hover { background: rgba(201,168,76,0.06); }
.tagline-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.4;
}
.tagline-use {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── FOOTER ── */
.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 3rem clamp(1.5rem, 6vw, 6rem);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-brand {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--ivory);
}
.footer-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-note {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(245,240,235,0.3);
  letter-spacing: 0.05em;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-6px); }
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.5rem; }
  .type-family { grid-template-columns: 1fr; }
  .type-meta { border-right: none; border-bottom: 1px solid var(--linen); }
  .scale-row { grid-template-columns: 70px 1fr 80px; }
  .scale-row span:nth-child(4),
  .scale-row span:nth-child(5) { display: none; }
  .linkedin-banner { aspect-ratio: auto; flex-direction: column; padding: 1.5rem; gap: 1rem; }
  .li-right { display: none; }
  .fb-post { aspect-ratio: auto; flex-direction: column; }
  .fb-right { width: 100%; padding: 1.5rem; }
  .color-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .section { padding: 4rem 1.5rem; }
  .color-grid { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: 1fr; }
  .combo-grid { grid-template-columns: repeat(2, 1fr); }
  .taglines-grid { grid-template-columns: 1fr; }
  .usage-grid { grid-template-columns: 1fr; }
}