:root {
  --alpine: #17231f;
  --pine: #26372f;
  --snow: #f8f5ef;
  --mist: #eee8dc;
  --stone: #d8cebf;
  --copper: #b88a55;
  --moss: #66745c;
  --ink: #1b211d;
  --premium: #202320;
  --white: #ffffff;
  --muted: #6f716a;
  --shadow: 0 18px 44px rgba(27, 33, 29, 0.12);
  --soft-shadow: 0 10px 24px rgba(27, 33, 29, 0.08);
  --radius: 8px;
  --container: min(1120px, calc(100% - 32px));
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--snow);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

.gtm-noscript {
  display: none;
  visibility: hidden;
}

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--white);
  color: var(--alpine);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(15, 31, 26, 0.08);
  background: rgba(247, 244, 236, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  width: var(--container);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.brand img {
  width: 62px;
  height: auto;
}

.nav-toggle {
  min-width: 48px;
  min-height: 48px;
  border: 1px solid rgba(15, 31, 26, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--alpine);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.nav-links {
  position: fixed;
  inset: 72px 16px auto 16px;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(15, 31, 26, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.nav-links a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--premium);
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus {
  background: var(--snow);
}

.nav .nav-cta {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(88svh - 72px);
  display: grid;
  align-items: end;
  isolation: isolate;
  color: var(--white);
  background: var(--alpine);
}

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

.hero-media picture,
.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(23, 35, 31, 0.1), rgba(23, 35, 31, 0.76));
}

.hero-content {
  width: var(--container);
  margin: 0 auto;
  padding: 42px 0 54px;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 13vw, 5.4rem);
  font-weight: 700;
}

.hero h1 {
  max-width: 17ch;
  font-size: clamp(2.35rem, 10vw, 5rem);
}

h2 {
  font-size: clamp(2.25rem, 9vw, 4.2rem);
  font-weight: 650;
}

h3 {
  font-size: clamp(1.45rem, 5vw, 1.95rem);
  font-weight: 650;
}

.lead {
  max-width: 62ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

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

.btn {
  appearance: none;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
}

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

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

.btn-light {
  background: var(--white);
  color: var(--alpine);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
  color: var(--white);
}

.btn-outline {
  border-color: rgba(15, 31, 26, 0.2);
  background: transparent;
  color: var(--alpine);
}

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.quick-facts span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 800;
}

.quick-facts span:nth-child(n + 4) {
  display: none;
}

.section {
  padding: 76px 0;
}

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

.section-dark .section-lead,
.section-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.section-soft {
  background: var(--mist);
}

