:root {
  --page-bg: #efeded;
  --panel: #f6f4f4;
  --surface: #ffffff;
  --surface-muted: #fbf9f9;
  --line: #e7e1e1;
  --text: #1e1d1d;
  --muted: #8f9098;
  --accent: #2f63ef;
  --accent-soft: #cfe0ff;
  --yellow: #f3c60f;
  --yellow-deep: #e2a800;
  --shadow: 0 30px 60px rgba(19, 24, 32, 0.08);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1400px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Public Sans', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #f8f7f7 0%, var(--page-bg) 65%);
}

body.cookie-lock {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0 0;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(50, 55, 63, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--yellow) 0%, #ffd96d 100%);
  position: relative;
  box-shadow: inset -8px -8px 18px rgba(255, 255, 255, 0.45);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  bottom: 7px;
  width: 5px;
  border-radius: 10px;
  background: var(--accent);
}

.brand-mark::before {
  left: 10px;
  height: 16px;
}

.brand-mark::after {
  left: 18px;
  height: 22px;
  box-shadow: 8px -4px 0 0 var(--accent);
}

.brand-text {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
}

.site-nav a.is-active,
.site-nav a:hover {
  color: var(--text);
}

.header-chip,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  padding: 14px 20px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-chip,
.button-dark {
  color: #ffffff;
  background: #161616;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.button-muted {
  background: #efefef;
  color: var(--text);
}

.button-outline-dark {
  border: 1px solid #d9d4d4;
  background: transparent;
  color: var(--text);
}

.button:hover,
.header-chip:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid #ddd7d7;
  background: #ffffff;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.dashboard-page,
.inner-page {
  padding: 18px 0 0;
}

.dashboard-shell,
.inner-hero-shell,
.content-shell,
.contact-shell,
.story-grid,
.cta-band {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 36px;
  padding: 32px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--shadow);
}

.dashboard-sidebar,
.dashboard-main,
.content-card,
.stat-card,
.info-card,
.forecast-card,
.highlight-card,
.inner-hero-shell,
.content-shell,
.contact-shell article,
.cta-band,
.story-grid {
  border-radius: var(--radius-xl);
}

.dashboard-sidebar {
  background: var(--surface-muted);
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 760px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.weather-search-form {
  padding: 10px 14px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px #ece8e8;
}

.weather-search-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  outline: none;
}

.weather-search-form input::placeholder {
  color: var(--muted);
}

.search-submit {
  margin-left: auto;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #2d3440;
  box-shadow: 0 0 0 6px rgba(47, 99, 239, 0.08);
}

.search-icon {
  width: 18px;
  height: 18px;
  border: 2px solid #c1c4cc;
  border-radius: 50%;
  position: relative;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 7px;
  height: 2px;
  background: #c1c4cc;
  transform: rotate(45deg);
  border-radius: 999px;
}

.search-dot {
  margin-left: auto;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #2d3440;
  box-shadow: 0 0 0 6px rgba(47, 99, 239, 0.08);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sidebar-symbol {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 46px auto 34px;
}

.symbol-sun {
  position: absolute;
  inset: 22px auto auto 8px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 20px 28px rgba(243, 198, 15, 0.18);
}

.symbol-columns {
  position: absolute;
  right: 14px;
  bottom: 28px;
  display: flex;
  gap: 6px;
}

.symbol-columns span {
  width: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.symbol-columns span:nth-child(1) {
  height: 58px;
}

.symbol-columns span:nth-child(2) {
  height: 68px;
}

.symbol-columns span:nth-child(3) {
  height: 80px;
}

.symbol-columns span:nth-child(4) {
  height: 64px;
}

.hero-metric h1 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 5.6rem);
  font-weight: 300;
  line-height: 0.94;
}

.hero-metric h1 span {
  font-size: 0.42em;
  vertical-align: top;
}

.hero-metric p {
  margin: 18px 0 10px;
  color: #3c4048;
  font-size: 1rem;
  line-height: 1.6;
}

.metric-subline {
  color: var(--muted);
  font-weight: 600;
}

