/* ============================================================
   WAYLINE.SITE  —  Main Stylesheet
   Paper-texture / architectural / grassroots aesthetic
   Brand colours:
     Wayline     #CB7F00
     Transit     #12A19A
     Cities      #007A1F
     Wilderness  #A19F12
   ============================================================ */

/* === Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Hermeneus+One&family=Gasoek+One&family=Konkhmer+Sleokchher&family=Skranji:wght@400;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,400&display=swap');

/* === Design tokens === */
:root {
  --wayline:       #CB7F00;
  --wayline-dark:  #9a5f00;
  --transit:       #12A19A;
  --transit-dark:  #0b6e69;
  --cities:        #007A1F;
  --cities-dark:   #005015;
  --wilderness:    #A19F12;
  --wilderness-dark: #6e6c0b;

  /* Paper palette */
  --paper:         #f4ede0;
  --paper-mid:     #ece4d3;
  --paper-dark:    #e0d5be;
  --ink:           #2c1f0f;
  --ink-mid:       #5c4030;
  --ink-light:     #8a6a4e;

  /* Section backgrounds (hard-coded brand darks) */
  --bg-hero:       #f4ede0;
  --bg-about:      #ece4d3;
  --bg-transit:    #0d1f1e;
  --bg-cities:     #0d1a10;
  --bg-wilderness: #141300;
  --bg-connect:    #1a1408;

  /* Brand accent colours (used for edge bars, buttons, handles) */
  --bg-transit-accent:    #12A19A;
  --bg-cities-accent:     #007A1F;
  --bg-wilderness-accent: #A19F12;

  --light: #f4ede0;
  --white: #faf7f2;
  --dark:  #2c1f0f;

  /* Hermeneus One — core Wayline display font */
  --font-display:  'Hermeneus One', Georgia, 'Times New Roman', serif;
  /* Gasoek One — Transit section */
  --font-transit:  'Gasoek One', 'Hermeneus One', serif;
  /* Konkhmer Sleokchher — Cities section */
  --font-cities:   'Konkhmer Sleokchher', 'Hermeneus One', serif;
  /* Skranji — Wilderness section (bold urban stencil; update if a specific typeface is confirmed) */
  --font-wilderness: 'Skranji', 'Hermeneus One', serif;
  /* DM Sans — body copy */ 
  --font-body:     'DM Sans', system-ui, sans-serif;

  /* Slightly less aggressive radii for an architectural/editorial feel */
  --radius-sm: 0.15rem;
  --radius:    0.35rem;
  --radius-lg: 0.6rem;

  --shadow-sm: 0 2px 8px rgba(44,31,15,0.10);
  --shadow:    0 6px 20px rgba(44,31,15,0.14);
  --shadow-lg: 0 16px 40px rgba(44,31,15,0.2);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }

/* ============================================================
   NAVIGATION  — parchment / editorial masthead
   ============================================================ */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(244,237,224,0.93);
  backdrop-filter: blur(8px);
  border-bottom: 1.5px solid rgba(44,31,15,0.12);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--wayline);
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  color: rgba(44,31,15,0.58);
  transition: color 0.2s;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--wayline); }

/* ============================================================
   REVEAL ANIMATION (IntersectionObserver)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1),
              transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.5s; }

/* ============================================================
   HERO  — warm paper with dark ink
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background-color: var(--bg-hero);
  background-image: url('patterns/hero.svg');
  background-repeat: repeat;
  background-size: 200px 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2rem 5rem;
  overflow: hidden;
}

/* Warm amber wash from above */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 50% at 50% 45%,
    rgba(203,127,0,0.07) 0%,
    transparent 70%);
  pointer-events: none;
}

/* Amber rule at top — like a broadsheet masthead line */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--wayline);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(203,127,0,0.1);
  border: 1.5px solid rgba(203,127,0,0.4);
  color: var(--wayline);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 0;
  margin-bottom: 1.75rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin-bottom: 1.4rem;
}

.hero h1 .accent { color: var(--wayline); }

.hero-tagline {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--ink-mid);
  max-width: 500px;
  line-height: 1.85;
  margin-bottom: 2.8rem;
}

.hero-tagline em {
  font-style: italic;
  color: var(--ink);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink-light);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: bounce 2.2s ease-in-out infinite;
}
.scroll-hint svg { width: 18px; height: 18px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%        { transform: translateX(-50%) translateY(7px); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.82rem 1.9rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
  text-transform: uppercase;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--wayline);
  color: var(--white);
  box-shadow: 0 3px 12px rgba(203,127,0,0.28);
}
.btn-primary:hover {
  background: #d98a00;
  box-shadow: 0 6px 20px rgba(203,127,0,0.38);
}

