:root {
  --bg: #ffffff;
  --ink: #16302b;
  --muted: #5d6f6a;
  --line: #dce7e2;
  --green: #17483d;
  --green-2: #0f352e;
  --blue: #2d7188;
  --red: #a8442d;
  --gold: #d8a640;
  --soft: #f4f8f6;
  --shadow: 0 18px 45px rgba(22, 48, 43, 0.13);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

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

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

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  z-index: 20;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--green);
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(220, 231, 226, 0.9);
  backdrop-filter: blur(18px);
}

.utility-bar {
  background: var(--green-2);
  color: #eaf3ef;
  font-size: 0.82rem;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.utility-inner a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.site-nav > a,
.nav-group > button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 0 10px;
  text-decoration: none;
}

.site-nav > a:hover,
.nav-group > button:hover,
.nav-group:focus-within > button {
  background: var(--soft);
}

.nav-group {
  position: relative;
}

.nav-group > button::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 275px;
  display: grid;
  gap: 4px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.dropdown-right {
  left: auto;
  right: 0;
}

.dropdown a {
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px;
  text-decoration: none;
}

.dropdown a:hover,
.dropdown a:focus {
  background: var(--soft);
  color: var(--green);
}

.nav-group:hover .dropdown,
.nav-group:focus-within .dropdown,
.nav-group.open .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  display: block;
  margin: 3px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--green);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 53, 46, 0.9), rgba(15, 53, 46, 0.55) 42%, rgba(15, 53, 46, 0.08)),
    linear-gradient(0deg, rgba(15, 53, 46, 0.82), rgba(15, 53, 46, 0.02) 48%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: end;
  padding: 96px 0 48px;
}

.hero-copy {
  max-width: 720px;
  color: #fff;
}

.hero h1 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.35rem, 7vw, 6.8rem);
  line-height: 0.94;
  font-weight: 700;
}

.hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.34rem);
}

.hero-actions,
.payment-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 900;
  padding: 0 18px;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 26px rgba(168, 68, 45, 0.28);
}

.btn.secondary {
  background: #fff;
  color: var(--green);
}

.btn.light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-panel {
  display: grid;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.hero-panel strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
}

.hero-panel span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.quick-section,
.story-section,
.recreation-section,
.gallery-section,
.directory-section {
  padding: 86px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading.wide {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.story-copy h2,
.payment-inner h2,
.directory-grid h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.section-heading p,
.story-copy p,
.payment-inner p,
.directory-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.quick-link {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.quick-link:hover {
  border-color: rgba(45, 113, 136, 0.45);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.quick-link .icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
}

.quick-link strong {
  display: block;
  font-size: 1rem;
  line-height: 1.15;
}

.quick-link small {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.payment-band {
  background: var(--green);
  color: #fff;
}

.payment-inner {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.payment-inner p {
  color: rgba(255, 255, 255, 0.78);
}

.muted {
  background: var(--soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 7vw, 84px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
}

.story-media img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-media.stacked {
  position: relative;
  padding-right: 22%;
  padding-bottom: 70px;
}

.story-media.stacked .main-photo {
  aspect-ratio: 0.82 / 1;
}

.story-media.stacked .crest-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 38%;
  aspect-ratio: 1 / 1;
  padding: 16px;
  background: #fff;
  object-fit: contain;
}

.story-copy p + p {
  margin-top: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.text-link::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.recreation-section {
  background:
    linear-gradient(180deg, #fff 0%, #fff 50%, var(--green) 50%, var(--green) 100%);
}

.photo-rail {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.photo-rail img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-rail img:nth-child(2) {
  margin-top: 40px;
}

.center-actions {
  justify-content: center;
}

.gallery-section {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: 0 1px 0 var(--line);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.gallery-grid a:hover img,
.gallery-grid a:focus img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.directory-section {
  background: var(--green-2);
  color: #fff;
}

.directory-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.45fr;
  gap: 54px;
  align-items: start;
}

.directory-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.directory-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.directory-columns h3 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.directory-columns a {
  display: block;
  padding: 7px 0;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.directory-columns a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer {
  background: #08201b;
  color: rgba(255, 255, 255, 0.76);
  padding: 28px 0;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1080px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    display: none;
    align-items: stretch;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav {
    display: grid;
    gap: 4px;
  }

  .site-nav > a,
  .nav-group > button {
    width: 100%;
    justify-content: space-between;
    padding: 0 12px;
  }

  .dropdown {
    position: static;
    width: auto;
    display: none;
    margin: 0 0 6px;
    padding: 0 0 0 12px;
    border: 0;
    border-left: 2px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-group.open .dropdown {
    display: grid;
  }

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

@media (max-width: 860px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split,
  .split.reverse,
  .directory-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 78px 0 34px;
  }

  .hero-panel {
    max-width: 420px;
  }

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

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

  .payment-inner,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .photo-rail {
    grid-template-columns: 1fr;
  }

  .photo-rail img,
  .photo-rail img:nth-child(2) {
    height: 300px;
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }

  .utility-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    padding: 8px 0;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .hero-panel img {
    height: 128px;
  }

  .quick-section,
  .story-section,
  .recreation-section,
  .gallery-section,
  .directory-section {
    padding: 62px 0;
  }

  .quick-grid,
  .directory-columns,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .quick-link {
    min-height: 150px;
  }
}
