/* ============================================
   NEARCATION BRAND IDENTITY KIT — STYLES
   Palette: Pawna Dusk
   Fonts: Cormorant Garamond + DM Sans
   ============================================ */

:root {
  --pawna-deep:    #1B4D5C;
  --lake-teal:     #2E7D8C;
  --sunset-copper: #C9956B;
  --shore-sand:    #F7F3EE;
  --dusk-mist:     #D4C9BC;
  --night-water:   #0D2B35;
  --warm-white:    #FDFAF6;
  --text-primary:  #1B4D5C;
  --text-muted:    #7A8E94;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--shore-sand);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ============================================
   COVER
   ============================================ */
.cover {
  min-height: 100vh;
  background: var(--night-water);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
}

.cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 80%, rgba(46,125,140,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 75% 20%, rgba(201,149,107,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cover-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;
}

/* Subtle water ripple lines */
.cover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 40%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 28px,
    rgba(46,125,140,0.06) 28px,
    rgba(46,125,140,0.06) 29px
  );
  pointer-events: none;
}

.cover-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  animation: fadeUp 1.2s ease both;
}

.cover-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(247,243,238,0.4);
}

.cover-logo {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo-icon-large {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}

.logo-icon-large svg { width: 100%; height: 100%; }

.cover-wordmark {
  text-align: left;
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--shore-sand);
  line-height: 1;
}

.brand-rule {
  height: 1px;
  background: rgba(247,243,238,0.2);
  margin: 0.6rem 0;
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sunset-copper);
  opacity: 0.9;
}

.cover-desc {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(247,243,238,0.5);
  letter-spacing: 0.02em;
}

.cover-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: rgba(247,243,238,0.3);
  animation: pulse 2.5s ease-in-out infinite;
  z-index: 2;
}

/* ============================================
   SECTION LABEL BAR
   ============================================ */
.section-label-bar {
  background: var(--pawna-deep);
  padding: 0.75rem 3rem;
  display: flex;
  align-items: center;
}

.section-label-bar span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(247,243,238,0.5);
}

/* ============================================
   BRAND SECTIONS
   ============================================ */
.brand-section {
  padding: 5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3.5rem;
  max-width: 640px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--pawna-deep);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* ============================================
   LOGO SECTION
   ============================================ */
.logo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.logo-card {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.logo-card-label {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 1rem 1.5rem 0.5rem;
}

.logo-card--light { background: var(--warm-white); border: 1px solid var(--dusk-mist); }
.logo-card--dark  { background: var(--night-water); }
.logo-card--icon  { background: var(--shore-sand); border: 1px solid var(--dusk-mist); }
.logo-card--wordmark { background: var(--warm-white); border: 1px solid var(--dusk-mist); }

.logo-display {
  padding: 2rem 1.5rem 2.5rem;
  display: flex;
  align-items: center;
}

.logo-display--center {
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.logo-icon-sm { width: 56px; height: 56px; flex-shrink: 0; }
.logo-icon-lg { width: 80px; height: 80px; }

.logo-text-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.logo-wordmark-display {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--pawna-deep);
  line-height: 1;
}

.logo-thin-rule {
  height: 1px;
  background: rgba(27,77,92,0.2);
  width: 100%;
}

.logo-tagline-display {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sunset-copper);
}

.icon-sizes {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon-xs  { width: 40px; height: 40px; border-radius: 8px; overflow: hidden; }
.icon-xxs { width: 24px; height: 24px; border-radius: 5px; overflow: hidden; }

.wordmark-only {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--pawna-deep);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.wordmark-tagline-only {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--sunset-copper);
}

.logo-rule-box {
  background: rgba(27,77,92,0.04);
  border: 1px solid var(--dusk-mist);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
}

.rule-box-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.rule-icon-wrap { flex-shrink: 0; }

.rule-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pawna-deep);
  margin-bottom: 0.4rem;
}

.rule-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   COLOR SECTION
   ============================================ */
