/*
Theme Name: Rathlin Island
Theme URI: https://rathlinisland.com
Author: Rathlin Island
Description: A bespoke coastal theme for Rathlin Island — Northern Ireland's only inhabited offshore island. Clean, editorial design with a wild Atlantic character.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: rathlin-island
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --navy:        #0d1b2a;
  --deep-sea:    #1b3a4b;
  --ocean:       #2d6a8a;
  --atlantic:    #3a8fb5;
  --foam:        #a8d8ea;
  --sand:        #f4ede4;
  --cliff:       #8b7355;
  --heather:     #7c5c7a;
  --puffin:      #e85d04;
  --white:       #ffffff;
  --off-white:   #faf8f6;
  --text-dark:   #1a1a2e;
  --text-mid:    #4a5568;
  --text-light:  #718096;
  --border:      #e2d9d0;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Serif 4', 'Georgia', serif;
  --font-ui:      'DM Sans', system-ui, sans-serif;

  --max-width:   1180px;
  --content-width: 780px;
  --radius:      4px;
  --shadow-sm:   0 2px 8px rgba(13,27,42,0.08);
  --shadow-md:   0 8px 32px rgba(13,27,42,0.14);
  --shadow-lg:   0 20px 60px rgba(13,27,42,0.2);

  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ocean); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--puffin); }
ul, ol { padding-left: 1.5rem; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.25rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-top: 2.5rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--foam); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin-top: 2rem; color: var(--deep-sea); }
h4 { font-size: 1.1rem; color: var(--ocean); }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; color: var(--navy); }

ul, ol { margin-bottom: 1.25rem; }
li { margin-bottom: 0.4rem; }

blockquote {
  border-left: 4px solid var(--atlantic);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--sand);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-mid);
}

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 70px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.site-logo__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-logo__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.site-logo__tagline {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  color: var(--foam);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Navigation */
.site-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.25rem;
}

.site-nav a {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  transition: all var(--transition);
  display: block;
}

.site-nav a:hover,
.site-nav .current-menu-item > a,
.site-nav .current-page-ancestor > a {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Dropdown */
.site-nav .menu-item-has-children {
  position: relative;
}

.site-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--deep-sea);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 0.5rem;
  gap: 0;
}

.site-nav .menu-item-has-children:hover .sub-menu { display: block; }

.site-nav .sub-menu li { margin: 0; }

.site-nav .sub-menu a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  padding: 0.5rem 0.85rem;
}

.site-nav .sub-menu a:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.85rem;
}

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--deep-sea) 40%, var(--ocean) 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem 5rem;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(58,143,181,0.25) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__waves {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero__eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--foam);
  margin-bottom: 1.25rem;
  display: block;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.1;
  border: none;
  padding: 0;
}

.hero__title em {
  font-style: italic;
  color: var(--foam);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.02em;
}

.btn--primary {
  background: var(--puffin);
  color: var(--white);
  border-color: var(--puffin);
}

.btn--primary:hover {
  background: #c94e00;
  border-color: #c94e00;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,93,4,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

/* ============================================================
   FEATURE CARDS — HOMEPAGE
   ============================================================ */
.feature-strip {
  background: var(--white);
  padding: 4rem 1.5rem;
}

.feature-strip__heading {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 2.5rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.feature-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--atlantic);
  color: inherit;
}

.feature-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.feature-card__desc {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   QUICK FACTS BAND
   ============================================================ */
.facts-band {
  background: var(--navy);
  padding: 2.5rem 1.5rem;
}

.facts-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.fact-item {
  text-align: center;
}

.fact-item__number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--foam);
  line-height: 1;
  display: block;
}

.fact-item__label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.35rem;
  display: block;
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep-sea) 100%);
  padding: 3.5rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--puffin), var(--atlantic), var(--heather));
}

.page-header__breadcrumb {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--foam);
  opacity: 0.7;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.page-header__breadcrumb a { color: var(--foam); opacity: 0.8; }
.page-header__breadcrumb a:hover { opacity: 1; }

.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--white);
  margin: 0;
  border: none;
  padding: 0;
  line-height: 1.15;
}

/* ============================================================
   MAIN CONTENT LAYOUT
   ============================================================ */
.site-main {
  padding: 3rem 0 4rem;
}

.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  align-items: start;
}

.entry-content {
  min-width: 0;
}

/* ============================================================
   ENTRY CONTENT STYLING
   ============================================================ */
.entry-content h1:first-child { margin-top: 0; }
.entry-content h2 { color: var(--deep-sea); }

