@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap");

:root {
  --bg: #071018;
  --bg-strong: #091420;
  --panel: rgba(10, 20, 33, 0.78);
  --panel-strong: rgba(8, 16, 27, 0.92);
  --line: rgba(164, 184, 202, 0.18);
  --line-strong: rgba(164, 184, 202, 0.32);
  --text: #f3ede4;
  --muted: #a7b5c5;
  --accent: #ff8f64;
  --accent-soft: rgba(255, 143, 100, 0.18);
  --accent-alt: #82d7bb;
  --focus-ring: #ffd1bb;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 143, 100, 0.18), transparent 28%),
    radial-gradient(circle at 85% 0%, rgba(130, 215, 187, 0.12), transparent 24%),
    linear-gradient(180deg, #0a1421 0%, var(--bg) 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

a:hover {
  color: #ffffff;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 4px;
  border-radius: 12px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 10px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: #09131f;
  background: #ffffff;
  border-radius: 0.9rem;
  font-weight: 700;
}

.skip-link:focus-visible {
  left: 10px;
}

.shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(7, 16, 24, 0.58);
  border-bottom: 1px solid rgba(164, 184, 202, 0.08);
}

.header-inner,
.header-nav,
.cta-row,
.footer-inner,
.footer-links,
.final-band,
.story-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-inner {
  min-height: 4.6rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  box-shadow: 0 0 0 8px rgba(255, 143, 100, 0.08);
}

.header-nav a,
.footer-links a,
.text-link {
  color: var(--muted);
  text-decoration: none;
}

.header-nav a {
  padding: 0.2rem 0;
  position: relative;
}

.header-nav a::after,
.text-link::after,
.footer-links a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 0.25rem;
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left center;
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.header-nav a:hover::after,
.header-nav a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 1.6rem 0 3.4rem;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 25%, rgba(255, 143, 100, 0.14), transparent 18%),
    radial-gradient(circle at 82% 44%, rgba(130, 215, 187, 0.1), transparent 16%);
  pointer-events: none;
}

.hero-grid,
.split-section,
.gallery-grid,
.support-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: minmax(18rem, 0.82fr) minmax(34rem, 1.18fr);
  align-items: center;
  gap: 3.2rem;
}

.hero-panel,
.shot-card,
.legal-block,
.final-band,
.page-hero {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  min-height: calc(100svh - 8.4rem);
  padding: 2.6rem 0 3rem;
  display: grid;
  align-content: end;
  max-width: 31rem;
  animation: rise 700ms ease;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", "Iowan Old Style", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(3rem, 6.5vw, 5.4rem);
  line-height: 0.95;
  max-width: 8.4ch;
  text-wrap: balance;
}

.hero-lede,
.section-intro p,
.shot-copy p,
.legal-block p,
.page-hero p,
.final-band p,
.feature-list p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-lede {
  max-width: 26rem;
  margin: 1.55rem 0 0;
  font-size: 0.98rem;
}

.cta-row {
  margin-top: 2rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  color: #101821;
  background: linear-gradient(135deg, #ffc09c, var(--accent));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(255, 143, 100, 0.18);
}

.cta-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
}

.hero-panel,
.shot-card,
.legal-block,
.final-band,
.page-hero {
  border-radius: 1.8rem;
  background: var(--panel);
  backdrop-filter: blur(14px);
}

.hero-panel {
  min-height: auto;
  margin: 0 -6vw 0 0;
  padding: 0;
  display: grid;
  align-content: end;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  animation: panelIn 900ms ease;
}

.hero-shot,
.shot-card img {
  width: 100%;
  height: auto;
  border-radius: 1.15rem;
  border: 1px solid rgba(164, 184, 202, 0.16);
  background: #0a1018;
}

.hero-shot {
  border-radius: 1.6rem 0 0 1.6rem;
  border-right: 0;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.3);
}

.hero-caption {
  display: grid;
  gap: 0.35rem;
  width: min(22rem, 100%);
  margin: -3.1rem 0 0 1.6rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(8, 16, 27, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.hero-caption p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.feature-list article,
.legal-block {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.section {
  padding: 1.25rem 0;
}

.split-section {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

.section-intro h2,
.page-hero h1,
.final-band h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.96;
}

.feature-list {
  display: grid;
  gap: 1.1rem;
}

.feature-list h3 {
  font-size: 1.5rem;
  margin-bottom: 0.45rem;
}

.section-contrast {
  padding-top: 2.3rem;
}

.gallery-shell {
  display: grid;
  gap: 1.7rem;
}

.gallery-intro {
  max-width: 42rem;
}

.gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 2rem 1.4rem;
}

.shot-card {
  display: grid;
  gap: 1rem;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  backdrop-filter: none;
}

.shot-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.28fr) minmax(18rem, 0.72fr);
  gap: 1.6rem;
  align-items: end;
}

.shot-copy {
  display: grid;
  gap: 0.4rem;
  align-content: start;
}

.shot-copy h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.02;
}

.shot-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.page-hero,
.final-band {
  padding: 1.6rem;
}

.shot-card img {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.shot-card:hover img {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
}

.final-section {
  padding: 2.1rem 0 4rem;
}

.final-band {
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  background:
    linear-gradient(135deg, rgba(255, 143, 100, 0.12), transparent 42%),
    var(--panel-strong);
}

.final-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer {
  padding: 0 0 2rem;
}

.footer-inner {
  padding-top: 1rem;
  border-top: 1px solid rgba(164, 184, 202, 0.12);
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
}

.legal-shell {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.compact-hero {
  margin-bottom: 1rem;
}

.legal-layout,
.support-grid {
  display: grid;
  gap: 1rem;
}

.legal-block {
  padding: 1.4rem;
}

.legal-block h2 {
  font-size: 1.6rem;
  margin-bottom: 0.55rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 920px) {
  .hero-copy {
    min-height: auto;
    max-width: 100%;
    padding-bottom: 0.6rem;
  }

  .hero-grid,
  .split-section,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    margin: 0;
  }

  .hero-shot {
    border-radius: 1.35rem;
    border-right: 1px solid rgba(164, 184, 202, 0.16);
  }

  .hero-caption {
    margin: 1rem 0 0;
    width: 100%;
  }

  .shot-card-wide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .header-inner,
  .header-nav,
  .footer-inner,
  .final-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 2.6rem;
  }

  .hero h1 {
    font-size: 2.9rem;
  }

  .hero-panel,
  .shot-card,
  .legal-block,
  .final-band,
  .page-hero {
    border-radius: 1.35rem;
  }

  .hero-shot {
    border-radius: 1.35rem;
  }
}
