/* =============================================
   FLIGHTDIPLOMA.COM — styles.css
   Palette: Deep Navy #0B1F3A + Warm Amber #3B2A0B
   Accent: Sand #948A7B / Slate #7A8793
   ============================================= */

/* ── TOKENS ── */
:root {
  --navy: #0B1F3A;
  --navy-light: #132d52;
  --navy-mid: #1a3a6b;
  --amber: #3B2A0B;
  --amber-light: #5c4118;
  --sand: #948A7B;
  --sand-light: #c4baaa;
  --sand-pale: #f2ede6;
  --slate: #7A8793;
  --slate-light: #b0bac4;
  --white: #fafaf8;
  --off-white: #f5f0e8;
  --text-dark: #1a1410;
  --text-mid: #4a4038;
  --gold: #c8a96e;
  --gold-light: #e0c99a;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'DM Mono', monospace;

  --radius: 2px;
  --radius-lg: 6px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

/* ── CONTAINER ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(11, 31, 58, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(200, 169, 110, 0.2);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav__logo-mark {
  color: var(--gold);
  font-size: 0.85rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand-light);
  transition: color var(--transition);
}

.nav__links a:hover,
.nav__links a.nav__active {
  color: var(--gold);
}

.nav__cta {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  border-radius: var(--radius);
  font-size: 0.75rem !important;
  transition: background var(--transition), color var(--transition) !important;
}

.nav__cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--sand-light);
  transition: transform var(--transition), opacity var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  background: rgba(11, 31, 58, 0.98);
  padding: 1.5rem 2rem;
  gap: 1.25rem;
  border-top: 1px solid rgba(200, 169, 110, 0.15);
}

.nav__mobile a {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sand-light);
  transition: color var(--transition);
}

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

.nav__mobile.open { display: flex; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 169, 110, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 110, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__horizon {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(
    to top,
    rgba(59, 42, 11, 0.35) 0%,
    transparent 100%
  );
}

/* Additional atmospheric glow */
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(200, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 30%;
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(59, 42, 11, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.75rem;
}

.hero__title-line {
  display: block;
  opacity: 0;
  animation: fadeUp 0.9s forwards;
}

.hero__title-line:nth-child(1) { animation-delay: 0.35s; }
.hero__title-line:nth-child(2) { animation-delay: 0.5s; }

.hero__title-line--italic {
  font-style: italic;
  color: var(--gold-light);
}

.hero__subtitle {
  max-width: 560px;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--sand-light);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.95s forwards;
}

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 0.25rem;
}

.stat__divider {
  width: 1px;
  height: 40px;
  background: rgba(200, 169, 110, 0.25);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}

.hero__scroll-hint span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s 2s ease-in-out infinite;
}

/* ── STRIP ── */
.strip {
  background: var(--amber);
  padding: 0.85rem 0;
  overflow: hidden;
}

.strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

.strip__inner span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.strip__dot {
  color: rgba(200, 169, 110, 0.4) !important;
}

/* ── SECTIONS ── */
.section {
  padding: 7rem 0;
}

.section--dark { background: var(--navy); }
.section--sand { background: var(--sand-pale); }
.section--light { background: var(--off-white); }
.section--navy { background: var(--navy-light); }

.section__header {
  text-align: center;
  margin-bottom: 5rem;
}

.section__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section--sand .section__label,
.section--light .section__label {
  color: var(--amber);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.section--dark .section__title,
.section--navy .section__title {
  color: var(--white);
}

.section--sand .section__title,
.section--light .section__title {
  color: var(--navy);
}

.section__desc {
  font-size: 1rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

.section--dark .section__desc,
.section--navy .section__desc {
  color: var(--sand-light);
}

.section--sand .section__desc,
.section--light .section__desc {
  color: var(--text-mid);
}

/* ── PHASES ── */
.phases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  border: 1px solid rgba(200, 169, 110, 0.12);
}

.phase {
  padding: 2.5rem;
  border-right: 1px solid rgba(200, 169, 110, 0.12);
  transition: background var(--transition);
}

.phase:last-child { border-right: none; }

.phase:hover {
  background: rgba(200, 169, 110, 0.04);
}

.phase__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(200, 169, 110, 0.2);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color var(--transition);
}

