:root {
  --forest: #173c35;
  --forest-2: #24584c;
  --cream: #f6f0e5;
  --paper: #fffdf8;
  --ink: #1e2a27;
  --muted: #66716d;
  --coral: #e87356;
  --gold: #e9ae51;
  --sage: #b9d0bd;
  --line: rgba(30, 42, 39, 0.15);
  --shadow: 0 18px 50px rgba(18, 48, 42, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: "DM Sans", sans-serif; line-height: 1.55; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }

.hero { position: relative; min-height: 760px; overflow: hidden; color: var(--paper); background: var(--forest); }
.nav { height: 86px; display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 5; border-bottom: 1px solid rgba(255,255,255,.16); }
.brand { display: flex; gap: 10px; align-items: center; text-decoration: none; font-weight: 700; letter-spacing: -.02em; }
.brand-mark { display: inline-grid; place-items: center; width: 32px; height: 32px; border: 1px solid currentColor; border-radius: 50%; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > a { text-decoration: none; font-size: 14px; font-weight: 600; }
.nav-tab { position: relative; padding-block: 8px; color: rgba(255,255,255,.72); }
.nav-tab:hover, .nav-tab.active { color: white; }
.nav-tab.active::after { position: absolute; right: 0; bottom: 0; left: 0; height: 2px; border-radius: 2px; background: var(--gold); content: ""; }
.button { border: 0; border-radius: 999px; padding: 14px 22px; display: inline-flex; align-items: center; justify-content: center; gap: 18px; text-decoration: none; cursor: pointer; font-weight: 700; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-small { padding: 10px 17px; }
.button-light { color: var(--forest); background: var(--paper); }
.button-primary { color: white; background: var(--coral); box-shadow: 0 10px 25px rgba(232,115,86,.25); }
.button-primary:hover { background: #d96347; box-shadow: 0 14px 28px rgba(232,115,86,.32); }
.full-width { width: 100%; }

.hero-content { position: relative; z-index: 3; padding-top: 115px; }
.eyebrow { margin: 0 0 20px; color: var(--gold); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; }
.eyebrow.dark { color: var(--forest-2); }
.eyebrow.coral { color: var(--coral); }
h1, h2, h3 { font-family: "Fraunces", serif; margin-top: 0; letter-spacing: -.035em; line-height: 1.02; }
h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(55px, 8vw, 104px); }
h1 em { color: var(--gold); font-weight: 600; }
.hero-copy { max-width: 500px; margin: 0 0 24px; color: rgba(255,255,255,.78); font-size: 18px; }
.home-base { display: flex; align-items: center; gap: 10px; width: fit-content; margin: 0 0 24px; color: white; font-size: 14px; font-weight: 600; }
.home-base span { border: 1px solid rgba(255,255,255,.28); border-radius: 999px; padding: 4px 9px; color: var(--gold); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.date-lockup { display: flex; align-items: center; gap: 13px; width: fit-content; color: var(--gold); }
.date-lockup span { font-size: 11px; letter-spacing: .18em; font-weight: 700; }
.date-lockup strong { color: white; font-family: "Fraunces", serif; font-size: 30px; }
.date-lockup i { display: block; width: 42px; border-top: 1px solid var(--gold); }
.scroll-cue { display: flex; width: fit-content; gap: 14px; margin-top: 34px; text-decoration: none; font-size: 13px; font-weight: 600; }
.scroll-cue span { color: var(--gold); }
.hero-sun { position: absolute; z-index: 1; right: 12%; top: 158px; width: 280px; aspect-ratio: 1; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 32px rgba(233,174,81,.07), 0 0 0 64px rgba(233,174,81,.04); }
.hero-hills { position: absolute; pointer-events: none; bottom: -250px; border-radius: 50% 50% 0 0; transform: rotate(-7deg); }
.hill-one { z-index: 1; width: 1000px; height: 580px; right: -230px; background: #2b5d50; }
.hill-two { z-index: 2; width: 900px; height: 400px; right: -340px; bottom: -220px; background: #75957a; transform: rotate(10deg); }

.section { padding-block: 105px 120px; }
.section-heading { margin-bottom: 48px; }
.split-heading { display: grid; grid-template-columns: 1.1fr .7fr; gap: 80px; align-items: end; }
.section-heading h2, .form-intro h2 { margin-bottom: 0; color: var(--forest); font-size: clamp(42px, 5vw, 66px); }
.section-heading > p { margin: 0 0 5px; color: var(--muted); }
.day-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.day-card { min-height: 230px; padding: 25px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.2); transition: background .2s, transform .2s; }
.day-card.open:hover { position: relative; z-index: 1; background: var(--paper); box-shadow: var(--shadow); transform: translateY(-3px); }
.day-top { display: flex; align-items: flex-start; justify-content: space-between; }
.day-name { margin: 3px 0 0; color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }
.day-number { font-family: "Fraunces", serif; color: var(--forest); font-size: 54px; line-height: 1; }
.day-status { border-radius: 999px; padding: 5px 9px; color: var(--forest-2); background: rgba(185,208,189,.5); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.day-card.claimed .day-status { color: #8b422f; background: rgba(232,115,86,.16); }
.day-owner { margin-top: auto; }
.day-owner span { display: block; color: var(--muted); font-size: 11px; }
.day-owner strong { display: block; margin-top: 3px; color: var(--forest); font-family: "Fraunces", serif; font-size: 19px; }
.claim-button { margin-top: auto; padding: 0; border: 0; background: transparent; text-align: left; color: var(--coral); font-weight: 700; cursor: pointer; }
.claim-button:hover { text-decoration: underline; }
.loading-card { grid-column: 1/-1; padding: 50px; text-align: center; color: var(--muted); }

.page-hero { color: var(--paper); background: var(--forest); }
.page-hero-content { padding-block: 80px 95px; }
.page-hero-content .eyebrow { margin-bottom: 15px; }
.page-hero-content h1 { margin-bottom: 18px; font-size: clamp(50px, 7vw, 82px); }
.page-hero-content > p:last-child { max-width: 620px; margin: 0; color: rgba(255,255,255,.72); font-size: 17px; }
.weather-page { padding-block: 80px 100px; background: #dce8df; }
.weather-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.weather-card { min-height: 180px; border: 1px solid rgba(36,88,76,.16); border-radius: 7px; padding: 20px; background: rgba(255,255,255,.62); scroll-margin-top: 20px; }
.weather-card:target { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(232,115,86,.18); }
.weather-date { display: flex; align-items: baseline; gap: 7px; margin-bottom: 20px; color: var(--forest); }
.weather-date span { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.weather-date strong { font-family: "Fraunces", serif; font-size: 28px; }
.weather-temperatures { display: flex; gap: 14px; margin-bottom: 9px; color: var(--muted); font-size: 11px; }
.weather-temperatures strong { color: var(--forest); font-size: 18px; }
.weather-card h2 { margin: 0 0 5px; color: var(--forest); font-size: 19px; line-height: 1.2; }
.weather-card p { margin: 0; color: var(--muted); font-size: 11px; }
.weather-card.pending h2 { color: var(--muted); }
.weather-source { margin: 18px 0 0; color: var(--muted); font-size: 11px; text-align: right; }
.weather-source a { color: var(--forest-2); font-weight: 700; }
.weather-error { border-radius: 5px; padding: 12px 15px; color: #74382c; background: rgba(255,255,255,.58); }

.ideas-section { padding-block: 110px 120px; color: white; background: var(--forest); }
.ideas-section .section-heading h2 { color: white; }
.ideas-section .section-heading > p { color: rgba(255,255,255,.62); }
.view-switch { display: inline-flex; gap: 4px; margin-bottom: 28px; padding: 4px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(0,0,0,.12); }
.view-button { display: inline-flex; align-items: center; gap: 8px; border: 0; border-radius: 999px; padding: 9px 15px; color: rgba(255,255,255,.68); background: transparent; cursor: pointer; font-size: 13px; font-weight: 700; }
.view-button span { color: var(--gold); font-size: 16px; }
.view-button.active { color: var(--forest); background: var(--paper); }
.view-button.active span { color: var(--coral); }
.filter-bar { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; overflow-x: auto; padding-bottom: 4px; }
.availability-filters { margin-bottom: 36px; }
.filter-label { flex: 0 0 auto; color: rgba(255,255,255,.52); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.filter { flex: 0 0 auto; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; padding: 9px 15px; color: rgba(255,255,255,.75); background: transparent; cursor: pointer; font-size: 13px; font-weight: 600; }
.filter.active, .filter:hover { color: var(--forest); background: var(--gold); border-color: var(--gold); }
.idea-list { display: grid; gap: 16px; }
.idea-card { display: grid; grid-template-columns: 110px 1fr; gap: 28px; padding: 28px 32px; color: var(--ink); background: var(--paper); border-radius: 7px; box-shadow: 0 12px 35px rgba(0,0,0,.12); }
.idea-date { text-align: center; border-right: 1px solid var(--line); padding-right: 28px; }
.idea-date span { display: block; color: var(--coral); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }
.idea-date strong { display: block; color: var(--forest); font-family: "Fraunces", serif; font-size: 42px; line-height: 1.1; }
.idea-date strong.everyday-mark { margin-block: 8px 5px; font-size: 24px; line-height: 1; }
.idea-date small { color: var(--muted); font-size: 11px; }
.idea-main h3 { margin: 1px 0 8px; color: var(--forest); font-size: 25px; }
.idea-main p { margin: 0; color: var(--muted); white-space: pre-line; }
.idea-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.event-description { margin-top: 16px; border-top: 1px solid var(--line); padding-top: 12px; color: var(--muted); }
.event-description p { margin: 0 0 8px; color: var(--muted); white-space: pre-line; }
.event-description a { color: var(--coral); font-size: 12px; font-weight: 700; }
.event-description summary { color: var(--muted); cursor: pointer; font-size: 13px; list-style-position: outside; }
.event-description summary:hover strong { text-decoration: underline; }
.description-preview strong, .description-expanded { color: var(--forest-2); font-weight: 700; white-space: nowrap; }
.description-expanded { display: none; }
.event-description[open] .description-preview { display: none; }
.event-description[open] .description-expanded { display: inline; }
.description-full { padding-top: 10px; }
.event-description.compact { margin-top: 7px; border-top: 0; padding-top: 0; font-size: 10px; }
.event-description.compact summary, .event-description.compact p, .event-description.compact a { font-size: 10px; line-height: 1.4; }
.tag { border-radius: 999px; padding: 5px 9px; color: var(--forest-2); background: rgba(185,208,189,.32); font-size: 11px; font-weight: 700; }
.submitted { color: var(--muted); background: #eeeae1; }
.vote-button { border: 1px solid rgba(232,115,86,.45); border-radius: 999px; padding: 4px 9px; color: #a94a36; background: white; cursor: pointer; font-size: 11px; font-weight: 700; }
.vote-button span { color: var(--coral); }
.vote-button strong { margin-left: 2px; }
.vote-button:hover, .vote-button.voted { color: white; border-color: var(--coral); background: var(--coral); }
.vote-button:hover span, .vote-button.voted span { color: white; }
.vote-button:disabled { cursor: wait; opacity: .6; }
.vote-button.compact { display: inline-block; margin: 7px 0 0 7px; padding: 3px 7px; font-size: 10px; }
.empty-state { padding: 65px 20px; text-align: center; color: rgba(255,255,255,.7); }
.empty-state span { font-size: 40px; color: var(--gold); }
.empty-state h3 { margin: 12px 0 6px; color: white; font-size: 28px; }
.empty-state p { margin: 0; }

.timeline-view { animation: timeline-in .25s ease-out; }
@keyframes timeline-in { from { opacity: 0; transform: translateY(8px); } }
.timeline-days { display: grid; grid-template-columns: repeat(8, 1fr); gap: 7px; margin-bottom: 32px; }
.timeline-day { border: 1px solid rgba(255,255,255,.2); border-radius: 5px; padding: 10px 6px; color: rgba(255,255,255,.65); background: transparent; cursor: pointer; text-align: center; }
.timeline-day span, .timeline-day strong, .timeline-day small { display: block; }
.timeline-day span { font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.timeline-day strong { margin: 2px 0; color: white; font-family: "Fraunces", serif; font-size: 25px; line-height: 1; }
.timeline-day small { min-height: 16px; font-size: 10px; }
.timeline-day.has-events small { color: var(--gold); }
.timeline-day.active { color: var(--forest); border-color: var(--gold); background: var(--gold); }
.timeline-day.active strong, .timeline-day.active small { color: var(--forest); }
.timeline-summary { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 18px; }
.timeline-summary .eyebrow { margin-bottom: 8px; }
.timeline-summary h3 { margin: 0; color: white; font-size: 32px; }
.timeline-summary > p { margin: 0 0 3px; color: rgba(255,255,255,.6); font-size: 13px; }
.timeline-choices { margin-bottom: 20px; padding: 18px; border: 1px solid rgba(233,174,81,.38); border-radius: 7px; background: rgba(0,0,0,.13); }
.timeline-choices-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; margin-bottom: 12px; }
.timeline-choices-heading strong { color: var(--gold); font-family: "Fraunces", serif; font-size: 20px; }
.timeline-choices-heading span { color: rgba(255,255,255,.55); font-size: 11px; }
.timeline-choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 9px; }
.timeline-choice { min-width: 0; border-radius: 5px; padding: 13px 14px; color: var(--ink); background: var(--paper); }
.timeline-choice:nth-child(3n+2) { background: #f5e9ca; }
.timeline-choice:nth-child(3n+3) { background: #dce8df; }
.timeline-choice h4 { margin: 0 0 5px; color: var(--forest); font-family: "Fraunces", serif; font-size: 16px; line-height: 1.15; }
.timeline-choice p { margin: 0; color: var(--muted); font-size: 10px; font-weight: 700; }
.timeline-choice a { display: inline-block; margin-top: 7px; color: #a94a36; font-size: 10px; font-weight: 700; }
.timeline-choice .event-description p { font-weight: 400; }
.timeline-everyday { margin-bottom: 20px; padding: 16px 18px; border-radius: 7px; color: var(--ink); background: rgba(185,208,189,.96); }
.timeline-everyday-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-bottom: 11px; }
.timeline-everyday-heading strong { color: var(--forest); font-family: "Fraunces", serif; font-size: 19px; }
.timeline-everyday-heading span { color: var(--muted); font-size: 11px; }
.timeline-everyday-list { display: flex; flex-wrap: wrap; gap: 8px; }
.timeline-everyday-item { border-radius: 999px; padding: 7px 11px; color: var(--forest); background: rgba(255,255,255,.72); font-size: 12px; font-weight: 700; }
.timeline-everyday-item a { color: #a94a36; }
.timeline-key { position: relative; display: flex; align-items: center; gap: 8px; margin-bottom: 12px; color: rgba(255,255,255,.55); font-size: 11px; }
.timeline-key span { width: 18px; height: 8px; border-radius: 2px; background: var(--coral); }
.timeline-scroll { position: relative; z-index: 1; overflow-x: auto; border-radius: 7px; box-shadow: 0 15px 45px rgba(0,0,0,.18); isolation: isolate; }
.timeline { position: relative; min-width: 680px; color: var(--ink); background: var(--paper); }
.timeline-hours { position: absolute; inset: 0; }
.timeline-hour { position: absolute; left: 0; right: 0; height: 1px; border-top: 1px solid #dedbd3; }
.timeline-hour span { position: absolute; top: -9px; left: 15px; width: 47px; color: #7e8783; background: var(--paper); font-size: 10px; font-weight: 600; text-align: right; }
.timeline-events { position: absolute; top: 0; right: 18px; bottom: 0; left: 78px; }
.timeline-event-position { position: absolute; right: 0; left: 0; display: grid; pointer-events: none; }
.timeline-event-position.lanes-1 { grid-template-columns: minmax(0, 1fr); }
.timeline-event-position.lanes-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.timeline-event-position.lanes-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.timeline-event-position.lanes-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.timeline-event-position.lanes-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.timeline-event-position.lanes-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.timeline-event-position.lanes-7 { grid-template-columns: repeat(7, minmax(0, 1fr)); }
.timeline-event-position.lanes-8 { grid-template-columns: repeat(8, minmax(0, 1fr)); }
.timeline-event { position: relative; z-index: 1; min-width: 0; min-height: 42px; height: 100%; margin-inline: 3px; overflow: hidden; border-left: 4px solid var(--coral); border-radius: 4px; padding: 10px 12px; color: var(--ink); background: #f3dfd6; box-shadow: 0 3px 12px rgba(31,42,39,.12); pointer-events: auto; }
.timeline-event.tone-2 { border-left-color: var(--gold); background: #f5e9ca; }
.timeline-event.tone-3 { border-left-color: var(--forest-2); background: #dce8df; }
.timeline-event h4 { margin: 0 0 4px; color: var(--forest); font-family: "Fraunces", serif; font-size: 16px; line-height: 1.15; }
.timeline-event-time { margin: 0 0 7px; color: #5e6965; font-size: 10px; font-weight: 700; }
.timeline-event a { display: inline-block; margin-top: 7px; color: #a94a36; font-size: 11px; font-weight: 700; }
.timeline-event:has(.event-description[open]) { z-index: 6; height: auto; min-height: 100%; overflow: visible; }
.timeline-event .event-description[open] { position: relative; z-index: 3; border-radius: 3px; padding: 6px; background: inherit; box-shadow: 0 5px 14px rgba(31,42,39,.16); }
.timeline-empty { position: absolute; inset: 0 20px 0 78px; display: grid; place-content: center; text-align: center; color: var(--muted); }
.timeline-empty span { color: var(--gold); font-size: 34px; }
.timeline-empty h4 { margin: 7px 0 3px; color: var(--forest); font-family: "Fraunces", serif; font-size: 24px; }
.timeline-empty p { margin: 0; font-size: 12px; }

.form-section { padding-block: 115px; background: #e9dfce; }
.form-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; align-items: start; }
.form-intro { position: sticky; top: 40px; }
.form-intro > p:not(.eyebrow) { max-width: 330px; color: var(--muted); }
.form-doodle { margin-top: 55px; color: var(--coral); font-family: "Fraunces", serif; font-size: 80px; transform: rotate(28deg); }
.idea-form { display: grid; grid-template-columns: 1fr 1fr; gap: 25px 20px; padding: 42px; border-radius: 8px; background: var(--paper); box-shadow: var(--shadow); }
.field { min-width: 0; }
.field.full, .full { grid-column: 1 / -1; }
.field label, .field legend { display: block; margin-bottom: 8px; color: var(--forest); font-size: 13px; font-weight: 700; }
.field label span { color: var(--muted); font-weight: 400; }
.field input, .field textarea { width: 100%; border: 1px solid #d8d4cb; border-radius: 4px; padding: 13px 14px; color: var(--ink); background: white; outline: none; }
.field input:focus, .field textarea:focus { border-color: var(--forest-2); box-shadow: 0 0 0 3px rgba(36,88,76,.1); }
.field textarea { resize: vertical; }
.everyday-toggle { display: flex !important; align-items: center; gap: 12px; margin: 0 !important; border: 1px solid #d8d4cb; border-radius: 5px; padding: 13px 14px; cursor: pointer; }
.everyday-toggle input { flex: 0 0 auto; width: 18px; height: 18px; margin: 0; accent-color: var(--forest-2); }
.everyday-toggle span, .everyday-toggle strong, .everyday-toggle small { display: block; }
.everyday-toggle strong { color: var(--forest); font-weight: 700; }
.everyday-toggle small { margin-top: 2px; color: var(--muted); font-weight: 400; }
.time-field[hidden] { display: none; }
.field-help { display: block; margin: 5px 0 0; color: var(--muted); font-size: 11px; }
fieldset.field { margin: 0; padding: 0; border: 0; }
fieldset .field-help { margin-top: -5px; }
.checkbox-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.checkbox-grid label { margin: 0; cursor: pointer; }
.checkbox-grid input { position: absolute; opacity: 0; width: 1px; }
.checkbox-grid span { display: block; border: 1px solid #d8d4cb; border-radius: 999px; padding: 8px 13px; color: var(--muted); font-weight: 600; }
.checkbox-grid input:checked + span { color: white; border-color: var(--forest-2); background: var(--forest-2); }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 4px; }
.form-footer p { margin: 0; max-width: 250px; color: var(--muted); font-size: 11px; }
.honeypot { position: absolute; left: -10000px; }

footer { padding-block: 35px; color: white; background: #102d28; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-inner > div { display: flex; align-items: center; gap: 10px; }
.footer-inner p { color: rgba(255,255,255,.58); font-size: 13px; }

dialog { width: min(500px, calc(100% - 30px)); padding: 0; border: 0; border-radius: 10px; background: var(--paper); box-shadow: 0 30px 90px rgba(0,0,0,.3); }
dialog::backdrop { background: rgba(11,31,27,.72); backdrop-filter: blur(4px); }
.dialog-card { position: relative; padding: 40px; }
.dialog-card h2 { margin-bottom: 10px; color: var(--forest); font-size: 40px; }
.dialog-card > p:not(.eyebrow) { margin: 0 0 25px; color: var(--muted); }
.dialog-card .field { margin-bottom: 18px; }
.dialog-close { position: absolute; top: 15px; right: 17px; width: 32px; height: 32px; border: 0; border-radius: 50%; background: #eeeae1; cursor: pointer; font-size: 23px; line-height: 1; }
.toast { position: fixed; z-index: 20; right: 24px; bottom: 24px; max-width: 360px; padding: 14px 18px; color: white; border-radius: 5px; background: var(--forest); box-shadow: var(--shadow); transform: translateY(100px); opacity: 0; transition: .25s; pointer-events: none; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast.error { background: #8b3f32; }

@media (max-width: 850px) {
  .hero { min-height: 700px; }
  .hero-sun { right: -100px; width: 240px; opacity: .8; }
  .hill-one { right: -500px; }
  .hero-content { padding-top: 100px; }
  .split-heading, .form-layout { grid-template-columns: 1fr; gap: 25px; }
  .day-grid { grid-template-columns: repeat(2, 1fr); }
  .weather-grid { grid-template-columns: repeat(2, 1fr); }
  .form-intro { position: static; }
  .form-doodle { display: none; }
  .idea-card { grid-template-columns: 85px 1fr; }
  .timeline-days { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 28px, 1160px); }
  .nav { height: 72px; }
  .nav-links { gap: 14px; }
  .nav-links .nav-claim, .nav-links .nav-tab.active { display: none; }
  .hero { min-height: 665px; }
  .hero-content { padding-top: 90px; }
  h1 { font-size: 54px; }
  .hero-copy { font-size: 16px; }
  .section, .ideas-section, .form-section, .weather-page { padding-block: 80px; }
  .day-grid { grid-template-columns: 1fr 1fr; }
  .weather-grid { grid-template-columns: 1fr 1fr; }
  .weather-card { min-height: 165px; padding: 16px; }
  .day-card { min-height: 205px; padding: 18px; }
  .day-number { font-size: 44px; }
  .day-status { padding: 4px 7px; font-size: 8px; }
  .idea-card { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
  .idea-date { display: flex; align-items: baseline; gap: 8px; padding: 0 0 14px; text-align: left; border-right: 0; border-bottom: 1px solid var(--line); }
  .idea-date strong { font-size: 28px; }
  .idea-date small { margin-left: auto; }
  .view-switch { display: flex; }
  .view-button { flex: 1; justify-content: center; }
  .timeline-days { grid-template-columns: repeat(4, 1fr); }
  .timeline-summary { align-items: flex-start; flex-direction: column; gap: 8px; }
  .timeline-summary h3 { font-size: 27px; }
  .timeline-choices-heading { align-items: flex-start; flex-direction: column; gap: 2px; }
  .timeline-choice-grid { grid-template-columns: 1fr; }
  .idea-form { grid-template-columns: 1fr; padding: 27px 20px; }
  .field { grid-column: 1/-1; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .dialog-card { padding: 34px 24px 26px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
