:root {
  --bg: #f4ede4;
  --paper: #fff9f2;
  --paper-strong: #fffdf9;
  --ink: #251b18;
  --muted: #675750;
  --accent: #a7543a;
  --accent-deep: #6b3a2b;
  --accent-soft: #d8b18b;
  --olive: #7d8366;
  --line: rgba(63, 42, 34, 0.12);
  --shadow: 0 26px 60px rgba(56, 33, 25, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(216, 177, 139, 0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(125, 131, 102, 0.1), transparent 28%),
    var(--bg);
  font-family: "Manrope", sans-serif;
  line-height: 1.65;
}

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

p {
  margin: 0 0 1rem;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 10;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--paper-strong);
}

.skip-link:focus {
  top: 1rem;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 1.2rem 0 4.25rem;
}

.hero-backdrop {
  position: absolute;
  inset: 0 0 auto;
  height: 85%;
  background:
    linear-gradient(145deg, rgba(37, 27, 24, 0.96), rgba(107, 58, 43, 0.86)),
    linear-gradient(180deg, rgba(216, 177, 139, 0.22), transparent);
  border-bottom-left-radius: 56px;
  border-bottom-right-radius: 56px;
}

.site-nav,
.hero-grid,
.section-shell,
.site-footer {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0 2rem;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 700;
  color: #fff7ef;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 1.2rem;
}

.nav-links a {
  color: rgba(255, 247, 239, 0.92);
  text-decoration: none;
  font-size: 0.95rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: start;
}

.hero-copy {
  color: #fff7ef;
  padding: 1.3rem 0 0;
}

.eyebrow,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-copy h1,
.section-copy h2,
.story-panel-text h2,
.section-header h2,
.editorial-copy h2,
.visit-copy h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
}

.hero-copy h1 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(4.2rem, 9vw, 6.9rem);
}

.lead {
  max-width: 38rem;
  font-size: 1.06rem;
  color: rgba(255, 247, 239, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: #fff7ef;
  color: var(--accent-deep);
  box-shadow: 0 16px 30px rgba(16, 10, 8, 0.18);
}

.button-secondary {
  background: rgba(255, 247, 239, 0.1);
  color: #fff7ef;
  border: 1px solid rgba(255, 247, 239, 0.26);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.hero-facts li {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 247, 239, 0.12);
  border: 1px solid rgba(255, 247, 239, 0.2);
}

.hero-facts strong {
  display: block;
  font-size: 1.3rem;
}

.hero-facts span {
  display: block;
  font-size: 0.92rem;
  color: rgba(255, 247, 239, 0.82);
}

.hero-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.85fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  min-height: 0;
  align-items: stretch;
}

.visual-main,
.visual-float {
  margin: 0;
  background: var(--paper-strong);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--line);
}

.visual-main {
  grid-row: 1 / span 2;
  position: relative;
  inset: auto;
}

.visual-main img {
  height: 100%;
  min-height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.visual-float {
  position: relative;
  width: auto;
}

.visual-float img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.visual-float figcaption {
  padding: 0.8rem 1rem 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.visual-float-top {
  left: auto;
  top: auto;
}

.visual-float-bottom {
  right: auto;
  bottom: auto;
}

.section-shell {
  margin-top: 2rem;
}

.intro-grid,
.split-story,
.editorial-band,
.visit-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  align-items: center;
}

.section-copy,
.story-panel-text,
.editorial-copy,
.visit-copy,
.visit-note {
  padding: clamp(1.6rem, 2.5vw, 2.6rem);
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 40px rgba(56, 33, 25, 0.09);
}

.feature-card,
.story-panel-image,
.editorial-image,
.archive-map {
  margin: 0;
  padding: 0;
  background: var(--paper-strong);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feature-card img,
.story-panel-image img,
.editorial-image img {
  min-height: 0;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.feature-card figcaption,
.story-panel-image figcaption,
.editorial-image figcaption,
.archive-map figcaption,
.archive-gallery figcaption {
  padding: 1rem 1.2rem 1.2rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-copy h2,
.story-panel-text h2,
.section-header h2,
.editorial-copy h2,
.visit-copy h2 {
  margin: 0.35rem 0 1rem;
  font-size: clamp(2.5rem, 5vw, 4.1rem);
  line-height: 1.02;
}

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

.metrics-strip article,
.attraction-card,
.archive-gallery figure {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.metrics-strip article {
  padding: 1.3rem 1.35rem;
}

.metric-value {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 800;
}

.section-header {
  margin-bottom: 1.25rem;
}

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

.attraction-card {
  overflow: hidden;
}

.attraction-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.attraction-copy {
  padding: 1.15rem 1.2rem 1.35rem;
}

.attraction-copy h3,
.visit-note h3 {
  margin: 0 0 0.65rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.editorial-band {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.editorial-copy {
  background: var(--paper-strong);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(56, 33, 25, 0.09);
}

.editorial-image img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.2rem;
}

.archive-map img {
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
}

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

.archive-gallery figure {
  margin: 0;
  overflow: hidden;
}

.archive-gallery img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.visit-list {
  padding-left: 1.1rem;
  color: var(--muted);
}

.visit-note {
  background: linear-gradient(180deg, rgba(255, 249, 242, 0.96), rgba(244, 237, 228, 0.96));
}

.site-footer {
  padding: 2.5rem 0 3.2rem;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 980px) {
  .hero-grid,
  .intro-grid,
  .split-story,
  .editorial-band,
  .visit-section,
  .archive-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .metrics-strip,
  .attractions-grid,
  .archive-gallery {
    grid-template-columns: 1fr;
  }

  .visual-main {
    grid-row: auto;
  }

  .visual-main img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-bottom: 3rem;
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 560px) {
  .site-nav,
  .hero-grid,
  .section-shell,
  .site-footer {
    width: min(1120px, calc(100% - 1.2rem));
  }

  .hero-copy h1 {
    font-size: 4rem;
  }

  .section-copy h2,
  .story-panel-text h2,
  .section-header h2,
  .editorial-copy h2,
  .visit-copy h2 {
    font-size: 2.6rem;
  }

  .hero-visual {
    gap: 0.85rem;
  }

  .section-copy,
  .story-panel-text,
  .editorial-copy,
  .visit-copy,
  .visit-note {
    padding: 1.35rem;
  }
}
