:root {
  --bg: #f4f1e8;
  --bg-soft: #e8e2d2;
  --panel: rgba(255, 252, 246, 0.88);
  --panel-strong: #f8f4eb;
  --ink: #15261c;
  --ink-soft: #385145;
  --muted: #5f7268;
  --line: rgba(21, 38, 28, 0.12);
  --line-strong: rgba(21, 38, 28, 0.22);
  --accent: #bc8a42;
  --accent-strong: #8c5d1d;
  --accent-soft: rgba(188, 138, 66, 0.14);
  --dark: #15261c;
  --dark-soft: #20372a;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(21, 38, 28, 0.14);
  --shadow-soft: 0 12px 28px rgba(21, 38, 28, 0.08);
  --radius: 24px;
  --radius-sm: 18px;
  --max: 1180px;
  --grid-gap: 18px;
  --nav-height: 80px;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-body: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 20px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(188, 138, 66, 0.18), transparent 34%),
    linear-gradient(180deg, #f8f4ec 0%, #f2eee5 55%, #ece5d5 100%);
  color: var(--ink);
  line-height: 1.65;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

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

button {
  cursor: pointer;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus-visible {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  top: 16px;
  left: 16px;
  z-index: 3000;
  padding: 10px 14px;
  background: var(--dark);
  color: var(--white);
  border-radius: 10px;
}

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

h1,
h2,
h3,
h4 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.75rem);
}

p {
  margin: 0 0 16px;
  color: var(--ink-soft);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-tint {
  background: linear-gradient(180deg, rgba(255, 248, 235, 0.9), rgba(232, 226, 210, 0.82));
  border-top: 1px solid rgba(21, 38, 28, 0.06);
  border-bottom: 1px solid rgba(21, 38, 28, 0.06);
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(188, 138, 66, 0.2), transparent 34%),
    linear-gradient(180deg, #16281e 0%, #112018 100%);
  color: var(--white);
}

.section-dark p,
.section-dark li,
.section-dark .plan-copy p,
.section-dark .plan-label {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading-dark h2,
.section-heading-dark .eyebrow,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.eyebrow {
  margin-bottom: 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow-dark {
  color: var(--accent-strong);
}

.page-updated {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.page-updated time {
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px min(28px, 4vw);
  min-height: var(--nav-height);
  background: rgba(244, 241, 232, 0.78);
  border-bottom: 1px solid rgba(21, 38, 28, 0.08);
  backdrop-filter: blur(18px);
}

.site-nav.is-scrolled {
  background: rgba(248, 244, 235, 0.94);
  box-shadow: 0 10px 28px rgba(21, 38, 28, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
}

.brand-copy span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-menu a {
  text-decoration: none;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.nav-menu a:hover {
  color: var(--ink);
}

.nav-menu a[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  position: relative;
  height: calc(100vh - var(--nav-height));
  max-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #101b14;
}

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

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 16, 12, 0.92) 0%, rgba(8, 16, 12, 0.74) 45%, rgba(8, 16, 12, 0.48) 100%),
    linear-gradient(180deg, rgba(188, 138, 66, 0.14), transparent 55%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 390px);
  align-items: center;
  gap: 24px;
  height: 100%;
  padding: 36px 0 28px;
}

.hero-copy {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy h1,
.hero-copy h2,
.hero-copy h3,
.hero-copy p,
.hero-copy li {
  color: var(--white);
}

.hero-lead {
  max-width: 640px;
  font-size: 1.08rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 14px;
}

.hero-pills span,
.chip-list li {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-solid {
  background: var(--accent);
  color: #1b1408;
  box-shadow: 0 18px 28px rgba(140, 93, 29, 0.22);
}

.button-solid:hover {
  background: #c9974e;
}

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

.button-block {
  width: 100%;
}

.page-main {
  padding-bottom: 24px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: 56px;
  padding-bottom: 56px;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left top, rgba(188, 138, 66, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 251, 244, 0.72), rgba(243, 237, 225, 0.36));
  pointer-events: none;
}

.page-hero .shell {
  position: relative;
  z-index: 1;
}

.page-kicker {
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 0.98;
  margin-bottom: 20px;
}

.page-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  column-gap: calc(var(--grid-gap) * 2);
  row-gap: calc(var(--grid-gap) * 2);
  align-items: start;
}

.contact-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
}

.media-card,
.metric-card,
.info-card,
.text-card,
.quote-card,
.review-card,
.contact-card,
.notice-card,
.contact-form-panel,
.gallery-page-item,
.floor-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(21, 38, 28, 0.08);
  box-shadow: var(--shadow-soft);
}

.media-card {
  overflow: hidden;
}

.media-card img,
.gallery-page-item img,
.floor-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.metric-grid,
.info-grid,
.floor-grid,
.review-grid,
.quote-grid,
.gallery-page-grid {
  display: grid;
  column-gap: var(--grid-gap);
  row-gap: var(--grid-gap);
}

.metric-grid,
.info-grid,
.floor-grid,
.review-grid,
.gallery-page-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.metric-card,
.info-card,
.text-card,
.quote-card,
.review-card,
.contact-card,
.notice-card {
  padding: 24px;
}

.floor-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.floor-card-copy {
  padding: 20px 20px 22px;
}

.gallery-page-item {
  overflow: hidden;
}

.gallery-page-item figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.metric-label {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-value {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1.05;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list span {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(21, 38, 28, 0.08);
  color: var(--ink);
  font-size: 0.9rem;
}

.notice-card {
  max-width: 840px;
}

.faq-page-list {
  display: grid;
  gap: 12px;
}

.contact-form-panel {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 241, 231, 0.9));
}

.contact-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-card h1 {
  max-width: 8ch;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.stat-row li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-row strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.55rem;
  font-family: var(--font-display);
}

.stat-row span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.card-panel,
.fact-card,
.details-card,
.highlight-card,
.amenity-card,
.amenity-list-card,
.mini-card,
.timeline-card,
.decision-card,
.location-card,
.cta-panel {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-form {
  padding: 22px;
  background: rgba(249, 245, 237, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow);
  align-self: center;
}

.panel-kicker {
  margin-bottom: 12px;
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-form h2 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: var(--ink);
  margin-bottom: 12px;
}

.panel-copy,
.form-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(21, 38, 28, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
  min-height: 76px;
}

#form-message {
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.92rem;
}

#form-message.success {
  background: rgba(43, 115, 77, 0.14);
  color: #1f5f3c;
}