.color-section { background: transparent; }

.color-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.color-swatch {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}

.swatch-block {
  height: 120px;
  width: 100%;
}

.swatch-primary .swatch-block  { background: #1B4D5C; }
.swatch-secondary .swatch-block { background: #2E7D8C; }
.swatch-copper .swatch-block   { background: #C9956B; }
.swatch-sand .swatch-block     { background: #F7F3EE; border-bottom: 1px solid #E8E2D9; }
.swatch-dusk .swatch-block     { background: #D4C9BC; }
.swatch-night .swatch-block    { background: #0D2B35; }

.swatch-info {
  padding: 0.9rem 0.8rem;
  background: var(--warm-white);
}

.swatch-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--pawna-deep);
  margin-bottom: 0.1rem;
}

.swatch-role {
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sunset-copper);
  margin-bottom: 0.5rem;
}

.swatch-hex {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: var(--text-primary);
  font-weight: 600;
}

.swatch-rgb {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

.color-usage {
  background: var(--warm-white);
  border: 1px solid var(--dusk-mist);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.usage-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--pawna-deep);
  margin-bottom: 1.5rem;
}

.usage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.usage-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.usage-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

/* ============================================
   TYPOGRAPHY SECTION
   ============================================ */
.type-showcase {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 3rem;
  border: 1px solid var(--dusk-mist);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.type-block {
  padding: 2.5rem 2.5rem;
  border-bottom: 1px solid var(--dusk-mist);
  background: var(--warm-white);
  transition: background 0.2s;
}

.type-block:last-child { border-bottom: none; }
.type-block:hover { background: #FAF7F3; }

.type-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}

.type-label {
  font-size: 0.62rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sunset-copper);
  font-weight: 500;
}

.type-spec {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.type-sample-display {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--pawna-deep);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.type-sample-display em {
  font-style: italic;
  font-weight: 300;
  color: var(--lake-teal);
}

.type-sample-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--pawna-deep);
  line-height: 1.2;
}

.type-sample-sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sunset-copper);
}

.type-sample-body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 560px;
}

.type-sample-price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--pawna-deep);
}

.price-unit {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-muted);
  font-style: normal;
}

.type-sample-quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--pawna-deep);
  line-height: 1.5;
  max-width: 560px;
  margin-bottom: 0.75rem;
}

.type-quote-attr {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.type-scale {
  background: var(--warm-white);
  border: 1px solid var(--dusk-mist);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.scale-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.scale-row {
  display: grid;
  grid-template-columns: 80px 100px 1fr;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(212,201,188,0.4);
  gap: 1.5rem;
}

.scale-row:last-child { border-bottom: none; }

.scale-label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sunset-copper);
  font-weight: 500;
}

.scale-size {
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  color: var(--pawna-deep);
}

.scale-font {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================
   SOCIAL MEDIA TEMPLATES
   ============================================ */
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.social-template-wide {
  grid-column: 1 / -1;
}

.social-template-wrap { display: flex; flex-direction: column; gap: 0.6rem; }

.template-label {
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.social-template {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

/* Instagram Square */
.ig-square {
  aspect-ratio: 1;
  background: var(--night-water);
}

.ig-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(46,125,140,0.3) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 15%, rgba(201,149,107,0.15) 0%, transparent 60%);
}

.ig-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ig-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ig-icon { width: 22px; height: 22px; }

.ig-brand {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(247,243,238,0.8);
}

.ig-middle { flex: 1; display: flex; flex-direction: column; justify-content: center; }

.ig-eyebrow {
  font-size: 0.55rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sunset-copper);
  margin-bottom: 0.5rem;
}

.ig-headline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--shore-sand);
  line-height: 1.2;
}

.ig-headline em {
  font-style: italic;
  font-weight: 300;
  color: rgba(247,243,238,0.7);
}

.ig-divider {
  height: 1px;
  background: rgba(247,243,238,0.15);
  margin-bottom: 0.6rem;
}