.phase:hover .phase__num {
  color: rgba(200, 169, 110, 0.5);
}

.phase__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.phase__desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--sand-light);
  line-height: 1.7;
}

/* ── CARDS GRID ── */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid rgba(148, 138, 123, 0.2);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(11, 31, 58, 0.1);
  border-color: var(--sand);
}

.card__icon {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  display: block;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.card__text {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── REQUIREMENTS ── */
.requirements-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.requirements-left .section__label { text-align: left; }
.requirements-left .section__title { text-align: left; }
.requirements-left .section__desc { text-align: left; margin: 0 0 2rem; }

.req-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.req-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.req-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(200, 169, 110, 0.15);
  border: 1px solid rgba(200, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--gold);
  margin-top: 2px;
}

.section--dark .req-item strong {
  display: block;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.section--dark .req-item p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--sand-light);
  line-height: 1.6;
}

.section--sand .req-item strong {
  display: block;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.section--sand .req-item p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── TIMELINE ── */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(59, 42, 11, 0.2);
}

.timeline__item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline__item:last-child { margin-bottom: 0; }

.timeline__marker {
  flex-shrink: 0;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: var(--off-white);
  border: 2px solid var(--amber);
  position: relative;
  z-index: 1;
  margin-top: 2px;
}

.timeline__marker::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0;
  transition: opacity var(--transition);
}

.timeline__item:hover .timeline__marker::after {
  opacity: 1;
}

.timeline__content {
  padding-top: 4px;
}

.timeline__step {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 0.4rem;
}

.timeline__content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.timeline__content p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── APPLY FORM ── */
.apply-box {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.apply-box__left .section__label { text-align: left; }

.apply-box__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.apply-box__desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--sand-light);
  line-height: 1.7;
}

.form-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 169, 110, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(200, 169, 110, 0.15);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(200, 186, 170, 0.3);
}

.form-group select option {
  background: var(--navy-light);
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-note {
  font-size: 0.72rem;
  color: var(--slate);
  text-align: center;
  margin-top: 0.75rem;
  font-family: var(--font-mono);
}

.form-success {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 169, 110, 0.2);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
}

.form-success__icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--sand-light);
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200, 169, 110, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--sand-light);
  border: 1px solid rgba(200, 186, 170, 0.3);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--full { width: 100%; justify-content: center; margin-top: 1.5rem; }

/* ── PAGE HERO (blog/subpages) ── */
.page-hero {
  background: var(--navy);
  padding: 10rem 0 5rem;
  text-align: center;
}

.page-hero .section__label { margin-bottom: 1rem; }

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.page-hero__desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--sand-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid rgba(148, 138, 123, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(11, 31, 58, 0.08);
  border-color: var(--sand);
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
}

.blog-card__cat {
  background: rgba(59, 42, 11, 0.08);
  color: var(--amber);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  border: 1px solid rgba(59, 42, 11, 0.12);
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.blog-card__excerpt {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.blog-card__link {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  transition: color var(--transition), gap var(--transition);
}

.blog-card__link:hover { color: var(--navy); }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(200, 169, 110, 0.1);
  padding: 4rem 0 2rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200, 169, 110, 0.08);
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--slate);
  margin-top: 1rem;
  max-width: 320px;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  gap: 3rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__col strong {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.footer__col a {
  font-size: 0.85rem;
  color: var(--slate);
  transition: color var(--transition);
}

.footer__col a:hover { color: var(--sand-light); }

.footer__bottom {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: var(--slate);
  opacity: 0.7;
}

/* ── REVEAL ANIMATIONS ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .requirements-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .apply-box {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .phases {
    grid-template-columns: 1fr;
  }

  .phase {
    border-right: none;
    border-bottom: 1px solid rgba(200, 169, 110, 0.12);
  }
  .phase:last-child { border-bottom: none; }
}

@media (max-width: 600px) {
  .hero__stats { flex-wrap: wrap; gap: 1.5rem; }
  .stat__divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer__links { flex-direction: column; gap: 1.5rem; }
  .hero__scroll-hint { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .grid-cards { grid-template-columns: 1fr; }
  .strip__inner { gap: 0.75rem; }
  .strip__dot { display: none; }
}