#form-message.error {
  background: rgba(160, 38, 38, 0.14);
  color: #8c2424;
}

.intro-strip {
  padding-top: 44px;
  padding-bottom: 56px;
}

.intro-grid,
.layout-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr);
  column-gap: var(--grid-gap);
  row-gap: var(--grid-gap);
  align-items: start;
}

.layout-balanced {
  align-items: center;
}

.fact-grid {
  display: grid;
  gap: var(--grid-gap);
  align-content: start;
}

.fact-card,
.details-card,
.highlight-card,
.mini-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(21, 38, 28, 0.08);
}

.details-card {
  background: linear-gradient(180deg, rgba(255, 252, 245, 0.96), rgba(246, 240, 228, 0.86));
}

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

.detail-list div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(21, 38, 28, 0.08);
}

.detail-list dt {
  font-weight: 700;
  color: var(--ink);
}

.detail-list dd {
  margin: 0;
  color: var(--ink-soft);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.highlight-grid,
.amenity-grid,
.pricing-note-grid,
.timeline-grid,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: var(--grid-gap);
  row-gap: var(--grid-gap);
}

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

.decision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: var(--grid-gap);
  row-gap: var(--grid-gap);
}

.timeline-grid {
  row-gap: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: var(--grid-gap);
  align-items: stretch;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

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

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

.gallery-item figcaption {
  position: absolute;
  inset: auto 14px 14px 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(10, 18, 14, 0.56);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.content-block,
.plan-copy,
.location-summary {
  max-width: 640px;
}

.bullet-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.bullet-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
}

.section-dark .bullet-list li {
  color: rgba(255, 255, 255, 0.82);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.bullet-list-tight {
  gap: 8px;
}

.image-card,
.location-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 38, 28, 0.08);
  align-self: start;
}

.image-card img,
.location-card img,
.amenity-card img {
  width: 100%;
  object-fit: cover;
}

.plan-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.plan-tab {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
}

.plan-tab.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #1b1408;
}

.plan-panel {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  column-gap: var(--grid-gap);
  row-gap: var(--grid-gap);
  align-items: center;
}

.plan-grid img {
  border-radius: 20px;
  background: var(--white);
}

.plan-label,
.timeline-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(188, 138, 66, 0.18);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.amenity-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(21, 38, 28, 0.08);
}