.ig-bottom {}

.ig-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ig-location {
  font-size: 0.55rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(247,243,238,0.4);
}

.ig-price {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-style: italic;
  color: var(--sunset-copper);
}

/* Instagram Story */
.ig-story {
  aspect-ratio: 9/16;
  background: var(--night-water);
}

.story-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 50% at 50% 100%, rgba(46,125,140,0.35) 0%, transparent 65%),
    radial-gradient(ellipse 60% 30% at 70% 10%, rgba(201,149,107,0.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(13,43,53,0.3) 0%, transparent 40%);
}

.story-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.story-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding-top: 0.5rem;
}

.story-icon { width: 32px; height: 32px; }

.story-brand {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  color: rgba(247,243,238,0.7);
}

.story-middle {
  text-align: center;
}

.story-eyebrow {
  font-size: 0.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sunset-copper);
  margin-bottom: 0.5rem;
}

.story-headline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--shore-sand);
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

.story-headline em {
  font-style: italic;
  font-weight: 300;
}

.story-sub {
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  color: rgba(247,243,238,0.45);
  text-transform: uppercase;
}

.story-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.story-price-tag {
  background: rgba(247,243,238,0.07);
  border: 1px solid rgba(247,243,238,0.12);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  text-align: center;
  width: 100%;
}

.story-price-label {
  font-size: 0.48rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(247,243,238,0.4);
  display: block;
  margin-bottom: 0.15rem;
}

.story-price-val {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--sunset-copper);
}

.story-cta {
  background: var(--sunset-copper);
  color: var(--shore-sand);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  border-radius: 4px;
  width: 100%;
  text-align: center;
}

.story-location {
  font-size: 0.5rem;
  letter-spacing: 1.5px;
  color: rgba(247,243,238,0.3);
  text-transform: uppercase;
}

/* LinkedIn Banner */
.linkedin-banner {
  aspect-ratio: 1200/628;
  background: var(--night-water);
}

.banner-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(46,125,140,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 50%, rgba(201,149,107,0.1) 0%, transparent 60%);
}

.banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.banner-left { max-width: 65%; }

.banner-eyebrow {
  font-size: 0.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sunset-copper);
  margin-bottom: 0.6rem;
}

.banner-headline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--shore-sand);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.banner-sub {
  font-size: 0.55rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(247,243,238,0.35);
}

.banner-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.banner-icon { width: 48px; height: 48px; }

.banner-brand {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(247,243,238,0.6);
}

/* WhatsApp Card */
.wa-card {
  aspect-ratio: 1;
  background: var(--pawna-deep);
}

.wa-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(46,125,140,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 10%, rgba(201,149,107,0.1) 0%, transparent 60%);
}

.wa-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wa-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.wa-icon { width: 32px; height: 32px; }

.wa-brand {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--shore-sand);
  line-height: 1;
}

.wa-sub-brand {
  font-size: 0.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(247,243,238,0.4);
  margin-top: 0.15rem;
}

.wa-body { text-align: center; }

.wa-offer-label {
  font-size: 0.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sunset-copper);
  margin-bottom: 0.4rem;
}

.wa-offer-text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: var(--shore-sand);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.wa-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.wa-price-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.wa-price-type {
  font-size: 0.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(247,243,238,0.4);
}

.wa-price-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--sunset-copper);
}

.wa-price-divider {
  width: 1px;
  height: 30px;
  background: rgba(247,243,238,0.15);
}

.wa-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-cta {
  background: var(--sunset-copper);
  color: var(--shore-sand);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
}

.wa-location {
  font-size: 0.5rem;
  letter-spacing: 1px;
  color: rgba(247,243,238,0.3);
  text-transform: uppercase;
}

/* ============================================
   BRAND VOICE SECTION
   ============================================ */
.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.voice-card {
  border-radius: var(--radius-md);
  padding: 2rem;
}

.voice-do {
  background: rgba(27,77,92,0.05);
  border: 1px solid rgba(27,77,92,0.15);
}