.section-inner {
  width: var(--container);
  margin: 0 auto;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.section-lead {
  max-width: 64ch;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.seo-copy {
  max-width: 78ch;
  display: grid;
  gap: 14px;
}

.seo-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.seo-inline-link {
  position: relative;
  z-index: 3;
  color: #7a4c1f;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  pointer-events: auto;
}

.seo-inline-link:hover,
.seo-inline-link:focus {
  color: #4f2f14;
  text-decoration-thickness: 2px;
}

.apartment-grid,
.article-grid,
.contact-grid {
  display: grid;
  gap: 16px;
}

.apartment-card,
.article-card,
.offer-card,
.contact-panel,
.map-card {
  border: 1px solid rgba(15, 31, 26, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.apartment-card picture,
.article-card picture {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--mist);
}

.media-shell picture,
.tour-card picture,
.attraction-card picture {
  display: block;
  width: 100%;
}

.apartment-card img,
.article-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.card-body {
  padding: 18px;
}

.card-body p {
  margin: 10px 0 0;
  color: var(--muted);
}

.home-blog-card {
  display: grid;
  gap: 20px;
  padding: 18px;
  border: 1px solid rgba(15, 31, 26, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.home-blog-media {
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  background: var(--mist);
}

.home-blog-media picture,
.home-blog-media img {
  display: block;
  width: 100%;
}

.home-blog-media img {
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.home-blog-copy {
  display: grid;
  gap: 14px;
  align-content: center;
}

.home-blog-copy h2,
.home-blog-copy p {
  margin: 0;
}

.home-blog-copy .btn {
  justify-self: start;
  margin-top: 8px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--snow);
  color: var(--pine);
  font-size: 0.82rem;
  font-weight: 800;
}

.premium-amenities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.amenity {
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 16px 12px;
  border: 1px solid rgba(15, 31, 26, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  color: var(--alpine);
}

.amenity svg {
  width: 34px;
  height: 34px;
  color: var(--copper);
}

.amenity span {
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.2;
}

.gallery-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 84%;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
}

.gallery-scroll figure {
  margin: 0;
  scroll-snap-align: start;
}

.gallery-scroll button {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
}

.gallery-scroll img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.media-grid,
.attraction-grid,
.location-grid {
  display: grid;
  gap: 16px;
}

.media-shell,
.tour-card,
.attraction-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--alpine);
  color: var(--white);
}

.attraction-card {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.attraction-card picture {
  position: absolute;
  inset: 0;
  height: 100%;
}

.media-shell img,
.tour-card img,
.attraction-card img {
  width: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.media-shell img,
.tour-card img {
  aspect-ratio: 4 / 3;
}

.attraction-card img {
  height: 100%;
  aspect-ratio: auto;
}

.media-shell > img,
.media-shell > picture img {
  aspect-ratio: 16 / 9;
}

.media-overlay,
.tour-card .overlay,
.attraction-card .overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 18px;
  background: linear-gradient(180deg, transparent, rgba(15, 31, 26, 0.86));
}

.media-overlay p,
.tour-card p,
.attraction-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.tour-360-section {
  overflow: hidden;
}

.tour-360-card {
  display: grid;
  gap: 22px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.tour-360-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}

.tour-360-copy {
  display: grid;
  gap: 16px;
  max-width: 720px;
}

.tour-360-copy h2,
.tour-360-copy p {
  margin: 0;
}

.tour-360-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.tour-360-copy .btn {
  justify-self: start;
  margin-top: 8px;
}

.video-embed {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--alpine);
  box-shadow: var(--shadow);
}

.video-embed iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.offer-card {
  padding: 22px;
  background: var(--premium);
  color: var(--white);
}

.offer-card p {
  color: rgba(255, 255, 255, 0.78);
}

.promo-hero h1 {
  max-width: 13ch;
}

.promo-page-section .section-title {
  margin: 0;
  color: var(--pine);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 0.94;
}

.promo-row-list {
  display: grid;
  gap: 32px;
}

.promo-row {
  display: grid;
  grid-template-columns: minmax(280px, 40%) 1fr;
  gap: 32px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(15, 31, 26, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.promo-row-media {
  width: 100%;
}

.promo-row-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
}

.promo-row-copy {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.promo-row-copy h2 {
  margin: 0;
}

.promo-row-copy h3 {
  margin: 8px 0 0;
}

.promo-row-copy p {
  margin: 0;
}

.promo-row-copy ul {
  margin: 0;
  padding-left: 1.2rem;
}

.promo-row-copy .btn {
  justify-self: start;
  margin-top: 8px;
}

.promo-card img,
.promo-detail-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.promo-card .promo-highlight,
.promo-highlight {
  margin-top: 14px;
  padding: 12px 14px;
  border-left: 3px solid var(--copper);
  border-radius: var(--radius);
  background: var(--snow);
  color: var(--alpine);
  font-weight: 850;
}

.promo-detail-grid {
  display: grid;
  gap: 24px;
}

.promo-detail-media {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mist);
  box-shadow: var(--soft-shadow);
}

.promo-detail-copy {
  display: grid;
  gap: 16px;
  max-width: 70ch;
}

.promo-detail-copy p,
.promo-detail-copy li {
  color: var(--muted);
}

.promo-detail-copy h3 {
  margin-top: 8px;
}

.clean-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 1.1rem;
}

.text-link {
  color: var(--alpine);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(184, 138, 85, 0.55);
  text-underline-offset: 4px;
}

.promo-final-cta {
  max-width: 780px;
}

@media (max-width: 860px) {
  .promo-row {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .promo-row-media img {
    max-height: 260px;
  }
}

.section-actions {
  margin-top: 22px;
}

.blog-date {
  display: block;
  margin-bottom: 8px;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-panel {
  padding: 20px;
}

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

.contact-list a,
.address-item {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 31, 26, 0.08);
  font-weight: 800;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-size: 0.88rem;
  font-weight: 850;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(15, 31, 26, 0.16);
  border-radius: var(--radius);
  padding: 11px 12px;
  background: var(--white);
  color: var(--ink);
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(15, 31, 26, 0.06);
  color: var(--pine);
  font-weight: 700;
}

.form-status[hidden] {
  display: none;
}

.form-status[data-state="success"] {
  background: rgba(102, 116, 92, 0.16);
  color: var(--alpine);
}

.form-status[data-state="error"] {
  background: rgba(136, 54, 42, 0.12);
  color: #7b2e24;
}

#booking-widget {
  margin-bottom: 16px;
  padding: 14px;
  border: 1px dashed rgba(197, 138, 66, 0.55);
  border-radius: var(--radius);
  background: rgba(197, 138, 66, 0.08);
  color: var(--pine);
}

.location-grid {
  margin-top: 18px;
}

.map-card {
  padding: 18px;
}

.map-card p {
  margin: 8px 0 14px;
  color: var(--muted);
}

.map-card iframe {
  width: 100%;
  height: 240px;
  border: 0;
  border-radius: var(--radius);
  background: var(--mist);
  margin-bottom: 14px;
}

.apartment-hero {
  background: var(--alpine);
  color: var(--white);
}

.apartment-hero h1 {
  max-width: 15ch;
  font-size: 2.5rem;
  line-height: 0.98;
  overflow-wrap: break-word;
}

.apartment-hero .lead {
  font-size: 1rem;
}

.guide-hero {
  background: var(--alpine);
  color: var(--white);
}

.guide-hero-media picture,
.guide-hero-media img {
  display: block;
  width: 100%;
  height: 42svh;
  min-height: 280px;
}

.guide-hero-media img {
  object-fit: cover;
  opacity: 0.82;
}

.guide-hero-content {
  width: var(--container);
  margin: 0 auto;
  padding: 34px 0 46px;
}

.guide-nav {
  display: grid;
  gap: 10px;
}

.guide-nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(15, 31, 26, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--pine);
  font-weight: 750;
}

.guide-list {
  display: grid;
  gap: 28px;
}

.guide-section {
  display: grid;
  gap: 18px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(15, 31, 26, 0.1);
  scroll-margin-top: 96px;
}

.guide-section picture {
  display: block;
}

.guide-section img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.guide-media-stack {
  display: grid;
  gap: 10px;
  align-self: start;
}

.guide-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(128px, 42%);
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.guide-gallery img {
  aspect-ratio: 4 / 3;
  scroll-snap-align: start;
}

.guide-copy {
  align-self: start;
}

.guide-section p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
}

.guide-hub-list {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.guide-hub-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  border: 1px solid rgba(27, 33, 29, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  scroll-margin-top: 96px;
}

.guide-hub-media {
  width: 100%;
  margin-bottom: 18px;
}

.guide-hub-media picture,
.guide-hub-media img {
  display: block;
  width: 100%;
}

.guide-hub-media picture {
  overflow: hidden;
  border-radius: var(--radius);
}

.guide-hub-media img {
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}

.guide-hub-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 100%;
  max-width: none;
}

.guide-hub-copy h2 {
  margin: 0;
  color: var(--pine);
  font-size: clamp(1.45rem, 1.2rem + 0.9vw, 2rem);
}

.guide-hub-copy p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.guide-hub-copy .button-row {
  margin-top: auto;
  padding-top: 16px;
}

@media (max-width: 560px) {
  .guide-hub-card {
    padding: 18px;
  }

  .guide-hub-media img {
    max-height: 220px;
  }
}

@media (min-width: 900px) {
  .guide-hub-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.guide-prose {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

.guide-prose h3 {
  margin: 0;
  color: var(--pine);
  font-size: clamp(1.15rem, 1.05rem + 0.35vw, 1.42rem);
}

.guide-prose p {
  margin: 0;
}

.guide-prose ul {
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.68;
}

.guide-prose li + li {
  margin-top: 6px;
}

.guide-prose a,
.guide-links a {
  color: var(--pine);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.guide-note {
  padding: 14px 16px;
  border-left: 3px solid var(--copper);
  border-radius: var(--radius);
  background: rgba(184, 138, 85, 0.12);
}

.guide-links {
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--pine);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.attraction-page-content .section-actions {
  justify-content: flex-start;
  margin-top: 24px;
}

.attraction-prose {
  max-width: 82ch;
}

.attraction-prose h2 {
  margin: 0;
  color: var(--pine);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.85rem, 1.55rem + 1.1vw, 2.6rem);
  line-height: 1;
}

.attraction-gallery picture {
  display: block;
  width: 100%;
}

.anchor-alias {
  display: block;
  height: 0;
  overflow: hidden;
  scroll-margin-top: 92px;
  visibility: hidden;
}

.guide-cta-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(27, 33, 29, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.guide-cta-panel h2,
.guide-cta-panel p {
  margin: 0;
}

.guide-cta-panel p:not(.eyebrow) {
  color: var(--muted);
}

.apartment-hero-grid {
  width: var(--container);
  margin: 0 auto;
  padding: 28px 0 92px;
  display: grid;
  gap: 22px;
}

.apartment-hero img {
  order: -1;
  width: 100%;
  height: min(270px, calc((100vw - 32px) * 0.625));
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}

.apartment-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.fact {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.fact strong {
  display: block;
  font-size: 1.05rem;
}

.fact span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
}

.detail-grid {
  display: grid;
  gap: 24px;
}

.price-list,
.feature-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.price-list li,
.feature-list li {
  padding: 12px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.apartment-prose {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

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

.reason-panel {
  padding: 18px;
  border: 1px solid rgba(15, 31, 26, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.feature-list li strong {
  display: block;
  color: var(--pine);
  font-size: 1rem;
}

.feature-list li span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.equipment-grid,
.link-grid {
  display: grid;
  gap: 14px;
}

.redirect-link-grid {
  margin-top: 24px;
}

.equipment-card,
.related-link,
.apartment-cta-panel {
  border: 1px solid rgba(15, 31, 26, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.equipment-card {
  padding: 18px;
}

.equipment-card h3 {
  margin: 0;
  color: var(--pine);
  font-size: 1.25rem;
}

.equipment-card ul,
.nearby-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.equipment-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.equipment-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--copper);
}

.nearby-list li {
  padding: 12px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.nearby-list a,
.apartment-cta-panel a {
  color: var(--pine);
  font-weight: 850;
}

.nearby-list span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.related-link {
  display: grid;
  gap: 6px;
  min-height: 112px;
  padding: 16px;
  color: var(--pine);
}

.related-link span {
  color: var(--muted);
}

.apartment-cta-panel {
  margin-top: 14px;
  padding: 18px;
  color: var(--muted);
}

.lightbox,
.tour-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(15, 31, 26, 0.9);
}

.lightbox {
  padding: 66px 16px 58px;
}

.lightbox.is-open,
.tour-modal.is-open {
  display: flex;
}

.lightbox-stage {
  width: min(1040px, 100%);
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.lightbox img {
  max-width: 100%;
  max-height: 74svh;
  width: auto;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

.lightbox figcaption {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  text-align: center;
  font-weight: 650;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  min-width: 48px;
  height: 58px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--alpine);
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 800;
  box-shadow: var(--soft-shadow);
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

.lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--alpine);
  font-weight: 800;
  font-size: 0.9rem;
}

.modal-frame {
  width: min(1040px, 100%);
  height: min(76svh, 720px);
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--alpine);
  font-size: 1.2rem;
  font-weight: 900;
}

.sticky-mobile-cta {
  position: fixed;
  inset: auto 12px 12px 12px;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(15, 31, 26, 0.1);
  border-radius: var(--radius);
  background: rgba(247, 244, 236, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.sticky-mobile-cta a,
.sticky-mobile-cta button {
  min-height: 48px;
  width: 100%;
  padding-inline: 10px;
  white-space: nowrap;
}

.btn-menu {
  border-color: rgba(15, 31, 26, 0.16);
  background: var(--white);
  color: var(--alpine);
}
.back-to-top-sentinel {
  display: block;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.back-to-top {
  position: fixed;
  right: max(18px, calc((100vw - 1120px) / 2 - 68px));
  bottom: 28px;
  z-index: 55;
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(23, 35, 31, 0.92);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(27, 33, 29, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(12px);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: var(--alpine);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(184, 138, 85, 0.46);
  outline-offset: 3px;
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (min-width: 900px) {
  .back-to-top {
    display: inline-flex;
  }
}
.site-footer {
  padding: 48px 0 108px;
  background: var(--alpine);
  color: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.footer-inner strong {
  color: var(--white);
}

.footer-privacy-link {
  width: max-content;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}


.footer-social-link {
  width: max-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 2px 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social-link:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.footer-social-link:focus-visible {
  border-radius: 6px;
  outline: 3px solid rgba(184, 138, 85, 0.48);
  outline-offset: 4px;
}

.footer-social-link svg {
  width: 32px;
  height: 32px;
  max-width: 40px;
  max-height: 40px;
  flex: 0 0 32px;
}
.cookie-overlay[hidden],
.cookie-banner[hidden],
.cookie-settings-container[hidden] {
  display: none !important;
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 9997;
  background: rgba(15, 31, 26, 0.5);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9998;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(15, 31, 26, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.cookie-banner strong {
  color: var(--alpine);
}

.cookie-banner .buttons,
.cookie-settings-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-banner button,
.cookie-settings-actions button,
.footer-cookie-settings {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
}

.cookie-banner button,
.cookie-settings-actions button[data-cookie-save] {
  background: var(--copper);
  color: var(--white);
}

.cookie-banner .reject,
.cookie-settings-actions [data-cookie-close],
.cookie-banner .settings-btn {
  background: rgba(15, 31, 26, 0.08);
  color: var(--alpine);
}

.cookie-settings-container {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 9999;
  width: min(560px, calc(100vw - 32px));
  max-height: calc(100svh - 40px);
  overflow: auto;
  transform: translate(-50%, -50%);
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 20px 60px rgba(15, 31, 26, 0.22);
}

.cookie-settings-container h3 {
  margin: 0 0 16px;
  color: var(--alpine);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1.1;
}

.cookie-option {
  padding: 14px 0;
  border-top: 1px solid rgba(15, 31, 26, 0.1);
}

.cookie-option label {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cookie-option p {
  margin: 6px 0 0;
  color: var(--muted);
}

.footer-cookie-settings {
  width: max-content;
  margin-top: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

@media (max-width: 759px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 84px;
    grid-template-columns: 1fr;
  }

  .cookie-banner .buttons,
  .cookie-settings-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .back-to-top {
    transition: none;
  }
}

@media (min-width: 760px) {
  :root {
    --container: min(1120px, calc(100% - 56px));
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-links a {
    font-size: 0.92rem;
  }

  .nav .nav-cta {
    display: inline-flex;
  }

  .hero-content {
    padding-bottom: 96px;
  }

  .quick-facts {
    flex-wrap: wrap;
  }

  .quick-facts span:nth-child(n + 4) {
    display: inline-flex;
  }

  h1 {
    font-size: clamp(4.4rem, 7vw, 5.8rem);
  }

  .section-head {
    grid-template-columns: 0.9fr 1fr;
    align-items: end;
  }

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

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

  .gallery-scroll {
    grid-auto-columns: 38%;
  }

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

  .home-blog-card {
    grid-template-columns: minmax(280px, 42%) 1fr;
    align-items: center;
    gap: 32px;
    padding: 28px;
  }

  .tour-360-card {
    grid-template-columns: minmax(280px, 45%) 1fr;
    align-items: center;
    gap: 36px;
    padding: 32px;
  }

  .tour-360-media img {
    aspect-ratio: 16 / 9;
  }

  .attraction-grid,
  .article-grid,
  .location-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid,
  .detail-grid,
  .apartment-hero-grid,
  .promo-detail-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .contact-grid .map-card {
    grid-column: 1 / -1;
  }

  .guide-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .guide-hero-media {
    order: 2;
  }

  .guide-hero-media picture,
  .guide-hero-media img {
    height: 100%;
    min-height: 520px;
  }

  .guide-hero-content {
    align-self: end;
    padding: 76px 56px 84px max(28px, calc((100vw - 1120px) / 2));
    width: auto;
  }

  .guide-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .equipment-grid,
  .link-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .guide-section {
    grid-template-columns: 0.9fr 1fr;
    align-items: start;
    gap: 34px;
    padding-bottom: 40px;
  }

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

  .guide-hub-card {
    align-items: stretch;
    padding: 24px;
  }

  .guide-section-rich {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .guide-gallery {
    grid-auto-flow: initial;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }

  .apartment-hero-grid {
    padding: 52px 0 66px;
  }

  .apartment-hero h1 {
    max-width: 13ch;
    font-size: 4rem;
  }

  .apartment-hero img {
    order: initial;
    height: auto;
    aspect-ratio: 5 / 4;
  }

  .sticky-mobile-cta {
    display: none;
  }
.site-footer {
    padding-bottom: 54px;
  }
}

@media (min-width: 1100px) {
  .gallery-scroll {
    grid-auto-columns: 28%;
  }
}
