:root {
  --color-bg: #d7effc;
  --color-nav: #74bcff;
  --color-nav-hover: #2d6d3c;
  --color-text: #000;
  --color-muted: #334;
  --color-surface: rgba(255, 255, 255, 0.9);
  --color-border: rgba(0, 0, 0, 0.12);
  --color-footer-left-start: #d7effc;
  --color-footer-left-end: #fff;
  --color-link: #144ca1;
  --color-link-hover: #0d356f;
  --color-success-bg: #e7f7ec;
  --color-success-border: #2d6d3c;
  --color-error-bg: #fdeaea;
  --color-error-border: #a12b2b;
  --shadow-soft: 0 12px 24px rgba(0, 0, 0, 0.08);
  --font-base: "Roboto", Arial, sans-serif;
  --max-width: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-base);
  background: var(--color-bg) url("/assets/images/pond-watermark.png") center top / cover fixed no-repeat;
}

a {
  color: var(--color-link);
}

a:hover {
  color: var(--color-link-hover);
}

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

iframe {
  max-width: 100%;
}

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

.site-header {
  padding-top: 5px;
}

.site-nav {
  position: relative;
  background: var(--color-nav);
  border-radius: 5px;
}

.site-nav__toggle {
  display: none;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-radius: 5px;
  background: var(--color-nav);
  color: #fff;
  font: inherit;
  font-weight: 600;
  text-align: right;
  cursor: pointer;
}

.site-nav__toggle:hover,
.site-nav.is-open .site-nav__toggle {
  background: var(--color-nav-hover);
  color: #fff;
}

.site-nav__toggle span {
  margin-left: 8px;
}

.site-nav__menu,
.site-nav__submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__menu {
  display: flex;
  align-items: stretch;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  display: block;
  padding: 14px 20px;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.site-nav__link:hover,
.site-nav__item.is-open > .site-nav__link,
.site-nav__item.is-active > .site-nav__link {
  background: var(--color-nav-hover);
  color: #fff;
}

.site-nav__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  display: none;
  z-index: 10;
}

.site-nav__submenu .site-nav__link {
  padding: 12px 20px;
  font-size: 12px;
  background: var(--color-nav);
  border-radius: 5px;
  border-bottom: 1px solid #f2f2f2;
}

.site-nav__item:hover > .site-nav__submenu,
.site-nav__item.is-open > .site-nav__submenu {
  display: block;
}

.page-main {
  padding: 26px 0 8px;
}

.page-title {
  margin: 0 0 24px;
  text-align: center;
  font-size: 39px;
  line-height: 1.2;
  font-weight: 600;
}

.page-title--left {
  text-align: left;
}

.section-title {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
}

.section-subtitle {
  margin: 0 0 20px;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
}

.section-block {
  margin-bottom: 24px;
}

.page-main .section-block:last-child {
  margin-bottom: 0;
}

