
:root {
  --color-soil: #3b2a1a;
  --color-bark: #6b4c30;
  --color-wheat: #c9a96e;
  --color-wheat-light: #e8d5b0;
  --color-sky: #5a7fa0;
  --color-sky-light: #d4e4f0;
  --color-cream: #faf6ef;
  --color-parchment: #f0e9dc;
  --color-stone: #8c7b6b;
  --color-stone-light: #d8cfc5;
  --color-text: #2c2017;
  --color-text-mid: #5a4a38;
  --color-text-light: #8a7860;
  --color-white: #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Serif 4', Georgia, serif;

  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2.5vw, 1.5rem);
  --space-lg: clamp(1.5rem, 4vw, 2.5rem);
  --space-xl: clamp(2.5rem, 6vw, 4.5rem);
  --space-2xl: clamp(4rem, 9vw, 7rem);

  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 12px;

  --max-w: 1200px;
  --transition: 0.22s ease;
}


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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.1vw + 0.6rem, 1.125rem);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.7;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

ul { list-style: none; }


.container {
  width: min(100%, var(--max-w));
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw + 0.5rem, 2.4rem);
  font-weight: 700;
  color: var(--color-soil);
  margin-bottom: 0.6rem;
}

.section-header p {
  color: var(--color-text-mid);
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.1rem);
}


.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75em 1.8em;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.btn-hero {
  background: var(--color-wheat);
  color: var(--color-soil);
  border: 2px solid var(--color-wheat);
}
.btn-hero:hover, .btn-hero:focus-visible {
  background: var(--color-white);
  color: var(--color-soil);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.btn-primary {
  background: var(--color-bark);
  color: var(--color-white);
  border: 2px solid var(--color-bark);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--color-soil);
  border-color: var(--color-soil);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-light:hover, .btn-outline-light:focus-visible {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-white);
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(30, 19, 8, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  height: 70px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-white);
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.site-logo:hover { opacity: 0.85; }

.logo-mark {
  color: var(--color-wheat);
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-white);
}

.logo-sub {
  font-size: clamp(0.62rem, 0.8vw, 0.72rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-wheat-light);
}

.primary-nav ul {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.primary-nav a {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--color-wheat-light);
  padding: 0.3em 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  color: var(--color-wheat);
  border-color: var(--color-wheat);
  outline: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 6px;
  background: none;
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--color-wheat);
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}


.drawer-popover {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border: none;
  padding: var(--space-lg);
  background: var(--color-soil);
  color: var(--color-white);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  opacity: 0;
  transition: opacity 0.25s ease, display 0.25s ease allow-discrete;
}
.drawer-popover:popover-open {
  opacity: 1;
}
@starting-style {
  .drawer-popover:popover-open { opacity: 0; }
}

.drawer-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--color-wheat-light);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
.drawer-close:hover { color: var(--color-wheat); }

.drawer-popover ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.drawer-popover a {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 500;
  color: var(--color-wheat-light);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.drawer-popover a:hover,
.drawer-popover a[aria-current="page"] { color: var(--color-wheat); }


.hero {
  position: relative;
  height: 100svh;
  min-height: 520px;
  max-height: 900px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(20, 11, 4, 0.25) 0%,
    rgba(20, 11, 4, 0.15) 40%,
    rgba(20, 11, 4, 0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
  color: var(--color-white);
  max-width: 720px;
}

.hero-eyebrow {
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--color-wheat);
  margin-bottom: 0.4rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw + 1rem, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--color-wheat-light);
  margin-bottom: var(--space-md);
}

.hero-desc {
  font-size: clamp(0.95rem, 1.2vw + 0.4rem, 1.1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin-bottom: var(--space-lg);
  line-height: 1.65;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  right: clamp(1.25rem, 5vw, 3rem);
  z-index: 2;
  color: rgba(255,255,255,0.5);
  animation: bob 2.2s ease-in-out infinite;
  transition: color var(--transition);
}
.hero-scroll-hint:hover { color: var(--color-wheat); }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}


