/* ==========
   GLOBAL
   ========== */

:root {
  --color-bg: #050608;
  --color-surface: rgba(12, 15, 17, 0.96);
  --color-surface-alt: rgba(10, 10, 12, 0.9);
  --color-primary: #981b2b;
  --color-gold: #b68b3c;
  --color-highlight: #ff8450;
  --color-text: #f5f5f7;
  --color-muted: #a2a8b5;
  --color-border: rgba(215, 220, 224, 0.14);
  --color-chip-bg: rgba(215, 220, 224, 0.08);
  --color-chip-done: rgba(182, 139, 60, 0.2);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.65);
  --radius-lg: 18px;
  --radius-xl: 22px;
  --radius-pill: 999px;
  --gradient-main: radial-gradient(circle at top left, #981b2b 0%, #b68b3c 40%, #000 90%);
  --gradient-card: linear-gradient(135deg, rgba(152, 27, 43, 0.4), rgba(0, 0, 0, 0.85));
  --gradient-btn: linear-gradient(135deg, #ff8450, #b68b3c);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #250308 0, #050608 55%, #000 100%);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

/* ==========
   LAYOUT HELPERS
   ========== */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, #120208 0, #050608 55%, #000 100%);
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}

.section-header p {
  margin: 0;
  color: var(--color-muted);
}

/* centered variant for About heading */
.section-header-center {
  text-align: center;
  margin-bottom: 1.8rem;
}

/* ==========
   HEADER & NAV
   ========== */

.site-header {
  position: relative;
  z-index: 10;
  background: linear-gradient(
      180deg,
      rgba(5, 6, 8, 0.98),
      rgba(5, 6, 8, 0.95) 60%,
      rgba(5, 6, 8, 0.9) 100%
    );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem 0.75rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-mark-image img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo-name {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.logo-tagline {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--color-muted);
  letter-spacing: 0.12em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.88rem;
}

.main-nav a,
.main-nav button {
  color: var(--color-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 500;
  font-size: 0.8rem;
}

.main-nav button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.main-nav a:hover,
.main-nav button:hover {
  color: var(--color-highlight);
}

.main-nav .nav-cta {
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  background: var(--gradient-btn);
  color: #050608;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.7);
}

.main-nav .nav-cta:hover {
  filter: brightness(1.07);
}

.main-nav .nav-cta-secondary {
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(182, 139, 60, 0.6);
}

/* nav dropdown */

.nav-item-has-dropdown {
  position: relative;
}

.nav-dropdown-toggle::after {
  content: "▾";
  margin-left: 0.25rem;
  font-size: 0.7rem;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 190px;
  background: var(--color-surface);
  border-radius: 14px;
  border: 1px solid var(--color-border);
  padding: 0.5rem 0;
  box-shadow: var(--shadow-soft);
  display: none;
  z-index: 20;
}

.nav-dropdown a {
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  color: var(--color-muted);
}

.nav-dropdown a:hover {
  background: rgba(255, 132, 80, 0.12);
  color: var(--color-text);
}

.nav-dropdown a.current-world {
  color: var(--color-highlight);
}

.nav-item-has-dropdown:hover .nav-dropdown,
.nav-item-has-dropdown:focus-within .nav-dropdown {
  display: flex;
  flex-direction: column;
}

/* ==========
   HERO
   ========== */

.hero {
  background: var(--gradient-main);
  padding: 3.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at top right,
      rgba(255, 132, 80, 0.18),
      transparent 60%
    ),
    radial-gradient(circle at bottom left, rgba(152, 27, 43, 0.55), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.9;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.25fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 2.25rem;
  margin: 0.4rem 0 0.9rem;
}

.hero-subtitle {
  margin: 0 0 1.3rem;
  color: rgba(245, 245, 247, 0.86);
  max-width: 34rem;
}

.system-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 245, 247, 0.78);
}

.system-label.small {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.2rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-btn);
  color: #050608;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.75);
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-ghost {
  background: rgba(5, 6, 8, 0.35);
  border-color: rgba(215, 220, 224, 0.28);
  color: var(--color-text);
}

.btn-ghost:hover {
  background: rgba(5, 6, 8, 0.6);
}

/* Hero stat cards */

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background: var(--gradient-card);
  border-radius: var(--radius-xl);
  padding: 1.3rem 1.3rem 1.15rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-banner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.stat-chip {
  padding: 0.6rem 0.7rem;
  border-radius: 14px;
  background: rgba(5, 6, 8, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.stat-chip-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.2rem;
}

.stat-chip-value {
  font-size: 0.88rem;
  font-weight: 500;
}

/* Used by world pages too */

.stat-list {
  list-style: none;
  padding: 0;
  margin: 0.7rem 0 0.1rem;
}

.stat-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  padding: 0.18rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.04);
}

