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

  :root {
    --ink: #1c2b3a;
    --parchment: #fdf6ec;
    --warmwhite: #f7f2eb;
    --terra: #e05c2a;
    --gold: #f0b429;
    --forest: #1e6e5e;
    --rust: #c94f2c;
    --mist: #ddeef5;
    --deep: #0d1f2d;
    --rose: #8B0038;
  }

  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; background: var(--warmwhite); color: var(--ink); overflow-x: hidden; }

  /* ── MASTHEAD ── */
  .masthead {
    background: var(--ink);
    padding: 14px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #3ba8c4;
  }

  .masthead-brand-wrap { display: flex; flex-direction: column; gap: 3px; }

  .masthead-brand-link { text-decoration: none; }

  .masthead-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--parchment);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .masthead-brand span { color: var(--terra); }

  .masthead-tagline {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.58rem;
    font-style: italic;
    color: rgba(245,239,228,0.5);
    letter-spacing: 0.06em;
  }

  .masthead-nav {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .masthead-nav a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--mist);
    text-decoration: none;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .masthead-nav a:hover { color: var(--gold); }
  .masthead-nav a.active { color: var(--gold); }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--parchment);
  }

  /* ── MOBILE MENU ── */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #1c2b3a;
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }

  .mobile-menu.open { display: flex; }

  .mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--parchment);
    text-decoration: none;
    transition: color 0.2s;
  }

  .mobile-menu a:hover { color: var(--gold); }

  .mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--parchment);
    font-size: 2rem;
    cursor: pointer;
  }

  /* ── TICKER ── */
  .ticker {
    background: linear-gradient(90deg, #e05c2a, #f0b429);
    padding: 13px 0;
    overflow: hidden;
    white-space: nowrap;
  }

  .ticker-track {
    display: inline-flex;
    animation: ticker 30s linear infinite reverse;
  }

  .ticker-item {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    padding: 0 48px;
  }

  .ticker-dot { color: rgba(255,255,255,0.5); font-size: 0.5rem; }

  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: linear-gradient(145deg, #1c2b3a 0%, #0d2035 60%, #0d2a1e 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 10vw;
    position: relative;
    overflow: hidden;
  }

  .hero-fathers-words {
    font-family: 'Playfair Display', serif;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-style: italic;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.04em;
    margin-bottom: 48px;
    line-height: 1.5;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.2s;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1.0;
    color: var(--parchment);
    margin-bottom: 64px;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.4s;
  }

  .hero-title em {
    font-style: italic;
    background: linear-gradient(90deg, #f0b429, #f7c948);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
  }

  .hero-intro {
    max-width: 640px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.5s;
  }

  .hero-intro-lead {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(253,246,236,0.85);
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .hero-intro-tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-style: italic;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.02em;
  }

  .hero-questions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 56px;
    max-width: 640px;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.6s;
  }

  .hero-question {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-style: italic;
    color: rgba(253,246,236,0.85);
    line-height: 1.6;
  }

  .hero-question.bold {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: var(--parchment);
    font-weight: 700;
  }

  .hero-cta {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.9s;
  }

  .btn-primary {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    background: var(--terra);
    padding: 18px 48px;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-primary:hover {
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-2px);
  }

  .hero-cta-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(253,246,236,0.85);
    text-decoration: none;
    margin-left: 28px;
    border-bottom: 1px solid rgba(253,246,236,0.4);
    padding-bottom: 2px;
    transition: color 0.25s, border-color 0.25s;
  }

  .hero-cta-link:hover {
    color: var(--gold);
    border-color: var(--gold);
  }

  /* ── MANIFESTO ── */
  .manifesto {
    background: #f0f8fb;
    padding: 100px 10vw;
    max-width: 100%;
  }

  .manifesto-inner {
    max-width: 720px;
  }

  .manifesto-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 32px;
  }

  .manifesto-body {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--ink);
  }

  .manifesto-body strong { font-weight: 900; color: var(--rust); }
  .manifesto-body em { font-style: italic; }

  .manifesto-credit {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--terra);
    margin-top: 32px;
    opacity: 0.8;
  }

  /* ── PULL QUOTE ── */
  .pullquote {
    background: var(--deep);
    padding: 110px 10vw;
    display: flex;
    justify-content: center;
  }

  .pullquote-text {
    max-width: 860px;
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.5rem, 3.4vw, 2.6rem);
    line-height: 1.5;
    text-align: center;
    color: var(--parchment);
    position: relative;
  }

  .pullquote-text::before {
    content: '\201C';
    display: block;
    font-size: 3.5em;
    line-height: 0.5;
    color: var(--gold);
    margin-bottom: 0.2em;
  }

  /* ── ABOUT ── */
  .about-section {
    background: var(--warmwhite);
    padding: 100px 10vw;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: center;
  }

  .about-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 20px;
  }

  .about-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 32px;
  }

  .about-name em { font-style: italic; color: var(--rust); display: block; }

  .about-bio {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    color: var(--ink);
    line-height: 1.9;
    opacity: 0.82;
  }

  .about-bio strong { color: var(--rust); font-weight: 700; }
  .about-bio em { font-style: italic; }

  .about-visual {
    background: var(--ink);
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 48px;
    text-align: center;
    position: relative;
    border: 3px solid var(--gold);
    box-shadow: 0 0 0 1px rgba(240,180,41,0.4), 0 20px 50px rgba(0,0,0,0.3);
  }

  .about-visual::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(240,180,41,0.2);
    pointer-events: none;
  }

  .book-coming {
    font-family: 'Playfair Display', serif;
    font-size: 3.25rem;
    font-weight: 900;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 16px;
    line-height: 1.1;
  }

  .book-soon {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(253,246,236,0.5);
  }

  /* ── SUBMIT ── */
  .submit-section {
    background: linear-gradient(145deg, #1c2b3a 0%, #0d2a1e 100%);
    padding: 100px 10vw;
    text-align: center;
  }

  .submit-overline {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 24px;
  }

  .submit-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--parchment);
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .submit-title em { font-style: italic; color: var(--gold); }

  .submit-sub {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    font-style: italic;
    color: rgba(245,239,228,0.55);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.8;
  }

  /* Form styles */
  .story-form-wrap {
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: left;
  }

  .form-notice {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(240,180,41,0.1);
    border: 1px solid rgba(240,180,41,0.25);
    padding: 20px 24px;
    margin-bottom: 40px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    color: rgba(245,239,228,0.75);
    line-height: 1.6;
  }

  .form-notice strong { color: var(--gold); }
  .form-notice-icon { font-size: 1.2rem; margin-top: 2px; }

  .story-form { display: flex; flex-direction: column; gap: 24px; }
  .form-row { width: 100%; }

  .form-row--two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .form-group { display: flex; flex-direction: column; gap: 8px; }

  .form-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245,239,228,0.6);
  }

  .form-input {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(245,239,228,0.15);
    padding: 14px 18px;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.9rem;
    color: var(--parchment);
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }

  .form-input:focus { border-color: var(--gold); }
  .form-input::placeholder { color: rgba(245,239,228,0.25); }

  .form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f0b429' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
  }

  .form-select option { background: #1c2b3a; color: var(--parchment); }
  .form-textarea { resize: vertical; min-height: 200px; line-height: 1.8; }
  .form-file { padding: 10px 18px; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 0.8rem; }

  .form-hint {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.68rem;
    color: rgba(245,239,228,0.3);
    line-height: 1.5;
    font-style: italic;
  }

  .form-check-group { display: flex; flex-direction: column; gap: 14px; }

  .form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: rgba(245,239,228,0.55);
    line-height: 1.6;
  }

  .form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: var(--terra);
    margin-top: 2px;
    cursor: pointer;
  }

  .form-submit-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .form-submit-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    background: var(--terra);
    padding: 18px 48px;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
  }

  .form-submit-btn:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }

  .form-submit-note {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.78rem;
    font-style: italic;
    color: rgba(245,239,228,0.3);
  }

  .prompts-section {
    margin-top: 48px;
    text-align: left;
    border-top: 1px solid rgba(245,239,228,0.1);
    padding-top: 40px;
  }

  .prompts-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 24px;
  }

  .prompts-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .prompt-item {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.82rem;
    font-style: italic;
    color: rgba(245,239,228,0.45);
    padding: 14px 16px;
    border: 1px solid rgba(245,239,228,0.06);
    line-height: 1.6;
  }

  /* ── GUIDELINES ── */
  .guidelines-section {
    background: var(--warmwhite);
    padding: 100px 10vw;
  }

  .guidelines-inner { max-width: 900px; margin: 0 auto; }

  .section-overline {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 20px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 48px;
  }

  .section-title em { font-style: italic; color: var(--rust); }

  .guidelines-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-bottom: 40px;
  }

  .guideline {
    background: #fff;
    padding: 32px 28px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
  }

  .guideline:hover { border-bottom-color: var(--terra); }

  .guideline-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    font-style: italic;
    color: var(--terra);
    opacity: 0.4;
    display: block;
    margin-bottom: 12px;
  }

  .guideline-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
  }

  .guideline-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: rgba(28,43,58,0.6);
    line-height: 1.8;
    font-weight: 300;
  }

  .guidelines-disclaimer {
    background: rgba(224,92,42,0.06);
    border: 1px solid rgba(224,92,42,0.15);
    padding: 24px 32px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: rgba(28,43,58,0.55);
    line-height: 1.8;
    text-align: center;
  }

  /* ── CONTACT ── */
  .contact-section {
    background: #0d2035;
    padding: 100px 10vw;
    text-align: center;
  }

  .contact-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--parchment);
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .contact-title em { font-style: italic; color: var(--gold); }

  .contact-body {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    font-style: italic;
    color: rgba(245,239,228,0.5);
    margin-bottom: 32px;
    line-height: 1.8;
  }

  .contact-email {
    display: inline-block;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(240,180,41,0.3);
    padding-bottom: 4px;
    transition: all 0.2s;
  }

  .contact-email:hover { color: var(--terra); }

  .contact-response {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    color: rgba(245,239,228,0.25);
    letter-spacing: 0.1em;
    margin-top: 16px;
  }

  /* ── PAGE INTRO (sub-pages) ── */
  .page-intro {
    background: linear-gradient(145deg, #1c2b3a 0%, #0d2035 100%);
    padding: 80px 10vw 64px;
  }

  .page-intro-overline {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 20px;
  }

  .page-intro-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--parchment);
    line-height: 1.05;
  }

  .page-intro-title em {
    font-style: italic;
    background: linear-gradient(90deg, #f0b429, #f7c948);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .page-intro-title--solid { color: var(--gold); }

  .page-intro-sub {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(0.95rem, 1.6vw, 1.15rem);
    font-style: italic;
    color: rgba(245,239,228,0.55);
    letter-spacing: 0.03em;
    margin-top: 20px;
  }

  /* ── STORIES ── */
  .stories-section {
    background: var(--warmwhite);
    padding: 90px 10vw;
  }

  .story-article {
    max-width: 720px;
    margin: 0 auto;
  }

  .story-kicker {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 20px;
  }

  .story-kicker span { color: var(--gold); margin: 0 4px; }

  .story-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .story-byline {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(28,43,58,0.5);
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(28,43,58,0.12);
  }

  .story-body {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.05rem;
    color: var(--ink);
    line-height: 1.95;
    opacity: 0.85;
  }

  .story-body p { margin-bottom: 24px; }
  .story-body p:last-child { margin-bottom: 0; }

  .story-signoff {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    color: var(--terra);
    margin-top: 8px;
  }

  /* ── FOOTER ── */
  footer {
    background: #0d1f2d;
    padding: 48px 10vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(245,239,228,0.06);
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--parchment);
  }

  .footer-brand span { color: var(--terra); }

  .footer-tagline {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.82rem;
    font-style: italic;
    color: var(--gold);
    opacity: 0.6;
  }

  .footer-copy {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.68rem;
    color: rgba(245,239,228,0.2);
  }

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

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .masthead { padding: 14px 24px; }
    .masthead-nav { display: none; }
    .hamburger { display: flex; }
    .hero { padding: 60px 7vw; min-height: 100vh; }
    .manifesto { padding: 80px 7vw; }
    .about-section { grid-template-columns: 1fr; padding: 80px 7vw; gap: 48px; }
    .about-visual { display: none; }
    .submit-section { padding: 80px 7vw; }
    .form-row--two { grid-template-columns: 1fr; }
    .prompts-list { grid-template-columns: 1fr; }
    .guidelines-section { padding: 80px 7vw; }
    .guidelines-grid { grid-template-columns: 1fr; }
    .contact-section { padding: 80px 7vw; }
    .page-intro { padding: 64px 7vw 48px; }
    .stories-section { padding: 64px 7vw; }
    footer { padding: 40px 7vw; flex-direction: column; text-align: center; }
    .form-submit-row { flex-direction: column; align-items: flex-start; }
  }
