/* ============================================================
   Art Hannigan for Mayor — North Frontenac 2026
   Design System: Warm Community / Rural Ontario
   Palette: Warm cream, forest green, amber gold, deep charcoal
   Typography: Playfair Display (headings) + Source Serif 4 (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;900&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,400&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  /* Colours */
  --cream:        #F7F3EC;
  --cream-dark:   #EDE7D9;
  --forest:       #2D5016;
  --forest-light: #3E6B20;
  --forest-muted: #4A7A28;
  --amber:        #C8860A;
  --amber-light:  #E09B14;
  --charcoal:     #1E2320;
  --charcoal-mid: #3A3F38;
  --warm-grey:    #6B6860;
  --white:        #FFFFFF;
  --red-alert:    #C0392B;

  /* Spacing scale */
  --sp-xs:  0.375rem;
  --sp-sm:  0.75rem;
  --sp-md:  1.25rem;
  --sp-lg:  2rem;
  --sp-xl:  3rem;
  --sp-2xl: 5rem;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Serif 4', Georgia, serif;

  /* Layout */
  --max-content:  900px;
  --max-wide:     1200px;
  --max-narrow:   680px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Shadow */
  --shadow-sm: 0 1px 3px rgba(30,35,32,0.10);
  --shadow-md: 0 4px 16px rgba(30,35,32,0.12);
  --shadow-lg: 0 8px 32px rgba(30,35,32,0.16);

  /* Transitions */
  --ease: 0.22s ease;
}

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

html {
  font-size: 17px;
  scroll-behavior: smooth;
  background: var(--cream);
  color: var(--charcoal);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.72;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--amber); }

/* ── SKIP TO CONTENT ── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: var(--sp-sm);
  background: var(--forest);
  color: var(--white);
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 9999;
}
.skip-link:focus { left: var(--sp-sm); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.18;
  color: var(--charcoal);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.55rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: var(--sp-md); }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }
em     { font-style: italic; }

/* ── LAYOUT UTILITIES ── */
.container {
  max-width: var(--max-content);
  margin-inline: auto;
  padding-inline: var(--sp-lg);
}
.container--wide   { max-width: var(--max-wide);   margin-inline: auto; padding-inline: var(--sp-lg); }
.container--narrow { max-width: var(--max-narrow); margin-inline: auto; padding-inline: var(--sp-lg); }

.section { padding-block: var(--sp-2xl); }
.section--sm { padding-block: var(--sp-xl); }
.section--forest  { background: var(--forest);  color: var(--white); }
.section--cream   { background: var(--cream); }
.section--cream-dark { background: var(--cream-dark); }
.section--amber   { background: var(--amber); color: var(--white); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.btn--primary:hover { background: var(--forest-light); border-color: var(--forest-light); color: var(--white); }

.btn--secondary {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn--secondary:hover { background: var(--forest); color: var(--white); }

.btn--amber {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn--amber:hover { background: var(--amber-light); border-color: var(--amber-light); color: var(--white); }

.btn--white {
  background: var(--white);
  color: var(--forest);
  border-color: var(--white);
}
.btn--white:hover { background: var(--cream); color: var(--forest); }

.btn--lg { padding: 0.9rem 2rem; font-size: 1.05rem; }

/* ── SITE HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--forest);
  box-shadow: var(--shadow-md);
}

.site-header__inner {
  max-width: var(--max-wide);
  margin-inline: auto;
  padding-inline: var(--sp-lg);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
}

.site-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.site-logo__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.01em;
}
.site-logo__sub {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  list-style: none;
}
.site-nav__item a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: color var(--ease), background var(--ease);
}
.site-nav__item a:hover,
.site-nav__item a[aria-current="page"] {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.site-header__cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-sm);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

/* ── HERO SECTION ── */
.hero {
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-light) 50%, #4A7A28 100%);
  padding-block: var(--sp-2xl);
  position: relative;
  overflow: hidden;
}

/* Subtle texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__inner {
  max-width: var(--max-wide);
  margin-inline: auto;
  padding-inline: var(--sp-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-2xl);
}

.hero__content { position: relative; z-index: 1; }

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: var(--sp-md);
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: var(--sp-md);
  line-height: 1.08;
}

.hero__title em {
  font-style: normal;
  color: var(--amber-light);
}

.hero__tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: var(--sp-xl);
  max-width: 480px;
  line-height: 1.6;
}

.hero__actions { display: flex; gap: var(--sp-md); flex-wrap: wrap; }

.hero__photo {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.hero__photo img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  border: 4px solid rgba(255,255,255,0.2);
  box-shadow: var(--shadow-lg);
}

.hero__photo-placeholder {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.08);
  border: 3px dashed rgba(255,255,255,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-align: center;
  padding: var(--sp-lg);
}

/* ── COUNTDOWN BANNER ── */
.countdown {
  background: var(--amber);
  color: var(--white);
  text-align: center;
  padding: var(--sp-md) var(--sp-lg);
  font-family: var(--font-body);
}
.countdown__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-lg);
  flex-wrap: wrap;
  max-width: var(--max-wide);
  margin-inline: auto;
}
.countdown__label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}
.countdown__units {
  display: flex;
  gap: var(--sp-md);
  align-items: center;
}
.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.countdown__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.countdown__word {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-top: 2px;
}
.countdown__sep {
  font-size: 1.5rem;
  opacity: 0.5;
  margin-top: -4px;
}

