:root {
  --black: #080d0b;
  --black-2: #0d1512;
  --panel: #111c17;
  --panel-2: #17241f;
  --cream: #fff8ec;
  --muted: #b9c2b7;
  --muted-2: #839084;
  --fiesta-teal: #00b3b8;
  --fiesta-pink: #f0528a;
  --fiesta-orange: #ff7a1a;
  --fiesta-gold: #e6c36a;
  --green: #244236;
  --border: rgba(230, 195, 106, 0.22);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 14% 0%, rgba(0, 179, 184, 0.18), transparent 28rem),
    radial-gradient(circle at 82% 8%, rgba(240, 82, 138, 0.15), transparent 26rem),
    linear-gradient(180deg, #07100d 0%, #0b120f 42%, #080d0b 100%);
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem clamp(1rem, 4vw, 4rem);
  background: rgba(8, 13, 11, 0.86);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: 0.01em;
}

.brand img {
  border-radius: 14px;
  box-shadow: 0 0 0 1px rgba(230, 195, 106, 0.25), 0 10px 28px rgba(0, 0, 0, 0.34);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

nav a { text-decoration: none; }
nav a:hover { color: var(--fiesta-gold); }

main {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  min-height: auto;
  display: block;
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(1.6rem, 3vw, 2.6rem);
  border-bottom: 1px solid var(--border);
}

.hero h1,
.feature-band h2,
.tip-section h2,
.social-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
}

.lede {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.58;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--fiesta-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-actions,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.button,
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.72rem 1.05rem;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: #07100d;
  background: linear-gradient(135deg, var(--fiesta-gold), var(--fiesta-orange));
  box-shadow: 0 12px 30px rgba(255, 122, 26, 0.18);
}

.button.secondary,
.social-links a {
  color: var(--cream);
  border: 1px solid var(--border);
  background: rgba(255, 248, 236, 0.045);
}

.button.secondary:hover,
.social-links a:hover {
  border-color: var(--fiesta-teal);
  color: var(--fiesta-gold);
}

.hero-card { display: none; }
.hero-card img { display: block; width: 100%; height: auto; border-radius: 18px; }

.feature-list p,
.tip-section p,
.social-section p,
footer {
  color: var(--muted);
  line-height: 1.55;
}

.feature-band,
.tip-section,
.social-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 1rem;
  padding: clamp(1rem, 3vw, 1.65rem) 0;
  border-top: 1px solid var(--border);
}

.stories-section {
  margin: 0;
  padding: clamp(1.6rem, 3.5vw, 2.6rem) 0;
  border-bottom: 1px solid var(--border);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.section-heading h2,
.page-hero h1,
.story-header h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
}

.section-heading h2 { font-size: clamp(1.45rem, 2vw, 2rem); }

.story-list,
.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 285px));
  justify-content: start;
  gap: clamp(1.5rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.story-card {
  display: block;
  max-width: 285px;
  padding: 0;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.story-card-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  background: var(--panel-2);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 248, 236, 0.08);
}

.story-card-image img,
.story-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-focus, center center);
}

.story-card h2 {
  margin: 1rem 0 0.55rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.28vw, 1.28rem);
  line-height: 1.25;
  font-weight: 700;
}

.story-card h2 a,
.text-link,
.story-body a {
  color: var(--fiesta-orange);
  text-decoration-color: rgba(255, 122, 26, 0.38);
}

.story-card h2 a:hover,
.text-link:hover,
.story-body a:hover { color: var(--fiesta-gold); }

.story-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.48;
}

.story-meta {
  margin: 0 0 0.5rem;
  color: var(--fiesta-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link {
  display: inline-block;
  margin-top: 0.7rem;
  font-weight: 900;
}

.coverage-strip {
  padding: clamp(1.5rem, 3vw, 2rem) 0;
  border-bottom: 1px solid var(--border);
}

.coverage-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.coverage-links span {
  padding: 0.58rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--cream);
  background: linear-gradient(135deg, rgba(0,179,184,0.11), rgba(240,82,138,0.08));
  font-weight: 800;
}

.page-hero,
.story-header {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(1.2rem, 3vw, 2.2rem);
  border-bottom: 1px solid var(--border);
}

.page-hero h1,
.story-header h1 {
  max-width: 860px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.story-page {
  width: min(920px, 100%);
  margin: 0 auto;
}

.story-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 2rem) 0 0;
}

.story-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.5rem 0.78rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.045);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
}

.story-nav a:hover {
  border-color: var(--fiesta-teal);
  color: var(--fiesta-gold);
}

.story-figure {
  margin: clamp(1.2rem, 3vw, 2rem) 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--panel-2);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.story-figure.contain-image img {
  height: auto;
  max-height: 760px;
  object-fit: contain;
  background: #050807;
}

figcaption {
  padding: 0.85rem 1rem;
  color: var(--muted-2);
  font-size: 0.85rem;
  border-top: 1px solid rgba(230, 195, 106, 0.16);
}

.story-body {
  padding: 0 0 clamp(2rem, 5vw, 4rem);
}

.story-body p {
  color: rgba(255, 248, 236, 0.9);
  font-size: clamp(1.04rem, 1.4vw, 1.17rem);
  line-height: 1.75;
}

.story-body p + p { margin-top: 1.1rem; }

footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

footer p { margin: 0; }

@media (max-width: 760px) {
  .site-header,
  .section-heading,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-band,
  .tip-section,
  .social-section {
    grid-template-columns: 1fr;
  }

  .story-list,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-card {
    max-width: none;
    text-align: left;
  }
}