.amenity-card h3,
.amenity-card p {
  padding-inline: 20px;
}

.amenity-card h3 {
  margin-top: 18px;
}

.amenity-card p {
  padding-bottom: 22px;
}

.amenity-list-card {
  display: grid;
  gap: 22px;
  margin-top: 18px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 38, 28, 0.08);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-list li {
  background: var(--accent-soft);
  border-color: rgba(188, 138, 66, 0.24);
  color: var(--ink);
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(21, 38, 28, 0.08);
  box-shadow: var(--shadow-soft);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.84);
}

.pricing-table th,
.pricing-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(21, 38, 28, 0.08);
}

.pricing-table th {
  background: rgba(21, 38, 28, 0.05);
  color: var(--ink);
}

.connectivity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
  margin: 24px 0;
}

.connectivity-list div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(21, 38, 28, 0.08);
}

.connectivity-list div:last-child {
  grid-column: 1 / -1;
}

.connectivity-list strong {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font-display);
  color: var(--ink);
}

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

.location-summary {
  padding: 22px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 20px;
  border: 1px solid rgba(21, 38, 28, 0.08);
  background: rgba(255, 255, 255, 0.76);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.faq-question span:first-child {
  min-width: 0;
}

.faq-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(21, 38, 28, 0.08);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1;
}

.faq-answer {
  padding: 0 24px 22px;
}

.timeline-card,
.decision-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-card h3,
.decision-card h3,
.section-dark .timeline-card h3,
.section-dark .decision-card h3 {
  color: var(--white);
}

.cta-section {
  padding-top: 8px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 34px;
  background: linear-gradient(135deg, rgba(21, 38, 28, 0.95), rgba(42, 62, 49, 0.95));
  color: var(--white);
}

.cta-panel .button {
  flex: 0 0 auto;
  min-width: 176px;
  white-space: nowrap;
}

.cta-panel h2,
.cta-panel p {
  color: var(--white);
}

.site-footer {
  padding: 40px 0 96px;
  background: #101b14;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  align-items: start;
}

.footer-logo {
  width: 120px;
  margin-bottom: 14px;
}

.footer-copy {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.footer-list {
  display: grid;
  gap: 10px;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.82);
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: none;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #1b1408;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(140, 93, 29, 0.3);
}

.floating-cta.is-visible {
  display: inline-flex;
}

.staging-banner {
  padding: 10px 16px;
  background: #3c2c12;
  color: #f6dfb2;
  text-align: center;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

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

  .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(248, 244, 235, 0.98);
    border: 1px solid rgba(21, 38, 28, 0.08);
    box-shadow: var(--shadow-soft);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 10px 12px;
    border-radius: 12px;
  }

  .nav-cta {
    text-align: center;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .intro-grid,
  .layout-2,
  .plan-grid,
  .page-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .highlight-grid,
  .amenity-grid,
  .pricing-note-grid,
  .timeline-grid,
  .footer-grid,
  .metric-grid,
  .info-grid,
  .floor-grid,
  .review-grid,
  .quote-grid,
  .gallery-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    padding: 52px 0 40px;
    height: auto;
  }

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

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

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

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

@media (max-width: 680px) {
  .section {
    padding: 72px 0;
  }

  .site-nav {
    padding-inline: 16px;
  }

  .brand-mark {
    width: 88px;
  }

  .brand-copy strong {
    font-size: 1.1rem;
  }

  .hero {
    height: auto;
    max-height: none;
  }

  .hero-grid {
    gap: 20px;
    padding: 40px 0 32px;
  }

  .hero-pills,
  .hero-actions {
    margin-bottom: 18px;
  }

  .stat-row,
  .connectivity-list {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .page-hero h1 {
    max-width: none;
    font-size: clamp(2.5rem, 15vw, 4rem);
  }

  .metric-grid,
  .info-grid,
  .floor-grid,
  .review-grid,
  .quote-grid,
  .gallery-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-panel,
  .contact-card,
  .metric-card,
  .info-card,
  .text-card,
  .quote-card,
  .review-card,
  .notice-card {
    padding: 22px;
  }

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

  .gallery-item,
  .gallery-item-large {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }

  .faq-question {
    padding: 18px;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }

  .cta-panel {
    padding: 24px;
    align-items: stretch;
  }

  .cta-panel .button {
    width: 100%;
  }

  .highlight-grid,
  .amenity-grid,
  .pricing-note-grid,
  .timeline-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
