:root {
  --ink: #1a1e23;
  --muted: #6a7684;
  --accent: #f05b45;
  --accent-dark: #c44634;
  --paper: #ffffff;
  --paper-2: #f6f7fb;
  --shadow: rgba(26, 30, 35, 0.12);
  --radius: 22px;
}

@font-face {
  font-family: "Book Antiqua";
  src: url("/fonts/bookantiqua.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Book Antiqua";
  src: url("/fonts/bookantiqua_bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.page {
  padding: 0 0 5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(26, 30, 35, 0.08);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  position: relative;
}

.brand {
  font-family: "Book Antiqua", "Palatino Linotype", Palatino, serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 1.4rem;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(26, 30, 35, 0.12);
  background: #fff;
  position: relative;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span:nth-child(1) {
  transform: translate(-50%, -6px);
}

.nav-toggle span:nth-child(2) {
  transform: translate(-50%, 0);
}

.nav-toggle span:nth-child(3) {
  transform: translate(-50%, 6px);
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translate(-50%, 0) rotate(-45deg);
}

.section-hero {
  padding: 4.5rem 0 3rem;
}

.hero-home {
  padding-top: 5.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 4.2vw, 4.4rem);
}

.hero-portrait {
  position: relative;
  display: grid;
  place-items: center;
  width: min(380px, 80vw);
  height: min(380px, 80vw);
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #f8b7a4 0%, #f26f58 45%, #f05b45 70%, #f9d2c7 100%);
  overflow: hidden;
}

.hero-waves {
  position: absolute;
  inset: -20% -20% -20% -20%;
  background: radial-gradient(circle at 50% 50%, rgba(240, 91, 69, 0.18), transparent 60%),
    repeating-linear-gradient(0deg, transparent 0 12px, rgba(26, 30, 35, 0.08) 12px 13px);
  border-radius: 50%;
  mask-image: radial-gradient(circle at center, #000 55%, transparent 75%);
  opacity: 0.35;
  z-index: 0;
}

.hero-photo {
  width: min(330px, 72vw);
  display: block;
  filter: drop-shadow(0 24px 40px rgba(26, 30, 35, 0.2));
  z-index: 1;
  transform: translateY(10%);
}

.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  font-family: "Book Antiqua", "Palatino Linotype", Palatino, serif;
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
  font-size: 1.4rem;
}

.lede {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 42rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  background: var(--accent);
  color: #fff;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px -18px var(--accent-dark);
}

.button.ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.section-featured {
  padding: 1rem 0 3rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.featured-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 22px 40px -30px var(--shadow);
  border: 1px solid rgba(26, 30, 35, 0.06);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -30px var(--shadow);
}

.card-media {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1.4rem 1.5rem 1.7rem;
}

.card-meta {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.section-categories {
  padding: 0 0 3rem;
}

.chip-row,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.chip {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 30, 35, 0.12);
  background: #fff;
  color: var(--ink);
  font-size: 0.9rem;
  cursor: pointer;
}

.chip.is-active {
  background: var(--ink);
  color: #fff;
}

.section-list {
  padding: 2rem 0 4rem;
}

.story-list {
  display: grid;
  gap: 2rem;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.8rem;
  align-items: center;
  padding: 1rem;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 22px 40px -30px var(--shadow);
}

.story-image {
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-gallery {
  padding: 1rem 0 4rem;
}

.gallery-grid {
  margin-top: 1.5rem;
}

.gallery-grid .card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.gallery-grid .card.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.98);
}

.section-about {
  padding: 3rem 0 4rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.pull-quote {
  background: #101419;
  color: #f7f1e9;
  padding: 2rem;
  border-radius: 24px;
}

.pull-quote p {
  font-family: "Book Antiqua", "Palatino Linotype", Palatino, serif;
  font-size: 1.6rem;
  margin: 0 0 1rem;
}

.section-content {
  padding: 1rem 0 4rem;
}

.narrow {
  width: min(760px, 92vw);
}

.media-hero {
  margin: 1.5rem 0 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px -35px var(--shadow);
}

.prose {
  line-height: 1.7;
  font-size: 1.05rem;
}

.prose h2,
.prose h3 {
  margin-top: 2rem;
}

.media-embed {
  position: relative;
  padding-top: 56.25%;
  margin: 2rem 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px -35px var(--shadow);
}

.media-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  padding: 3rem 0 4rem;
  border-top: 1px solid rgba(26, 30, 35, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

.site-footer .wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-portrait {
    order: -1;
  }

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

@media (max-width: 768px) {
  .site-header .wrap {
    gap: 1rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 20px 40px -28px var(--shadow);
    border: 1px solid rgba(26, 30, 35, 0.08);
    z-index: 20;
  }

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

  .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
:root {