.surface {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.surface--pad {
  padding: 24px;
}

.prose {
  font-size: 16px;
  line-height: 1.65;
}

.prose p,
.prose ul,
.prose ol {
  margin: 0 0 16px;
}

.prose ul,
.prose ol {
  padding-left: 22px;
}

.prose li {
  margin-bottom: 8px;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.two-column--reverse {
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
}

.two-column--equal {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.media-stack--narrow {
  width: 80%;
  margin: 0 auto;
}

.stack {
  display: grid;
  gap: 20px;
}

.image-frame {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.image-frame img {
  width: 100%;
  height: auto;
}

.image-frame--border img {
  border: 1px solid rgba(0, 0, 0, 0.7);
  border-radius: 10px;
}

.image-frame--border-thick img {
  border: 2px solid rgba(0, 0, 0, 0.7);
  border-radius: 10px;
}

.video-stack,
.video-grid {
  margin-bottom: 20px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

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

.summary-grid {
  align-items: stretch;
}

.list-columns-2 {
  columns: 2;
  column-gap: 32px;
}

.list-columns-2 li {
  break-inside: avoid;
}

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

.card-link {
  display: block;
  overflow: hidden;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.96);
  color: inherit;
}

.card-link:hover {
  color: inherit;
}

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

.card-link__body {
  padding: 16px 18px 18px;
}

.card-link__title {
  margin: 0;
  color: #000;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 600;
}

.package-hero {
  align-items: stretch;
}

.package-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 1fr;
  gap: 16px;
  align-self: start;
  height: 100%;
}

.package-media-grid .image-frame {
  height: 100%;
  min-height: 0;
}

.package-media-grid .image-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-row {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.feature-row__media {
  display: block;
}

.feature-row__media img {
  width: 100%;
  height: auto;
}

.feature-row__title {
  margin: 0;
  text-align: center;
  font-size: 39px;
  line-height: 1.15;
  font-weight: 600;
}

.feature-row__title a {
  color: #000;
  text-decoration: none;
}

.feature-row__title a:hover {
  color: #000;
}

.gallery-intro {
  width: 100%;
  max-width: none;
  margin: 0 auto 28px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(190, 220, 179, 0.55), transparent 38%),
    linear-gradient(180deg, rgba(255, 251, 242, 0.9) 0%, rgba(241, 248, 236, 0.88) 100%);
  border-color: rgba(61, 105, 57, 0.16);
  box-shadow: 0 18px 36px rgba(64, 89, 56, 0.12);
}

.gallery-intro .page-title {
  margin-bottom: 14px;
  color: #244829;
}

.gallery-intro__text {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  color: #375338;
  font-size: 18px;
  line-height: 1.7;
  white-space: normal;
}

.home-hero {
  align-items: start;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 20px;
}

.home-hero__panel {
  background:
    radial-gradient(circle at top left, rgba(255, 232, 236, 0.72), transparent 34%),
    radial-gradient(circle at bottom right, rgba(244, 232, 216, 0.52), transparent 32%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.96) 0%, rgba(252, 245, 237, 0.94) 100%);
  border-color: rgba(139, 105, 88, 0.18);
  box-shadow: 0 18px 38px rgba(102, 70, 54, 0.12);
}

.home-hero__eyebrow {
  margin: 0 0 12px;
  color: #8f5e63;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-hero__panel .page-title,
.home-hero__title {
  color: #5b3741;
}

.home-hero__lead {
  font-size: 18px;
  line-height: 1.8;
  color: #4c3940;
}

.home-hero__panel p:not(.home-hero__eyebrow) {
  color: #45383d;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  margin-bottom: 24px;
}

.home-hero__call {
  margin-top: 0;
}

.home-hero__button {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.home-hero__button--primary {
  background: linear-gradient(135deg, #8f5e63 0%, #ad7881 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(143, 94, 99, 0.22);
}

.home-hero__button--primary:hover {
  color: #fff;
}

.home-hero__button--secondary {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(143, 94, 99, 0.22);
  color: #6e4b54;
}

.home-hero__button--secondary:hover {
  color: #5b3741;
}

.home-hero__media {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: start;
  align-self: start;
  justify-self: end;
}

.home-hero__media .image-frame {
  border-radius: 18px;
  box-shadow: 0 18px 34px rgba(56, 41, 29, 0.16);
}

.home-hero__media .image-frame img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

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

.gallery-hub__card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(73, 103, 63, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.92) 0%, rgba(244, 249, 239, 0.9) 100%);
  box-shadow: 0 18px 40px rgba(53, 78, 48, 0.14);
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.gallery-hub__card:hover {
  color: inherit;
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(53, 78, 48, 0.18);
  border-color: rgba(61, 105, 57, 0.24);
}

.gallery-hub__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: rgba(90, 114, 80, 0.12);
}

.gallery-hub__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 30, 12, 0.04) 0%, rgba(18, 38, 18, 0.22) 100%);
}

.gallery-hub__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-hub__card:hover .gallery-hub__media img {
  transform: scale(1.04);
}

.gallery-hub__body {
  display: grid;
  gap: 10px;
  padding: 22px 22px 24px;
  position: relative;
}

.gallery-hub__body::before {
  content: "";
  width: 54px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(75, 121, 69, 0.85) 0%, rgba(126, 163, 94, 0.55) 100%);
}

.gallery-hub__eyebrow {
  margin: 0;
  color: #4b7945;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-hub__title {
  margin: 0;
  color: #213d22;
  font-size: 31px;
  line-height: 1.12;
  font-weight: 600;
}

.gallery-hub__text {
  margin: 0;
  color: #4f6650;
  font-size: 16px;
  line-height: 1.65;
}

.gallery-hub__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: #355e2e;
  font-size: 15px;
  font-weight: 700;
}

.gallery-hub__cta::after {
  content: "\203A";
  font-size: 18px;
  line-height: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 150px);
  justify-content: center;
  gap: 12px;
}

.gallery-item {
  display: block;
  overflow: hidden;
  width: 150px;
  height: 150px;
}

.gallery-item img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.2s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
}