.stat-list li span:first-child {
  color: var(--color-muted);
}

.stat-list li span:last-child {
  font-weight: 500;
}

.disclaimer {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  color: var(--color-muted);
}

/* ==========
   PATCH NOTES
   ========== */

.patch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.patch-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.65);
}

.patch-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-muted);
}

.patch-body {
  margin: 0.7rem 0 0.2rem;
  font-size: 0.9rem;
}

/* ==========
   PROGRESS TRACKERS
   ========== */

.progress-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
  gap: 2rem;
  align-items: flex-start;
}

.progress-tiles {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.progress-tile {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.7rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 6, 8, 0.7);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.1s ease;
}

.progress-tile:hover {
  border-color: rgba(255, 132, 80, 0.8);
  transform: translateY(-1px);
}

.progress-tile.active {
  border-color: var(--color-gold);
  background: radial-gradient(circle at left, rgba(255, 132, 80, 0.14), #050608);
}

/* round avatars */
.progress-tile img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 2px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* extra tweak for the middle button (Aegis) */
.progress-tiles button:nth-child(2) img {
  transform: scale(1.45);        /* zoom in */
  transform-origin: 50% 20%;     /* bias to upper/face area */
  clip-path: circle(48% at 50% 38%); /* keep a clean circle, hide edges */
}

.progress-tile-title {
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.progress-tile-sub {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.progress-panels {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 1.3rem 1.3rem 1.2rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.series-panel {
  display: none;
}

.series-panel.active {
  display: block;
}

.series-panel-header h3 {
  margin: 0 0 0.4rem;
  font-family: "Space Grotesk", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.9rem;
}

.series-panel-header p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.85rem;
}

.series-panel-body {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.3fr);
  gap: 1.4rem;
}

.series-concept p {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

/* Trackers */

.tracker-block + .tracker-block {
  margin-top: 0.9rem;
}

.tracker-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-muted);
  margin-bottom: 0.4rem;
}

.tracker-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tracker-step {
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  background: var(--color-chip-bg);
  border: 1px solid rgba(255, 255, 255, 0.03);
  color: #f5f5f7;
}

.tracker-step.done {
  background: var(--color-chip-done);
  border-color: rgba(182, 139, 60, 0.8);
  color: #fffdf4;
}

.tracker-step span {
  opacity: 0.92;
  color: inherit;
}

/* Progress bars */

.tracker-bars {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.tracker-bar-row {
  font-size: 0.8rem;
}

.tracker-bar-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.2rem;
}

.progress-bar {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(215, 220, 224, 0.14);
  overflow: hidden;
}

.progress-bar-fill {
  position: absolute;
  inset: 0;
  width: 0;
  border-radius: inherit;
  background: var(--gradient-btn);
}

/* Series map */

.series-map {
  margin-top: 0.7rem;
  font-size: 0.84rem;
}

.series-map ul {
  list-style: none;
  padding: 0;
  margin: 0.2rem 0 0;
}

.series-map li + li {
  margin-top: 0.18rem;
}

/* ==========
   WORLDS CARDS
   ========== */

.worlds-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.world-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1rem;
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.65);
}

/* keep existing preview size; just hide inner borders by zooming */
.world-card-image {
  margin-bottom: 0.6rem;
  border-radius: 14px;
  overflow: hidden;
  max-height: 140px;          /* same height as before */
}

.world-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top; /* focus on the top/interesting part */
  transform: scale(1.08);      /* subtle zoom to hide frame edges */
}

.world-card h3 {
  margin: 0.3rem 0 0.35rem;
  font-size: 1rem;
}

.world-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.world-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-muted);
}

/* ==========
   ABOUT
   ========== */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: flex-start;
}

/* wrapper for centered author profile */
.about-profile-wrapper {
  display: flex;
  justify-content: center;
}

.about-bio p {
  margin-top: 0;
  margin-bottom: 0.7rem;
}

.about-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 1.1rem 1.1rem 1rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

/* expanded variant for the author profile card */
.about-card.about-card-expanded {
  max-width: 640px;
  width: 100%;
  padding: 1.5rem 1.6rem 1.3rem;
  font-size: 0.96rem;
}

.about-headshot {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.7rem;
}

/* bigger, clearer author photo */
.about-headshot img {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(182, 139, 60, 0.8);
}

.about-headshot-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.about-headshot-text .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-muted);
}

.about-headshot-text .name {
  font-size: 0.9rem;
  font-weight: 600;
}

/* biography text inside Chris's author profile card (not italic) */
.author-bio {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
}

.author-bio p {
  margin: 0 0 0.7rem;
}

/* ==========
   NEWSLETTER
   ========== */