/* ── WHY ART STRIP ── */
.why-strip {
  background: var(--white);
  border-bottom: 3px solid var(--cream-dark);
}
.why-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.why-strip__item {
  padding: var(--sp-xl) var(--sp-lg);
  text-align: center;
  border-right: 1px solid var(--cream-dark);
}
.why-strip__item:last-child { border-right: none; }
.why-strip__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-md);
  font-size: 1.5rem;
}
.why-strip__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: var(--sp-xs);
}
.why-strip__desc {
  font-size: 0.88rem;
  color: var(--warm-grey);
  line-height: 1.5;
  margin: 0;
}

/* ── PLATFORM CARDS GRID ── */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-md);
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-lg);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.pillar-card:hover {
  border-color: var(--forest-muted);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: inherit;
}
.pillar-card__icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: var(--sp-xs);
}
.pillar-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0;
}
.pillar-card__desc {
  font-size: 0.87rem;
  color: var(--charcoal-mid);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.pillar-card__link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--amber);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: var(--sp-xs);
}

/* ── CANDIDATE QUOTE ── */
.candidate-quote {
  background: var(--cream-dark);
  border-left: 5px solid var(--forest);
  padding: var(--sp-xl) var(--sp-xl);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-block: var(--sp-lg);
}
.candidate-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 600;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.45;
  margin-bottom: var(--sp-md);
}
.candidate-quote__attr {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── UPDATES PREVIEW ── */
.updates-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}
.update-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-lg);
  border: 1px solid var(--cream-dark);
  display: flex;
  gap: var(--sp-lg);
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.update-card:hover { border-color: var(--forest-muted); box-shadow: var(--shadow-sm); color: inherit; }
.update-card__date {
  flex-shrink: 0;
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: var(--sp-sm) var(--sp-md);
  text-align: center;
  font-family: var(--font-display);
}
.update-card__date-month { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.8; }
.update-card__date-day   { font-size: 1.8rem; font-weight: 900; line-height: 1; }
.update-card__body { flex: 1; }
.update-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: var(--sp-xs);
}
.update-card__excerpt { font-size: 0.9rem; color: var(--warm-grey); margin: 0; }