.weather-status-message {
  min-height: 24px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.sidebar-divider {
  margin: 26px 0;
  border-top: 1px solid var(--line);
}

.sidebar-list {
  display: grid;
  gap: 18px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #3e434b;
  line-height: 1.5;
}

.sidebar-cloud {
  width: 22px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid #b7bcc4;
  position: relative;
  flex: 0 0 auto;
}

.sidebar-cloud::before {
  content: "";
  position: absolute;
  left: 2px;
  top: -8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #b7bcc4;
  background: var(--surface-muted);
}

.sidebar-bars {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 18px;
}

.sidebar-bars span {
  width: 4px;
  border-radius: 99px;
  background: var(--accent);
}

.sidebar-bars span:nth-child(1) {
  height: 10px;
}

.sidebar-bars span:nth-child(2) {
  height: 15px;
}

.sidebar-bars span:nth-child(3) {
  height: 12px;
}

.location-card {
  margin-top: auto;
  position: relative;
  overflow: hidden;
  min-height: 124px;
  border-radius: 24px;
  padding: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #1a6174 0%, #0f3040 100%);
  box-shadow: inset 0 -40px 60px rgba(0, 0, 0, 0.18);
}

.location-card strong,
.location-card span {
  position: relative;
  z-index: 2;
  display: block;
}

.location-card strong {
  margin-top: 48px;
  font-size: 1.02rem;
}

.location-card span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.location-skyline {
  position: absolute;
  inset: auto 18px 18px 18px;
  display: flex;
  align-items: end;
  gap: 8px;
}

.location-skyline span {
  display: block;
  width: 24px;
  border-radius: 8px 8px 0 0;
  background: rgba(255, 255, 255, 0.88);
}

.location-skyline span:nth-child(1) {
  height: 48px;
}

.location-skyline span:nth-child(2) {
  height: 68px;
}

.location-skyline span:nth-child(3) {
  height: 56px;
}

.location-skyline span:nth-child(4) {
  height: 78px;
  margin-left: auto;
}

.dashboard-main {
  padding: 6px 0 0;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-tabs {
  display: flex;
  gap: 28px;
}

.dashboard-tabs a {
  padding-bottom: 8px;
  color: #a3a4aa;
  font-size: 1.15rem;
  font-weight: 600;
}

.dashboard-tabs a.is-active {
  color: var(--text);
  border-bottom: 3px solid var(--text);
}

.dashboard-actions,
.toggle-pills {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toggle-pills span,
.top-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  font-size: 0.88rem;
  font-weight: 700;
}

.toggle-pills button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 18px;
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.toggle-pills button.is-active {
  background: #000000;
  color: #ffffff;
}

.toggle-pills span.is-active {
  background: #000000;
  color: #ffffff;
}

.top-cta {
  background: #efc5b0;
}

.forecast-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.forecast-card,
.highlight-card,
.info-card,
.content-card,
.stat-card {
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(40, 42, 48, 0.05);
}

.forecast-card {
  min-height: 164px;
  padding: 18px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.forecast-day {
  font-weight: 600;
}

.forecast-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

.forecast-temp {
  font-size: 1rem;
  font-weight: 700;
}

.forecast-temp span {
  color: #b1b1b8;
  font-weight: 500;
}

.forecast-icon {
  width: 38px;
  height: 38px;
  position: relative;
}

.forecast-icon-1,
.forecast-icon-6,
.forecast-icon-7 {
  border-radius: 50%;
  background: var(--yellow);
}

.forecast-icon-2::before {
  content: "";
  position: absolute;
  right: 8px;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--yellow);
}

.forecast-icon-2::after {
  content: "";
  position: absolute;
  left: 8px;
  bottom: 5px;
  width: 4px;
  height: 16px;
  background: var(--accent);
  border-radius: 99px;
  box-shadow: 6px -4px 0 0 var(--accent);
}

.forecast-icon-3::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 5px;
  width: 4px;
  height: 20px;
  border-radius: 99px;
  background: var(--accent);
}

.forecast-icon-4 {
  display: flex;
  align-items: end;
  gap: 4px;
}

.forecast-icon-4::before,
.forecast-icon-4::after {
  content: "";
  width: 4px;
  border-radius: 99px;
  background: #9fc0ff;
}

.forecast-icon-4::before {
  height: 22px;
  box-shadow: 8px -6px 0 0 #d4e2ff;
}

.forecast-icon-4::after {
  height: 16px;
}

.forecast-icon-5::before,
.forecast-icon-5::after {
  content: "";
  position: absolute;
  left: 6px;
  width: 26px;
  height: 4px;
  border-radius: 99px;
  background: #d8d8dc;
}

.forecast-icon-5::before {
  top: 12px;
}

.forecast-icon-5::after {
  top: 22px;
}

.highlights-block {
  margin-top: 42px;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 22px;
  align-items: end;
}

.eyebrow,
.card-label {
  margin: 0 0 12px;
  color: #9a9ca4;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-heading-row h2,
.story-grid h2,
.cta-band h2,
.inner-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-copy,
.story-grid p,
.content-heading p,
.content-card p,
.hero-copy,
.highlight-copy,
.mini-list,
.detail-list {
  color: #585d65;
  line-height: 1.7;
}

.info-grid,
.highlights-grid,
.stats-grid,
.content-card-grid {
  display: grid;
  gap: 22px;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.info-card,
.highlight-card,
.content-card,
.stat-card,
.report-card {
  padding: 26px;
}

.report-card h3 {
  margin: 0 0 12px;
}

.report-temp {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
}

.mini-list,
.detail-list {
  margin: 14px 0 0;
  padding-left: 18px;
}

.mini-list li,
.detail-list li {
  margin-bottom: 10px;
}

.highlights-title {
  margin: 36px 0 18px;
  font-size: 2rem;
}

.highlights-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlight-label {
  color: #a0a2aa;
  font-weight: 600;
}

.gauge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
}

.uv-gauge {
  position: relative;
  width: 164px;
  height: 82px;
  border-top-left-radius: 120px;
  border-top-right-radius: 120px;
  border: 14px solid #efeded;
  border-bottom: 0;
  overflow: hidden;
}

.uv-gauge-fill {
  position: absolute;
  inset: 0;
  border: 14px solid var(--yellow-deep);
  border-bottom: 0;
  transform-origin: center bottom;
  transform: rotate(-44deg);
}

.highlight-stack,
.status-layout {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  min-height: 122px;
  margin-top: 18px;
}

.highlight-value {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.highlight-value span {
  font-size: 0.42em;
  font-weight: 500;
  color: #5f636c;
}

.direction-row,
.status-meta {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #353a42;
  font-weight: 600;
}

.direction-icon,
.hours-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(47, 99, 239, 0.12);
  color: var(--accent);
  font-size: 0.95rem;
}

.hours-list {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.hours-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hours-item strong {
  display: block;
  font-size: 1.3rem;
}

.hours-item span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
}

.status-bar {
  width: 10px;
  height: 86px;
  border-radius: 999px;
  background: #efeded;
  position: relative;
}

.status-dot {
  position: absolute;
  left: 1px;
  bottom: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.status-dot.is-high {
  bottom: 70px;
}

.highlight-copy {
  margin: 16px 0 0;
}

.story-section {
  padding: 44px 0 0;
}

.story-grid,
.cta-band,
.inner-hero-shell,
.content-shell,
.contact-shell {
  background: rgba(255, 255, 255, 0.62);
  padding: 32px;
  box-shadow: var(--shadow);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 30px;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.stat-card span {
  color: #656970;
  line-height: 1.5;
}

.cta-band {
  margin-top: 32px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.inner-hero {
  padding: 8px 0 0;
}

.inner-hero-shell {
  padding: 42px 32px;
}

.hero-copy {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 1.05rem;
}

.content-block {
  padding-top: 28px;
}

.content-block-alt .content-shell,
.content-block-alt .contact-shell {
  background: rgba(246, 244, 244, 0.9);
}

.content-shell {
  padding: 32px;
}

.content-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.content-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  padding: 32px;
}

.contact-summary h2 {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #ddd7d7;
  border-radius: 16px;
  background: #ffffff;
  padding: 14px 16px;
  color: var(--text);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #555a62;
  line-height: 1.6;
}

.checkbox-field input {
  margin-top: 5px;
}

.notice {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 600;
}

.notice.success {
  background: #edf7ef;
  color: #245c2d;
}

.notice.error {
  background: #fff1f1;
  color: #9c2f2f;
}

.site-footer {
  padding: 0 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 26px;
  padding: 32px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-copy,
.footer-grid p,
.footer-grid a {
  color: #595d65;
  line-height: 1.7;
}

.footer-grid h2 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 8px 0;
  color: #7b7e87;
  font-size: 0.92rem;
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(17, 18, 21, 0.58);
  backdrop-filter: blur(5px);
}

.cookie-modal {
  position: fixed;
  z-index: 90;
  inset: 50% auto auto 50%;
  width: min(520px, calc(100% - 32px));
  transform: translate(-50%, -50%);
  padding: 30px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.cookie-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f3f1f1;
  color: var(--text);
  cursor: pointer;
}

.cookie-eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.cookie-modal h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.cookie-modal p {
  color: #565b63;
  line-height: 1.7;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

@media (max-width: 1180px) {
  .dashboard-grid,
  .story-grid,
  .contact-shell,
  .section-heading-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .forecast-strip,
  .highlights-grid,
  .info-grid,
  .content-card-grid,
  .stats-grid,
  .report-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band,
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 880px) {
  .site-header {
    position: static;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-bar {
    position: relative;
    flex-wrap: wrap;
  }

  .header-chip {
    margin-left: auto;
  }

  .dashboard-grid {
    padding: 20px;
    gap: 24px;
  }

  .dashboard-topbar,
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .forecast-strip,
  .highlights-grid,
  .info-grid,
  .content-card-grid,
  .stats-grid,
  .report-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-actions {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .container,
  .dashboard-shell,
  .inner-hero-shell,
  .content-shell,
  .contact-shell,
  .story-grid,
  .cta-band {
    width: min(var(--container), calc(100% - 24px));
  }

  .header-bar,
  .dashboard-grid,
  .story-grid,
  .cta-band,
  .inner-hero-shell,
  .content-shell,
  .contact-shell,
  .footer-grid,
  .cookie-modal {
    padding: 22px;
  }

  .dashboard-sidebar {
    min-height: auto;
  }

  .brand-text {
    font-size: 0.9rem;
  }

  .header-chip {
    width: 100%;
  }

  .toggle-pills span,
  .top-cta {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .hero-metric h1,
  .highlight-value {
    font-size: 3.2rem;
  }
}