.entry-content ul li::marker { color: var(--atlantic); }
.entry-content ol li::marker { color: var(--atlantic); font-weight: 700; }

.entry-content a {
  color: var(--ocean);
  text-decoration: underline;
  text-decoration-color: rgba(45,106,138,0.3);
  text-underline-offset: 3px;
}

.entry-content a:hover {
  color: var(--puffin);
  text-decoration-color: var(--puffin);
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
  position: sticky;
  top: 90px;
}

.widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.widget__title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--foam);
  font-weight: 700;
}

.widget ul { list-style: none; padding: 0; margin: 0; }
.widget ul li { padding: 0.35rem 0; border-bottom: 1px solid var(--border); }
.widget ul li:last-child { border-bottom: none; }
.widget ul a {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: var(--text-mid);
}
.widget ul a:hover { color: var(--puffin); }

/* Season badge widget */
.season-widget {
  background: linear-gradient(135deg, var(--deep-sea), var(--navy));
  color: var(--white);
  border: none;
}

.season-widget .widget__title { color: var(--foam); border-color: rgba(168,216,234,0.3); }

.season-list { list-style: none; padding: 0; margin: 0; }
.season-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  border-bottom-color: rgba(255,255,255,0.1);
}

.season-list li:last-child { border-bottom: none; }

.season-badge {
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-weight: 600;
}

.season-badge--peak { background: var(--puffin); color: white; }
.season-badge--good { background: var(--atlantic); color: white; }
.season-badge--quiet { background: rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); }

/* ============================================================
   FULL WIDTH PAGE (no sidebar)
   ============================================================ */
.page-content-full {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

/* ============================================================
   BLOG / ARCHIVE
   ============================================================ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--atlantic);
}

.post-card__thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--deep-sea), var(--ocean));
  overflow: hidden;
}

.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; }

.post-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.post-card__category {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--puffin);
  margin-bottom: 0.5rem;
}

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

.post-card__title a { color: inherit; text-decoration: none; }
.post-card__title a:hover { color: var(--ocean); }

.post-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.post-card__meta {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}

/* ============================================================
   SINGLE POST
   ============================================================ */
.single-post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem;
  align-items: start;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.post-meta__category {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--puffin);
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
}

.post-meta__date {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 4rem 1.5rem 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto 3rem;
}

.footer-brand__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col__title {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--foam);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--foam); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--foam); }

/* ============================================================
   AD ZONES — ready for AdSense
   ============================================================ */
.ad-zone {
  background: var(--sand);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  margin: 1.5rem 0;
}

.ad-zone--leaderboard { height: 90px; }
.ad-zone--rectangle { height: 250px; }
.ad-zone--sidebar { height: 250px; width: 100%; }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--text-light);
  padding: 0.75rem 0;
  margin-bottom: 1rem;
}

.breadcrumbs a { color: var(--ocean); }
.breadcrumbs a:hover { color: var(--puffin); }
.breadcrumbs span { margin: 0 0.4rem; opacity: 0.5; }

/* ============================================================
   SEARCH
   ============================================================ */
.search-form {
  display: flex;
  gap: 0;
  margin-bottom: 1.5rem;
}

.search-form input {
  flex: 1;
  padding: 0.65rem 1rem;
  border: 2px solid var(--border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--text-dark);
  outline: none;
}

.search-form input:focus { border-color: var(--atlantic); }

.search-form button {
  background: var(--ocean);
  color: white;
  border: none;
  padding: 0.65rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  transition: background var(--transition);
}

.search-form button:hover { background: var(--deep-sea); }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 0;
  font-family: var(--font-ui);
}

.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--text-mid);
  transition: all var(--transition);
}

.pagination a:hover { border-color: var(--atlantic); color: var(--ocean); }
.pagination .current { background: var(--ocean); color: white; border-color: var(--ocean); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .content-with-sidebar,
  .single-post-layout {
    grid-template-columns: 1fr;
  }

  .sidebar { position: static; }

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

@media (max-width: 768px) {
  .site-nav { display: none; }
  .site-nav.is-open { display: block; }

  .site-nav ul {
    flex-direction: column;
    padding: 1rem;
    background: var(--deep-sea);
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    box-shadow: var(--shadow-lg);
  }

  .site-nav .sub-menu {
    display: block;
    position: static;
    box-shadow: none;
    background: rgba(0,0,0,0.2);
    margin-top: 0.25rem;
  }

  .menu-toggle { display: block; }

  .hero { padding: 4rem 1.5rem 3.5rem; }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: center; }
  .facts-grid { gap: 1.5rem 2rem; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