/* ── GET INVOLVED BAND ── */
.get-involved-band {
  background: var(--forest);
  color: var(--white);
  padding-block: var(--sp-2xl);
  text-align: center;
}
.get-involved-band h2 { color: var(--white); margin-bottom: var(--sp-sm); }
.get-involved-band p  { color: rgba(255,255,255,0.82); margin-bottom: var(--sp-xl); max-width: 560px; margin-inline: auto; }
.get-involved-band__actions {
  display: flex;
  gap: var(--sp-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── SECTION HEADINGS ── */
.section-heading {
  text-align: center;
  margin-bottom: var(--sp-xl);
}
.section-heading h2 { margin-bottom: var(--sp-sm); }
.section-heading__sub {
  font-size: 1.05rem;
  color: var(--warm-grey);
  max-width: 580px;
  margin-inline: auto;
}

.section-heading--left { text-align: left; }
.section-heading--left .section-heading__sub { margin-inline: 0; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--sp-sm);
}

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--sp-2xl);
  align-items: start;
}
.about-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-grey);
  font-size: 0.85rem;
  text-align: center;
  border: 2px dashed var(--cream-dark);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-md);
  margin-top: var(--sp-xl);
}
.value-card {
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  padding: var(--sp-lg);
}
.value-card__icon { font-size: 1.8rem; margin-bottom: var(--sp-sm); }
.value-card__title { font-family: var(--font-display); font-weight: 700; color: var(--forest); margin-bottom: var(--sp-xs); font-size: 1rem; }
.value-card__desc { font-size: 0.87rem; color: var(--charcoal-mid); margin: 0; line-height: 1.5; }

/* ── PLATFORM PILLAR PAGE ── */
.pillar-hero {
  background: var(--forest);
  color: var(--white);
  padding-block: var(--sp-xl);
}
.pillar-hero__eyebrow { color: var(--amber-light); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; margin-bottom: var(--sp-sm); }
.pillar-hero__title   { color: var(--white); margin-bottom: var(--sp-md); }
.pillar-hero__statement { font-size: 1.2rem; color: rgba(255,255,255,0.88); max-width: 700px; font-style: italic; }

.pillar-body { padding-block: var(--sp-2xl); }
.pillar-body h3 { color: var(--forest); margin-top: var(--sp-xl); margin-bottom: var(--sp-md); }
.pillar-body h3:first-child { margin-top: 0; }
.pillar-body p, .pillar-body li { font-size: 1rem; line-height: 1.75; }

.commitments-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  margin-top: var(--sp-md);
}
.commitments-list li {
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
  background: var(--cream-dark);
  padding: var(--sp-md) var(--sp-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--forest);
}
.commitments-list li::before {
  content: attr(data-num);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 1px;
}

/* ── UPDATES / BLOG ── */
.updates-hero {
  background: var(--forest);
  color: var(--white);
  padding-block: var(--sp-xl);
}
.updates-hero h1 { color: var(--white); }
.updates-hero p  { color: rgba(255,255,255,0.8); }

.post-meta {
  display: flex;
  gap: var(--sp-md);
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--warm-grey);
  margin-bottom: var(--sp-lg);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid var(--cream-dark);
}
.post-meta__date { font-weight: 600; color: var(--forest); }
.post-meta__tag {
  background: var(--cream-dark);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal-mid);
}

.post-body { font-size: 1.03rem; line-height: 1.78; }
.post-body p { margin-bottom: var(--sp-md); }
.post-body h2 { color: var(--forest); margin-top: var(--sp-xl); margin-bottom: var(--sp-md); }
.post-body ul, .post-body ol { margin-left: var(--sp-lg); margin-bottom: var(--sp-md); }
.post-body li { margin-bottom: var(--sp-xs); }

.share-bar {
  display: flex;
  gap: var(--sp-md);
  align-items: center;
  flex-wrap: wrap;
  padding-block: var(--sp-lg);
  border-top: 1px solid var(--cream-dark);
  margin-top: var(--sp-xl);
}
.share-bar__label { font-size: 0.85rem; font-weight: 600; color: var(--warm-grey); }

