:root {
  --gold: #f4b400;
  --gold-soft: #ffd54f;
  --gold-pale: #fff7df;
  --green: #214f2a;
  --green-dark: #173a1f;
  --brown: #6d4b00;
  --ink: #2e2a26;
  --muted: #6f6a65;
  --blue: #173e73;
  --paper: #fffdf8;
  --line: #ead79b;
  --shadow: 0 16px 44px rgba(72, 51, 13, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffbc001c;
  color: var(--ink);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
}

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

a {
  color: #174f77;
}

a:focus-visible,
button:focus-visible,
video:focus-visible {
  outline: 3px solid #8a5f00;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  border-radius: 0 0 6px 6px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 0;
}

.site-header {
  background: linear-gradient(105deg, var(--gold), #fff 72%);
  color: #2d1b0e;
  padding: 1.25rem 1rem 1.65rem;
  text-align: center;
}

.site-header img {
  height: auto;
  margin: 0 auto;
  width: min(220px, 65vw);
}

.site-header h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.12;
  margin: 0.35rem auto 0;
  max-width: 900px;
}

.site-header p {
  color: #34472c;
  font-weight: 650;
  margin-top: 0.45rem;
}

.primary-nav {
  align-items: center;
  background: var(--gold-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: center;
  padding: 0.55rem 1rem;
}

.primary-nav a {
  align-items: center;
  border-radius: 5px;
  color: #333;
  display: inline-flex;
  font-weight: 700;
  min-height: 44px;
  padding: 0.5rem 0.85rem;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  background: #ffecb3;
  outline: 2px solid var(--green);
  outline-offset: 1px;
}

.page-shell {
  margin: 2rem auto;
  max-width: 1120px;
  padding: 0 1rem;
}

.story-index-intro,
.story-card,
.article-shell,
.tour-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.story-index-intro {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}

.eyebrow {
  color: #866300;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-index-intro h2,
.tour-card h2 {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 2.55rem);
  line-height: 1.2;
  margin-top: 0.45rem;
}

.story-index-intro p:last-child {
  margin: 0.75rem auto 0;
  max-width: 700px;
}

.story-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  margin-top: 1.5rem;
}

.story-card {
  overflow: hidden;
}

.story-card img {
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.story-card-body {
  padding: 1.4rem;
}

.privacy-note {
  background: var(--gold-pale);
  border-left: 4px solid #d2a52f;
  color: #5e564d;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  padding: 0.7rem 0.8rem;
}

.story-card h2 {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.2;
  margin: 0.35rem 0 0.7rem;
}

.story-card p + p {
  margin-top: 0.8rem;
}

.story-link,
.cta-link {
  align-items: center;
  background: var(--green);
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  font-weight: 750;
  margin-top: 1rem;
  min-height: 44px;
  padding: 0.7rem 1rem;
  text-decoration: none;
}

.story-link:hover,
.story-link:focus-visible,
.cta-link:hover,
.cta-link:focus-visible {
  background: var(--green-dark);
  color: #fff;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.article-shell {
  overflow: hidden;
}

.article-heading {
  background: linear-gradient(145deg, #fffdf8, #fff8e9);
  border-bottom: 1px solid var(--line);
  padding: clamp(2rem, 7vw, 5rem) clamp(1.25rem, 6vw, 4.5rem);
  text-align: center;
}

.article-heading h2 {
  color: #5f5a55;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 6vw, 4.65rem);
  line-height: 1.02;
  margin: 0.7rem auto 0;
  max-width: 900px;
}

.article-date {
  color: #745200;
  font-weight: 700;
  margin-top: 1rem;
}

.article-content {
  margin: 0 auto;
  max-width: 900px;
  padding: clamp(1.5rem, 5vw, 4rem) clamp(1.15rem, 5vw, 3rem);
}

.privacy-notice {
  background: var(--gold-pale);
  border: 1px solid var(--line);
  border-left: 6px solid #d2a52f;
  border-radius: 8px;
  color: #514b45;
  margin-bottom: 1.5rem;
  padding: 1rem 1.15rem;
}

.privacy-notice strong {
  color: var(--green);
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.privacy-notice p {
  font-size: 0.98rem;
  margin-top: 0.25rem;
}

.article-content p {
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.article-content p + p,
.article-content figure + p,
.article-content p + figure,
.article-content blockquote + figure,
.article-content figure + blockquote {
  margin-top: 1.4rem;
}

.feature-figure {
  margin: 0;
}

.feature-figure img {
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
}

.feature-figure figcaption {
  color: var(--muted);
  font-size: 0.92rem;
  font-style: italic;
  margin-top: 0.55rem;
  text-align: right;
}

.photo-pair {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.photo-pair img {
  aspect-ratio: 3 / 4;
  border-radius: 9px;
  height: auto;
  object-fit: cover;
  width: 100%;
}

blockquote {
  border-left: 6px solid #d2a52f;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  font-style: italic;
  line-height: 1.3;
  margin: 1.9rem 0;
  padding: 0.25rem 0 0.25rem 1.5rem;
}

.promise-heading {
  border-bottom: 4px solid #d2a52f;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin: 2rem 0 1.2rem;
  padding-bottom: 0.55rem;
}

.signature {
  border-top: 1px solid var(--line);
  margin-top: 2.6rem;
  padding-top: 2rem;
  text-align: center;
}

.signature strong {
  color: var(--blue);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
}

.signature em {
  color: #745200;
  display: block;
  font-size: 1.08rem;
  margin-top: 0.35rem;
}

.signature small {
  color: var(--muted);
  display: block;
  margin-top: 0.85rem;
}

.tour-card {
  background: #fffaf0;
  border: 1px solid var(--line);
  margin-top: 1.5rem;
  padding: clamp(1.5rem, 5vw, 3rem);
  text-align: center;
}

.tour-card p {
  margin: 0.8rem auto 0;
  max-width: 720px;
}

.back-link {
  align-items: center;
  display: inline-flex;
  font-weight: 700;
  margin-bottom: 1rem;
  min-height: 44px;
}

.site-footer {
  background: var(--brown);
  color: #fff;
  margin-top: 2rem;
  padding: 1.25rem 1rem;
  text-align: center;
}

.site-footer p + p {
  margin-top: 0.35rem;
}

.site-footer a {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-weight: 650;
  min-height: 24px;
}

@media (max-width: 560px) {
  .photo-pair {
    grid-template-columns: 1fr;
  }

  .primary-nav {
    gap: 0;
  }

  .primary-nav a {
    padding-inline: 0.62rem;
  }
}

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

@media (forced-colors: active) {
  .primary-nav a,
  .story-link,
  .cta-link {
    border: 1px solid ButtonText;
  }
}
