/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --mahogany:    #5B3A29;
  --terracotta:  #C9956B;
  --golden:      #E6C07B;
  --ivory:       #F9F3EB;
  --forest:      #3D2B1F;
  --sage:        #8FAF8A;
  --cream-mid:   #EDE4D6;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--forest);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--terracotta); border-radius: 3px; }

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

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

/* ── SECTION SHARED ── */
.section {
  padding: 120px 0;
}
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--mahogany);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--terracotta);
}
.section-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--forest);
  opacity: 0.75;
  max-width: 560px;
  margin-bottom: 64px;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--forest);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

/* Gradient overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,149,107,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(91,58,41,0.3) 0%, transparent 50%);
  pointer-events: none;
}

/* ── NAV ── */
.nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 48px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.02em;
}
.nav__mark { width: 32px; height: 32px; }
.nav__tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  opacity: 0.8;
}

/* ── HERO CONTENT ── */
.hero__content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 48px 80px;
  max-width: 900px;
}
.hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--ivory);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.hero__title em {
  font-style: italic;
  color: var(--golden);
}
.hero__sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ivory);
  opacity: 0.6;
  max-width: 480px;
  margin-bottom: 56px;
}
.hero__scroll {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.hero__scroll-line {
  width: 60px;
  height: 1px;
  background: var(--terracotta);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleX(1); }
  50% { opacity: 1; transform: scaleX(1.3); transform-origin: left; }
}

/* ── BG TEXT ── */
.hero__bg-text {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,149,107,0.12);
  letter-spacing: 0.05em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* ══════════════════════════════════════
   BRAND STORY
══════════════════════════════════════ */
.brand-story { background: var(--ivory); }

.brand-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.brand-story__left .section-title {
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.05;
}
.brand-story__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.brand-story__card {
  background: white;
  border: 1px solid var(--cream-mid);
  border-radius: 2px;
  padding: 28px 32px;
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.brand-story__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(91,58,41,0.08);
}
.brand-story__card-icon {
  font-size: 20px;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.brand-story__card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--mahogany);
  margin-bottom: 8px;
}
.brand-story__card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--forest);
  opacity: 0.75;
}

/* ══════════════════════════════════════
   LOGO SECTION
══════════════════════════════════════ */
.logo-section { background: var(--cream-mid); }

.logo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 48px;
}
.logo-card {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s var(--ease-out);
}
.logo-card:hover { transform: scale(1.01); }
.logo-card--light { background: var(--ivory); }
.logo-card--dark  { background: var(--forest); }
.logo-card--cream { background: var(--cream-mid); }

.logo-card__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.logo-card--dark .logo-card__label { color: rgba(230,192,123,0.7); }

.logo-display {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}
.logo-full {
  display: flex;
  align-items: center;
  gap: 16px;
}
.logo-icon { width: 56px; height: 56px; }
.logo-icon--lg { width: 80px; height: 80px; }

.logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-wordmark__main {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--mahogany);
  letter-spacing: 0.04em;
}
.logo-wordmark__sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.logo-wordmark--light .logo-wordmark__main { color: var(--ivory); }
.logo-wordmark--light .logo-wordmark__sub  { color: var(--golden); }
.logo-wordmark--standalone .logo-wordmark__main { font-size: 36px; }

/* Logo Rules */
.logo-rules {
  background: white;
  border: 1px solid var(--cream-mid);
  padding: 40px;
  border-radius: 2px;
}
.logo-rules__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--mahogany);
  margin-bottom: 24px;
}
.logo-rules__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.logo-rule {
  padding: 20px 24px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.logo-rule--do  { background: rgba(143,175,138,0.12); border-left: 3px solid var(--sage); }
.logo-rule--dont { background: rgba(201,149,107,0.1); border-left: 3px solid var(--terracotta); }
.logo-rule p { font-size: 13px; line-height: 1.6; color: var(--forest); opacity: 0.8; }
.rule-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  width: fit-content;
}
.rule-badge--do   { background: var(--sage); color: white; }
.rule-badge--dont { background: var(--terracotta); color: white; }

/* ══════════════════════════════════════
   COLOR SECTION
══════════════════════════════════════ */
.color-section { background: var(--ivory); }

.color-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.color-swatch {
  display: flex;
  flex-direction: column;
  gap: 0;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out);
}
.color-swatch:hover { transform: translateY(-6px); }
.color-swatch__block {
  height: 160px;
  border-radius: 2px 2px 0 0;
  transition: height 0.3s var(--ease-out);
}
.color-swatch:hover .color-swatch__block { height: 180px; }
.color-swatch__info {
  background: white;
  border: 1px solid var(--cream-mid);
  border-top: none;
  padding: 14px 16px;
  border-radius: 0 0 2px 2px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.color-swatch__name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--mahogany);
}
.color-swatch__hex {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: var(--terracotta);
  letter-spacing: 0.05em;
}
.color-swatch__role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.5;
}

