:root {
  color-scheme: light;
  --bg: #f7f8f6;
  --surface: #ffffff;
  --surface-muted: #eef2ee;
  --ink: #18231f;
  --muted: #59645f;
  --line: #d7ddd8;
  --green: #214e3f;
  --green-dark: #16362c;
  --brick: #a54d35;
  --steel: #456171;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(24, 35, 31, 0.12);
  --max: 1120px;
  --header-height: 76px;
}

* {
  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.55;
}

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

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

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

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

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 14px clamp(18px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-size: 0.9rem;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 40px;
  padding: 9px 13px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--surface-muted);
  color: var(--green-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  position: absolute;
  left: 0;
  content: "";
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100svh - var(--header-height)));
  display: flex;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background-color: #26332f;
  background-image:
    linear-gradient(rgba(24, 35, 31, 0.3), rgba(24, 35, 31, 0.3)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px);
  background-position: center;
  background-size: cover;
}

.hero-subpage,
.hero-contact {
  min-height: 520px;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(14, 22, 19, 0.76), rgba(14, 22, 19, 0.34) 58%, rgba(14, 22, 19, 0.18)),
    linear-gradient(0deg, rgba(14, 22, 19, 0.55), transparent 45%);
}

.hero-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0 86px;
  color: var(--white);
}

.hero h1 {
  width: min(820px, 100%);
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  width: min(650px, 100%);
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--brick);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0b08c;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
}

.button-primary {
  background: var(--brick);
  color: var(--white);
}

.button-primary:hover {
  background: #8f3f2b;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.94);
  color: var(--green-dark);
  border-color: rgba(255, 255, 255, 0.65);
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0;
}

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

.section-heading h2,
.cta-band h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
}

.intro-copy {
  padding-top: 38px;
  border-top: 3px solid var(--brick);
}

.intro-copy p {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.feature-item,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feature-item {
  min-height: 230px;
  padding: 26px;
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}

.feature-item:nth-child(2) .feature-icon {
  background: var(--brick);
}

.feature-item:nth-child(3) .feature-icon {
  background: var(--steel);
}

.feature-item h3,
.detail-list h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.feature-item p,
.detail-list p {
  margin-bottom: 0;
}

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

.floor-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.floor-card:hover .floor-media {
  transform: scale(1.03);
}

.floor-media {
  min-height: 290px;
  background:
    linear-gradient(rgba(33, 78, 63, 0.18), rgba(33, 78, 63, 0.18)),
    repeating-linear-gradient(135deg, #dce4df 0 1px, #f4f6f3 1px 18px);
  background-position: center;
  background-size: cover;
  transition: transform 220ms ease;
}

.floor-body {
  display: grid;
  gap: 6px;
  padding: 24px;
}

.floor-kicker {
  color: var(--brick);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.floor-body strong {
  font-size: 1.28rem;
  line-height: 1.2;
}

.floor-body span:last-child {
  color: var(--muted);
}

.details-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: clamp(28px, 7vw, 90px);
}

.detail-list {
  display: grid;
  gap: 14px;
}

.detail-list > div {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.gallery-section {
  padding-top: 18px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.gallery-item {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface-muted);
  border: 1px solid var(--line);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.gallery-empty {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 24px;
  text-align: center;
  background:
    linear-gradient(rgba(69, 97, 113, 0.12), rgba(69, 97, 113, 0.12)),
    repeating-linear-gradient(135deg, #eef2ee 0 1px, #ffffff 1px 18px);
}

.gallery-empty span {
  max-width: 200px;
  color: var(--muted);
  font-weight: 800;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 76px;
  padding: 40px;
  border-radius: 8px;
  background: var(--green-dark);
  color: var(--white);
}

.cta-band .eyebrow {
  color: #f0b08c;
}

.cta-band h2 {
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.75fr);
  gap: clamp(30px, 7vw, 96px);
  align-items: start;
}

.contact-card {
  padding: 30px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 0 0 28px;
}

.contact-list div {
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 800;
}

.contact-card .button-secondary {
  color: var(--green-dark);
  border-color: var(--line);
  background: var(--surface-muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 46px);
  border-top: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    width: 100%;
  }

  .hero,
  .hero-subpage,
  .hero-contact {
    min-height: 590px;
  }

  .hero-inner {
    padding: 64px 0 70px;
  }

  .intro-grid,
  .details-layout,
  .contact-layout,
  .floor-grid,
  .feature-band {
    grid-template-columns: 1fr;
  }

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

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 52px;
    padding: 30px;
  }
}

@media (max-width: 560px) {
  .brand-text {
    max-width: 180px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 14vw, 3.4rem);
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .feature-item,
  .contact-card {
    padding: 22px;
  }

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

  .floor-media,
  .gallery-item,
  .gallery-item img,
  .gallery-empty {
    min-height: 230px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
