/* ==========================================================================
   DANNI ASKINI — Main Stylesheet
   Design System: Editorial-Institutional + Pacific Northwest
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Custom Properties
   -------------------------------------------------------------------------- */
:root {
  /* Primary Brand Colors */
  --color-deep-pacific-blue: #1B365D;
  --color-evergreen: #2D5232;
  --color-warm-gold: #F4B942;

  /* Neutrals */
  --color-charcoal: #2D2D2D;
  --color-soft-gray: #6B7280;
  --color-light-bg: #F8F6F2;
  --color-white: #FFFFFF;

  /* Semantic Assignments */
  --color-primary: var(--color-deep-pacific-blue);
  --color-secondary: var(--color-evergreen);
  --color-accent: var(--color-warm-gold);
  --color-text: var(--color-charcoal);
  --color-text-muted: var(--color-soft-gray);
  --color-bg: var(--color-white);
  --color-bg-alt: var(--color-light-bg);

  /* Campaign Pivot — uncomment and adjust when transitioning:
  --color-primary: #1B365D;
  --color-accent: #C0392B;
  */

  /* Typography */
  --font-heading: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  --font-accent: 'DM Sans', 'Source Sans 3', sans-serif;

  /* Type Scale (Major Third — 1.25) */
  --size-display: clamp(2.5rem, 5vw, 4rem);
  --size-h1: clamp(2rem, 4vw, 3rem);
  --size-h2: clamp(1.5rem, 3vw, 2rem);
  --size-h3: 1.25rem;
  --size-body: 1.0625rem;
  --size-small: 0.875rem;
  --size-label: 0.75rem;

  --line-height-body: 1.65;
  --line-height-heading: 1.15;
  --letter-spacing-label: 0.12em;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 720px;
  --nav-height: 72px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--size-body);
  line-height: var(--line-height-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent);
}

/* Focus states — WCAG 2.2 */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Skip to content — WCAG */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  z-index: 10000;
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: var(--size-small);
  border-radius: 0 0 4px 4px;
}

.skip-link:focus {
  top: 0;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: var(--line-height-heading);
  color: var(--color-primary);
}

h1 { font-size: var(--size-h1); }
h2 { font-size: var(--size-h2); margin-bottom: var(--space-md); }
h3 { font-size: var(--size-h3); margin-bottom: var(--space-sm); }

p {
  margin-bottom: var(--space-sm);
}

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

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

.overline {
  font-family: var(--font-accent);
  font-size: var(--size-label);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-label);
  text-transform: uppercase;
  color: var(--color-accent);
}

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

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

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

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

.section--dark {
  background-color: var(--color-primary);
  color: var(--color-white);
}

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

.section--footer {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-2xl) 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: var(--space-3xl) 0;
  }
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color var(--transition-medium), box-shadow var(--transition-medium);
  height: var(--nav-height);
}

.site-header--transparent {
  background: linear-gradient(to bottom, rgba(27, 54, 93, 0.7) 0%, rgba(27, 54, 93, 0) 100%);
}

.site-header--solid {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.site-header--solid .nav-logo {
  color: var(--color-primary);
}

.site-header--solid .nav-link {
  color: var(--color-text);
}

.site-header--solid .nav-link:hover,
.site-header--solid .nav-link--active {
  color: var(--color-primary);
}

.site-header--solid .nav-link--active::after {
  background-color: var(--color-accent);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.nav-logo {
  font-family: var(--font-accent);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-white);
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: none;
  list-style: none;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  font-family: var(--font-accent);
  font-size: var(--size-small);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--color-white);
}

.nav-link--active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-accent);
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  transition: transform var(--transition-medium), opacity var(--transition-medium);
}

.site-header--solid .nav-toggle span {
  background-color: var(--color-primary);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: var(--color-white);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: var(--color-white);
}

/* Mobile menu overlay */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  font-family: var(--font-heading);
  font-size: var(--size-h2);
  color: var(--color-white);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.nav-mobile a:hover {
  color: var(--color-accent);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn-primary {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  text-align: center;
  min-height: 44px;
  min-width: 44px;
}

.btn-primary:hover {
  background: #e5a832;
  color: var(--color-primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(244, 185, 66, 0.3);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  padding: calc(0.875rem - 2px) 2rem;
  border: 2px solid var(--color-white);
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  text-align: center;
  min-height: 44px;
  min-width: 44px;
}

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

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  padding: calc(0.875rem - 2px) 2rem;
  border: 2px solid var(--color-primary);
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  text-align: center;
  min-height: 44px;
  min-width: 44px;
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: var(--size-small);
}

/* --------------------------------------------------------------------------
   Hero — Cinematic, photo-dominant
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background: var(--color-primary);
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Grain texture overlay for editorial feel */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

.hero--small {
  min-height: 50vh;
  max-height: none;
  height: auto;
  align-items: center;
  overflow: visible;
}

/* Background photo layer */
.hero__image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  clip-path: none;
}

/* Cinematic gradient overlay — dark at bottom for text readability */
.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(27, 54, 93, 0.15) 0%, rgba(27, 54, 93, 0.3) 30%, rgba(27, 54, 93, 0.85) 70%, rgba(27, 54, 93, 0.97) 100%),
    linear-gradient(135deg, rgba(45, 82, 50, 0.2) 0%, transparent 50%);
  z-index: 2;
}

.hero__inner {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md) var(--space-xl);
}

.hero__content {
  text-align: left;
  z-index: 4;
  max-width: 680px;
}

.hero__overline {
  font-family: var(--font-accent);
  font-size: var(--size-label);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-label);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
}

.hero__overline::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--color-accent);
}