/* Color Combos */
.color-combos { }
.color-combos__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--mahogany);
  margin-bottom: 24px;
}
.color-combos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.combo {
  height: 100px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.3s var(--ease-out);
}
.combo:hover { transform: scale(1.03); }
.combo__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}
.combo__text {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}
.combo--1 { background: var(--ivory); color: var(--mahogany); border: 1px solid var(--cream-mid); }
.combo--2 { background: var(--mahogany); color: var(--ivory); }
.combo--3 { background: var(--forest); color: var(--golden); }
.combo--4 { background: var(--ivory); color: var(--terracotta); border: 1px solid var(--cream-mid); }

/* ══════════════════════════════════════
   TYPOGRAPHY SECTION
══════════════════════════════════════ */
.type-section { background: var(--forest); }
.type-section .section-label { color: var(--golden); }
.type-section .section-title { color: var(--ivory); }
.type-section .section-desc  { color: var(--ivory); opacity: 0.55; }

.type-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 64px;
}
.type-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 48px;
}
.type-block__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.type-block__font-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--golden);
}
.type-block__role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.4;
}
.type-block__specimen {
  margin-bottom: 32px;
}
.type-specimen-xl {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
  margin-bottom: 16px;
}
.type-specimen-xl--body {
  font-family: var(--font-body);
  font-weight: 300;
}
.type-specimen-phrase {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--ivory);
  opacity: 0.7;
  line-height: 1.2;
  font-style: italic;
}
.type-specimen-phrase--body {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 22px;
  font-weight: 300;
}
.type-block__weights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.weight {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--ivory);
  opacity: 0.5;
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
}
.weight--light   { font-weight: 300; }
.weight--regular { font-weight: 400; }
.weight--medium  { font-weight: 500; }
.weight--semibold { font-weight: 600; }
.weight--body { font-family: var(--font-body); }
.type-block__alphabet {
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 1.8;
  color: var(--ivory);
  opacity: 0.3;
  letter-spacing: 0.05em;
}
.type-block__alphabet--body { font-family: var(--font-body); }

/* Type Scale */
.type-scale {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 48px;
}
.type-scale__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--golden);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.type-scale__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.scale-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.scale-item__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.35;
  padding-top: 4px;
}
.scale-item__text { color: var(--ivory); }
.scale-item__text--d1  { font-family: var(--font-display); font-size: 72px; font-weight: 300; line-height: 1; }
.scale-item__text--h1  { font-family: var(--font-display); font-size: 48px; font-weight: 400; line-height: 1.1; }
.scale-item__text--h2  { font-family: var(--font-display); font-size: 36px; font-weight: 500; line-height: 1.2; }
.scale-item__text--h3  { font-family: var(--font-body); font-size: 24px; font-weight: 600; line-height: 1.3; }
.scale-item__text--body { font-family: var(--font-body); font-size: 16px; font-weight: 400; line-height: 1.75; opacity: 0.7; }
.scale-item__text--caption { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.5; }

/* ══════════════════════════════════════
   SOCIAL MEDIA TEMPLATES
══════════════════════════════════════ */
.social-section { background: var(--cream-mid); }

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.social-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.social-card__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.social-template {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(61,43,31,0.12);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.social-template:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(61,43,31,0.2);
}

/* Property Feature */
.social-template--property { aspect-ratio: 1/1; }
.st-bg--property {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #4a3020 0%, #2a1a0e 50%, #1a0e06 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
}
.st-bg--property::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=600&q=80") center/cover;
  opacity: 0.35;
}
.st-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,15,5,0.9) 0%, transparent 60%);
}
.st-content {
  position: relative;
  z-index: 2;
  padding: 24px;
  width: 100%;
}
.st-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--golden);
  background: rgba(230,192,123,0.15);
  border: 1px solid rgba(230,192,123,0.3);
  padding: 4px 10px;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 10px;
}
.st-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 8px;
}
.st-location {
  font-size: 11px;
  color: var(--ivory);
  opacity: 0.65;
  margin-bottom: 12px;
}
.st-divider {
  width: 32px;
  height: 1px;
  background: var(--terracotta);
  margin-bottom: 12px;
}
.st-details {
  font-size: 11px;
  color: var(--ivory);
  opacity: 0.7;
  display: flex;
  gap: 8px;
}
.st-logo-small {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--ivory);
  opacity: 0.8;
}
.st-logo-small svg { width: 20px; height: 20px; }

