/* ============================================================
   Downey Strategy — Brand CSS
   ------------------------------------------------------------
   Mirrored verbatim from the <style> block of
   foundation/brand-guidelines.html (the brand source of truth).

   Do NOT edit this file casually. It exists so the microsite is
   self-contained, but it is a MIRROR — changes here should only
   be made intentionally to track an update in foundation/, never
   to do one-off tweaks. Page-specific styling belongs in the page
   or a separate stylesheet, not in here.

   Fonts (Playfair Display + Inter) load via Google Fonts in each
   page's <head>, exactly as the brand file does.
   ============================================================ */

  :root {
    --midnight: #1b1b21;
    --charcoal: #222329;
    --cream: #ECE8DC;
    --coral: #DE775A;
    --sage: #E1E7E6;
    --white: #FFFFFF;
    --text-light: rgba(236, 232, 220, 0.7);
    --text-dark: rgba(27, 27, 33, 0.6);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: var(--charcoal);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 0 48px; height: 64px;
    display: flex; align-items: center; justify-content: space-between;
    background: var(--midnight);
    border-bottom: 1px solid rgba(236, 232, 220, 0.08);
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 500; font-size: 1.1rem;
    color: var(--cream); letter-spacing: 0.02em;
  }
  .nav-logo span {
    font-family: 'Inter', sans-serif;
    font-weight: 600; font-size: 0.55rem;
    letter-spacing: 0.25em; text-transform: uppercase;
    display: block; margin-top: -2px; opacity: 0.5;
  }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a {
    font-family: 'Inter', sans-serif;
    font-weight: 500; font-size: 0.7rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--cream); text-decoration: none;
    opacity: 0.5; transition: opacity 0.3s;
  }
  .nav-links a:hover { opacity: 1; }

  /* SECTIONS */
  section {
    padding: 120px 48px;
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
  }
  .section-inner { max-width: 1200px; margin: 0 auto; width: 100%; }

  /* HERO */
  .hero {
    background: var(--midnight); color: var(--cream);
    min-height: 100vh; position: relative; overflow: hidden;
    padding-top: 64px;
  }
  .hero-content {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .hero-left h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    line-height: 1.05; letter-spacing: -0.02em;
    margin-bottom: 32px;
  }
  .hero-left h1 em { font-style: italic; color: var(--coral); }
  .hero-subtitle {
    font-weight: 300; font-size: 1.05rem;
    line-height: 1.7; color: var(--text-light); max-width: 440px;
  }
  .hero-meta { margin-top: 48px; display: flex; gap: 48px; }
  .hero-meta-item {
    font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.4;
  }
  .hero-right { display: flex; flex-direction: column; gap: 24px; align-items: flex-end; }
  .hero-badge {
    width: 320px; height: 320px; border-radius: 50%;
    border: 1px solid rgba(236, 232, 220, 0.1);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; position: relative;
  }
  .hero-badge::before {
    content: ''; position: absolute; inset: 12px;
    border-radius: 50%; border: 1px solid rgba(222, 119, 90, 0.2);
  }
  .hero-badge .badge-label {
    font-size: 0.6rem; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--coral); margin-bottom: 12px;
  }
  .hero-badge .badge-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 400; line-height: 1.2;
  }
  .hero-decorative {
    position: absolute; bottom: -120px; right: -60px;
    width: 400px; height: 400px; border-radius: 50%;
    border: 1px solid rgba(222, 119, 90, 0.06);
  }
  .hero-decorative-2 {
    position: absolute; top: 100px; left: -200px;
    width: 600px; height: 600px; border-radius: 50%;
    border: 1px solid rgba(236, 232, 220, 0.03);
  }

  /* SECTION HEADERS */
  .section-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600; font-size: 0.65rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--coral); margin-bottom: 20px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    line-height: 1.15; letter-spacing: -0.01em;
    margin-bottom: 20px;
  }
  .section-desc {
    font-weight: 300; font-size: 1rem;
    line-height: 1.7; max-width: 560px;
  }
  .dark-section .section-desc { color: var(--text-light); }
  .light-section .section-desc { color: var(--text-dark); }

  /* COLOR PALETTE */
  .color-section { background: var(--white); }
  .color-grid {
    display: grid; grid-template-columns: repeat(6, 1fr);
    gap: 20px; margin-top: 64px;
  }
  .color-card {
    border-radius: 12px; overflow: hidden;
    border: 1px solid rgba(27, 27, 33, 0.06);
  }
  .color-swatch { height: 160px; }
  .color-swatch-white {
    height: 160px; background: #FFFFFF;
    border-bottom: 1px solid rgba(27, 27, 33, 0.06);
  }
  .color-info { padding: 16px; background: var(--white); }
  .color-name { font-weight: 600; font-size: 0.82rem; letter-spacing: 0.02em; margin-bottom: 3px; }
  .color-hex { font-weight: 400; font-size: 0.78rem; color: var(--text-dark); font-variant-numeric: tabular-nums; }
  .color-usage { font-size: 0.7rem; color: var(--text-dark); margin-top: 6px; line-height: 1.5; }

  /* TYPOGRAPHY */
  .type-section { background: var(--midnight); color: var(--cream); }
  .type-specimens { margin-top: 72px; display: flex; flex-direction: column; gap: 64px; }
  .type-specimen {
    display: grid; grid-template-columns: 200px 1fr;
    gap: 48px; align-items: start;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(236, 232, 220, 0.07);
  }
  .type-specimen:last-child { border-bottom: none; padding-bottom: 0; }
  .type-meta .type-role {
    font-weight: 600; font-size: 0.65rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--coral); margin-bottom: 12px;
  }
  .type-meta .type-font-name { font-weight: 500; font-size: 0.85rem; margin-bottom: 4px; opacity: 0.8; }
  .type-meta .type-details { font-size: 0.75rem; opacity: 0.4; line-height: 1.6; }
  .type-meta .type-google {
    font-size: 0.7rem; opacity: 0.35; margin-top: 8px;
    padding-top: 8px; border-top: 1px solid rgba(236, 232, 220, 0.07);
  }
  .type-preview-display {
    font-family: 'Playfair Display', serif;
    font-weight: 400; font-size: 4.5rem;
    line-height: 1.1; letter-spacing: -0.02em;
  }
  .type-preview-subhead {
    font-family: 'Inter', sans-serif;
    font-weight: 600; font-size: 1.4rem; line-height: 1.4;
  }
  .type-preview-body {
    font-family: 'Inter', sans-serif;
    font-weight: 300; font-size: 1.05rem; line-height: 1.8; opacity: 0.7;
  }
  .type-preview-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600; font-size: 0.8rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--coral);
  }
  .type-scale {
    margin-top: 72px; padding-top: 72px;
    border-top: 1px solid rgba(236, 232, 220, 0.07);
  }
  .scale-row {
    display: flex; align-items: baseline; gap: 32px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(236, 232, 220, 0.04);
  }
  .scale-label {
    width: 120px; font-size: 0.65rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    opacity: 0.35; flex-shrink: 0;
  }
  .scale-sample { flex: 1; }
  .scale-size {
    width: 80px; text-align: right;
    font-size: 0.75rem; font-variant-numeric: tabular-nums;
    opacity: 0.3; flex-shrink: 0;
  }

  /* LOGO */
  .logo-section { background: var(--cream); }
  .logo-display {
    margin-top: 64px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  }
  .logo-box {
    border-radius: 12px; padding: 64px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    min-height: 320px; position: relative;
  }
  .logo-box-dark { background: var(--midnight); color: var(--cream); }
  .logo-box-light { background: var(--white); color: var(--charcoal); border: 1px solid rgba(27, 27, 33, 0.06); }
  .logo-box-coral { background: var(--coral); color: var(--white); }
  .logo-box-sage { background: var(--sage); color: var(--charcoal); }
  .logo-rendered { text-align: center; }
  .logo-rendered .logo-main {
    font-family: 'Playfair Display', serif;
    font-weight: 400; font-size: 3rem;
    line-height: 0.95; letter-spacing: -0.02em;
  }
  .logo-rendered .logo-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 600; font-size: 0.55rem;
    letter-spacing: 0.35em; text-transform: uppercase;
    margin-top: 6px; opacity: 0.6;
  }
  .logo-box-label {
    position: absolute; bottom: 20px;
    font-size: 0.65rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.35;
  }
  .logo-clearspace {
    margin-top: 48px; padding: 40px;
    background: var(--white); border-radius: 12px;
    border: 1px solid rgba(27, 27, 33, 0.06);
  }
  .clearspace-flex { display: flex; align-items: center; gap: 48px; }
  .clearspace-visual {
    width: 200px; height: 200px;
    border: 2px dashed rgba(222, 119, 90, 0.3);
    display: flex; align-items: center; justify-content: center;
    position: relative; flex-shrink: 0;
  }
  .clearspace-visual::before, .clearspace-visual::after {
    content: ''; position: absolute;
    background: rgba(222, 119, 90, 0.08);
  }
  .clearspace-visual::before {
    top: 0; bottom: 0; left: -24px; right: -24px;
    border-left: 1px dashed rgba(222, 119, 90, 0.2);
    border-right: 1px dashed rgba(222, 119, 90, 0.2);
  }
  .clearspace-visual::after {
    left: 0; right: 0; top: -24px; bottom: -24px;
    border-top: 1px dashed rgba(222, 119, 90, 0.2);
    border-bottom: 1px dashed rgba(222, 119, 90, 0.2);
  }
  .clearspace-note h4 { font-weight: 600; font-size: 0.85rem; margin-bottom: 8px; }
  .clearspace-note p { font-weight: 300; font-size: 0.85rem; line-height: 1.7; color: var(--text-dark); }

  /* VOICE */
  .voice-section { background: var(--midnight); color: var(--cream); }
  .voice-pillars {
    margin-top: 64px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  }
  .voice-card {
    padding: 40px; border-radius: 12px;
    background: rgba(236, 232, 220, 0.04);
    border: 1px solid rgba(236, 232, 220, 0.06);
  }
  .voice-card-label {
    font-weight: 600; font-size: 0.65rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--coral); margin-bottom: 16px;
  }
  .voice-card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400; font-size: 1.5rem; margin-bottom: 16px;
  }
  .voice-card p {
    font-weight: 300; font-size: 0.88rem;
    line-height: 1.7; opacity: 0.6;
  }
  .voice-example {
    margin-top: 20px; padding-top: 20px;
    border-top: 1px solid rgba(236, 232, 220, 0.06);
  }
  .voice-example-label {
    font-weight: 600; font-size: 0.6rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    opacity: 0.35; margin-bottom: 10px;
  }
  .voice-example blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.05rem; line-height: 1.5;
    color: var(--cream); opacity: 0.8;
    border-left: 2px solid var(--coral);
    padding-left: 16px;
  }

  /* Voice patterns */
  .voice-patterns {
    margin-top: 72px; padding-top: 72px;
    border-top: 1px solid rgba(236, 232, 220, 0.07);
  }
  .pattern-grid {
    margin-top: 48px;
    display: flex; flex-direction: column; gap: 0;
  }
  .pattern-row {
    display: grid; grid-template-columns: 220px 1fr 1fr;
    gap: 32px; align-items: start;
    padding: 32px 0;
    border-bottom: 1px solid rgba(236, 232, 220, 0.06);
  }
  .pattern-row:last-child { border-bottom: none; }
  .pattern-name { font-weight: 600; font-size: 0.78rem; }
  .pattern-desc {
    font-weight: 300; font-size: 0.85rem;
    line-height: 1.7; opacity: 0.5;
  }
  .pattern-example {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.95rem; line-height: 1.5; opacity: 0.7;
  }
  .pattern-example-sans {
    font-family: 'Inter', sans-serif;
    font-style: italic; font-weight: 300;
    font-size: 0.9rem; line-height: 1.6; opacity: 0.6;
  }

  /* Signature phrases */
  .signature-section {
    margin-top: 72px; padding-top: 72px;
    border-top: 1px solid rgba(236, 232, 220, 0.07);
  }
  .sig-grid {
    margin-top: 40px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  }
  .sig-chip {
    padding: 20px 24px;
    background: rgba(222, 119, 90, 0.08);
    border: 1px solid rgba(222, 119, 90, 0.15);
    border-radius: 8px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem; line-height: 1.4;
    color: var(--cream); text-align: center;
  }

  /* DO/DONT */
  .dodont-section { background: var(--sage); }
  .dodont-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 48px; margin-top: 64px;
  }
  .dodont-col h3 {
    font-weight: 600; font-size: 0.75rem;
    letter-spacing: 0.15em; text-transform: uppercase;
    margin-bottom: 32px; display: flex; align-items: center; gap: 10px;
  }
  .icon-do {
    width: 24px; height: 24px; border-radius: 50%;
    background: #4a8c6f;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 0.7rem;
  }
  .icon-dont {
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--coral);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 0.85rem; font-weight: 300;
  }
  .dodont-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(27, 27, 33, 0.08);
  }
  .dodont-item:last-child { border-bottom: none; }
  .dodont-example {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; margin-bottom: 6px; line-height: 1.4;
  }
  .dodont-note { font-size: 0.78rem; color: var(--text-dark); line-height: 1.5; }

  /* VISUAL ELEMENTS */
  .visual-section { background: var(--white); }
  .visual-grid {
    margin-top: 64px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  }
  .visual-card { border-radius: 12px; overflow: hidden; border: 1px solid rgba(27, 27, 33, 0.06); }
  .visual-card-preview {
    height: 220px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .visual-card-info { padding: 24px; background: var(--white); }
  .visual-card-info h4 { font-weight: 600; font-size: 0.85rem; margin-bottom: 6px; }
  .visual-card-info p { font-size: 0.78rem; color: var(--text-dark); line-height: 1.5; }
  .visual-quotes { background: var(--cream); }
  .visual-quotes .quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 6rem; color: var(--coral); line-height: 1;
  }
  .visual-divider { background: var(--cream); flex-direction: column; gap: 24px; }
  .divider-line { width: 60%; height: 1px; background: var(--charcoal); opacity: 0.15; }
  .divider-line-coral { width: 40%; height: 2px; background: var(--coral); }
  .visual-buttons { background: var(--midnight); flex-direction: column; gap: 16px; }
  .btn-primary {
    background: var(--coral); color: var(--white); border: none;
    padding: 14px 32px; font-family: 'Inter', sans-serif;
    font-weight: 600; font-size: 0.7rem;
    letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer;
  }
  .btn-outline {
    background: transparent; color: var(--cream);
    border: 1px solid rgba(236, 232, 220, 0.3);
    padding: 14px 32px; font-family: 'Inter', sans-serif;
    font-weight: 600; font-size: 0.7rem;
    letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer;
  }
  .visual-cards-demo { background: var(--midnight); gap: 12px; padding: 32px; }
  .mini-card {
    background: rgba(236, 232, 220, 0.04);
    border: 1px solid rgba(236, 232, 220, 0.08);
    border-radius: 8px; padding: 16px 20px; width: 80%;
  }
  .mini-card-label {
    font-size: 0.55rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--coral); margin-bottom: 4px;
  }
  .mini-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem; color: var(--cream);
  }
  .visual-layout { background: var(--sage); padding: 32px; }
  .layout-demo {
    width: 100%; display: grid;
    grid-template-columns: 1fr 1fr; gap: 8px; height: 100%;
  }
  .layout-block { border-radius: 4px; min-height: 40px; }
  .layout-block-dark { background: var(--midnight); opacity: 0.15; }
  .layout-block-accent { background: var(--coral); opacity: 0.3; }
  .layout-block-full { grid-column: 1 / -1; }
  .layout-block-tall { grid-row: span 2; }
  .visual-photo {
    background: linear-gradient(135deg, var(--midnight) 0%, #2a2a35 100%);
    flex-direction: column; padding: 32px; text-align: center;
  }
  .photo-circles { display: flex; gap: 12px; margin-bottom: 16px; }
  .photo-circle { width: 56px; height: 56px; border-radius: 50%; }
  .photo-circle-1 { background: linear-gradient(135deg, #c4b5a0, #a89888); }
  .photo-circle-2 { background: linear-gradient(135deg, #8a9a96, #6e807c); }
  .photo-circle-3 { background: linear-gradient(135deg, #d4a088, #c08870); }
  .photo-label {
    font-size: 0.65rem; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--cream); opacity: 0.4;
  }

  /* PHOTOGRAPHY */
  .photo-section { background: var(--cream); }
  .photo-principles {
    margin-top: 64px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  }
  .photo-principle {
    padding: 32px; background: var(--white); border-radius: 12px;
    border: 1px solid rgba(27, 27, 33, 0.06);
  }
  .photo-principle-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem; color: var(--coral); opacity: 0.3; margin-bottom: 16px;
  }
  .photo-principle h4 { font-weight: 600; font-size: 0.9rem; margin-bottom: 10px; }
  .photo-principle p {
    font-weight: 300; font-size: 0.85rem;
    line-height: 1.7; color: var(--text-dark);
  }

  /* FRAMEWORK */
  .framework-section { background: var(--midnight); color: var(--cream); }
  .framework-grid {
    margin-top: 64px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  }
  .framework-card {
    padding: 40px; border-radius: 12px;
    background: rgba(236, 232, 220, 0.03);
    border: 1px solid rgba(236, 232, 220, 0.06);
    position: relative; overflow: hidden;
  }
  .framework-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--coral);
    opacity: 0; transition: opacity 0.3s;
  }
  .framework-card:hover::before { opacity: 1; }
  .framework-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem; color: var(--coral); opacity: 0.2; margin-bottom: 16px;
  }
  .framework-card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400; font-size: 1.5rem; margin-bottom: 12px;
  }
  .framework-card p {
    font-weight: 300; font-size: 0.85rem;
    line-height: 1.7; opacity: 0.5;
  }

  /* VALUES */
  .values-section { background: var(--sage); }
  .values-grid {
    margin-top: 64px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  }
  .value-card {
    padding: 40px; background: var(--white); border-radius: 12px;
    display: flex; gap: 24px; align-items: start;
    border: 1px solid rgba(27, 27, 33, 0.04);
  }
  .value-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; color: var(--coral);
  }
  .value-content h4 { font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
  .value-content p {
    font-weight: 300; font-size: 0.85rem;
    line-height: 1.7; color: var(--text-dark);
  }

  /* FOOTER */
  footer {
    background: var(--midnight); color: var(--cream);
    padding: 64px 48px; text-align: center;
  }
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 400; font-size: 1.8rem; margin-bottom: 4px;
  }
  .footer-logo-sub {
    font-weight: 600; font-size: 0.5rem;
    letter-spacing: 0.35em; text-transform: uppercase;
    opacity: 0.4; margin-bottom: 24px;
  }
  .footer-note {
    font-size: 0.78rem; font-weight: 300;
    opacity: 0.3; line-height: 1.6;
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .animate-in { opacity: 0; animation: fadeUp 0.8s ease forwards; }
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  .delay-3 { animation-delay: 0.3s; }
  .delay-4 { animation-delay: 0.4s; }
  .delay-5 { animation-delay: 0.5s; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    section { padding: 80px 24px; }
    nav { padding: 0 24px; }
    .hero-content { grid-template-columns: 1fr; gap: 48px; }
    .hero-right { align-items: center; }
    .color-grid { grid-template-columns: repeat(3, 1fr); }
    .type-specimen { grid-template-columns: 1fr; gap: 24px; }
    .logo-display { grid-template-columns: 1fr; }
    .voice-pillars { grid-template-columns: 1fr; }
    .pattern-row { grid-template-columns: 1fr; gap: 12px; }
    .sig-grid { grid-template-columns: 1fr 1fr; }
    .dodont-grid { grid-template-columns: 1fr; }
    .visual-grid { grid-template-columns: repeat(2, 1fr); }
    .photo-principles { grid-template-columns: 1fr; }
    .framework-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
  }
  @media (max-width: 600px) {
    .color-grid { grid-template-columns: 1fr 1fr; }
    .visual-grid { grid-template-columns: 1fr; }
    .hero-meta { flex-direction: column; gap: 16px; }
    .sig-grid { grid-template-columns: 1fr; }
  }
