:root {
  color-scheme: light;
  --forest: #10221d;
  --leaf: #2f675a;
  --stone: #eef0eb;
  --paper: #fbfaf6;
  --ink: #17221f;
  --muted: #69736f;
  --line: rgba(16, 34, 29, 0.14);
  --gold: #c69b52;
  --shadow: 0 18px 44px rgba(16, 34, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.construction-page {
  min-height: 100vh;
  overflow: hidden;
  background: #080806;
}

.construction-screen {
  display: grid;
  width: 100vw;
  height: 100vh;
  min-height: 100svh;
  place-items: center;
  background: #080806;
}

.construction-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-aspect-ratio: 3 / 2) {
  .construction-image {
    object-fit: contain;
  }
}

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

button,
input,
textarea {
  font: inherit;
}

.app-shell {
  min-height: 100vh;
  padding-bottom: 78px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
}

.call-button,
.ghost-button,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  padding: 0 16px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
}

.call-button,
.primary-action {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 10px 24px rgba(16, 34, 29, 0.18);
}

.secondary-action,
.ghost-button {
  background: rgba(255, 255, 255, 0.62);
  border-color: var(--line);
  color: var(--forest);
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--forest);
}

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

.hero-photo {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(16, 34, 29, 0.18), rgba(16, 34, 29, 0.82)),
    url("assets/f3048eac-4503-45a6-a580-99c84bcc28b6.JPG");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(880px, 100%);
  padding: 96px 20px 38px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 14vw, 6.8rem);
  font-weight: 500;
  line-height: 0.9;
}

.hero p:not(.eyebrow) {
  max-width: 610px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.quick-facts article {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.quick-facts article:last-child {
  border-right: 0;
}

.quick-facts span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
}

.quick-facts strong {
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
  font-size: 0.96rem;
}

.section {
  padding: 48px 20px;
}

.section h2 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 500;
  line-height: 1;
}

.section > p:not(.eyebrow),
.intro p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.highlights {
  display: grid;
  gap: 12px;
  padding-top: 6px;
}

.highlights article,
.gallery-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(16, 34, 29, 0.06);
}

.highlights article {
  padding: 20px;
}

.highlights span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
}

.highlights h3 {
  margin: 8px 0;
  font-size: 1.25rem;
}

.highlights p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

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

.gallery-item {
  overflow: hidden;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

.gallery-thumb {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
}

.gallery-item strong {
  display: block;
  padding: 12px;
  font-size: 0.9rem;
}

.map-panel {
  display: grid;
  gap: 18px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.map-visual {
  position: relative;
  min-height: 260px;
  background:
    linear-gradient(90deg, rgba(47, 103, 90, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(47, 103, 90, 0.1) 1px, transparent 1px),
    #eef3ef;
  background-size: 42px 42px;
}

.road {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(47, 103, 90, 0.28);
}

.road-one {
  left: -20%;
  top: 48%;
  width: 140%;
  height: 18px;
  transform: rotate(-8deg);
}

.road-two {
  left: 50%;
  top: -10%;
  width: 16px;
  height: 120%;
  transform: rotate(18deg);
}

.road-three {
  left: 8%;
  bottom: 20%;
  width: 86%;
  height: 12px;
  transform: rotate(24deg);
}

.map-pin {
  position: absolute;
  left: 52%;
  top: 42%;
  z-index: 2;
  width: 24px;
  height: 24px;
  border: 6px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: var(--gold);
  box-shadow: 0 10px 24px rgba(16, 34, 29, 0.28);
  transform: rotate(-45deg);
}

.map-copy {
  padding: 0 20px 22px;
}

.map-copy strong {
  display: block;
  font-size: 1.25rem;
}

.map-copy p {
  color: var(--muted);
}

.map-copy a,
.contact-links a {
  color: var(--leaf);
  font-weight: 800;
}

.contact-section {
  background: var(--forest);
  color: #fff;
}

.contact-section h2 {
  color: #fff;
}

.contact-form {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin-top: 22px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form .primary-action {
  width: 100%;
  margin-top: 4px;
  background: #fff;
  color: var(--forest);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.contact-links a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.bottom-nav {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 620px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(16, 34, 29, 0.16);
  backdrop-filter: blur(18px);
}

.bottom-nav a {
  display: grid;
  min-height: 54px;
  place-items: center;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.bottom-nav a.active {
  color: var(--forest);
  background: rgba(47, 103, 90, 0.1);
}

.gallery-dialog {
  width: min(720px, calc(100vw - 28px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: #fff;
  box-shadow: var(--shadow);
}

.gallery-dialog::backdrop {
  background: rgba(16, 34, 29, 0.62);
}

.dialog-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.dialog-top button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.gallery-dialog img {
  display: block;
  width: 100%;
  max-height: 68vh;
  object-fit: cover;
}

.gallery-dialog p {
  margin: 0;
  padding: 14px 16px 18px;
  color: var(--muted);
}

@media (min-width: 760px) {
  .topbar,
  .hero-content,
  .section {
    padding-left: max(28px, calc((100vw - 1080px) / 2));
    padding-right: max(28px, calc((100vw - 1080px) / 2));
  }

  .hero {
    min-height: 76vh;
  }

  .quick-facts,
  .highlights,
  .gallery-grid,
  .map-panel {
    width: min(1080px, calc(100vw - 56px));
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .map-panel {
    grid-template-columns: 1.45fr 1fr;
    align-items: stretch;
  }

  .map-copy {
    align-self: center;
    padding: 28px;
  }
}

@media (max-width: 430px) {
  .quick-facts {
    grid-template-columns: 1fr;
  }

  .quick-facts article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .ghost-button {
    width: 100%;
  }
}
