:root {
  --ink: #151515;
  --muted: #65615c;
  --paper: #f8f5ef;
  --soft: #ebe4d7;
  --line: #d8cfc0;
  --sea: #0f616b;
  --sea-dark: #083b42;
  --brick: #b46949;
  --sage: #69785b;
  --gold: #c89b58;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(18, 18, 18, 0.18);
  --display: "Oswald", "Arial Narrow", Arial, sans-serif;
  --text: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--text);
  line-height: 1.55;
  text-rendering: geometricPrecision;
}

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

a {
  color: inherit;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon,
.fact-icon,
.highlight-icon,
.contact-icon {
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon {
  width: 1.08em;
  height: 1.08em;
}

.topbar {
  position: fixed;
  inset: 14px clamp(14px, 3vw, 42px) auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 24px);
  padding: 8px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(18, 19, 19, 0.62), rgba(18, 19, 19, 0.42));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.brand,
.nav a,
.button,
.contact-phone {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.08);
  line-height: 1;
  letter-spacing: 0;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.brand:hover,
.nav-link:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.13);
}

.brand span {
  font-size: 0.9rem;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding-right: 0;
  font-weight: 750;
  font-size: 0.9rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.04);
  opacity: 1;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.brand .icon,
.nav-link .icon {
  width: 1rem;
  height: 1rem;
  color: #f2c59d;
  stroke-width: 1.9;
}

.nav-call {
  position: relative;
  top: auto;
  right: auto;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: var(--white);
  background-color: #c91d28;
  box-shadow:
    0 0 0 0 rgba(201, 29, 40, 0.46),
    0 14px 34px rgba(120, 14, 21, 0.34);
  opacity: 1;
  overflow: visible;
  isolation: isolate;
  transform-origin: center;
  will-change: transform, background-color, box-shadow;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  animation: phoneButtonPulse 2.45s ease-in-out infinite;
}

.nav-call::before {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  border-radius: inherit;
  border: 2px solid rgba(255, 60, 72, 0.72);
  animation: phoneRingPulse 2.45s ease-out infinite;
}

.nav-call .icon {
  color: var(--white);
  transform-origin: center;
  animation: phoneIconBeat 2.45s ease-in-out infinite;
}

.nav-call::selection,
.nav-call *::selection {
  color: var(--white);
  background: transparent;
}

@keyframes phoneButtonPulse {
  0%,
  100% {
    background-color: #b60018;
    transform: scale(1);
    box-shadow:
      0 0 0 0 rgba(255, 60, 72, 0.62),
      0 14px 34px rgba(120, 14, 21, 0.36);
  }

  50% {
    background-color: #ff3344;
    transform: scale(1.045);
    box-shadow:
      0 0 0 18px rgba(255, 60, 72, 0),
      0 20px 48px rgba(120, 14, 21, 0.5);
  }
}

@keyframes phoneRingPulse {
  0% {
    opacity: 0.9;
    transform: scale(0.92);
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(1.34);
  }
}

@keyframes phoneIconBeat {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  40% {
    transform: rotate(-10deg) scale(1.2);
  }

  70% {
    transform: rotate(8deg) scale(1.08);
  }
}

.hero {
  position: relative;
  min-height: clamp(620px, 84vh, 720px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-floorplan {
  background: #242321;
}

.hero-floorplan img {
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: saturate(0.98) contrast(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 9, 10, 0.78), rgba(8, 9, 10, 0.32) 50%, rgba(8, 9, 10, 0.08)),
    linear-gradient(180deg, rgba(8, 9, 10, 0.18), rgba(8, 9, 10, 0.68));
}

.hero-floorplan::after {
  background:
    linear-gradient(90deg, rgba(8, 9, 10, 0.82), rgba(8, 9, 10, 0.58) 37%, rgba(8, 9, 10, 0.24) 70%, rgba(8, 9, 10, 0.16)),
    linear-gradient(180deg, rgba(8, 9, 10, 0.18), rgba(8, 9, 10, 0.58));
}

.hero-copy {
  width: min(920px, calc(100% - 36px));
  margin: 0 0 clamp(86px, 12vh, 116px) clamp(18px, 7vw, 96px);
  color: var(--white);
}

.kicker,
.section-label {
  margin: 0 0 12px;
  color: var(--brick);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .kicker {
  color: #f2c59d;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6.4vw, 5.35rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
  text-wrap: balance;
}

.hero-distance {
  width: fit-content;
  margin: 12px 0 0;
  padding: 8px 14px 10px;
  border-left: 4px solid var(--gold);
  color: #f5d3a8;
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--display);
  font-size: clamp(1.55rem, 3.2vw, 2.65rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.03rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, #dc2834, #a7131d);
  box-shadow: 0 14px 32px rgba(120, 14, 21, 0.32);
}

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

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.12);
}

.facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(118px, 1fr));
  gap: 12px;
  width: min(760px, calc(100% - 36px));
  max-width: calc(100% - 36px);
  margin: clamp(22px, 4vw, 38px) auto clamp(54px, 7vw, 82px);
  padding: 10px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(216, 207, 192, 0.76);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(18, 18, 18, 0.1);
  backdrop-filter: blur(16px);
}

.facts article {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto;
  place-items: center;
  gap: 5px;
  min-width: 0;
  min-height: 112px;
  padding: 14px 10px 13px;
  border: 1px solid rgba(15, 97, 107, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0) 46%),
    linear-gradient(145deg, rgba(248, 245, 239, 0.94), rgba(235, 228, 215, 0.7));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.fact-icon {
  width: 26px;
  height: 26px;
  margin-bottom: 3px;
  color: var(--sea);
  stroke-width: 1.55;
}

.facts span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.facts strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 7vw, 84px);
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.intro {
  padding: clamp(76px, 10vw, 120px) 0 42px;
}

h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.15rem, 4.6vw, 4rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.copy p,
.feature-copy p,
.contact p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.06rem;
}

.copy p:last-child,
.feature-copy p:last-child {
  margin-bottom: 0;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1120px, calc(100% - 36px));
  margin: 28px auto 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.highlights article {
  min-width: 0;
  padding: 26px;
  background: #f7f2e9;
}

.highlight-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.highlight-icon {
  width: 38px;
  height: 38px;
  padding: 7px;
  color: var(--sea);
  border: 1px solid rgba(15, 97, 107, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  stroke-width: 1.55;
}

.highlight-top span {
  color: var(--gold);
  font-family: var(--display);
  font-weight: 700;
}

.highlights h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

.feature {
  align-items: center;
  padding: clamp(68px, 9vw, 118px) 0;
}

.feature-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-media img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
}

.feature-copy {
  padding: clamp(0px, 3vw, 28px) 0;
}

.gallery-section,
.floorplan,
.map-section,
.contact {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

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

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

.tile,
.plan-frame {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--soft);
  cursor: zoom-in;
}

.tile {
  aspect-ratio: 4 / 3;
}

.tile img,
.plan-frame img {
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.tile:is(:hover, :focus-visible) img,
.plan-frame:is(:hover, :focus-visible) img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.tile span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(23, 32, 38, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
}

.tile.wide {
  grid-column: auto;
  grid-row: auto;
}

.tile.tall {
  grid-row: auto;
}

.floorplan {
  padding: clamp(72px, 9vw, 118px) 0;
}

.plan-frame {
  border: 1px solid var(--line);
  background: var(--white);
}

.plan-frame img {
  aspect-ratio: 16 / 10;
  object-fit: contain;
}

.map-section {
  padding: 0 0 clamp(54px, 8vw, 92px);
}

.map-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 207, 192, 0.88);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 18px 48px rgba(18, 18, 18, 0.1);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 44vw, 520px);
  border: 0;
  filter: saturate(0.94) contrast(0.98);
}

.map-address {
  position: absolute;
  left: clamp(14px, 3vw, 24px);
  bottom: clamp(14px, 3vw, 24px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 28px);
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  color: var(--white);
  background: rgba(18, 23, 26, 0.76);
  box-shadow: 0 14px 32px rgba(18, 18, 18, 0.22);
  backdrop-filter: blur(14px);
  font-weight: 800;
  text-decoration: none;
}