.intro-band {
  background: var(--color-parchment);
  border-bottom: 1px solid var(--color-stone-light);
  padding-block: var(--space-xl);
}

.intro-band-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 820px) {
  .intro-band-inner {
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: var(--space-2xl);
  }
}

.intro-band-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.1rem);
  font-weight: 700;
  color: var(--color-soil);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.intro-band-text p {
  color: var(--color-text-mid);
  margin-bottom: var(--space-sm);
  max-width: 58ch;
}
.intro-band-text p:last-child { margin-bottom: 0; }

.intro-band-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.fact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-md) var(--space-sm);
  background: var(--color-white);
  border: 1px solid var(--color-stone-light);
  border-radius: var(--radius-md);
  min-width: 110px;
}

.fact-num {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--color-bark);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.fact-label {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-stone);
  line-height: 1.3;
}


.destinations {
  padding-block: var(--space-2xl);
  background: var(--color-cream);
}

.dest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dest-card--featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .dest-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .dest-card--featured {
    grid-column: span 2;
    grid-template-columns: 55% 45%;
  }
}

.dest-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-stone-light);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.dest-card:hover {
  box-shadow: 0 8px 32px rgba(59, 42, 26, 0.14);
  transform: translateY(-3px);
}

.dest-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
}

.dest-card--featured .dest-card-img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 280px;
}

.dest-card-img img {
  transition: transform 0.45s ease;
}
.dest-card:hover .dest-card-img img { transform: scale(1.04); }

.dest-card-body {
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  flex: 1;
}

.dest-card-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 700;
  color: var(--color-soil);
  margin-bottom: 0;
}

.dest-sub {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-bark);
  font-weight: 400;
  margin-bottom: var(--space-xs);
}

.dest-card-body p {
  color: var(--color-text-mid);
  font-size: 0.96rem;
  line-height: 1.65;
}


.landscape-break {
  position: relative;
  height: clamp(340px, 50vw, 580px);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.landscape-break-media {
  position: absolute;
  inset: 0;
}

.landscape-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 11, 4, 0.7) 0%,
    rgba(59, 42, 26, 0.5) 60%,
    rgba(90, 127, 160, 0.35) 100%
  );
  z-index: 1;
}

.landscape-break-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 620px;
}

.landscape-break-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw + 0.5rem, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.landscape-break-content p {
  font-weight: 300;
  font-size: clamp(0.95rem, 1.2vw + 0.4rem, 1.05rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  max-width: 52ch;
}


.heritage {
  background: var(--color-parchment);
  padding-block: var(--space-2xl);
  border-top: 1px solid var(--color-stone-light);
}

.heritage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 600px) {
  .heritage-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .heritage-grid { grid-template-columns: repeat(3, 1fr); }
}

.heritage-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--color-stone-light);
  transition: box-shadow var(--transition);
}
.heritage-item:hover { box-shadow: 0 4px 20px rgba(59, 42, 26, 0.1); }

.heritage-icon {
  color: var(--color-bark);
  margin-bottom: var(--space-sm);
  opacity: 0.85;
}

.heritage-item h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--color-soil);
  margin-bottom: var(--space-xs);
}

.heritage-item p {
  font-size: 0.93rem;
  color: var(--color-text-mid);
  line-height: 1.65;
}


.visit {
  padding-block: var(--space-2xl);
  background: var(--color-cream);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 780px) {
  .visit-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.visit-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--color-stone-light);
}

.visit-tips {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.visit-tip h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-soil);
  margin-bottom: var(--space-xs);
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--color-wheat);
  display: inline-block;
}

