/* ============================================
   GrabFlightsNow.com — Design System
   Version: 1.0
   ============================================ */


/* --- CSS Variables --- */
:root {
  /* Brand Colors */
  --navy: #0B1D3A;
  --navy-light: #122B52;
  --navy-dark: #060F1F;
  --sky: #2E8BC0;
  --sky-light: #4DA8DA;
  --sky-pale: #E8F4FB;
  --coral: #F26B3A;
  --coral-hover: #E05520;
  --coral-light: #FFF0EB;
  --gold: #F5B731;
  --gold-light: #FFF8E6;
  --cream: #FAFAF7;
  --white: #FFFFFF;

  /* Text */
  --text-dark: #1A1A2E;
  --text-body: #3D3D56;
  --text-muted: #6B6B80;
  --text-light: #9999AC;
  --text-on-dark: #F0F0F5;
  --text-on-dark-muted: #B8C4D8;

  /* Borders & Surfaces */
  --border: #E2E2EA;
  --border-light: #F0F0F5;
  --surface: #FFFFFF;
  --surface-alt: #F5F5F0;
  --surface-dark: #0E2442;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(11, 29, 58, 0.06);
  --shadow-md: 0 4px 12px rgba(11, 29, 58, 0.08);
  --shadow-lg: 0 8px 30px rgba(11, 29, 58, 0.12);
  --shadow-xl: 0 16px 48px rgba(11, 29, 58, 0.16);

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 999px;

  /* Widths */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --max-width-wide: 1400px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--cream);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--sky);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--coral); }

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

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow { max-width: var(--max-width-narrow); }
.container--wide { max-width: var(--max-width-wide); }

.section {
  padding: var(--space-3xl) 0;
}

.section--dark {
  background: var(--navy);
  color: var(--text-on-dark);
}
.section--dark h2,
.section--dark h3 { color: var(--white); }

.section--alt {
  background: var(--surface-alt);
}

/* --- Grid System --- */
.grid {
  display: grid;
  gap: var(--space-lg);
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(3, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

@media (max-width: 768px) {
  .grid--2, .grid--3, .grid--4 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: var(--space-4xl) 0 var(--space-3xl);
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(46, 139, 192, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(242, 107, 58, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(46, 139, 192, 0.15);
  border: 1px solid rgba(46, 139, 192, 0.25);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sky-light);
  margin-bottom: var(--space-lg);
  font-family: var(--font-display);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.hero h1 span {
  background: linear-gradient(135deg, var(--coral) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--text-on-dark-muted);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Search Widget Container --- */
.search-widget {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
  max-width: 750px;
  margin: 0 auto;
}

.search-widget__label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  display: block;
}

.search-widget__note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  margin-top: var(--space-md);
}

.search-widget__note a {
  color: var(--sky-light);
}

/* --- Trust Bar --- */
.trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-bar__item svg {
  width: 20px;
  height: 20px;
  color: var(--sky-light);
  flex-shrink: 0;
}

/* ============================================
   DESTINATION CARDS
   ============================================ */
.dest-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  text-decoration: none;
  color: inherit;
  display: block;
}

.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}

.dest-card__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--border-light);
}

.dest-card__body {
  padding: var(--space-md) var(--space-lg);
}

.dest-card__city {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.dest-card__country {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.dest-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--coral);
  font-size: 1.1rem;
}

.dest-card__price span {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
}

/* ============================================
   ROUTE CARDS
   ============================================ */
.route-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.route-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: inherit;
}

.route-card__origin,
.route-card__dest {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-dark);
}

.route-card__arrow {
  color: var(--sky);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.route-card__price {
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--coral);
  white-space: nowrap;
}

/* ============================================
   AIRLINE CARDS
   ============================================ */
.airline-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  text-decoration: none;
  color: inherit;
  display: block;
}

.airline-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: inherit;
}

.airline-card__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-sm);
}

.airline-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
}

.airline-card__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.airline-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--gold-light);
  color: #B8860B;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-display);
  margin-top: var(--space-sm);
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.compare-table th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  font-size: 0.95rem;
}

.compare-table td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table tr:nth-child(even) td {
  background: var(--surface-alt);
}

.compare-table .check {
  color: #22A06B;
  font-weight: 700;
}

.compare-table .cross {
  color: #CF3528;
  font-weight: 700;
}