.voice-dont {
  background: rgba(201,149,107,0.05);
  border: 1px solid rgba(201,149,107,0.2);
}

.voice-card-label {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.voice-do .voice-card-label   { color: var(--pawna-deep); }
.voice-dont .voice-card-label { color: var(--sunset-copper); }

.voice-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.voice-list li {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--pawna-deep);
  line-height: 1.4;
  padding-left: 1rem;
  border-left: 2px solid rgba(27,77,92,0.2);
}

.voice-list--dont li {
  color: var(--text-muted);
  border-left-color: rgba(201,149,107,0.3);
  text-decoration: line-through;
  text-decoration-color: rgba(201,149,107,0.4);
}

.audience-grid {}

.persona-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.persona-card {
  background: var(--warm-white);
  border: 1px solid var(--dusk-mist);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.persona-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.persona-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--pawna-deep);
  margin-bottom: 0.5rem;
}

.persona-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   MOCKUP SECTION
   ============================================ */
.mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.mockup-card { display: flex; flex-direction: column; gap: 0.6rem; }

/* Business Card */
.biz-card-front {
  background: var(--night-water);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  aspect-ratio: 1.75;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.biz-card-front::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(46,125,140,0.2) 0%, transparent 70%);
}

.biz-icon { width: 36px; height: 36px; position: relative; z-index: 1; flex-shrink: 0; }

.biz-text { position: relative; z-index: 1; }

.biz-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--shore-sand);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.biz-tagline {
  font-size: 0.5rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sunset-copper);
}

.biz-card-back {
  background: var(--shore-sand);
  border: 1px solid var(--dusk-mist);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.5rem;
  aspect-ratio: 1.75;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
}

.biz-contact-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--pawna-deep);
  margin-bottom: 0.3rem;
}

.biz-contact {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* Email Header */
.email-header-mock {
  background: var(--warm-white);
  border: 1px solid var(--dusk-mist);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.email-header-inner {
  background: var(--night-water);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.email-icon { width: 28px; height: 28px; }

.email-brand {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--shore-sand);
  line-height: 1;
}

.email-sub {
  font-size: 0.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(247,243,238,0.4);
  margin-top: 0.15rem;
}

.email-body-mock {
  padding: 1.5rem;
}

.email-greeting {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--pawna-deep);
  margin-bottom: 0.6rem;
}

.email-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.email-cta-mock {
  display: inline-block;
  background: var(--pawna-deep);
  color: var(--shore-sand);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  border-radius: 4px;
}

/* Welcome Tag */
.welcome-tag {
  background: var(--shore-sand);
  border: 1px solid var(--dusk-mist);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.tag-icon { width: 40px; height: 40px; margin-bottom: 0.3rem; }

.tag-welcome {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
}

.tag-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--pawna-deep);
}

.tag-rule {
  width: 40px;
  height: 1px;
  background: var(--sunset-copper);
  opacity: 0.5;
  margin: 0.3rem 0;
}

.tag-message {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */
.brand-footer {
  background: var(--night-water);
  padding: 3rem;
  margin-top: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(247,243,238,0.7);
}

.footer-copy {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(247,243,238,0.25);
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(247,243,238,0.3);
}

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

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.7; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .brand-section { padding: 3rem 1.5rem; }
  .logo-grid { grid-template-columns: 1fr; }
  .color-grid { grid-template-columns: repeat(3, 1fr); }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .social-template-wide { grid-column: 1 / -1; }
  .mockup-grid { grid-template-columns: 1fr; }
  .persona-row { grid-template-columns: 1fr; }
  .voice-grid { grid-template-columns: 1fr; }
  .usage-grid { grid-template-columns: 1fr; }
  .cover-logo { flex-direction: column; text-align: center; }
  .cover-wordmark { text-align: center; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 600px) {
  .color-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: 1fr; }
  .brand-name { font-size: 2rem; }
}