:root {
  --ink: #121212;
  --muted: #6f6a62;
  --paper: #f4efe6;
  --paper-2: #fffaf2;
  --rust: #b45b2b;
  --rust-dark: #833d1c;
  --charcoal: #1f211f;
  --line: rgba(18, 18, 18, .14);
  --white: #ffffff;
  --shadow: 0 22px 80px rgba(0, 0, 0, .2);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

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

a {
  color: inherit
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5vw;
  background: rgba(18, 18, 18, .7);
  backdrop-filter: blur(18px);
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.04em
}

.brand-mark {
  font-size: 1.5rem;
  color: var(--rust)
}

.brand-text {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .08em
}

.site-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: .92rem
}

.site-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, .86)
}

.site-nav a:hover {
  color: white
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, .35);
  padding: 10px 14px;
  border-radius: 999px
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, .35);
  color: white;
  padding: 8px 12px;
  border-radius: 999px
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: white;
  padding: 120px 5vw 70px
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .42), rgba(0, 0, 0, .16));
  z-index: 1
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 840px
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 800;
  color: var(--rust);
  margin: 0 0 12px
}

.hero h1 {
  font-size: clamp(3.25rem, 9vw, 7.5rem);
  line-height: .88;
  margin: 0 0 24px;
  letter-spacing: -.08em
}

.hero-copy {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  max-width: 730px;
  color: rgba(255, 255, 255, .9);
  margin: 0 0 32px
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  cursor: pointer
}

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

.primary:hover {
  background: var(--rust-dark)
}

.secondary {
  background: rgba(255, 255, 255, .12);
  color: white;
  border: 1px solid rgba(255, 255, 255, .3)
}

.hero-card {
  position: absolute;
  right: 5vw;
  bottom: 70px;
  z-index: 2;
  background: rgba(244, 239, 230, .92);
  color: var(--ink);
  padding: 22px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 5px;
  min-width: 260px
}

.hero-card strong {
  font-size: 1.05rem
}

.hero-card span {
  color: var(--muted);
  font-size: .95rem
}

.section-pad {
  padding: 90px 5vw
}

.narrow {
  max-width: 1000px;
  margin: auto
}

.snapshot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--charcoal);
  padding-top: 0;
  padding-bottom: 0
}

.stat {
  background: var(--paper);
  padding: 44px 24px;
  text-align: center
}

.stat span {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.08em
}

.stat p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700
}

.intro h2,
.section-heading h2,
.split h2,
.quote h2 {
  font-size: clamp(2rem, 5vw, 4.25rem);
  line-height: 1;
  letter-spacing: -.06em;
  margin: 0
}

.intro p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 760px
}

.section-heading {
  margin-bottom: 34px
}

.card-grid {
  display: grid;
  gap: 18px
}

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

.card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end
}

.card h3,
.use-card h3,
.feature-list h3 {
  font-size: 1.35rem;
  letter-spacing: -.03em;
  margin: 0 0 10px
}

.card p,
.use-card li,
.feature-list p {
  color: var(--muted)
}

.dark {
  background: var(--charcoal);
  color: white
}

.dark .eyebrow {
  color: #e08a56
}

.dark p,
.dark li {
  color: rgba(255, 255, 255, .72)
}

.split {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 70px
}

.split p {
  font-size: 1.08rem
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.use-card {
  border: 1px solid var(--line);
  background: var(--paper-2);
  border-radius: 26px;
  padding: 28px
}

.use-card ul {
  margin: 16px 0 0;
  padding-left: 18px
}

.use-card li {
  margin: 7px 0
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line)
}

.feature-list div {
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.feature-list span {
  color: var(--rust);
  font-weight: 800
}

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

.gallery-item {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  border-radius: 18px;
  min-height: 190px
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2
}

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

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

.floorplan-frame {
  display: block;
  background: white;
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .12);
  border: 1px solid var(--line)
}

.floorplan-frame img {
  width: 100%;
  border-radius: 18px
}

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

.faq details {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 20px
}

.faq summary {
  font-weight: 800;
  cursor: pointer
}

.quote {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 50px;
  align-items: start
}

.contact-card {
  margin-top: 28px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px
}

.quote-form {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  display: grid;
  gap: 16px
}

.quote-form label {
  font-weight: 800;
  font-size: .9rem
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: white
}

.quote-form textarea {
  resize: vertical
}

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

.site-footer {
  background: #0e0f0e;
  color: white;
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: 30px;
  padding: 38px 5vw
}

.site-footer p {
  color: rgba(255, 255, 255, .68);
  margin: 6px 0
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, .9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vw
}

.lightbox.is-open {
  display: flex
}

.lightbox img {
  max-height: 86vh;
  max-width: 92vw;
  border-radius: 18px
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: white;
  border: 0;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 28px;
  cursor: pointer
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 74px;
    right: 5vw;
    background: #111;
    padding: 18px;
    border-radius: 18px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow)
  }

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

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px
  }

  .hero {
    align-items: center
  }

  .snapshot,
  .four,
  .use-grid,
  .feature-list,
  .gallery-grid,
  .faq-grid,
  .quote,
  .split,
  .site-footer {
    grid-template-columns: 1fr
  }

  .gallery-item.large {
    grid-column: auto;
    grid-row: auto
  }

  .feature-list {
    border-left: 0
  }

  .feature-list div {
    border-left: 1px solid var(--line)
  }

  .section-pad {
    padding: 68px 5vw
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 5rem)
  }
}

@media (max-width: 560px) {
  .hero {
    padding-bottom: 42px
  }

  .brand-text {
    display: none
  }

  .site-header {
    padding: 14px 5vw
  }

  .hero-actions .button {
    width: 100%
  }

  .stat {
    text-align: left
  }

  .card,
  .use-card {
    min-height: auto
  }

  .gallery-item {
    min-height: 160px
  }

  .quote-form {
    padding: 18px
  }
}

.location-content {
  display: grid;
  grid-template-columns: 2fr 320px;
  gap: 32px;
  align-items: center;
}

.location-map {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(0,0,0,.12);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.location-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  height: fit-content;
}

@media (max-width: 980px) {
  .location-content {
    grid-template-columns: 1fr;
  }

  .location-card {
    margin-top: 20px;
  }
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  font-size: 36px;
  z-index: 51;
}

.lightbox-prev {
  left: 32px;
}

.lightbox-next {
  right: 32px;
}

.seo-hero {
  background-image: url("assets/images/Aerial01.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}