.visit-tip p {
  color: var(--color-text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}


.cta-band {
  background: var(--color-soil);
  background-image: linear-gradient(135deg, var(--color-soil) 0%, #5a3d22 100%);
  padding-block: var(--space-xl);
  border-top: 3px solid var(--color-wheat);
}

.cta-band-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: flex-start;
}

@media (min-width: 780px) {
  .cta-band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cta-band-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.cta-band-text p {
  color: var(--color-wheat-light);
  font-size: 0.97rem;
  max-width: 56ch;
  line-height: 1.65;
}


.site-footer {
  background: #1e1309;
  color: var(--color-stone-light);
  padding-block: var(--space-xl);
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.logo-mark--footer {
  color: var(--color-wheat);
  font-size: 1.2rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-wheat-light);
  opacity: 0.75;
}

.footer-nav {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-stone-light);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--color-wheat); }

.footer-address {
  font-size: 0.85rem;
  color: var(--color-stone);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--color-stone);
  opacity: 0.7;
}


@media (max-width: 680px) {
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
}

@media (min-width: 681px) {
  .nav-toggle { display: none; }
}



.about-hero {
  position: relative;
  height: clamp(420px, 60vw, 640px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 70px;
}

.about-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(20, 11, 4, 0.30) 0%,
    rgba(20, 11, 4, 0.18) 35%,
    rgba(20, 11, 4, 0.78) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(3rem, 7vw, 5rem);
  color: var(--color-white);
  max-width: 680px;
}

.about-mission {
  background: var(--color-parchment);
  border-bottom: 1px solid var(--color-stone-light);
  padding-block: var(--space-2xl);
}

.about-mission-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 820px) {
  .about-mission-inner {
    grid-template-columns: 1fr 420px;
    gap: var(--space-2xl);
  }
}

.about-mission-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.1rem);
  font-weight: 700;
  color: var(--color-soil);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.about-mission-text p {
  color: var(--color-text-mid);
  margin-bottom: var(--space-sm);
  max-width: 60ch;
}
.about-mission-text p:last-child { margin-bottom: 0; }

.about-mission-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--color-stone-light);
  flex-shrink: 0;
}

.about-purpose {
  background: var(--color-cream);
  padding-block: var(--space-2xl);
}

.purpose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 600px) {
  .purpose-grid { grid-template-columns: repeat(2, 1fr); }
}

.purpose-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--color-stone-light);
  transition: box-shadow var(--transition);
}
.purpose-item:hover { box-shadow: 0 4px 20px rgba(59, 42, 26, 0.1); }

.purpose-icon {
  color: var(--color-bark);
  margin-bottom: var(--space-sm);
  opacity: 0.85;
}

.purpose-item h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--color-soil);
  margin-bottom: var(--space-xs);
}

.purpose-item p {
  font-size: 0.93rem;
  color: var(--color-text-mid);
  line-height: 1.65;
}

.about-region-break {
  position: relative;
  height: clamp(300px, 45vw, 520px);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.about-region-media {
  position: absolute;
  inset: 0;
}

.about-region-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 11, 4, 0.72) 0%,
    rgba(59, 42, 26, 0.52) 55%,
    rgba(90, 127, 160, 0.32) 100%
  );
  z-index: 1;
}

.about-region-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 640px;
}

.about-region-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw + 0.5rem, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.about-region-content p {
  font-weight: 300;
  font-size: clamp(0.95rem, 1.2vw + 0.4rem, 1.05rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  max-width: 54ch;
}

.about-towns {
  background: var(--color-parchment);
  padding-block: var(--space-2xl);
  border-top: 1px solid var(--color-stone-light);
}

.towns-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.town-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-stone-light);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.town-row:hover { box-shadow: 0 6px 28px rgba(59, 42, 26, 0.12); }

@media (min-width: 700px) {
  .town-row {
    grid-template-columns: 340px 1fr;
  }
  .town-row--reverse {
    grid-template-columns: 1fr 340px;
  }
  .town-row--reverse .town-row-img {
    order: 2;
  }
  .town-row--reverse .town-row-body {
    order: 1;
  }
}