.lightbox.is-open {
  display: flex;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.lightbox__figure {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.lightbox__image {
  display: block;
  max-width: 100%;
  max-height: min(82vh, 920px);
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  background: #fff;
}

.lightbox__caption {
  min-height: 1.5em;
  padding: 0 16px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}

.lightbox__close,
.lightbox__nav {
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox__close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  width: 48px;
  height: 48px;
  font-size: 30px;
  line-height: 1;
}

.lightbox__nav {
  width: 56px;
  height: 56px;
  font-size: 30px;
  line-height: 1;
}

.lightbox-open {
  overflow: hidden;
}

.poster {
  max-width: 768px;
  margin: 0 auto;
}

.poster img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.event-list {
  display: grid;
  gap: 18px;
}

.event-card {
  padding: 20px;
  height: 100%;
}

.event-card__title {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.2;
}

.event-card__meta {
  margin: 0 0 12px;
  font-size: 15px;
  color: var(--color-muted);
  font-weight: 600;
}

.event-card__description {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

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

.event-link-row {
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.event-link-row__media img {
  width: 100%;
  height: auto;
}

.event-link-row__title {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
}

.event-link-row__title a {
  color: #000;
  text-decoration: none;
}

.event-link-row__title a:hover {
  color: #000;
}

.social-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 20px;
  text-align: center;
  text-decoration: none;
}

.social-card img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.social-card__title {
  margin: 0;
  color: #000;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.hidden-fields-container {
  display: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  font: inherit;
  background: #fff;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.button {
  display: inline-block;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  background: #000;
  color: #fff;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  color: #fff;
}

.status-message {
  display: none;
  margin: 0 0 16px;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 600;
}

.status-message.is-visible {
  display: block;
}

.status-message.is-success {
  background: var(--color-success-bg);
  border-color: var(--color-success-border);
}

.status-message.is-error {
  background: var(--color-error-bg);
  border-color: var(--color-error-border);
}

.contact-details {
  display: grid;
  gap: 14px;
}

.detail-card {
  padding: 18px 20px;
}

.detail-card h2,
.detail-card h3,
.detail-card p {
  margin: 0;
}

.notice {
  text-align: center;
  font-style: italic;
}

.inline-map {
  float: right;
  margin: 0 0 12px 16px;
}

.inline-map img {
  width: 150px;
  height: 150px;
}

.divider {
  height: 1px;
  margin: 16px auto 24px;
  border: 0;
  background: rgba(0, 0, 0, 0.18);
}

.site-footer {
  margin-top: 0;
  margin-bottom: 5px;
}

.site-footer__inner {
  display: block;
}

.site-footer__left {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0;
  background: transparent;
}

.site-footer__right {
  display: none;
}

.social-link img {
  width: 20px;
  height: 20px;
}

.copyright {
  margin: 0;
  padding-left: 5px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: #000;
}

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

@media (max-width: 1024px) {
  body {
    background-attachment: scroll;
  }

  .two-column,
  .two-column--reverse,
  .two-column--equal,
  .contact-grid,
  .card-grid,
  .card-grid--3,
  .link-grid,
  .video-grid,
  .feature-row,
  .event-link-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 150px);
  }

  .lightbox__dialog {
    width: min(100%, 960px);
  }

  .card-link__title,
  .social-card__title {
    font-size: 24px;
  }

  .gallery-hub {
    grid-template-columns: 1fr;
  }

  .feature-row__media,
  .event-link-row__media {
    max-width: 170px;
    margin: 0 auto;
  }

  .feature-row__title,
  .event-link-row__title {
    font-size: 30px;
  }
}

@media (hover: none), (pointer: coarse) {
  .site-nav__toggle {
    display: block;
  }

  .site-nav__menu {
    display: none;
    flex-direction: column;
  }

  .site-nav.is-open .site-nav__menu {
    display: flex;
  }

  .site-nav__submenu {
    position: static;
    min-width: 0;
  }

  .site-nav__item:hover > .site-nav__submenu {
    display: none;
  }

  .site-nav__item.is-open > .site-nav__submenu {
    display: block;
  }

  .site-nav__link {
    padding: 14px 16px;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .page-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 20px;
  }

  .surface--pad {
    padding: 18px;
  }

  .gallery-intro__text {
    font-size: 16px;
  }

  .gallery-hub__title {
    font-size: 26px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 150px);
  }

  .package-media-grid {
    grid-template-columns: 1fr;
  }

  .lightbox {
    padding: 18px 12px;
  }

  .lightbox__dialog {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .lightbox__figure {
    order: 1;
  }

  .lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 48px;
    height: 48px;
  }

  .lightbox__nav--prev {
    left: 6px;
  }

  .lightbox__nav--next {
    right: 6px;
  }

  .lightbox__image {
    max-height: 74vh;
  }

  .lightbox__close {
    top: -8px;
    right: -4px;
    width: 42px;
    height: 42px;
    font-size: 26px;
  }

  .media-stack--narrow {
    width: 100%;
  }

  .home-hero__media {
    width: 100%;
  }

  .site-footer__inner {
    grid-template-columns: 75% 20%;
  }

  .site-footer__left {
    min-height: 31px;
    padding: 0 8px;
  }

  .copyright {
    font-size: 10px;
  }

  .inline-map {
    float: none;
    display: block;
    width: 150px;
    margin: 0 auto 12px;
  }

  .list-columns-2 {
    columns: 1;
  }
}
