:root {
  color-scheme: light;
  --bg: #f4f6f2;
  --bg-alt: #e8efe9;
  --surface: #ffffff;
  --surface-soft: #f8faf7;
  --ink: #17211c;
  --muted: #59645d;
  --line: #ccd8cf;
  --brand: #1f5c45;
  --brand-strong: #143e30;
  --accent: #9b3f2f;
  --accent-strong: #783023;
  --teal: #126a70;
  --danger: #a32121;
  --success: #166534;
  --shadow: 0 18px 42px rgba(23, 33, 28, 0.11);
  --maxw: 1400px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    linear-gradient(180deg, rgba(232, 239, 233, 0.9), rgba(244, 246, 242, 0.95) 34%, #fff 100%);
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p,
li,
td,
th,
a,
button {
  overflow-wrap: anywhere;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.65rem 0.85rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.shell {
  width: min(var(--maxw), calc(100% - 2.5rem));
  margin-inline: auto;
}

.shell-narrow {
  width: min(980px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(31, 92, 69, 0.18);
  background: rgba(244, 246, 242, 0.92);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
  min-width: 0;
}

.brand-title {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.18;
}

.brand-sub {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  padding: 0.5rem 0.78rem;
  font-weight: 800;
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.3rem;
}

.nav-menu a {
  text-decoration: none;
  border-radius: 999px;
  padding: 0.42rem 0.62rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a[aria-current="page"] {
  background: rgba(31, 92, 69, 0.11);
}

.nav-menu .cta-link {
  background: var(--accent);
  color: #fff;
}

.nav-menu .cta-link:hover,
.nav-menu .cta-link:focus-visible {
  background: var(--accent-strong);
}

.page {
  padding-bottom: 0; /* prevent light background gap before footer */
}

.hero {
  padding: clamp(2rem, 5vw, 5rem) 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1 {
  margin: 0;
  font-size: clamp(2.05rem, 5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-lede {
  margin: 1rem 0 0;
  max-width: 74ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.page-updated {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.badge-row {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.25rem 0.65rem;
  border: 1px solid rgba(18, 106, 112, 0.22);
  border-radius: 999px;
  background: rgba(18, 106, 112, 0.08);
  color: #0d555a;
  font-size: 0.8rem;
  font-weight: 800;
}

.actions,
.section-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.section-ctas {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  max-width: 100%;
  border-radius: 8px;
  padding: 0.72rem 1rem;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
}

.button-primary,
button[type="submit"] {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.button-primary:hover,
.button-primary:focus-visible,
button[type="submit"]:hover,
button[type="submit"]:focus-visible {
  background: var(--brand-strong);
  border-color: var(--brand-strong);
}

.button-secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--brand);
  color: var(--brand-strong);
}

.hero-media,
.image-frame {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-media img {
  min-height: 420px;
  object-fit: cover;
}

.hero-media.image-contain img {
  object-fit: contain;
  background: #f8faf7;
}

.section {
  padding: clamp(2.3rem, 5vw, 4.2rem) 0;
}

.section-muted {
  background: var(--bg-alt);
}

.section-dark {
  background: var(--brand-strong);
  color: #fff;
}

.section-dark .section-copy,
.section-dark .section-intro,
.section-dark .muted,
.section-dark .note {
  color: rgba(255, 255, 255, 0.84);
}

.section-head {
  max-width: 860px;
  margin-bottom: 1.6rem;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-title,
h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.22;
}

.section-copy,
.section-intro {
  margin: 0.85rem 0 0;
  color: var(--muted);
  max-width: 78ch;
}

.article-body {
  display: grid;
  gap: 0.9rem;
}

.section-muted .article-body {
  margin-bottom: 1rem; /* Creates breathing room before the next block */
}

.article-body p {
  margin: 0;
  color: var(--muted);
  max-width: 86ch;
}

.article-body h3 {
  margin-top: 0.6rem;
}

.article-body a {
  color: var(--brand-strong);
  font-weight: 800;
}

.center .section-copy,
.center .section-intro {
  margin-inline: auto;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.stat-card,
.info-card,
.media-card,
.floor-card,
.faq-item,
.form-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.stat-card,
.info-card {
  padding: 1rem;
}

.stat-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-value {
  margin: 0.25rem 0 0;
  font-size: 1.18rem;
  line-height: 1.24;
  font-weight: 900;
}

.card-copy {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: center;
}

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

.list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.62rem;
}

.list li {
  position: relative;
  padding-left: 1.1rem;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--accent);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 0.78rem 0.85rem;
  border-bottom: 1px solid rgba(23, 33, 28, 0.12);
  text-align: left;
  vertical-align: top;
}

th {
  background: #edf3ee;
  color: #25362d;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

tr:last-child td {
  border-bottom: 0;
}

.note {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.media-grid,
.floor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.media-grid {
  gap: 0.7rem; /* tighter spacing between gallery cards */
}

.media-card,
.floor-card {
  margin: 0;
  overflow: hidden;
}

.media-card img,
.floor-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.floor-card img {
  object-fit: contain;
  background: #f8faf7;
}

.media-card figcaption,
.floor-body {
  padding: 0.85rem;
}

.media-card figcaption {
  color: var(--muted);
  font-size: 0.94rem;
}

.floor-body p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: #fff;
  color: var(--ink);
  padding: 0.9rem 1rem;
  text-align: left;
  font-weight: 900;
}

.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--brand);
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.faq-answer p,
.faq-answer ul {
  margin: 0.6rem 0 0;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.cta-band {
  text-align: center;
  padding: clamp(2.2rem, 4vw, 3.4rem) 0;
  background: var(--brand-strong);
  color: #fff;
}

.cta-band p {
  max-width: 720px;
  margin: 0.75rem auto 0;
  color: rgba(255, 255, 255, 0.84);
}

.cta-band .button-primary {
  background: #fff;
  color: var(--brand-strong);
  border-color: #fff;
}

.cta-band .button-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.site-footer {
  padding: 2.4rem 0;
  background: #111a15;
  color: #dbe5de;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-bottom: 1rem;
}

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

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
}

.disclaimer {
  margin: 0.65rem 0 0;
  color: #c1cec6;
  font-size: 0.9rem;
}

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

.form-card {
  padding: 1rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field.full,
.button.full,
.form-status.full,
.interest-list {
  grid-column: 1 / -1;
}

label,
.field-label {
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0.72rem 0.8rem;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.interest-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  border: 0;
  padding: 0;
  margin: 0;
}

.interest-list legend {
  width: 100%;
  margin-bottom: 0.2rem;
  font-weight: 800;
}

.check-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.check-chip input {
  width: auto;
}

.form-status {
  border-radius: 8px;
  padding: 0.8rem;
  font-weight: 800;
}

.form-status.success {
  border: 1px solid rgba(22, 101, 52, 0.25);
  background: rgba(22, 101, 52, 0.08);
  color: var(--success);
}

.form-status.error {
  border: 1px solid rgba(163, 33, 33, 0.25);
  background: rgba(163, 33, 33, 0.08);
  color: var(--danger);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    top: calc(100% + 0.45rem);
    display: none;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-menu a {
    border-radius: 8px;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .split.reverse,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    min-height: 280px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) {
  .sticky-desktop-frame {
    position: sticky;
    top: 6.2rem;
    align-self: start;
  }
}

@media (max-width: 640px) {
  .shell,
  .shell-narrow {
    width: min(100% - 1.5rem, var(--maxw));
  }

  .brand-sub {
    display: none;
  }

  .nav-menu.is-open {
    grid-template-columns: 1fr;
  }

  .actions .button,
  .section-ctas .button {
    width: 100%;
  }

  table.is-responsive-table {
    min-width: 0;
  }

  table.is-responsive-table thead {
    display: none;
  }

  table.is-responsive-table,
  table.is-responsive-table tbody,
  table.is-responsive-table tr,
  table.is-responsive-table td {
    display: block;
    width: 100%;
  }

  table.is-responsive-table tr {
    border-bottom: 1px solid var(--line);
  }

  table.is-responsive-table td {
    display: grid;
    grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
    gap: 0.75rem;
  }

  table.is-responsive-table td::before {
    content: attr(data-label);
    color: var(--ink);
    font-weight: 900;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
