:root {
  --ink: #10222a;
  --muted: #657279;
  --paper: #f6f3ec;
  --white: #ffffff;
  --line: rgba(16, 34, 42, 0.14);
  --green: #154f43;
  --green-2: #2f7664;
  --gold: #c28a34;
  --blue: #1d3e63;
  --shadow: 0 24px 80px rgba(16, 34, 42, 0.18);
  --gradient-ink: radial-gradient(circle at top right, #1a3340, var(--ink) 60%);
  --gradient-green: radial-gradient(circle at center, #1b6354, var(--green) 70%);
  --gradient-paper: radial-gradient(circle at top left, #ffffff, var(--paper) 80%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--gradient-paper);
  background-attachment: fixed;
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  overflow-x: hidden;
}

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

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

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--ink);
  padding: 8px 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  z-index: 25;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.top-bar a:hover,
.top-bar a.active {
  color: var(--gold);
}

.top-bar .divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
}

.site-header {
  position: fixed;
  inset: 54px 24px auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 72px;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(16, 34, 42, 0.58);
  color: var(--white);
  backdrop-filter: blur(20px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(16, 34, 42, 0.9);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), #e9b765);
  color: var(--blue);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a:hover {
  color: var(--white);
}

.nav-item.has-mega-menu {
  position: relative;
  padding: 10px 0;
}

.nav-item.has-mega-menu > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item.has-mega-menu .chevron {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.nav-item.has-mega-menu:hover .chevron {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 800px;
  background: var(--paper);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 100;
  border: 1px solid rgba(16, 34, 42, 0.05);
}

.nav-item.has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.mega-card {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(16, 34, 42, 0.05);
  transition: transform 0.3s ease;
}

.mega-card:hover {
  transform: translateY(-4px);
  color: var(--ink);
}

.mega-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.mega-card span {
  display: block;
  padding: 12px;
  font-weight: 800;
  font-size: 13px;
  text-align: center;
  color: var(--ink);
}

.mega-menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(16, 34, 42, 0.1);
}

.mega-menu-footer p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.mega-link {
  color: var(--gold) !important;
  font-weight: 800;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  font-weight: 800;
  font-size: 14px;
}

.header-action {
  background: var(--white);
  color: var(--ink);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: var(--white);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.menu-label {
  display: none;
}

.mobile-nav {
  position: fixed;
  inset: 96px 24px auto;
  z-index: 19;
  display: none;
  padding: 16px;
  background: rgba(16, 34, 42, 0.96);
  color: var(--white);
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: grid;
  gap: 12px;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ken-burns 30s ease-out infinite alternate;
}

@keyframes ken-burns {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 20, 24, 0.9), rgba(9, 20, 24, 0.42) 54%, rgba(9, 20, 24, 0.22)),
    linear-gradient(0deg, rgba(9, 20, 24, 0.72), transparent 56%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 940px;
  padding: 190px 7vw 170px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(58px, 9vw, 132px);
  line-height: 0.88;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.98;
}

h3 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.05;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), #e9b765);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(194, 138, 52, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(194, 138, 52, 0.4);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.hero-panel {
  position: absolute;
  right: 7vw;
  bottom: 44px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(105px, 1fr));
  width: min(720px, 86vw);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel strong {
  display: block;
  font-size: 27px;
  white-space: nowrap;
}

.hero-panel span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.intro-band,
.experience-section,
.destination-map,
.facts,
.gallery-section,
.contact {
  padding: 110px 7vw;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(280px, 1fr);
  gap: 8vw;
  background: var(--white);
}

.section-heading {
  max-width: 850px;
}

.section-heading.narrow {
  max-width: 700px;
}

.intro-copy {
  display: grid;
  gap: 32px;
  align-content: center;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.85;
}

.marquee-strip {
  display: flex;
  gap: 1px;
  overflow: auto;
  background: var(--ink);
  color: var(--white);
}

.marquee-strip span {
  flex: 1 0 auto;
  min-width: 190px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
}

.experience-section {
  background: #e9efe9;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 54px;
}

.feature-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.feature-card.large {
  grid-row: span 2;
  min-height: 700px;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 500ms ease;
}

.feature-card:hover img {
  transform: scale(1.04);
}

.feature-content {
  position: absolute;
  inset: auto 0 0;
  padding: 34px;
  background: linear-gradient(0deg, rgba(9, 20, 24, 0.9), rgba(9, 20, 24, 0));
}

.feature-content span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 800;
}

.feature-content p,
.sustainability-copy p,
.facts-copy p,
.gallery-section p,
.contact p {
  color: var(--muted);
  line-height: 1.7;
}

.feature-content p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.itinerary-section {
  padding: 120px 7vw;
  background: var(--white);
}

.timeline {
  max-width: 800px;
  margin: 60px auto 0;
  border-left: 2px dashed var(--line);
  padding-left: 40px;
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -49px;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(194, 138, 52, 0.2);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-time {
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 8px;
}

.timeline-content h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--ink);
}

.timeline-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.itinerary-action {
  text-align: center;
  margin-top: 60px;
}

.sustainability {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 0.82fr);
  gap: 7vw;
  align-items: center;
  padding: 120px 7vw;
  background: var(--white);
}

.township-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1fr);
  gap: 7vw;
  align-items: center;
  padding: 120px 7vw;
  background: #eef4ef;
}

.township-media {
  overflow: hidden;
  box-shadow: var(--shadow);
  border-radius: 8px;
}

.township-media img {
  width: 100%;
  height: auto;
  display: block;
}

.township-copy p {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.7;
}