.hero__title {
  font-size: clamp(2.75rem, 6vw, 5rem);
  color: var(--color-white);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.hero__tagline {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-bottom: var(--space-lg);
  max-width: 520px;
  line-height: 1.6;
  font-family: var(--font-body);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-accent);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.8; transform: translateX(-50%) translateY(4px); }
}

@media (min-width: 768px) {
  .hero {
    min-height: 100vh;
    align-items: flex-end;
  }

  .hero__inner {
    padding: var(--space-3xl) var(--space-md) var(--space-2xl);
  }

  .hero__title {
    letter-spacing: -0.02em;
  }
}

@media (min-width: 1024px) {
  .hero__content {
    max-width: 720px;
  }
}

/* Small hero for interior pages */
.hero--small h1,
.hero--small .hero__title {
  color: var(--color-white);
}

.hero--small p,
.hero--small .hero__tagline {
  color: rgba(255, 255, 255, 0.85);
}

.hero--small .hero__inner,
.hero--small > .container {
  flex-direction: column;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero--small .hero__content,
.hero--small > .container {
  text-align: center;
  max-width: var(--max-width-narrow);
}

.hero--small .hero__image {
  position: relative;
  inset: auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--space-md);
  flex-shrink: 0;
}

.hero--small .hero__image img {
  clip-path: none;
  border-radius: 50%;
  object-position: center 20%;
}

.hero--small .hero__image::after {
  display: none;
}

@media (min-width: 768px) {
  .hero--small {
    min-height: 50vh;
    align-items: center;
    overflow: visible;
  }

  .hero--small .hero__inner {
    flex-direction: column;
    text-align: center;
  }

  .hero--small .hero__content {
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-secondary);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer__inner {
  display: grid;
  gap: var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.footer__brand {
  max-width: 320px;
}

.footer__name {
  font-family: var(--font-heading);
  font-size: var(--size-h3);
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.footer__tagline {
  font-size: var(--size-small);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-md);
}

.footer__nav h4 {
  font-family: var(--font-accent);
  font-size: var(--size-small);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.footer__nav ul {
  list-style: none;
}

.footer__nav li {
  margin-bottom: var(--space-xs);
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--size-small);
  transition: color var(--transition-fast);
}

.footer__nav a:hover {
  color: var(--color-accent);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  background: var(--color-accent);
  color: var(--color-primary);
}

.footer__social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.footer__copyright {
  font-size: var(--size-small);
  color: rgba(255, 255, 255, 0.5);
}

.safe-exit {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: var(--size-small);
  color: rgba(255, 255, 255, 0.5);
  padding: var(--space-xs) var(--space-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  transition: all var(--transition-fast);
  text-decoration: none;
  align-self: flex-start;
}

.safe-exit:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* --------------------------------------------------------------------------
   Campaign-hidden elements
   -------------------------------------------------------------------------- */
.campaign-hidden {
  display: none !important;
}

/* --------------------------------------------------------------------------
   Scroll animations
   -------------------------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger-children .fade-up:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .fade-up:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .fade-up:nth-child(4) { transition-delay: 0.3s; }

/* Hero stagger */
.hero__content > * {
  opacity: 0;
  transform: translateY(15px);
  animation: heroFadeIn 0.6s ease forwards;
}

.hero__content > *:nth-child(1) { animation-delay: 0.1s; }
.hero__content > *:nth-child(2) { animation-delay: 0.25s; }
.hero__content > *:nth-child(3) { animation-delay: 0.4s; }
.hero__content > *:nth-child(4) { animation-delay: 0.55s; }

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }

  .hero__content > * {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* --------------------------------------------------------------------------
   Homepage: Bento grid for issue cards
   -------------------------------------------------------------------------- */
.bento-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
  }
}

@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
  }
}

/* Homepage: Featured writing — magazine layout */
.writing-magazine {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .writing-magazine {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Homepage: Impact numbers strip */
.impact-strip {
  background: var(--color-primary);
  padding: var(--space-lg) 0;
  position: relative;
  overflow: hidden;
}

.impact-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

.impact-strip__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .impact-strip__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

.impact-stat {
  text-align: center;
}

.impact-stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.impact-stat__label {
  font-family: var(--font-accent);
  font-size: var(--size-small);
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
}

/* Homepage: Enhanced card hover effects */
.card--issue {
  position: relative;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
}

.card--issue:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(27, 54, 93, 0.12);
}

.card--issue .card__icon {
  transition: transform 0.35s ease;
}

.card--issue:hover .card__icon {
  transform: scale(1.1);
}

/* Homepage: Section separator — diagonal cut */
.section-cut {
  position: relative;
}

.section-cut::before {
  content: '';
  position: absolute;
  top: -3rem;
  left: 0;
  right: 0;
  height: 6rem;
  background: inherit;
  clip-path: polygon(0 50%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
}

/* Grain overlay utility */
.has-grain::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* Animated accent line */
.accent-line {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  margin-bottom: var(--space-md);
  border-radius: 2px;
}

.section-heading .accent-line {
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   Wave section divider
   -------------------------------------------------------------------------- */
.section-divider {
  display: block;
  width: 100%;
  height: auto;
  margin: -1px 0;
  line-height: 0;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------------------
   Print styles
   -------------------------------------------------------------------------- */
@media print {
  .site-header,
  .nav-toggle,
  .nav-mobile,
  .newsletter-section,
  .safe-exit {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .hero {
    min-height: auto;
    background: #fff;
    color: #000;
    padding: var(--space-md) 0;
  }

  .hero__title,
  .hero__tagline {
    color: #000;
  }
}