.town-row-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 700px) {
  .town-row-img {
    aspect-ratio: auto;
    height: 100%;
    min-height: 240px;
  }
}

.town-row-img img {
  transition: transform 0.45s ease;
}
.town-row:hover .town-row-img img { transform: scale(1.04); }

.town-row-body {
  padding: var(--space-lg) var(--space-xl);
}

.town-row-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-soil);
  margin-bottom: 0.2rem;
}

.town-row-body .dest-sub {
  margin-bottom: var(--space-sm);
}

.town-row-body p {
  color: var(--color-text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-acknowledgement {
  background: var(--color-soil);
  padding-block: var(--space-xl);
  border-top: 3px solid var(--color-wheat);
}

.about-acknowledgement-inner {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.acknowledgement-mark {
  color: var(--color-wheat);
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.15rem;
  opacity: 0.8;
}

.acknowledgement-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-wheat);
  margin-bottom: var(--space-sm);
}

.acknowledgement-body p {
  color: var(--color-wheat-light);
  font-size: 0.97rem;
  line-height: 1.75;
  max-width: 72ch;
  opacity: 0.9;
}



.contact-hero {
  position: relative;
  height: clamp(340px, 45vw, 520px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 70px;
}

.contact-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(20, 11, 4, 0.3) 0%,
    rgba(20, 11, 4, 0.18) 40%,
    rgba(20, 11, 4, 0.75) 100%
  );
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--color-white);
  max-width: 680px;
}

.contact-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw + 0.5rem, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.contact-body {
  background: var(--color-cream);
  padding-block: var(--space-2xl);
}

.contact-body-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw + 0.4rem, 2rem);
  font-weight: 700;
  color: var(--color-soil);
  margin-bottom: var(--space-sm);
}

.contact-intro p {
  color: var(--color-text-mid);
  max-width: 64ch;
  margin-bottom: var(--space-sm);
  line-height: 1.75;
}
.contact-intro p:last-child { margin-bottom: 0; }

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 640px) {
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .contact-cards { grid-template-columns: repeat(3, 1fr); }
}

.contact-card {
  background: var(--color-white);
  border: 1px solid var(--color-stone-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.contact-card:hover {
  box-shadow: 0 8px 32px rgba(59, 42, 26, 0.12);
  transform: translateY(-3px);
}

.contact-card-icon {
  color: var(--color-bark);
  opacity: 0.9;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-soil);
}

.contact-card p {
  color: var(--color-text-mid);
  font-size: 0.93rem;
  line-height: 1.68;
  flex: 1;
}

.contact-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--color-bark);
  border-bottom: 1px solid var(--color-wheat);
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
  word-break: break-all;
}
.contact-link:hover,
.contact-link:focus-visible {
  color: var(--color-soil);
  border-color: var(--color-soil);
  outline: none;
}

.contact-region {
  position: relative;
  height: clamp(300px, 42vw, 500px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-region-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-region-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(20, 11, 4, 0.72) 0%,
    rgba(59, 42, 26, 0.5) 55%,
    rgba(90, 127, 160, 0.3) 100%
  );
}

.contact-region-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 640px;
}

.contact-region-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw + 0.4rem, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.contact-region-content p {
  font-size: clamp(0.93rem, 1.1vw + 0.4rem, 1.05rem);
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  line-height: 1.72;
  max-width: 54ch;
  margin-bottom: var(--space-md);
}

.contact-region-address {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--color-wheat-light);
  letter-spacing: 0.04em;
  border-left: 3px solid var(--color-wheat);
  padding-left: var(--space-sm);
}

.region-address-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-wheat);
  font-weight: 400;
}

.contact-topics {
  background: var(--color-parchment);
  padding-block: var(--space-2xl);
  border-top: 1px solid var(--color-stone-light);
}

.topics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 600px) {
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .topics-grid { grid-template-columns: repeat(3, 1fr); }
}