.media-block {
  overflow: hidden;
  box-shadow: var(--shadow);
  border-radius: 8px;
}

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

.metric-list {
  display: grid;
  gap: 14px;
  margin-top: 38px;
}

.metric-list div {
  border-top: 1px solid var(--line);
  padding: 18px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.metric-list div:hover {
  background: var(--gradient-paper);
  transform: translateX(8px);
  border-top-color: transparent;
  box-shadow: 0 4px 12px rgba(16, 34, 42, 0.05);
}

.layer-item {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.metric-list strong,
.metric-list span {
  display: block;
}

/* Interactive Image Dots */
.media-block {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  border-radius: 8px;
}

.eco-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 0 0 0 rgba(194, 138, 52, 0.7);
  animation: pulse-dot 2s infinite;
}

.eco-dot:hover {
  animation: none;
  transform: scale(1.2);
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(194, 138, 52, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(194, 138, 52, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(194, 138, 52, 0); }
}

.metric-list span {
  margin-top: 4px;
  color: var(--muted);
}

.destination-map {
  background: var(--gradient-green);
  color: var(--white);
}

.destination-map .eyebrow {
  color: #eac77e;
}

.layer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.layer-item {
  border-color: rgba(255, 255, 255, 0.24);
  min-height: 190px;
}

.layer-item span {
  display: block;
  color: #eac77e;
  font-weight: 800;
  text-transform: uppercase;
}

.layer-item strong {
  display: block;
  margin-top: 34px;
  font-size: 22px;
  line-height: 1.28;
}

.facts {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(300px, 1.2fr);
  gap: 7vw;
  align-items: start;
  background: var(--gradient-paper);
}

.facts-copy {
  position: sticky;
  top: 140px;
}

.facts-image {
  margin-top: 40px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(16, 34, 42, 0.08);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.facts-list {
  display: flex;
  flex-direction: column;
}

.fact-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s ease, border-color 0.4s ease;
}

.fact-item:first-child {
  padding-top: 0;
}

.fact-item:hover {
  padding-left: 20px;
  border-bottom-color: var(--gold);
}

.fact-item span {
  display: block;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 8px;
}

.fact-item strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  line-height: 1.2;
  color: var(--ink);
  transition: color 0.4s ease;
}

.fact-item:hover strong {
  color: var(--blue);
}

.gallery-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.75fr);
  gap: 6vw;
  align-items: center;
  background: var(--white);
}

.gallery-section img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(280px, 1fr);
  gap: 7vw;
  align-items: stretch;
  background: var(--gradient-ink);
  color: var(--white);
}

.contact p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-address {
  margin-bottom: 48px;
}

.contact-panel {
  display: flex;
  flex-direction: column;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.form-group.message-group {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.form-group.message-group textarea {
  flex-grow: 1;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 16px;
  border-radius: 4px;
  transition: border-color 0.3s ease;
  appearance: none;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px auto;
}

.form-group select option {
  background: var(--ink);
  color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form button {
  align-self: flex-start;
  margin-top: 8px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-links a {
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  overflow-wrap: anywhere;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.contact-links a:hover {
  color: var(--gold);
  padding-left: 12px;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.feature-card img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover img {
  transform: scale(1.04);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 7vw;
  background: #081114;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-action {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero-content {
    padding: 160px 24px 210px;
  }

  .hero-panel {
    right: 24px;
    left: 24px;
    bottom: 28px;
    width: auto;
  }

  .intro-band,
  .sustainability,
  .township-showcase,
  .facts,
  .gallery-section,
  .contact {
    grid-template-columns: 1fr;
  }
  
  .facts-copy {
    position: static;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .layer-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card.large {
    min-height: 560px;
  }

  .layer-item {
    min-height: auto;
  }

  .media-block {
    min-height: 320px;
  }

  .township-media {
    min-height: 300px;
  }
  
  .eco-dot {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 640px) {
  .top-bar {
    padding: 8px 12px;
  }
  .top-bar-inner {
    justify-content: center;
    gap: 12px;
  }
  .top-bar a {
    font-size: 11px;
    letter-spacing: 0px;
  }
  .site-header {
    inset: 44px 12px auto;
    width: calc(100vw - 24px);
    min-height: 64px;
  }

  .brand {
    padding-right: 58px;
  }

  .menu-button {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    position: static;
    width: 46px;
    height: 46px;
    padding: 0;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .menu-button::before {
    content: none;
  }

  .menu-button span:not(.menu-label) {
    display: block !important;
  }

  .menu-label {
    display: none !important;
  }

  .brand small {
    display: none;
  }

  .mobile-nav {
    inset: 118px 12px auto;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(42px, 12vw, 54px);
    line-height: 0.96;
    overflow-wrap: normal;
  }

  h2 {
    font-size: 38px;
  }

  .hero {
    min-height: 98svh;
    align-items: start;
  }

  .hero-content {
    width: 100%;
    padding: 128px 18px 26px;
  }

  .hero-copy {
    max-width: 32ch;
    font-size: 17px;
  }

  .eyebrow {
    letter-spacing: 0.08em;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-panel {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
    width: auto;
    margin: 0 18px 28px;
  }

  .hero-panel div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .intro-band,
  .experience-section,
  .destination-map,
  .facts,
  .gallery-section,
  .contact {
    padding: 76px 18px;
  }

  .sustainability {
    padding: 76px 18px;
  }

  .township-showcase {
    padding: 76px 18px;
  }

  .feature-card,
  .feature-card.large {
    min-height: 520px;
  }

  .feature-content {
    padding: 24px;
  }

  .facts-table div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 32px 18px;
  }
}
