@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --bg: #f6efe5;
  --bg-soft: #fbf7f1;
  --bg-deep: #ede1cf;
  --card: rgba(255, 251, 245, 0.86);
  --card-strong: #fffdf9;
  --ink: #171411;
  --ink-soft: #352d26;
  --muted: #706354;
  --muted-soft: #928271;
  --gold: #b89561;
  --gold-deep: #9a7847;
  --line: rgba(23, 20, 17, 0.11);
  --line-strong: rgba(23, 20, 17, 0.18);
  --shadow: 0 28px 70px rgba(74, 54, 35, 0.12);
  --shadow-soft: 0 18px 40px rgba(74, 54, 35, 0.09);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max-width: 1180px;
  --reading-width: 760px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.75;
  background:
    radial-gradient(circle at top left, rgba(184, 149, 97, 0.18), transparent 32%),
    radial-gradient(circle at 88% 10%, rgba(98, 63, 42, 0.08), transparent 24%),
    linear-gradient(180deg, #f8f1e7 0%, #f4ece1 44%, #f8f4ed 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06)),
    repeating-linear-gradient(
      90deg,
      rgba(140, 120, 90, 0.02) 0,
      rgba(140, 120, 90, 0.02) 1px,
      transparent 1px,
      transparent 120px
    );
}

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

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

button,
input {
  font: inherit;
}

code {
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: rgba(23, 20, 17, 0.06);
  color: var(--ink-soft);
  font-size: 0.88em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: clamp(3.8rem, 7vw, 7rem) 0;
}

.section--compact {
  padding-top: clamp(1.2rem, 3vw, 2.4rem);
}

.section--warm {
  background: linear-gradient(180deg, rgba(255, 249, 241, 0.45), rgba(237, 225, 207, 0.34));
}

.kicker {
  margin: 0 0 1rem;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0 0;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.branding {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.branding__mark {
  display: inline-grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--ink), #26211c);
  color: #f9f3ea;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.branding__copy {
  display: grid;
  gap: 0.15rem;
}

.branding__copy strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.branding__copy span {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--ink);
}

.site-nav a:not(.site-nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav__cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.site-nav__cta {
  background: var(--ink);
  color: #fdf8f1;
}

.site-nav__cta:hover,
.site-nav__cta:focus-visible,
.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.site-nav__toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 20, 17, 0.08);
  color: var(--ink);
  padding: 0.75rem 1rem;
  font-weight: 700;
}

.hero-grid,
.about-grid,
.footer-grid,
.category-layout {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(290px, 0.94fr);
  align-items: center;
}

.feature-panel,
.about-panel,
.about-aside,
.article-bridge,
.category-card,
.story-card,
.media-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow);
}

.feature-panel,
.about-panel,
.about-aside,
.article-bridge {
  padding: clamp(1.6rem, 4vw, 3rem);
}

.feature-panel h1,
.section-heading h2,
.category-copy h2,
.about-panel h2,
.article-bridge h2,
.story-intro h1,
.story-card h3,
.category-card h3,
.site-footer h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.03em;
}

.feature-panel h1 {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.92;
  max-width: 10ch;
}

.feature-deck,
.section-heading > p,
.category-copy p,
.about-panel p,
.story-card p,
.article-bridge p,
.footer-copy,
.story-deck {
  color: var(--muted);
}

.feature-deck {
  max-width: 56ch;
  margin: 1.4rem 0 0;
  font-size: 1.04rem;
}

.editorial-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.editorial-meta span {
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(184, 149, 97, 0.2);
  border-radius: 999px;
  background: rgba(184, 149, 97, 0.08);
  color: var(--ink-soft);
  font-size: 0.87rem;
  font-weight: 600;
}

.editorial-meta--centered {
  justify-content: center;
}

.feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn--solid {
  background: linear-gradient(135deg, var(--ink), #2b241d);
  color: #fdf8f1;
}

.btn--ghost {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
}

.feature-note {
  display: grid;
  gap: 0.5rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.feature-note span {
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.feature-note p {
  margin: 0;
  color: var(--muted);
}

.feature-note strong {
  color: var(--ink);
}

.media-card {
  padding: clamp(1rem, 2vw, 1.25rem);
}

.media-card figcaption,
.media-figure figcaption {
  margin-top: 0.9rem;
  color: var(--muted-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.media-slot {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 20, 17, 0.08);
  border-radius: calc(var(--radius-lg) - 8px);
  padding: clamp(0.9rem, 2vw, 1.3rem);
  background:
    radial-gradient(circle at top, rgba(123, 54, 46, 0.13), transparent 34%),
    radial-gradient(circle at bottom right, rgba(184, 149, 97, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(246, 238, 227, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.media-slot--portrait .media-slot__placeholder {
  min-height: clamp(25rem, 62vw, 42rem);
}

.media-slot--landscape .media-slot__placeholder {
  min-height: clamp(18rem, 32vw, 28rem);
}

.media-slot--square .media-slot__placeholder {
  min-height: clamp(19rem, 34vw, 28rem);
}

.media-slot__placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.85rem;
  padding: 2rem;
  border-radius: calc(var(--radius-md) - 6px);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at 50% 22%, rgba(122, 47, 37, 0.14), transparent 26%);
}

.media-slot__eyebrow {
  color: var(--gold-deep);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.media-slot__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 0.95;
}

.media-slot__note {
  max-width: 30ch;
  color: var(--muted);
}

.media-slot img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(82vh, 56rem);
  margin: 0 auto;
  border-radius: calc(var(--radius-md) - 8px);
  object-fit: contain;
  box-shadow: var(--shadow-soft);
}

.media-slot--loaded {
  background: rgba(255, 255, 255, 0.72);
}

.media-slot--loaded .media-slot__placeholder {
  display: none;
}

.category-strip {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.category-chip {
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(184, 149, 97, 0.24);
  border-radius: 999px;
  background: rgba(255, 249, 241, 0.78);
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.category-chip:hover,
.category-chip:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.category-copy h2,
.about-panel h2,
.article-bridge h2,
.site-footer h2 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 0.96;
}

.section-heading > p {
  max-width: 34ch;
  margin: 0;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.story-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.story-card--feature {
  grid-column: span 2;
}

.story-card__body {
  display: grid;
  gap: 0.9rem;
  padding: 1.4rem 1.45rem 1.55rem;
}

.story-card__tag,
.about-aside__label,
.footer-heading,
.story-rail__label {
  margin: 0;
  color: var(--gold-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.story-card h3 {
  font-size: 2rem;
  line-height: 0.98;
}

.story-card p {
  margin: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.text-link::after {
  content: "->";
}

.category-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.category-card {
  padding: 1.45rem;
}

.category-card h3 {
  font-size: 2rem;
  line-height: 0.98;
}

.category-card p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.about-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  align-items: start;
}

.about-panel p {
  max-width: 56ch;
}

.about-aside {
  background: rgba(35, 27, 20, 0.92);
  color: #f6eee2;
}

.about-aside .btn--ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #f8f0e5;
}

.about-list {
  margin: 1.1rem 0 1.6rem;
  padding-left: 1.1rem;
  color: rgba(248, 240, 229, 0.82);
}

.about-list li + li {
  margin-top: 0.8rem;
}

.site-footer {
  padding: clamp(3rem, 6vw, 4.5rem) 0 3rem;
  border-top: 1px solid rgba(23, 20, 17, 0.08);
}

.footer-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(12rem, 0.55fr) minmax(15rem, 0.9fr);
  align-items: start;
}

.footer-copy {
  max-width: 38ch;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
}

.footer-links a {
  color: var(--ink-soft);
  font-weight: 600;
}

.newsletter-form__row {
  display: flex;
  gap: 0.75rem;
}

.newsletter-form input {
  width: 100%;
  min-width: 0;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

.newsletter-form button {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ink), #2b241d);
  color: #fdf8f1;
  padding: 0.95rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
}

.form-message {
  min-height: 1.5rem;
  margin: 0.8rem 0 0;
  color: var(--gold-deep);
  font-size: 0.92rem;
}

.story-hero-section {
  padding-top: clamp(3rem, 5vw, 4rem);
}

.story-intro {
  max-width: 52rem;
  text-align: center;
}

.story-intro h1 {
  font-size: clamp(3.6rem, 8vw, 6.4rem);
  line-height: 0.9;
}

.story-deck {
  max-width: 42rem;
  margin: 1.4rem auto 0;
  font-size: 1.08rem;
}

.full-bleed {
  width: min(68rem, calc(100% - 32px));
  margin: 2rem auto 0;
}

.story-layout {
  grid-template-columns: minmax(11rem, 13rem) minmax(0, var(--reading-width));
  align-items: start;
  justify-content: center;
}

.story-rail {
  position: sticky;
  top: 7rem;
  display: grid;
  gap: 1rem;
}

.story-rail__nav {
  display: grid;
  gap: 0.85rem;
}

.story-rail__nav a {
  color: var(--muted);
  font-weight: 600;
}

.story-rail__note {
  margin: 0.4rem 0 0;
  color: var(--muted-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.story-body {
  display: grid;
  gap: clamp(2rem, 5vw, 3.8rem);
}

.story-section {
  scroll-margin-top: 7rem;
}

.prose {
  display: grid;
  gap: 1.35rem;
}

.prose p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.prose .lead {
  font-size: 1.16rem;
  color: var(--ink);
}

.prose .lead::first-letter {
  float: left;
  margin: 0.2rem 0.5rem 0 0;
  font-family: var(--font-display);
  font-size: 4.7rem;
  line-height: 0.78;
  color: var(--gold-deep);
}

.quote-block {
  margin: 0.25rem 0;
  padding: 1rem 0 1rem 1.3rem;
  border-left: 2px solid rgba(184, 149, 97, 0.6);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.06;
}

.media-figure {
  margin: 0;
}

.media-figure--narrow {
  max-width: 32rem;
}

.media-figure--compact figcaption {
  margin-top: 0.75rem;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.story-main {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
}

.blog-story {
  max-width: min(100%, 860px);
  margin: 0 auto;
}

.blog-story__header {
  max-width: var(--reading-width);
  margin: 0 auto 2rem;
}

.blog-story__header h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 8vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.blog-story__dek {
  max-width: 42rem;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.blog-story__meta {
  margin: 1.1rem 0 0;
  color: var(--muted-soft);
  font-size: 0.95rem;
  font-weight: 600;
}

.blog-story__content {
  display: grid;
  gap: 1.4rem;
  max-width: var(--reading-width);
  margin: 0 auto;
}

.blog-story__content h2 {
  margin: 1.3rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.blog-story__content p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.blog-story__content .lead {
  color: var(--ink);
  font-size: 1.16rem;
}

.story-photo {
  max-width: var(--reading-width);
  margin: 0.4rem auto;
}

.story-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}

.story-photo--hero {
  margin-bottom: 2.2rem;
}

.story-photo--small {
  max-width: 32rem;
  margin-left: 0;
}

.story-endnote {
  max-width: var(--reading-width);
  margin: 2.4rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.story-page .blog-story__header,
.story-page .blog-story__content,
.story-page .story-photo,
.story-page .story-endnote {
  width: min(100%, var(--reading-width));
}

.story-page .media-card,
.story-page .media-slot {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.story-page .media-slot {
  overflow: visible;
}

.story-page .media-slot__placeholder {
  min-height: 22rem;
  padding: 2rem 1.4rem;
  border: 1px dashed rgba(23, 20, 17, 0.16);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.46);
}

.story-page .media-slot--portrait .media-slot__placeholder {
  min-height: clamp(24rem, 58vw, 40rem);
}

.story-page .media-slot--landscape .media-slot__placeholder,
.story-page .media-slot--square .media-slot__placeholder {
  min-height: clamp(17rem, 34vw, 26rem);
}

.story-page .media-slot__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.story-page .media-slot img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: none;
  margin: 0;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}

.story-page .story-photo figcaption {
  margin-top: 0.75rem;
  color: var(--muted-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

.animate-rise {
  opacity: 0;
  transform: translateY(18px);
  animation: rise-in 720ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .animate-rise {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .site-nav__cta,
  .btn,
  .site-nav a:not(.site-nav__cta)::after {
    transition: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .category-layout,
  .about-grid,
  .footer-grid,
  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-rail {
    position: static;
    padding: 1.2rem 1.3rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 251, 245, 0.74);
    box-shadow: var(--shadow-soft);
  }

  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-card--feature {
    grid-column: span 2;
  }

  .footer-grid {
    gap: 2rem;
  }
}

@media (max-width: 760px) {
  .site-nav__toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    width: min(18rem, 100%);
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 1.4rem;
    background: rgba(255, 251, 245, 0.95);
    box-shadow: var(--shadow);
  }

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

  .header-bar {
    position: relative;
    border-radius: 1.5rem;
    align-items: center;
  }

  .story-grid,
  .category-grid,
  .image-gallery {
    grid-template-columns: 1fr;
  }

  .story-card--feature {
    grid-column: auto;
  }

  .section-heading {
    flex-direction: column;
  }

  .newsletter-form__row,
  .feature-actions {
    flex-direction: column;
  }

  .feature-panel h1,
  .story-intro h1 {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .page-shell,
  .full-bleed {
    width: min(var(--max-width), calc(100% - 22px));
  }

  .header-bar {
    padding: 0.9rem 1rem;
  }

  .branding__copy strong {
    font-size: 1.28rem;
  }

  .feature-panel,
  .about-panel,
  .about-aside,
  .article-bridge {
    padding: 1.3rem;
  }

  .story-card__body,
  .category-card {
    padding: 1.2rem;
  }

  .media-card {
    padding: 0.75rem;
  }

  .media-slot {
    padding: 0.75rem;
  }

  .feature-panel h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .story-intro h1 {
    font-size: clamp(3.1rem, 14vw, 4.8rem);
  }
}