/* Quote */
.social-template--quote { aspect-ratio: 1/1; }
.st-bg--quote {
  width: 100%; height: 100%;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  position: relative;
}
.st-quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--terracotta);
  opacity: 0.2;
  line-height: 0.8;
  margin-bottom: 8px;
}
.st-quote-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--mahogany);
  line-height: 1.4;
  margin-bottom: 16px;
}
.st-quote-attr {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
}
.st-quote-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--mahogany);
}
.st-quote-logo svg { width: 20px; height: 20px; }

/* Story */
.social-template--story { aspect-ratio: 9/16; }
.st-bg--story {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, var(--forest) 0%, var(--mahogany) 100%);
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  position: relative;
}
.st-story-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: auto;
}
.st-story-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: 0.04em;
}
.st-story-logo svg { width: 22px; height: 22px; }
.st-story-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
}
.st-story-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--golden);
  background: rgba(230,192,123,0.15);
  border: 1px solid rgba(230,192,123,0.3);
  padding: 4px 10px;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 16px;
}
.st-story-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.0;
  margin-bottom: 16px;
}
.st-story-sub {
  font-size: 13px;
  color: var(--ivory);
  opacity: 0.6;
  line-height: 1.5;
  margin-bottom: 24px;
}
.st-story-cta {
  background: var(--terracotta);
  color: var(--ivory);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 12px 20px;
  border-radius: 2px;
  width: fit-content;
}
.st-story-swipe {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.4;
  text-align: center;
  padding-top: 16px;
}

/* LinkedIn */
.social-template--linkedin { aspect-ratio: 1.91/1; }
.st-bg--linkedin {
  width: 100%; height: 100%;
  background: var(--forest);
  display: flex;
  flex-direction: column;
  padding: 24px 28px;
}
.st-li-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.st-li-logo { width: 36px; height: 36px; }
.st-li-brand {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--ivory);
}
.st-li-handle {
  font-size: 10px;
  color: var(--golden);
  opacity: 0.7;
  letter-spacing: 0.08em;
}
.st-li-content { flex: 1; }
.st-li-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--golden);
  margin-bottom: 8px;
}
.st-li-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 10px;
}
.st-li-body {
  font-size: 11px;
  line-height: 1.6;
  color: var(--ivory);
  opacity: 0.55;
  margin-bottom: 16px;
}
.st-li-cta {
  font-size: 11px;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.04em;
}

/* Carousel */
.social-template--carousel { aspect-ratio: 1/1; }
.st-bg--carousel {
  width: 100%; height: 100%;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  padding: 28px;
  position: relative;
}
.st-carousel-num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--terracotta);
  margin-bottom: auto;
}
.st-carousel-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.st-carousel-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.st-carousel-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--mahogany);
  line-height: 1.1;
  margin-bottom: 16px;
}
.st-carousel-sub {
  font-size: 12px;
  font-weight: 500;
  color: var(--terracotta);
  letter-spacing: 0.06em;
}
.st-carousel-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--mahogany);
  opacity: 0.6;
}
.st-carousel-logo svg { width: 18px; height: 18px; }

/* Reel */
.social-template--reel { aspect-ratio: 9/16; }
.st-bg--reel {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #2a1a0e 0%, #1a0e06 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.st-bg--reel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=400&q=80") center/cover;
  opacity: 0.4;
}
.st-reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30,15,5,0.3) 0%, rgba(30,15,5,0.7) 100%);
}
.st-reel-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
}
.st-reel-play {
  font-size: 32px;
  color: var(--ivory);
  opacity: 0.8;
  margin-bottom: 16px;
}
.st-reel-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 10px;
}
.st-reel-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--golden);
  opacity: 0.8;
}
.st-reel-logo {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--ivory);
  opacity: 0.7;
  white-space: nowrap;
}
.st-reel-logo svg { width: 18px; height: 18px; }

/* ══════════════════════════════════════
   BRAND VOICE
══════════════════════════════════════ */
.voice-section { background: var(--ivory); }

.voice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.voice-card {
  background: white;
  border: 1px solid var(--cream-mid);
  padding: 32px 28px;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.voice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(91,58,41,0.1);
}
.voice-card__icon {
  font-size: 22px;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.voice-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--mahogany);
  margin-bottom: 10px;
}
.voice-card > p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--forest);
  opacity: 0.7;
  margin-bottom: 20px;
}
.voice-example {
  background: var(--ivory);
  border-left: 3px solid var(--terracotta);
  padding: 12px 16px;
  border-radius: 0 2px 2px 0;
}
.voice-example__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 6px;
}
.voice-example p {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--mahogany);
  line-height: 1.5;
}