/* ============================================
   CTA BLOCKS
   ============================================ */
.cta-block {
  background: linear-gradient(135deg, var(--coral) 0%, #E84D1A 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  color: var(--white);
}

.cta-block h3 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.cta-block p {
  opacity: 0.9;
  margin-bottom: var(--space-lg);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  line-height: 1;
}

.btn--primary {
  background: var(--coral);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--coral-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--border);
}
.btn--secondary:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.btn--dark {
  background: var(--navy);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--navy-light);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--coral);
}
.btn--white:hover {
  background: rgba(255,255,255,0.9);
  color: var(--coral-hover);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sky);
  margin-bottom: var(--space-sm);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  gap: var(--space-md);
}

.faq-question:hover {
  color: var(--coral);
}

.faq-question svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform var(--transition-base);
  color: var(--text-muted);
}

.faq-item.active .faq-question svg {
  transform: rotate(45deg);
  color: var(--coral);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: var(--space-lg);
}

.faq-answer p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  padding: var(--space-md) 0;
  font-size: 0.85rem;
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--coral);
}

.breadcrumbs span {
  color: var(--text-light);
  margin: 0 var(--space-sm);
}

.breadcrumbs .current {
  color: var(--text-body);
  font-weight: 500;
}

/* ============================================
   PORTFOLIO CROSS-LINKS
   ============================================ */
.portfolio-bar {
  background: var(--navy);
  padding: var(--space-2xl) 0;
}

.portfolio-bar h3 {
  color: var(--white);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.portfolio-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-decoration: none;
  color: var(--text-on-dark);
  transition: all var(--transition-base);
  display: block;
}

.portfolio-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  transform: translateY(-2px);
}

.portfolio-card__icon {
  font-size: 1.6rem;
  margin-bottom: var(--space-sm);
}

.portfolio-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.portfolio-card__desc {
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-lg);
  max-width: var(--max-width-wide);
  margin: 0 auto;
  height: 64px;
}

.header__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header__logo span {
  color: var(--coral);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}

.header__nav a {
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast);
  font-family: var(--font-display);
}

.header__nav a:hover {
  color: var(--white);
}

.header__menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: var(--space-sm);
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: var(--space-lg);
    gap: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header__nav.active {
    display: flex;
  }

  .header__menu-btn {
    display: block;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  color: var(--text-on-dark-muted);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer__brand span { color: var(--coral); }

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  font-size: 0.82rem;
}

.footer__bottom a {
  color: var(--text-on-dark-muted);
}

.footer__affiliates {
  font-size: 0.78rem;
  color: rgba(184, 196, 216, 0.6);
}

/* ============================================
   BLOG / ARTICLE CARDS
   ============================================ */
.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: inherit;
}

.article-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--border-light);
}

.article-card__body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sky);
  margin-bottom: var(--space-sm);
}

.article-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.article-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
}

.article-card__meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-light);
}

/* ============================================
   PAGE BODY (for content pages)
   ============================================ */
.page-body {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
}

.page-body h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.page-body h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.page-body ul, .page-body ol {
  margin-bottom: 1em;
  padding-left: 1.5em;
}

.page-body li {
  margin-bottom: 0.4em;
}

.page-body table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
}

.page-body table th,
.page-body table td {
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--border);
  text-align: left;
}

.page-body table th {
  background: var(--surface-alt);
  font-family: var(--font-display);
  font-weight: 600;
}

/* ============================================
   AFFILIATE DISCLOSURE
   ============================================ */
.affiliate-disclosure {
  background: var(--sky-pale);
  border-left: 3px solid var(--sky);
  padding: var(--space-md) var(--space-lg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.animate-in:nth-child(1) { animation-delay: 0.1s; }
.animate-in:nth-child(2) { animation-delay: 0.2s; }
.animate-in:nth-child(3) { animation-delay: 0.3s; }
.animate-in:nth-child(4) { animation-delay: 0.4s; }
.animate-in:nth-child(5) { animation-delay: 0.5s; }
.animate-in:nth-child(6) { animation-delay: 0.6s; }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-coral { color: var(--coral); }
.text-navy { color: var(--navy); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

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

/* Print */
@media print {
  .header, .footer, .portfolio-bar, .cta-block {
    display: none;
  }
}