.subscribe-widget {
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  margin-top: var(--sp-xl);
  text-align: center;
}
.subscribe-widget h3 { color: var(--white); margin-bottom: var(--sp-sm); }
.subscribe-widget p  { color: rgba(255,255,255,0.8); margin-bottom: var(--sp-lg); }
.subscribe-form { display: flex; gap: var(--sp-sm); flex-wrap: wrap; justify-content: center; }
.subscribe-form input[type="email"] {
  padding: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  min-width: 240px;
  background: rgba(255,255,255,0.95);
}

/* ── FORMS ── */
.form-section { padding-block: var(--sp-2xl); }
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  margin-bottom: var(--sp-lg);
}
.form-card h3 { color: var(--forest); margin-bottom: var(--sp-lg); }

.form-group { margin-bottom: var(--sp-lg); }
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal-mid);
  margin-bottom: var(--sp-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color var(--ease);
  -webkit-appearance: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--forest);
  background: var(--white);
}
.form-textarea { min-height: 140px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-md); }

/* ── SITE FOOTER ── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding-block: var(--sp-xl);
}
.site-footer__inner {
  max-width: var(--max-wide);
  margin-inline: auto;
  padding-inline: var(--sp-lg);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-xl);
}
.footer-brand__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: var(--sp-xs);
}
.footer-brand__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--sp-md);
  font-style: italic;
}
.footer-brand__fb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
}
.footer-brand__fb a:hover { color: var(--amber-light); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-md);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-sm); }
.footer-col a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--amber-light); }

.footer-bottom {
  max-width: var(--max-wide);
  margin-inline: auto;
  padding: var(--sp-md) var(--sp-lg) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-top: var(--sp-xl);
}

/* ── MOBILE NAV DRAWER ── */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
}
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--forest);
  z-index: 201;
  transition: right 0.3s ease;
  padding: var(--sp-xl) var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}
.mobile-nav-drawer.open { right: 0; }
.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  margin-bottom: var(--sp-sm);
}
.mobile-nav-links { list-style: none; display: flex; flex-direction: column; gap: var(--sp-xs); }
.mobile-nav-links a {
  display: block;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 1.15rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-display);
  font-weight: 600;
  transition: color var(--ease);
}
.mobile-nav-links a:hover { color: var(--amber-light); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__tagline { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__photo { order: -1; }
  .hero__photo-placeholder,
  .hero__photo img { max-width: 300px; margin-inline: auto; }

  .why-strip__grid { grid-template-columns: 1fr; }
  .why-strip__item { border-right: none; border-bottom: 1px solid var(--cream-dark); }
  .why-strip__item:last-child { border-bottom: none; }

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

  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .site-nav { display: none; }
  .site-header__cta { display: none; }
  .hamburger { display: flex; }

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

@media (max-width: 600px) {
  :root { --sp-lg: 1.2rem; --sp-xl: 2rem; --sp-2xl: 3rem; }
  .container { padding-inline: var(--sp-md); }
  .site-footer__inner { grid-template-columns: 1fr; }
  .update-card { flex-direction: column; gap: var(--sp-sm); }
  .update-card__date { align-self: flex-start; display: flex; gap: var(--sp-sm); padding: var(--sp-xs) var(--sp-sm); }
  .update-card__date-day { font-size: 1.2rem; }
  .countdown__units { gap: var(--sp-sm); }
}

/* ── UTILITY CLASSES ── */
.text-center { text-align: center; }
.text-forest  { color: var(--forest); }
.text-amber   { color: var(--amber); }
.mt-sm { margin-top: var(--sp-sm); }
.mt-md { margin-top: var(--sp-md); }
.mt-lg { margin-top: var(--sp-lg); }
.mt-xl { margin-top: var(--sp-xl); }
.mb-lg { margin-bottom: var(--sp-lg); }
.mb-xl { margin-bottom: var(--sp-xl); }
.divider {
  border: none;
  border-top: 1px solid var(--cream-dark);
  margin-block: var(--sp-xl);
}
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-md);
  display: flex;
  gap: var(--sp-xs);
  align-items: center;
}
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--amber-light); }
.breadcrumb span { opacity: 0.4; }