.btn-ghost {
  border: 1.5px solid rgba(44,31,15,0.28);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--wayline);
  color: var(--wayline);
}

/* ============================================================
   WAVE DIVIDERS
   ============================================================ */
.wave { display: block; width: 100%; overflow: hidden; line-height: 0; }
.wave svg { display: block; width: 100%; }

/* ============================================================
   UTILITY
   ============================================================ */
.container { max-width: 1120px; margin: 0 auto; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  border-radius: 0;
  margin-bottom: 1.1rem;
  color: var(--white);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 0.9rem;
}

.section-sub {
  font-size: 1rem;
  line-height: 1.85;
  max-width: 600px;
  opacity: 0.8;
  margin-bottom: 2.5rem;
}

/* ============================================================
   ABOUT / MISSION  — paper mid-tone
   ============================================================ */
.about {
  padding: 6rem 2rem;
  background: var(--bg-about);
  background-image: url('patterns/hero.svg');
  background-repeat: repeat;
  background-size: 200px 200px;
  position: relative;
}

.about-header { margin-bottom: 3rem; }

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.mission-card {
  background: var(--paper);
  border-radius: 0;
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--wayline);
  border-left: 1px solid rgba(44,31,15,0.1);
  border-right: 1px solid rgba(44,31,15,0.1);
  border-bottom: 1px solid rgba(44,31,15,0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.mission-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.mission-icon { font-size: 2rem; margin-bottom: 0.9rem; line-height: 1; }
.mission-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.mission-card p { font-size: 0.9rem; line-height: 1.7; opacity: 0.7; }

/* ============================================================
   BLOG PREVIEW STRIP  — about section
   ============================================================ */
.blog-preview {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(44,31,15,0.12);
}

.blog-preview-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 1.5rem;
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.blog-preview-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-top: 3px solid var(--wayline);
  border-left: 1px solid rgba(44,31,15,0.12);
  border-right: 1px solid rgba(44,31,15,0.12);
  border-bottom: 1px solid rgba(44,31,15,0.12);
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s;
}
.blog-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.blog-preview-cat {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wayline);
  margin-bottom: 0.65rem;
}

.blog-preview-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.blog-preview-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-preview-card h3 a:hover { color: var(--wayline); }

.blog-preview-date {
  display: block;
  font-size: 0.72rem;
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.85rem;
}

.blog-preview-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--ink-mid);
  margin-bottom: 1.25rem;
  flex: 1;
}

.blog-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--wayline);
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(44,31,15,0.1);
  transition: gap 0.2s, color 0.2s;
}
.blog-preview-link:hover { color: var(--wayline-dark); gap: 0.5rem; }

.blog-preview-all {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-mid);
  text-decoration: none;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.2rem;
  border: 1.5px solid rgba(44,31,15,0.2);
  transition: color 0.2s, border-color 0.2s;
}
.blog-preview-all:hover { color: var(--wayline); border-color: var(--wayline); }

/* Pull-quote callout — used in about section */
.pull-quote {
  margin: 3rem 0 0;
  padding: 1.6rem 2rem;
  border-left: 3px solid var(--wayline);
  background: var(--paper-dark);
}
.pull-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  color: var(--ink);
  margin-bottom: 0.3rem;
  line-height: 1.15;
}
.pull-quote span {
  font-size: 0.88rem;
  color: var(--ink-mid);
  opacity: 0.75;
}

/* ============================================================
   BRAND SECTIONS  (shared base)
   ============================================================ */
.brand-section {
  position: relative;
  padding: 6rem 2rem;
  overflow: hidden;
}

/* Paper grain overlay on dark brand sections */
.brand-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('patterns/hero.svg');
  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.brand-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.brand-section.flip .container { direction: rtl; }
.brand-section.flip .container > * { direction: ltr; }

/* Large decorative background letter */
.brand-deco-letter {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28vw;
  line-height: 1;
  letter-spacing: 0.01em;
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  right: -2vw;
  top: 50%;
  transform: translateY(-50%);
  color: currentColor;
  z-index: 0;
}
.brand-section.flip .brand-deco-letter {
  right: auto;
  left: -2vw;
}

.brand-handle {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 0.6rem;
}

.brand-info .section-title { color: var(--white); }
.brand-info .section-sub { color: rgba(250,247,242,0.65); }

/* Section motto — bold tagline under channel name in dark brand sections */
.brand-motto {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.45rem);
  color: rgba(250,247,242,0.92);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