/* ══════════════════════════════════════
   APPLICATIONS
══════════════════════════════════════ */
.applications-section { background: var(--cream-mid); }

.applications-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.app-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.app-card__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
}

/* Business Card */
.business-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(61,43,31,0.15);
}
.bc-front, .bc-back {
  aspect-ratio: 1.75/1;
  border-radius: 4px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.bc-front {
  background: var(--forest);
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.bc-logo { width: 32px; height: 32px; }
.bc-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.04em;
}
.bc-tagline {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--golden);
  opacity: 0.7;
}
.bc-back {
  background: var(--ivory);
  border: 1px solid var(--cream-mid);
  justify-content: flex-end;
  gap: 4px;
}
.bc-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--mahogany);
}
.bc-title {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
}
.bc-contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bc-contact span {
  font-size: 8px;
  color: var(--forest);
  opacity: 0.6;
}

/* Letterhead */
.letterhead {
  background: white;
  border: 1px solid var(--cream-mid);
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(61,43,31,0.08);
}
.lh-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.lh-logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lh-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--mahogany);
}
.lh-sub {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.lh-contact-top {
  font-size: 9px;
  color: var(--forest);
  opacity: 0.5;
}
.lh-divider {
  height: 2px;
  background: linear-gradient(to right, var(--mahogany), var(--terracotta), transparent);
  margin-bottom: 16px;
}
.lh-body { padding: 0 0 16px; }
.lh-date {
  font-size: 9px;
  color: var(--terracotta);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.lh-salutation {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--mahogany);
  margin-bottom: 8px;
}
.lh-text {
  font-size: 9px;
  line-height: 1.7;
  color: var(--forest);
  opacity: 0.6;
  margin-bottom: 12px;
}
.lh-lines { display: flex; flex-direction: column; gap: 6px; }
.lh-line { height: 1px; background: var(--cream-mid); }
.lh-line--short { width: 40%; }
.lh-footer {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--cream-mid);
  font-size: 8px;
  color: var(--forest);
  opacity: 0.4;
}

/* Menu Card */
.menu-card {
  background: var(--ivory);
  border: 1px solid var(--cream-mid);
  border-radius: 4px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(61,43,31,0.08);
}
.mc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--mahogany);
  margin-bottom: 12px;
}
.mc-divider {
  height: 1px;
  background: linear-gradient(to right, var(--terracotta), transparent);
  margin-bottom: 16px;
}
.mc-section { margin-bottom: 14px; }
.mc-section-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
}
.mc-item {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--forest);
  opacity: 0.75;
  padding: 4px 0;
  border-bottom: 1px dotted var(--cream-mid);
}
.mc-footer {
  font-size: 8px;
  color: var(--forest);
  opacity: 0.45;
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid var(--cream-mid);
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════
   HASHTAG SECTION
══════════════════════════════════════ */
.hashtag-section { background: var(--ivory); }

.hashtag-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hashtag-tier {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.hashtag-tier__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.4;
  min-width: 120px;
  padding-top: 8px;
}
.hashtag-tier__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.htag {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 24px;
  transition: transform 0.2s var(--ease-out);
  cursor: default;
}
.htag:hover { transform: scale(1.05); }
.htag--brand { background: var(--mahogany); color: var(--ivory); }
.htag--cat   { background: var(--terracotta); color: var(--ivory); }
.htag--disc  { background: white; color: var(--mahogany); border: 1px solid var(--cream-mid); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--forest);
  padding: 64px 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 12px;
}
.footer__brand p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ivory);
  opacity: 0.4;
}
.footer__note p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--ivory);
  opacity: 0.35;
  margin-bottom: 16px;
}
.footer__copy {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--terracotta) !important;
  opacity: 1 !important;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .color-grid { grid-template-columns: repeat(3, 1fr); }
  .voice-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .applications-grid { grid-template-columns: 1fr 1fr; }
  .scale-item { grid-template-columns: 200px 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 80px 0; }
  .nav { padding: 24px; }
  .hero__content { padding: 0 24px 60px; }
  .brand-story__grid { grid-template-columns: 1fr; gap: 40px; }
  .logo-grid { grid-template-columns: 1fr; }
  .color-grid { grid-template-columns: repeat(2, 1fr); }
  .color-combos__grid { grid-template-columns: repeat(2, 1fr); }
  .type-showcase { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .voice-grid { grid-template-columns: 1fr; }
  .applications-grid { grid-template-columns: 1fr; }
  .logo-rules__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .scale-item { grid-template-columns: 1fr; gap: 8px; }
  .hashtag-tier { flex-direction: column; gap: 12px; }
  .scale-item__text--d1 { font-size: 48px; }
  .scale-item__text--h1 { font-size: 36px; }
}