.topic-item {
  background: var(--color-white);
  border: 1px solid var(--color-stone-light);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border-top: 3px solid var(--color-wheat);
  transition: box-shadow var(--transition);
}
.topic-item:hover {
  box-shadow: 0 4px 20px rgba(59, 42, 26, 0.1);
}

.topic-item h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--color-soil);
  margin-bottom: var(--space-xs);
}

.topic-item p {
  font-size: 0.93rem;
  color: var(--color-text-mid);
  line-height: 1.65;
}


/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}

/* pn-article-styles:begin */
.pn-article *,
.pn-article *::before,
.pn-article *::after {
  box-sizing: border-box;
}

.pn-article {
  width: min(100%, 740px);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  padding-top: calc(70px + var(--space-xl));
  padding-bottom: var(--space-2xl);
  background: var(--color-cream);
  color: var(--color-text);
  font-family: var(--font-body);
  overflow-wrap: break-word;
}

.pn-article__head {
  margin-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-stone-light);
  padding-bottom: var(--space-lg);
}

.pn-article__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--color-soil);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-sm);
}

.pn-article__byline {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.92rem);
  font-weight: 300;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 1em;
  align-items: center;
}

.pn-article__byline strong {
  color: var(--color-bark);
  font-weight: 400;
}

.pn-article__hero {
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-stone-light);
  position: relative;
}

.pn-article__hero img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.pn-article__hero .photo-credit {
  display: block;
  background: rgba(30, 19, 8, 0.62);
  color: var(--color-wheat-light);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: 0.35em 0.8em;
  text-align: right;
  font-weight: 300;
  font-style: italic;
}

.pn-article__body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.1vw + 0.6rem, 1.1rem);
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.8;
}

.pn-article__body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw + 0.4rem, 1.9rem);
  font-weight: 700;
  color: var(--color-soil);
  line-height: 1.2;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.35em;
  border-bottom: 2px solid var(--color-wheat);
}

.pn-article__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw + 0.3rem, 1.4rem);
  font-weight: 700;
  color: var(--color-bark);
  line-height: 1.25;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xs);
}

.pn-article__body p {
  margin-bottom: var(--space-md);
  overflow-wrap: break-word;
}

.pn-article__body a {
  color: var(--color-bark);
  text-decoration: underline;
  text-decoration-color: var(--color-wheat);
  text-underline-offset: 3px;
  transition: color var(--transition), text-decoration-color var(--transition);
}

.pn-article__body a:hover,
.pn-article__body a:focus-visible {
  color: var(--color-soil);
  text-decoration-color: var(--color-bark);
}

.pn-article__body ul,
.pn-article__body ol {
  margin-bottom: var(--space-md);
  padding-left: 1.5em;
}

.pn-article__body ul {
  list-style: disc;
}

.pn-article__body ol {
  list-style: decimal;
}

.pn-article__body li {
  margin-bottom: 0.45em;
  color: var(--color-text-mid);
  line-height: 1.75;
}

.pn-article__body figure {
  margin-block: var(--space-lg);
  margin-inline: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-stone-light);
  background: var(--color-parchment);
}

.pn-article__body figure figcaption {
  font-size: 0.82rem;
  color: var(--color-stone);
  font-style: italic;
  padding: 0.55em var(--space-sm);
  text-align: center;
  letter-spacing: 0.02em;
}

.pn-article__body img {
  width: auto;
  height: auto;
  object-fit: initial;
  max-width: 100%;
  display: block;
  border-radius: var(--radius-sm);
}

.pn-article__body blockquote {
  margin-block: var(--space-lg);
  margin-inline: 0;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-parchment);
  border-left: 4px solid var(--color-wheat);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--color-text-mid);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw + 0.4rem, 1.2rem);
  font-weight: 400;
  line-height: 1.65;
}

.pn-article__body blockquote p {
  margin-bottom: 0;
}

.pn-article__body svg {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  height: 1em;
  fill: currentColor;
  flex-shrink: 0;
}
/* pn-article-styles:end */