.newsletter-section {
  background: radial-gradient(circle at top, #1b050c, #050608 58%, #000 100%);
}

.newsletter-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 1.8rem 1.5rem 1.5rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.newsletter-form {
  margin-top: 1.1rem;
}

.newsletter-form label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-muted);
}

.newsletter-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.45rem;
}

.newsletter-row input[type="email"] {
  flex: 1;
  padding: 0.6rem 0.7rem;
  border-radius: 12px;
  border: 1px solid rgba(215, 220, 224, 0.2);
  background: rgba(5, 6, 8, 0.9);
  color: var(--color-text);
  font-size: 0.86rem;
}

.newsletter-row input[type="email"]::placeholder {
  color: rgba(162, 168, 181, 0.75);
}

.form-note {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: var(--color-muted);
}

/* ==========
   WORLD PAGES
   ========== */

.world-layout {
  padding-bottom: 4rem;
}

.character-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr);
  gap: 1.2rem;
}

.character-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 1.1rem;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: 1.1rem 1.1rem 1rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

/* clean portrait framing for character images */
.character-image {
  border-radius: 18px;
  overflow: hidden;
  background: #050608;
  aspect-ratio: 4 / 5; /* consistent portrait ratio */
}

.character-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center; /* favor head/upper body */
  transform: scale(1.08);      /* slight zoom to hide any frame edges */
}

.character-body h3 {
  margin: 0.2rem 0 0.4rem;
}

.character-hook {
  font-size: 0.9rem;
  color: var(--color-text);
}

/* Lore cards / wiki */

.lore-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.lore-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1rem 0.95rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.lore-body h3 {
  margin: 0.35rem 0 0.4rem;
}

.lore-body p {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.tag-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tag-list li {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.system-note {
  font-size: 0.8rem;
  color: var(--color-muted);
  font-style: italic;
}

/* ==========
   FOOTER
   ========== */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #050608;
  padding: 1.6rem 0 1.4rem;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.2rem;
}

.footer-credit-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(182, 139, 60, 0.8);
  background: rgba(5, 6, 8, 0.95);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-highlight);
}

.footer-credit-pill:hover {
  background: rgba(182, 139, 60, 0.15);
}

.footer-links {
  display: flex;
  gap: 0.9rem;
}

.footer-links a {
  color: var(--color-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--color-highlight);
}

/* ==========
   WORLD-THEMED VARIANTS
   ========== */

/* Inducted Earth – Aegis: teal / steel tech */
.page-aegis .hero {
  background: radial-gradient(circle at top, #0b3b4a 0%, #050608 55%, #000 100%);
}

.page-aegis .hero::before {
  background: radial-gradient(
      circle at top right,
      rgba(35, 200, 195, 0.26),
      transparent 55%
    ),
    radial-gradient(circle at bottom left, rgba(8, 64, 82, 0.8), transparent 60%);
}

.page-aegis .section-alt {
  background: radial-gradient(circle at top, #04161c 0%, #050608 60%, #000 100%);
}

/* Veloria – Beast Lord Rising: warm crimson / gold */
.page-beast .hero {
  background: radial-gradient(circle at top, #4a0f16 0%, #981b2b 35%, #050608 80%);
}

.page-beast .hero::before {
  background: radial-gradient(
      circle at top right,
      rgba(255, 132, 80, 0.35),
      transparent 55%
    ),
    radial-gradient(circle at bottom left, rgba(152, 27, 43, 0.8), transparent 60%);
}

.page-beast .section-alt {
  background: radial-gradient(circle at top, #31040c 0%, #050608 60%, #000 100%);
}

/* Avarra – Dungeonborn Soul: deep violet / blue */
.page-dungeon .hero {
  background: radial-gradient(circle at top, #1b1035 0%, #050608 60%, #000 100%);
}

.page-dungeon .hero::before {
  background: radial-gradient(
      circle at top right,
      rgba(187, 140, 255, 0.36),
      transparent 55%
    ),
    radial-gradient(circle at bottom left, rgba(15, 52, 96, 0.8), transparent 60%);
}

.page-dungeon .section-alt {
  background: radial-gradient(circle at top, #120824 0%, #050608 60%, #000 100%);
}

/* ==========
   RESPONSIVE
   ========== */

@media (max-width: 900px) {
  .hero-grid,
  .progress-layout,
  .about-grid,
  .series-panel-body,
  .character-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    margin-top: 1.5rem;
    justify-content: flex-start;
  }

  .section {
    padding: 3.5rem 0;
  }

  .patch-grid,
  .worlds-grid,
  .lore-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-dropdown {
    left: auto;
    right: 0;
  }
}

@media (max-width: 740px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .hero {
    padding-top: 2.6rem;
  }

  .newsletter-row {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-row .btn {
    width: 100%;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}