.map-address .icon {
  color: #f2c59d;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 48px);
  padding: clamp(28px, 5vw, 46px) 0;
  color: var(--ink);
  background: transparent;
  border-top: 1px solid rgba(21, 21, 21, 0.12);
  border-bottom: 1px solid rgba(21, 21, 21, 0.12);
}

.contact h2 {
  max-width: 760px;
  margin-bottom: 8px;
  font-size: clamp(1.82rem, 3.4vw, 2.8rem);
  line-height: 1.04;
}

.contact .section-label {
  color: var(--brick);
}

.contact p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

.contact-phone {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-width: min(320px, 100%);
  padding: 10px 18px 10px 10px;
  border: 1px solid rgba(182, 0, 24, 0.2);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 36px rgba(18, 18, 18, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-phone:hover {
  transform: translateY(-2px);
  border-color: rgba(182, 0, 24, 0.36);
  box-shadow: 0 20px 44px rgba(18, 18, 18, 0.12);
}

.contact-icon {
  grid-row: span 2;
  align-self: center;
  width: 44px;
  height: 44px;
  padding: 11px;
  margin-right: 12px;
  color: var(--white);
  border: 0;
  border-radius: 999px;
  background: #d92231;
  box-shadow: 0 10px 22px rgba(217, 34, 49, 0.28);
}

.contact-phone span {
  color: var(--brick);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-phone strong {
  font-family: var(--display);
  color: #b60018;
  font-size: clamp(1.35rem, 2.4vw, 1.78rem);
  font-weight: 700;
  line-height: 1.08;
}

.site-footer {
  display: flex;
  justify-content: center;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 22px 0 34px;
  color: #7b8593;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
}

.lightbox {
  width: min(1080px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #101417;
  color: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.lightbox img {
  max-height: calc(100vh - 108px);
  object-fit: contain;
  background: #101417;
}

.lightbox p {
  margin: 0;
  padding: 13px 18px 16px;
  font-weight: 850;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.52);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 900px) {
  .topbar {
    inset: 12px 12px auto;
    align-items: center;
    justify-content: space-between;
    padding: 6px;
  }

  .nav-link {
    display: none;
  }

  .nav {
    padding-right: 0;
  }

  .hero {
    min-height: 700px;
  }

  .hero-copy {
    margin-left: 18px;
  }

  h1 {
    font-size: clamp(2.75rem, 11vw, 4.8rem);
  }

  .facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(420px, calc(100% - 28px));
  }

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

  .section-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .contact-phone {
    justify-self: start;
  }

}

@media (max-width: 620px) {
  .topbar {
    inset: 12px 12px auto;
    padding: 5px;
  }

  .brand {
    min-height: 38px;
    padding: 0 12px;
    gap: 7px;
  }

  .brand span {
    font-size: 0.84rem;
  }

  .nav-call {
    top: auto;
    right: auto;
    padding: 9px 12px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 660px;
  }

  .hero-floorplan img {
    object-position: center;
    opacity: 1;
  }

  .hero-floorplan::after {
    background:
      linear-gradient(180deg, rgba(8, 9, 10, 0.18), rgba(8, 9, 10, 0.42) 42%, rgba(8, 9, 10, 0.86)),
      linear-gradient(90deg, rgba(8, 9, 10, 0.58), rgba(8, 9, 10, 0.24));
  }

  .hero-copy {
    width: calc(100% - 28px);
    margin: 0 14px 78px;
  }

  .hero-distance {
    width: auto;
    max-width: 100%;
    font-size: clamp(1.55rem, 9vw, 2.25rem);
  }

  .button {
    width: 100%;
  }

  .facts {
    gap: 8px;
    padding: 8px;
  }

  .facts article {
    min-height: 94px;
    padding: 12px 8px 10px;
  }

  .fact-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 0;
  }

  .facts span {
    font-size: 0.62rem;
  }

  .facts strong {
    font-size: 1.05rem;
  }

  .highlight-top {
    margin-bottom: 16px;
  }

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

  .tile.wide,
  .tile.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .section-heading {
    display: block;
  }

  .site-footer {
    text-align: center;
  }
}