/* Brand aside — secondary callout in brand section info column */
.brand-aside {
  font-size: 0.9rem;
  color: rgba(250,247,242,0.42);
  line-height: 1.75;
  margin-top: 1rem;
  font-style: italic;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.72rem 1.5rem;
  border-radius: var(--radius-sm);
  color: var(--white);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.brand-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* Embed wrapper */
.brand-embed {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.embed-frame {
  width: 326px;
  max-width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}
.embed-frame:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}

.embed-frame blockquote {
  margin: 0 !important;
  width: 326px !important;
  max-width: 100% !important;
  min-width: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* ============================================================
   CONTENT PILLARS  — replaces embed for unreserved channels
   ============================================================ */
.content-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  width: 100%;
  max-width: 420px;
  background: rgba(255,255,255,0.18);
  outline: 1px solid rgba(255,255,255,0.18);
}

.pillar {
  padding: 1.4rem 1.2rem;
  background: rgba(0,0,0,0.12);
}

.pillar-num {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 0.55rem;
}

.pillar h4 {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 400;
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.pillar p {
  font-size: 0.78rem;
  line-height: 1.65;
  opacity: 0.7;
}

/* Wilderness dark-text overrides for pillars */
.wilderness-section .content-pillars {
  background: rgba(0,0,0,0.12);
  outline-color: rgba(0,0,0,0.12);
}
.wilderness-section .pillar {
  background: rgba(0,0,0,0.08);
}

/* "Channel coming soon" badge */
.channel-status {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.22rem 0.7rem;
  border: 1.5px solid currentColor;
  opacity: 0.55;
  margin-bottom: 0.8rem;
}

/* ============================================================
   TRANSIT SECTION  — dark teal bg, white text, teal accent bar
   ============================================================ */
.transit-section {
  background-color: var(--bg-transit);
  background-image: url('patterns/transit.svg');
  background-repeat: repeat;
  background-size: 200px 160px;
  color: var(--white);
}

.transit-section::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--bg-transit-accent), transparent);
  z-index: 1;
}

.transit-title {
  font-family: var(--font-transit);
}

/* ============================================================
   CITIES SECTION  — dark green bg, white text, green accent bar
   ============================================================ */
.cities-section {
  background-color: var(--bg-cities);
  background-image: url('patterns/cities.svg');
  background-repeat: repeat;
  background-size: 120px 120px;
  color: var(--white);
}

.cities-section::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--bg-cities-accent), transparent);
  z-index: 1;
}

.cities-title {
  font-family: var(--font-cities);
}

/* City skyline silhouette at base */
.skyline-deco {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   WILDERNESS SECTION  — dark olive bg, white text, olive accent bar
   ============================================================ */
.wilderness-section {
  background-color: var(--bg-wilderness);
  background-image: url('patterns/wilderness.svg');
  background-repeat: repeat;
  background-size: 320px 80px;
  color: var(--white);
}

.wilderness-title {
  font-family: var(--font-wilderness);
}

.wilderness-section::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--bg-wilderness-accent), transparent);
  z-index: 1;
}

/* Mountain silhouette at base */
.mountain-deco {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   CONNECT SECTION
   ============================================================ */
.connect-section {
  position: relative;
  padding: 6rem 2rem;
  background-color: var(--bg-connect);
  background-image: url('patterns/hero.svg');
  background-repeat: repeat;
  background-size: 200px 200px;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

/* Warm amber glow */
.connect-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 55% at 50% 50%,
    rgba(203,127,0,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.connect-section .container { position: relative; z-index: 1; }
.connect-section .section-title { color: var(--white); }
.connect-section .section-sub   { color: rgba(250,247,242,0.55); margin: 0 auto 3rem; }

.brands-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 3.5rem;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.35rem;
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.brand-chip:hover {
  transform: translateY(-3px);
  filter: brightness(1.15);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.connect-divider {
  width: 1px;
  height: 40px;
  background: rgba(250,247,242,0.18);
  margin: 0 auto 2rem;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--wayline);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  transition: opacity 0.2s;
}
.email-link:hover { opacity: 0.78; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #100c05;
  border-top: 1px solid rgba(250,247,242,0.07);
  color: rgba(250,247,242,0.35);
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
}
footer a { color: var(--wayline); transition: opacity 0.2s; }
footer a:hover { opacity: 0.75; }
footer .footer-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 820px) {
  .brand-section .container { grid-template-columns: 1fr; gap: 2.5rem; }
  .brand-section.flip .container { direction: ltr; }
  .brand-deco-letter { display: none; }
  .nav-links { display: none; }
  .hero h1 { font-size: 2.6rem; }
  .content-pillars { max-width: 100%; }
}

@media (max-width: 480px) {
  nav { padding: 0.9rem 1.25rem; }
  .about, .brand-section, .connect-section { padding: 4rem 1.25rem; }
  .hero { padding: 6rem 1.25rem 4rem; }
  .content-pillars { grid-template-columns: 1fr; }
}
