:root {
  --green-950: #0d2b1b;
  --green-900: #123721;
  --green-800: #1d4b31;
  --green-700: #315f43;
  --sage-100: #eef3e8;
  --sage-200: #dfe8d7;
  --ivory: #fbf7ef;
  --paper: #fffdf8;
  --stone: #e8dfd0;
  --terracotta: #b96f4b;
  --terracotta-dark: #91583f;
  --ink: #17231c;
  --muted: #667368;
  --line: rgba(29, 75, 49, .14);
  --shadow: 0 22px 60px rgba(26, 43, 31, .12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 6%, rgba(185, 111, 75, .08), transparent 24rem),
    linear-gradient(180deg, #fffaf1 0%, var(--ivory) 42%, #f5efe5 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

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

[hidden] {
  display: none !important;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
  scroll-margin-top: 94px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 12px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(255, 253, 248, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--paper);
  background: var(--green-900);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 7px;
  font-weight: 800;
  letter-spacing: .04em;
}

.brand strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.12rem;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: .94rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  color: #304037;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
  content: "";
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 750;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.header-cta,
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--green-900), #0b2517);
  box-shadow: 0 14px 28px rgba(13, 43, 27, .16);
}

.btn-secondary {
  color: var(--green-900);
  background: rgba(255, 253, 248, .75);
  border-color: rgba(18, 55, 33, .22);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-900);
}

.location-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 70px) 0 clamp(42px, 6vw, 78px);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .82), rgba(251, 247, 239, .96)),
    radial-gradient(circle at 50% 0%, rgba(185, 111, 75, .12), transparent 24rem),
    var(--ivory);
  border-bottom: 1px solid rgba(29, 75, 49, .1);
}

.location-hero::before,
.location-hero::after {
  position: absolute;
  right: 7%;
  left: 7%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(111, 94, 55, .2), transparent);
  content: "";
}

.location-hero::before {
  top: 18px;
}

.location-hero::after {
  bottom: 18px;
}

.location-hero-inner {
  width: min(1480px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.location-hero .eyebrow {
  margin-bottom: 10px;
}

.location-hero h1 {
  max-width: 1420px;
  margin: 0 auto;
  font-size: clamp(3rem, 6.2vw, 6.35rem);
  line-height: .96;
  text-wrap: balance;
}

.location-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 18px);
  margin-top: clamp(24px, 3vw, 34px);
}

.location-photo-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #d8cab5;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: var(--radius);
  box-shadow: 0 22px 58px rgba(40, 35, 24, .12);
}

.location-photo-grid figure::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(13, 43, 27, .08), transparent 32%, rgba(13, 43, 27, .12)),
    linear-gradient(90deg, rgba(255, 253, 248, .13), transparent 28%, transparent 72%, rgba(255, 253, 248, .08));
  content: "";
}

.location-photo-grid img {
  width: 100%;
  height: clamp(330px, 31vw, 520px);
  object-fit: cover;
  object-position: center;
}

.location-photo-grid figure:first-child img {
  object-position: 50% 56%;
}

.location-photo-grid figure:last-child img {
  object-position: 50% 64%;
}

.distance-compass {
  display: grid;
  grid-template-columns: minmax(180px, .8fr) minmax(70px, .75fr) minmax(170px, .55fr) minmax(70px, .75fr) minmax(180px, .8fr);
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  width: min(1080px, 100%);
  margin: clamp(22px, 3vw, 32px) auto 0;
}

.distance-item {
  display: grid;
  grid-template-columns: 94px 1fr;
  align-items: center;
  justify-items: start;
  gap: 16px;
  color: var(--green-950);
  text-align: left;
}

.distance-center {
  grid-template-columns: 94px 1fr;
}

.distance-icon {
  display: grid;
  grid-row: 1 / span 2;
  width: 94px;
  height: 94px;
  place-items: center;
  color: var(--green-950);
  background: rgba(255, 253, 248, .54);
  border: 1.5px solid rgba(23, 35, 28, .78);
  border-radius: 50%;
}

.distance-icon svg {
  width: 56px;
  height: 56px;
}

.distance-icon path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.distance-item strong,
.distance-item span:last-child {
  display: block;
  grid-column: 2;
  font-size: clamp(1.2rem, 1.9vw, 1.58rem);
  font-weight: 850;
  line-height: 1.16;
}

.distance-center span:last-child {
  white-space: nowrap;
}

.distance-line {
  position: relative;
  height: 1.5px;
  background: rgba(23, 35, 28, .78);
}

.distance-line::after {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-top: 1.5px solid rgba(23, 35, 28, .78);
  border-right: 1.5px solid rgba(23, 35, 28, .78);
  content: "";
}

.distance-line-left::after {
  left: 0;
  transform: translateY(-50%) rotate(-135deg);
}

.distance-line-right::after {
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}

.location-hero-summary {
  position: relative;
  width: min(1050px, 100%);
  margin: clamp(26px, 3.6vw, 42px) auto 0;
  padding-top: clamp(22px, 3vw, 32px);
}

.location-hero-summary::before,
.location-hero-summary::after {
  position: absolute;
  top: 0;
  width: calc(50% - 38px);
  height: 1px;
  background: rgba(111, 94, 55, .38);
  content: "";
}

.location-hero-summary::before {
  left: 0;
}

.location-hero-summary::after {
  right: 0;
}

.location-hero-summary > span {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 46px;
  height: 22px;
  transform: translateX(-50%);
}

.location-hero-summary > span::before,
.location-hero-summary > span::after {
  position: absolute;
  top: 9px;
  width: 28px;
  height: 10px;
  border-top: 2px solid rgba(145, 88, 63, .68);
  border-radius: 50%;
  content: "";
}

.location-hero-summary > span::before {
  left: 1px;
  transform: rotate(-26deg);
}

.location-hero-summary > span::after {
  right: 1px;
  transform: rotate(26deg);
}

.location-hero-summary p {
  margin: 0 auto;
  color: #30281f;
  font-size: clamp(1.35rem, 2.2vw, 2.05rem);
  line-height: 1.34;
  text-wrap: balance;
}

.location-hero-summary strong {
  color: var(--green-950);
}

.map-intro {
  position: relative;
  min-height: calc(100svh - 74px);
  overflow: clip;
  padding: clamp(14px, 2vw, 28px);
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 245, 222, .95), transparent 28rem),
    linear-gradient(180deg, #efe0c5, #c9b991 46%, #6f8158);
  isolation: isolate;
}

.map-heading-section {
  padding: clamp(58px, 7vw, 94px) 0 clamp(22px, 3vw, 38px);
  background:
    radial-gradient(circle at 50% 8%, rgba(177, 127, 72, .12), transparent 30rem),
    linear-gradient(180deg, rgba(255, 253, 248, .96), rgba(239, 224, 197, .84));
  text-align: center;
}

.map-heading-section h2 {
  max-width: 960px;
  margin: 0 auto;
  color: var(--green-950);
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: .96;
  text-wrap: balance;
}

.map-stage {
  position: relative;
  width: min(100%, 1680px);
  min-height: calc(100svh - 102px);
  margin: 0 auto;
  overflow: hidden;
  background: #d7c399;
  border: 1px solid rgba(78, 62, 36, .28);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(34, 31, 21, .26);
  transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
}

.map-stage::before {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(31, 23, 14, .22), transparent 14%, transparent 86%, rgba(31, 23, 14, .24)),
    linear-gradient(180deg, rgba(31, 23, 14, .2), transparent 22%, transparent 74%, rgba(31, 23, 14, .28));
  content: "";
}

.map-stage::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  height: 32%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(22, 30, 20, .72));
  content: "";
}

.map-art,
.map-vignette,
.map-routes,
.map-points {
  position: absolute;
  inset: 0;
}

.map-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: 51% 42%;
  filter: saturate(1.05) contrast(1.03);
  animation: map-breathe 10s ease-in-out infinite;
  transition: transform 2.8s cubic-bezier(.18, .72, .18, 1), filter 2.8s ease;
}

.map-vignette {
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 51% 42%, rgba(255, 248, 226, .18), transparent 18%),
    radial-gradient(circle at 51% 42%, transparent 0 31%, rgba(13, 24, 16, .22) 64%, rgba(13, 24, 16, .52) 100%);
  mix-blend-mode: multiply;
}

.map-routes {
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .86;
}

.map-routes path {
  fill: none;
  stroke: rgba(255, 248, 226, .72);
  stroke-width: .22;
  stroke-linecap: round;
  stroke-dasharray: 1.5 1.1;
  filter: drop-shadow(0 0 5px rgba(77, 48, 20, .34));
  animation: route-drift 7s linear infinite;
}

.map-points {
  z-index: 7;
  pointer-events: none;
  transition: opacity 1.3s ease, filter 1.3s ease;
}

.story-point {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 180px;
  min-height: 44px;
  padding: 8px 12px 8px 8px;
  color: #332514;
  background: rgba(255, 248, 226, .82);
  border: 1px solid rgba(75, 53, 28, .22);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(39, 31, 19, .18), inset 0 1px 0 rgba(255, 255, 255, .65);
  cursor: pointer;
  pointer-events: auto;
  transform: translate(-50%, -50%);
  transition: transform .28s ease, background .28s ease, box-shadow .28s ease, opacity 1.1s ease;
  animation: point-float 5.5s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.story-point span:last-child {
  overflow: hidden;
  font-size: clamp(.68rem, 1vw, .82rem);
  font-weight: 850;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.story-point:hover,
.story-point:focus-visible,
.story-point.is-active {
  z-index: 4;
  background: rgba(255, 253, 245, .96);
  box-shadow: 0 22px 48px rgba(31, 23, 14, .28), 0 0 0 7px rgba(255, 248, 226, .18);
  outline: 0;
  transform: translate(-50%, -58%) scale(1.06);
}

.story-point.estate {
  gap: 10px;
  min-height: 58px;
  padding: 10px 17px 10px 10px;
  color: white;
  background: linear-gradient(135deg, rgba(18, 55, 33, .95), rgba(111, 66, 39, .92));
  border-color: rgba(255, 247, 223, .4);
  box-shadow: 0 24px 56px rgba(27, 30, 18, .3), 0 0 0 10px rgba(255, 244, 209, .2), 0 0 44px rgba(255, 221, 151, .55);
  animation: estate-glow 2.9s ease-in-out infinite;
}

.story-point:nth-child(2) { --delay: -.7s; }
.story-point:nth-child(3) { --delay: -1.4s; }
.story-point:nth-child(4) { --delay: -2.1s; }
.story-point:nth-child(5) { --delay: -2.8s; }
.story-point:nth-child(6) { --delay: -3.5s; }
.story-point:nth-child(7) { --delay: -4.2s; }
.story-point:nth-child(8) { --delay: -4.9s; }
.story-point:nth-child(9) { --delay: -5.6s; }
.story-point:nth-child(10) { --delay: -6.3s; }
.story-point:nth-child(11) { --delay: -7s; }

.story-icon {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #38543b;
  background: rgba(255, 253, 248, .74);
  border: 1px solid rgba(75, 53, 28, .16);
  border-radius: 50%;
}

.story-point.estate .story-icon {
  width: 38px;
  height: 38px;
  color: #fff6de;
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .24);
}

.story-icon svg {
  width: 20px;
  height: 20px;
}

.story-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-tooltip {
  position: absolute;
  z-index: 12;
  left: var(--tip-x, 50%);
  top: var(--tip-y, 50%);
  width: min(310px, calc(100% - 32px));
  padding: 15px 16px;
  color: #fffdf8;
  background: linear-gradient(135deg, rgba(18, 55, 33, .94), rgba(51, 38, 24, .9));
  border: 1px solid rgba(255, 248, 226, .22);
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(18, 22, 15, .32);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 18px)) scale(.96);
  transition: opacity .2s ease, transform .2s ease;
  backdrop-filter: blur(16px);
}

.map-tooltip.is-visible {
  opacity: 1;
  transform: translate(-50%, calc(-100% - 24px)) scale(1);
}

.map-tooltip.is-below {
  transform: translate(-50%, 18px) scale(.96);
}

.map-tooltip.is-below.is-visible {
  transform: translate(-50%, 24px) scale(1);
}

.map-tooltip strong,
.map-tooltip span {
  display: block;
}

.map-tooltip strong {
  color: #fff6df;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.24rem;
  line-height: 1.05;
}

.map-tooltip p {
  margin: 8px 0 0;
  color: rgba(255, 253, 248, .84);
  font-size: .9rem;
  line-height: 1.42;
}

.map-tooltip span {
  margin-top: 9px;
  color: #e7c287;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  margin-top: -1px;
}

.hero {
  padding-top: 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 36px;
}

.hero-grid > *,
.split > *,
.location-grid > *,
.faq-layout > *,
.contact-grid > * {
  min-width: 0;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--green-950);
  font-family: "Playfair Display", Georgia, serif;
  line-height: .98;
  overflow-wrap: break-word;
}

h1 {
  max-width: 720px;
  font-size: clamp(3rem, 4.8vw, 4.4rem);
  line-height: 1.01;
}

.hero-copy h2 {
  max-width: 760px;
  font-size: clamp(2.55rem, 3.8vw, 4.05rem);
  line-height: 1.02;
}

.hero-copy h2 span {
  display: block;
  margin-top: 10px;
  color: var(--green-800);
  font-size: .42em;
  line-height: 1.22;
}

h2 {
  font-size: clamp(2.3rem, 4vw, 4.35rem);
}

h3 {
  font-size: 1.55rem;
}

.lead {
  max-width: 610px;
  margin: 18px 0 0;
  color: #425247;
  font-size: 1.08rem;
}

.hero-detail {
  display: grid;
  gap: 14px;
  max-width: 690px;
  margin-top: 22px;
}

.hero-detail p {
  margin: 0;
  color: #425247;
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  line-height: 1.58;
}

.hero-chips,
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-chips span,
.filter {
  padding: 10px 14px;
  color: #38483d;
  background: rgba(238, 243, 232, .92);
  border: 1px solid rgba(29, 75, 49, .11);
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 700;
}

.filter {
  cursor: pointer;
}

.filter.active {
  color: white;
  background: var(--green-900);
}

.hero-actions,
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.hero-badges > div {
  min-width: 210px;
  padding: 18px 20px;
  background: rgba(255, 253, 248, .78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(42, 36, 25, .08);
}

.hero-badges small,
.facts span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-badges strong {
  display: block;
  margin-top: 3px;
  color: var(--green-950);
  font-size: 1.22rem;
}

.hero-media {
  position: relative;
  min-height: 500px;
}

.amenity-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  grid-template-rows: 250px 250px;
  gap: 14px;
  align-self: stretch;
  min-height: 514px;
}

.amenity-card {
  position: relative;
  overflow: hidden;
  min-height: 0;
  margin: 0;
  background: #d9cbb7;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.amenity-card-large {
  grid-row: 1 / span 2;
}

.amenity-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 44%, rgba(13, 43, 27, .58));
  content: "";
}

.amenity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.amenity-card:hover img {
  transform: scale(1.035);
}

.amenity-card-large img {
  object-position: center;
}

.amenity-card:nth-child(2) img {
  object-position: center 38%;
}

.amenity-card:nth-child(3) img {
  object-position: center 58%;
}

.amenity-card figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 1;
  color: white;
  font-weight: 850;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .34);
}

.hero-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(280px, calc(100% - 44px));
  padding: 20px;
  background: rgba(255, 253, 248, .92);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: var(--radius);
  box-shadow: 0 22px 48px rgba(10, 28, 18, .18);
  backdrop-filter: blur(12px);
}

.hero-agent-card {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 16px;
  width: min(390px, calc(100% - 44px));
  padding: 14px;
  color: white;
  background: linear-gradient(135deg, rgba(13, 43, 27, .92), rgba(24, 19, 14, .78));
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  box-shadow: 0 22px 52px rgba(10, 25, 16, .24);
  backdrop-filter: blur(16px);
}

.hero-agent-card img {
  width: 104px;
  height: 126px;
  object-fit: cover;
  object-position: center top;
  border-radius: 7px;
  box-shadow: none;
}

.hero-agent-card span {
  display: block;
  color: #e7c287;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
}

.hero-agent-card strong {
  display: block;
  margin-top: 3px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1.05;
}

.hero-agent-card p {
  margin: 10px 0 0;
  color: rgba(255, 253, 248, .82);
  font-size: .9rem;
}

.agent-section {
  padding: 82px 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, .96), rgba(248, 242, 232, .92)),
    var(--paper);
  border-block: 1px solid var(--line);
}

.agent-layout {
  display: block;
  min-height: 420px;
}

.agent-intro {
  width: min(620px, 100%);
}

.agent-intro p {
  color: var(--muted);
}

.agent-benefits {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.agent-benefits article {
  padding: 18px 0 18px 52px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20px 28px, rgba(185, 111, 75, .2) 0 10px, transparent 11px);
}

.agent-benefits strong,
.agent-benefits span {
  display: block;
}

.agent-benefits strong {
  color: var(--green-950);
}

.agent-benefits span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .92rem;
}

.chat-agent {
  position: fixed;
  right: max(18px, calc((100vw - 1320px) / 2));
  bottom: 18px;
  z-index: 140;
  width: min(420px, calc(100vw - 36px));
  height: min(640px, calc(100vh - 104px));
  pointer-events: none;
}

.agent-stage {
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.agent-mobile-open {
  display: none;
}

.agent-portrait-shell {
  position: absolute;
  right: 0;
  bottom: 44px;
  width: min(280px, 66vw);
  pointer-events: none;
}

.agent-portrait-shell::before {
  position: absolute;
  inset: auto 4% 0 10%;
  height: 64%;
  content: "";
  background: radial-gradient(ellipse at 50% 74%, rgba(177, 127, 72, .24), rgba(255, 247, 232, .12) 42%, transparent 72%);
  filter: blur(10px);
  transform: translateY(12px);
}

.agent-portrait {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(35, 28, 19, .2));
}

.agent-bubble-stack {
  position: absolute;
  right: 292px;
  bottom: 252px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  width: min(310px, calc(100vw - 220px));
  max-height: 360px;
  overflow: visible;
  pointer-events: none;
}

.message {
  display: grid;
  gap: 5px;
  max-width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(31, 45, 35, .1);
  backdrop-filter: blur(18px);
  animation: bubble-in .28s ease-out both;
}

.message.assistant {
  position: relative;
  align-self: flex-start;
  background: rgba(255, 253, 248, .9);
}

.message.assistant::after {
  position: absolute;
  right: -7px;
  bottom: 18px;
  width: 14px;
  height: 14px;
  content: "";
  background: inherit;
  border-top: 1px solid rgba(255, 255, 255, .72);
  border-right: 1px solid rgba(255, 255, 255, .72);
  transform: rotate(45deg);
}

.message.user {
  align-self: flex-end;
  color: white;
  background: rgba(18, 55, 33, .94);
  border-color: rgba(255, 255, 255, .16);
  border-bottom-right-radius: 4px;
}

.message.is-fading {
  display: none;
  opacity: .38;
  transform: translateY(-8px) scale(.96);
}

.message small {
  color: var(--muted);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.message.user small {
  color: rgba(255, 253, 248, .7);
}

.message span {
  color: inherit;
  font-size: .94rem;
  line-height: 1.5;
}

.agent-input {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px 58px;
  gap: 8px;
  width: min(370px, calc(100vw - 36px));
  padding: 8px;
  background: rgba(255, 253, 248, .9);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(31, 45, 35, .12);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.agent-input input {
  min-width: 0;
  height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 999px;
  outline: none;
}

.agent-send,
.mic-button,
.agent-icon-button,
.sound-button,
.agent-mobile-open {
  border: 0;
  cursor: pointer;
  font-weight: 850;
}

.agent-send {
  display: grid;
  width: 44px;
  height: 50px;
  place-items: center;
  color: rgba(18, 55, 33, .48);
  background: transparent;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
}

.agent-send:hover {
  color: var(--green-950);
}

.mic-button {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, #b17f48, var(--terracotta-dark));
  border-radius: 50%;
  box-shadow: 0 16px 32px rgba(145, 88, 63, .28);
}

.agent-controls {
  position: absolute;
  top: 4px;
  right: 4px;
  display: flex;
  gap: 8px;
  pointer-events: auto;
}

.agent-icon-button,
.sound-button {
  display: grid;
  min-width: 36px;
  height: 36px;
  place-items: center;
  color: var(--green-950);
  background: rgba(255, 253, 248, .8);
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(31, 45, 35, .08);
  backdrop-filter: blur(14px);
}

.sound-button {
  position: absolute;
  right: 144px;
  bottom: 72px;
  padding: 0 14px;
  font-size: .78rem;
  pointer-events: auto;
}

.mic-icon,
.mic-icon::before,
.mic-icon::after {
  display: block;
  content: "";
}

.mic-icon {
  position: relative;
  width: 15px;
  height: 24px;
  background: white;
  border-radius: 999px;
}

.mic-icon::before {
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 25px;
  height: 17px;
  border: 3px solid white;
  border-top: 0;
  border-radius: 0 0 18px 18px;
  transform: translateX(-50%);
}

.mic-icon::after {
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 3px;
  height: 10px;
  background: white;
  border-radius: 999px;
  transform: translateX(-50%);
}

.mic-button.is-recording {
  background: #b64232;
  animation: pulse-mic 1.1s ease-in-out infinite;
}

.mic-button.is-recording .mic-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.mic-button.is-recording .mic-icon::before,
.mic-button.is-recording .mic-icon::after {
  display: none;
}

.agent-note {
  position: absolute;
  right: 6px;
  bottom: -30px;
  width: min(360px, calc(100vw - 48px));
  margin: 0;
  color: var(--muted);
  font-size: .74rem;
  text-align: right;
  opacity: .78;
  pointer-events: none;
}

.agent-speaking {
  position: absolute;
  right: 56px;
  bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  color: var(--green-950);
  background: rgba(255, 253, 248, .86);
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(31, 45, 35, .1);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
  backdrop-filter: blur(16px);
}

.agent-speaking span {
  margin-right: 8px;
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
}

.agent-speaking i {
  display: block;
  width: 2px;
  height: 12px;
  background: #b17f48;
  border-radius: 999px;
  transform-origin: center;
}

.chat-agent.is-speaking .agent-portrait,
.chat-agent.is-listening .agent-portrait {
  filter: drop-shadow(0 28px 34px rgba(35, 28, 19, .2)) drop-shadow(0 0 18px rgba(177, 127, 72, .28));
}

.chat-agent.is-speaking .agent-speaking,
.chat-agent.is-listening .agent-speaking {
  opacity: 1;
  transform: translateY(0);
}

.chat-agent.is-speaking .agent-speaking i,
.chat-agent.is-listening .agent-speaking i {
  animation: wave 1s ease-in-out infinite;
}

.chat-agent.is-listening .agent-speaking i {
  background: var(--green-700);
}

.chat-agent.is-speaking .agent-speaking i:nth-child(3) { animation-delay: .08s; }
.chat-agent.is-speaking .agent-speaking i:nth-child(4) { animation-delay: .16s; }
.chat-agent.is-speaking .agent-speaking i:nth-child(5) { animation-delay: .24s; }
.chat-agent.is-speaking .agent-speaking i:nth-child(6) { animation-delay: .32s; }
.chat-agent.is-listening .agent-speaking i:nth-child(3) { animation-delay: .08s; }
.chat-agent.is-listening .agent-speaking i:nth-child(4) { animation-delay: .16s; }
.chat-agent.is-listening .agent-speaking i:nth-child(5) { animation-delay: .24s; }
.chat-agent.is-listening .agent-speaking i:nth-child(6) { animation-delay: .32s; }

.chat-agent.is-minimized .agent-stage,
.chat-agent.is-closed .agent-stage {
  display: none;
}

.chat-agent.is-minimized .agent-mobile-open,
.chat-agent.is-closed .agent-mobile-open {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  color: var(--green-950);
  background: rgba(255, 253, 248, .9);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(31, 45, 35, .12);
  pointer-events: auto;
  backdrop-filter: blur(18px);
}

.agent-mobile-open img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}

.chat-agent.is-expanded {
  width: min(520px, calc(100vw - 36px));
}

.chat-agent.is-expanded .agent-stage {
  background: linear-gradient(180deg, rgba(255, 253, 248, .64), rgba(251, 247, 239, .78));
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(31, 45, 35, .16);
  pointer-events: auto;
  backdrop-filter: blur(20px);
}

.chat-agent.is-expanded .agent-portrait-shell {
  right: 22px;
  bottom: 86px;
  width: 190px;
}

.chat-agent.is-expanded .agent-bubble-stack {
  right: 218px;
  bottom: 112px;
  width: min(260px, calc(100vw - 250px));
  max-height: min(430px, calc(100vh - 240px));
  overflow-y: auto;
  padding: 72px 8px 8px;
  pointer-events: auto;
}

.chat-agent.is-expanded .message.is-fading {
  display: grid;
}

@keyframes pulse-mic {
  0%, 100% { box-shadow: 0 0 0 0 rgba(182, 66, 50, .34); }
  50% { box-shadow: 0 0 0 14px rgba(182, 66, 50, 0); }
}

@keyframes bubble-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes wave {
  0%, 100% { transform: scaleY(.45); }
  50% { transform: scaleY(1.5); }
}

@keyframes map-breathe {
  0%, 100% { transform: scale(1.015); }
  50% { transform: scale(1.045); }
}

@keyframes point-float {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -8px; }
}

@keyframes estate-glow {
  0%, 100% {
    box-shadow: 0 24px 56px rgba(27, 30, 18, .3), 0 0 0 9px rgba(255, 244, 209, .18), 0 0 38px rgba(255, 221, 151, .5);
  }
  50% {
    box-shadow: 0 28px 68px rgba(27, 30, 18, .36), 0 0 0 16px rgba(255, 244, 209, .08), 0 0 62px rgba(255, 221, 151, .72);
  }
}

@keyframes route-drift {
  to { stroke-dashoffset: -9; }
}

.floating-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.floating-card div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.floating-card dt {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}

.floating-card dd {
  margin: 0;
  color: var(--green-950);
  font-weight: 800;
  text-align: right;
}

.fact-strip {
  padding: 20px 0;
}

.facts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  background: rgba(255, 253, 248, .72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(31, 45, 35, .08);
}

.facts div {
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}

.facts div:last-child {
  border-right: 0;
}

.facts strong {
  display: block;
  margin-top: 6px;
  color: var(--green-950);
  line-height: 1.25;
}

.split {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: center;
  gap: 54px;
}

.split.reverse {
  grid-template-columns: 1fr .9fr;
}

.split p,
.section-head p,
.pricing-layout > div:first-child p,
.location-grid p,
.faq-layout > div:first-child p,
.contact-grid p {
  color: var(--muted);
}

.suitability-grid,
.rules-grid,
.fee-grid,
.distance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.suitability-grid article,
.rules-grid article,
.fee-grid article,
.distance-grid article,
.included-card,
.price-card,
.inquiry-form,
.contact-cards a,
.contact-cards div {
  padding: 22px;
  background: rgba(255, 253, 248, .86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(31, 45, 35, .07);
}

.suitability-grid strong,
.rules-grid strong,
.fee-grid strong,
.distance-grid strong {
  display: block;
  color: var(--green-950);
  font-weight: 800;
}

.suitability-grid span,
.rules-grid span,
.fee-grid span,
.distance-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: .94rem;
}

.section-sage {
  background: linear-gradient(180deg, rgba(223, 232, 215, .64), rgba(238, 243, 232, .28));
  border-block: 1px solid rgba(29, 75, 49, .08);
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head.light h2,
.section-head.light p {
  color: var(--paper);
}

.rooms-section {
  background:
    linear-gradient(180deg, rgba(250, 244, 233, .92), rgba(234, 226, 209, .62)),
    radial-gradient(circle at 12% 8%, rgba(185, 111, 75, .1), transparent 26rem);
}

.rooms-head {
  max-width: 760px;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.room-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  background: rgba(255, 253, 248, .94);
  border: 1px solid rgba(29, 75, 49, .12);
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(31, 45, 35, .1);
  cursor: pointer;
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}

.room-card:hover,
.room-card:focus,
.room-card:focus-within {
  border-color: rgba(29, 75, 49, .24);
  outline: none;
  box-shadow: 0 28px 72px rgba(31, 45, 35, .18);
  transform: translateY(-6px);
}

.room-card.featured {
  background: linear-gradient(180deg, rgba(255, 253, 248, .98), rgba(248, 241, 229, .94));
}

.room-card.is-hidden {
  display: none;
}

.room-image {
  display: block;
  width: 100%;
  height: 250px;
  overflow: hidden;
  padding: 0;
  background: #e8dfd0;
  border: 0;
  cursor: pointer;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2, .72, .2, 1), filter .28s ease;
}

.room-card:hover .room-image img,
.room-card:focus .room-image img,
.room-card:focus-within .room-image img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.055);
}

.room-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.availability {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 6px 10px;
  color: var(--green-900);
  background: rgba(223, 232, 215, .86);
  border: 1px solid rgba(49, 95, 67, .16);
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 800;
}

.room-body h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.72rem;
  line-height: 1.08;
}

.room-capacity {
  margin: 8px 0 0;
  color: var(--green-800);
  font-weight: 800;
}

.room-body p,
.room-body li {
  color: var(--muted);
  font-size: .92rem;
}

.room-body ul,
.included-card ul,
.check-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 16px 0;
  list-style: none;
}

.room-body li,
.included-card li,
.check-list li {
  position: relative;
  padding-left: 22px;
}

.room-body li::before,
.included-card li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--green-700);
  font-weight: 900;
  content: "✓";
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.room-footer strong {
  color: var(--green-950);
}

.room-footer button {
  min-height: 42px;
  padding: 0 14px;
  color: var(--paper);
  background: var(--green-900);
  border: 0;
  border-radius: 7px;
  box-shadow: 0 12px 24px rgba(13, 43, 27, .12);
  cursor: pointer;
  font-size: .88rem;
  font-weight: 850;
  opacity: .9;
  transform: translateY(2px);
  transition: opacity .22s ease, transform .22s ease, background .22s ease;
}

.room-card:hover .room-footer button,
.room-card:focus .room-footer button,
.room-card:focus-within .room-footer button {
  background: #0b2517;
  opacity: 1;
  transform: translateY(0);
}

.benefit-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 22px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.benefit-band span {
  padding: 18px;
  background: rgba(255, 253, 248, .72);
  font-weight: 750;
}

.room-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.room-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.room-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 26, 17, .62);
  backdrop-filter: blur(12px);
}

.room-modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(380px, .72fr);
  width: min(1540px, calc(100vw - 28px));
  max-height: calc(100svh - 28px);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  box-shadow: 0 38px 100px rgba(9, 23, 14, .34);
}

.room-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--green-950);
  background: rgba(255, 253, 248, .9);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(31, 45, 35, .16);
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
}

.room-modal-gallery {
  display: grid;
  grid-template-rows: minmax(620px, 1fr) auto;
  min-height: calc(100svh - 28px);
  background: #151f18;
}

.room-hero-frame {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #151f18;
}

.room-hero-frame > img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.room-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--green-950);
  background: rgba(255, 253, 248, .9);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(8, 16, 10, .2);
  cursor: pointer;
  font-size: 2.1rem;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(14px);
}

.room-gallery-prev {
  left: 18px;
}

.room-gallery-next {
  right: 18px;
}

.room-gallery-nav:hover,
.room-gallery-nav:focus-visible {
  background: var(--paper);
  outline: 3px solid rgba(185, 111, 75, .28);
}

.room-thumbnails {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 116px;
  gap: 10px;
  overflow-x: auto;
  padding: 14px;
  background: rgba(255, 253, 248, .92);
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.room-thumbnails button {
  height: 78px;
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  opacity: .72;
  scroll-snap-align: start;
}

.room-thumbnails button.is-active {
  border-color: var(--green-800);
  opacity: 1;
}

.room-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-modal-content {
  overflow-y: auto;
  padding: 58px 42px 34px;
}

.room-modal-content h2 {
  margin-top: 6px;
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.room-modal-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 28px;
}

.room-modal-facts span,
.room-modal-facts strong {
  padding: 10px 12px;
  color: var(--green-950);
  background: rgba(223, 232, 215, .72);
  border: 1px solid rgba(29, 75, 49, .12);
  border-radius: 999px;
  font-size: .94rem;
}

.room-modal-copy {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.room-modal-copy h3 {
  margin-bottom: 12px;
  color: var(--green-950);
  font-size: 1rem;
}

.room-modal-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.room-modal-copy li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: .94rem;
}

.room-modal-copy li::before {
  position: absolute;
  left: 0;
  color: var(--green-700);
  font-weight: 900;
  content: "✓";
}

.room-conditions p,
.room-anna-prompt p {
  color: var(--muted);
}

.room-anna-prompt {
  margin: 2px 0 22px;
  padding: 16px;
  background: rgba(223, 232, 215, .54);
  border: 1px solid rgba(29, 75, 49, .1);
  border-radius: 8px;
}

.room-anna-prompt p {
  margin: 0;
  font-weight: 650;
}

.room-modal-actions {
  position: sticky;
  bottom: 0;
  display: flex;
  gap: 12px;
  padding-top: 16px;
  background: linear-gradient(180deg, rgba(255, 253, 248, .72), var(--paper) 45%);
}

.pricing-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 26px;
}

.pricing-layout > div:first-child {
  grid-row: span 2;
}

.price-card table {
  width: 100%;
  border-collapse: collapse;
}

.price-card th {
  color: white;
  background: var(--green-900);
  font-size: .8rem;
  text-align: left;
  text-transform: uppercase;
}

.price-card th,
.price-card td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
}

.price-card td:last-child {
  color: var(--green-900);
  font-weight: 900;
}

.table-note,
.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .88rem;
}

.form-note.is-success {
  color: var(--green-900);
  font-weight: 800;
}

.form-note.is-error {
  color: var(--terracotta-dark);
  font-weight: 800;
}

.fee-grid {
  grid-column: 2;
}

.included-card {
  grid-column: 1 / -1;
}

.section-dark {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(13, 43, 27, .98), rgba(18, 55, 33, .94)),
    var(--green-950);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-grid article {
  overflow: hidden;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
}

.feature-grid img {
  width: 100%;
  height: 285px;
  object-fit: cover;
}

.feature-grid h3,
.feature-grid p {
  color: var(--paper);
}

.feature-grid h3 {
  padding: 20px 20px 0;
}

.feature-grid p {
  padding: 0 20px 22px;
  opacity: .82;
}

.location-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: stretch;
  gap: 34px;
}

.distance-grid {
  margin-top: 26px;
}

.location-story {
  display: grid;
  gap: 22px;
}

.location-story h2 {
  max-width: 980px;
  text-transform: none;
}

.map-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(238, 243, 232, .86), rgba(255, 253, 248, .78)),
    repeating-linear-gradient(28deg, transparent 0 44px, rgba(29, 75, 49, .05) 44px 46px),
    radial-gradient(circle at 62% 34%, rgba(91, 130, 155, .24), transparent 15rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-card::before {
  position: absolute;
  inset: 12% -10% auto -10%;
  height: 160px;
  background: rgba(79, 129, 160, .22);
  border-radius: 50%;
  transform: rotate(-18deg);
  content: "";
}

.map-point {
  position: absolute;
  z-index: 2;
  padding: 9px 12px;
  color: var(--terracotta-dark);
  background: rgba(255, 253, 248, .9);
  border: 1px solid rgba(145, 88, 63, .18);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(56, 46, 36, .1);
  font-size: .84rem;
  font-weight: 850;
}

.map-point.home {
  top: 48%;
  left: 43%;
  color: white;
  background: var(--green-900);
  transform: scale(1.25);
}

.p1 { top: 16%; left: 42%; }
.p2 { top: 31%; right: 18%; }
.p3 { top: 34%; left: 15%; }
.p4 { right: 19%; bottom: 29%; }
.p5 { left: 18%; bottom: 24%; }

.location-map-illustration {
  position: relative;
  aspect-ratio: 3 / 2;
  min-height: auto;
  overflow: hidden;
  margin: 0;
  background: #d7c399;
  border: 1px solid rgba(29, 75, 49, .14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
}

.location-map-illustration::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(30, 24, 16, .16), transparent 16%, transparent 84%, rgba(30, 24, 16, .18)),
    linear-gradient(180deg, rgba(30, 24, 16, .12), transparent 28%, rgba(30, 24, 16, .16));
  content: "";
}

.location-map-illustration > img,
.location-map-illustration .map-art {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  animation: none;
  filter: saturate(1.04) contrast(1.02);
}

.attraction-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.attraction-row article {
  padding: 20px;
  background: rgba(255, 253, 248, .78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.attraction-row span {
  color: var(--terracotta-dark);
  font-size: .74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.attraction-row strong {
  display: block;
  margin-top: 5px;
  color: var(--green-950);
}

.attraction-row p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .92rem;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 16px;
  align-items: end;
}

.image-stack img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-stack img:nth-child(2) {
  height: 310px;
}

.faq-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 26px;
}

.rules-grid,
.accordion {
  grid-column: 2;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion details {
  background: rgba(255, 253, 248, .88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.accordion summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--green-950);
  font-weight: 850;
}

.accordion p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.contact-section {
  background: linear-gradient(180deg, rgba(18, 55, 33, .06), rgba(185, 111, 75, .08));
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-cards span {
  display: block;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-cards strong {
  display: block;
  margin-top: 4px;
  color: var(--green-950);
  overflow-wrap: anywhere;
}

.contact-cards small {
  display: block;
  margin-top: 3px;
  color: var(--terracotta-dark);
}

.inquiry-form {
  display: grid;
  gap: 16px;
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--green-950);
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(18, 55, 33, .18);
  border-radius: 7px;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: 3px solid rgba(185, 111, 75, .2);
  border-color: var(--terracotta);
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 253, 248, .84);
  background: var(--green-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}

.footer-brand small,
.footer-brand strong {
  color: white;
}

.on-dark {
  color: white;
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: none;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 7px;
  box-shadow: 0 16px 36px rgba(13, 43, 27, .2);
}

.sticky-cta a {
  padding: 13px 16px;
  color: white;
  background: var(--green-900);
  font-size: .88rem;
  font-weight: 800;
}

.sticky-cta a + a {
  background: var(--terracotta-dark);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding-top: 12px;
  }

  .site-header.is-open .site-nav a {
    padding: 13px 0;
    border-top: 1px solid var(--line);
  }

  .hero-grid,
  .location-photo-grid,
  .split,
  .split.reverse,
  .pricing-layout,
  .location-grid,
  .faq-layout,
  .contact-grid,
  .agent-layout {
    grid-template-columns: 1fr;
  }

  .pricing-layout > div:first-child,
  .fee-grid,
  .rules-grid,
  .accordion {
    grid-column: auto;
    grid-row: auto;
  }

  .facts,
  .room-grid,
  .benefit-band,
  .feature-grid,
  .attraction-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .room-modal-panel {
    grid-template-columns: 1fr;
    max-height: calc(100svh - 24px);
    overflow-y: auto;
  }

  .room-modal-gallery {
    height: calc(56svh + 98px);
    min-height: 0;
    grid-template-rows: minmax(360px, 56svh) auto;
  }

  .room-modal-content {
    overflow: visible;
  }

  .hero-media img {
    height: 460px;
  }

  .amenity-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 310px 240px;
    min-height: 0;
  }

  .amenity-card-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .location-hero {
    padding-top: 42px;
  }

  .location-hero h1 {
    max-width: 900px;
    font-size: clamp(3.05rem, 9vw, 5.3rem);
  }

  .location-photo-grid img {
    height: clamp(310px, 48vw, 430px);
  }

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

  .distance-line {
    display: none;
  }

  .distance-item,
  .distance-center {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    text-align: center;
  }

  .distance-item strong,
  .distance-item span:last-child {
    grid-column: auto;
  }

  .distance-icon {
    grid-row: auto;
    width: 82px;
    height: 82px;
  }

  .map-intro {
    min-height: calc(100svh - 66px);
    padding: 12px;
  }

  .map-stage {
    min-height: calc(100svh - 90px);
  }

  .story-point {
    max-width: 138px;
    min-height: 38px;
    padding: 6px 9px 6px 6px;
  }

  .story-icon {
    width: 26px;
    height: 26px;
  }

  .story-icon svg {
    width: 17px;
    height: 17px;
  }
}

@media (max-width: 680px) {
  .container {
    width: calc(100% - 28px);
    max-width: 1180px;
  }

  .section {
    padding: 64px 0;
  }

  .site-header {
    min-height: 66px;
    padding-inline: 14px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    max-width: 170px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 3.4rem);
  }

  .hero-copy h2 {
    font-size: clamp(2.65rem, 13vw, 3.4rem);
  }

  h2 {
    font-size: clamp(2.05rem, 12vw, 3rem);
  }

  .location-hero {
    padding: 30px 0 44px;
  }

  .location-hero-inner {
    width: calc(100% - 28px);
  }

  .location-hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
    line-height: .98;
  }

  .location-photo-grid {
    gap: 10px;
    margin-top: 22px;
  }

  .location-photo-grid img {
    height: clamp(220px, 68vw, 330px);
  }

  .distance-compass {
    grid-template-columns: 1fr;
    width: min(360px, 100%);
    margin-top: 20px;
  }

  .distance-item,
  .distance-center {
    grid-template-columns: 76px 1fr;
    justify-items: start;
    text-align: left;
  }

  .distance-item strong,
  .distance-item span:last-child {
    grid-column: 2;
  }

  .distance-icon {
    grid-row: 1 / span 2;
    width: 76px;
    height: 76px;
  }

  .distance-icon svg {
    width: 46px;
    height: 46px;
  }

  .location-hero-summary {
    margin-top: 28px;
  }

  .location-hero-summary p {
    font-size: clamp(1.16rem, 5vw, 1.45rem);
    line-height: 1.42;
  }

  .hero {
    padding-top: 46px;
  }

  .map-intro {
    padding: 0;
  }

  .map-stage {
    min-height: calc(100svh - 66px);
    border-inline: 0;
    border-radius: 0;
  }

  .map-art {
    object-position: 50% 50%;
  }

  .map-routes {
    opacity: .56;
  }

  .story-point {
    gap: 0;
    max-width: none;
    min-height: 36px;
    padding: 5px;
  }

  .story-point span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .story-point.estate {
    gap: 8px;
    padding: 8px 12px 8px 8px;
  }

  .story-point.estate span:last-child {
    position: static;
    width: auto;
    height: auto;
    clip: auto;
  }

  .map-tooltip {
    position: fixed;
    top: auto;
    right: 14px;
    bottom: 86px;
    left: 14px;
    width: auto;
    transform: translateY(12px) scale(.98);
  }

  .map-tooltip.is-visible {
    transform: translateY(0) scale(1);
  }

  .hero-media {
    min-height: auto;
  }

  .amenity-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }

  .amenity-card,
  .amenity-card-large {
    grid-column: auto;
    grid-row: auto;
    height: 245px;
  }

  .hero-media img {
    height: 340px;
  }

  .floating-card {
    position: static;
    width: auto;
    margin-top: 12px;
  }

  .hero-agent-card {
    position: static;
    width: auto;
    margin-top: 12px;
    grid-template-columns: 86px 1fr;
  }

  .hero-agent-card img {
    width: 86px;
    height: 104px;
  }

  .agent-section {
    padding: 58px 0;
  }

  .agent-layout {
    min-height: auto;
  }

  .chat-agent {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    height: auto;
    z-index: 140;
  }

  body.show-sticky-cta .chat-agent:not(.is-expanded) {
    bottom: 74px;
  }

  .chat-agent:not(.is-expanded) .agent-stage {
    display: none;
  }

  .chat-agent:not(.is-expanded) .agent-mobile-open {
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    padding: 8px 14px 8px 8px;
    color: var(--green-950);
    background: rgba(255, 253, 248, .92);
    border: 1px solid rgba(255, 255, 255, .76);
    border-radius: 999px;
    box-shadow: 0 18px 44px rgba(31, 45, 35, .16);
    pointer-events: auto;
    backdrop-filter: blur(18px);
  }

  .chat-agent.is-expanded {
    inset: auto 0 0;
    width: 100%;
    height: min(84svh, 720px);
  }

  .chat-agent.is-expanded .agent-mobile-open {
    display: none;
  }

  .chat-agent.is-expanded .agent-stage {
    display: block;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 253, 248, .96), rgba(246, 238, 225, .98));
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -18px 50px rgba(31, 45, 35, .18);
    pointer-events: auto;
    backdrop-filter: blur(20px);
  }

  .agent-controls {
    top: 12px;
    right: 12px;
  }

  .chat-agent.is-expanded .agent-portrait-shell {
    right: 8px;
    bottom: 82px;
    width: min(172px, 44vw);
  }

  .chat-agent.is-expanded .agent-bubble-stack {
    right: auto;
    bottom: 122px;
    left: 14px;
    width: calc(100% - 160px);
    max-height: calc(100% - 196px);
    overflow-y: auto;
    padding: 68px 2px 12px;
    align-items: flex-start;
    pointer-events: auto;
  }

  .message {
    max-width: 100%;
    padding: 12px 14px;
  }

  .agent-input {
    right: 12px;
    bottom: 18px;
    left: 12px;
    width: auto;
    grid-template-columns: minmax(0, 1fr) 40px 56px;
  }

  .agent-send {
    width: 40px;
    height: 50px;
    min-height: 0;
    order: initial;
  }

  .agent-speaking {
    right: 76px;
    bottom: 12px;
  }

  .agent-note,
  .sound-button {
    display: none;
  }

  .facts,
  .room-grid,
  .benefit-band,
  .feature-grid,
  .attraction-row,
  .suitability-grid,
  .rules-grid,
  .fee-grid,
  .distance-grid {
    grid-template-columns: 1fr;
  }

  .facts div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .facts div:last-child {
    border-bottom: 0;
  }

  .price-card {
    overflow-x: auto;
  }

  .room-image {
    height: 245px;
  }

  .room-modal {
    align-items: end;
    padding: 0;
  }

  .room-modal-panel {
    width: 100%;
    max-height: 100svh;
    border-radius: 20px 20px 0 0;
  }

  .room-modal-gallery {
    height: calc(42svh + 82px);
    grid-template-rows: minmax(250px, 42svh) auto;
  }

  .room-thumbnails {
    grid-auto-columns: 86px;
    min-height: 82px;
    padding: 10px 14px;
  }

  .room-thumbnails button {
    height: 62px;
  }

  .room-gallery-nav {
    width: 42px;
    height: 42px;
    font-size: 1.8rem;
  }

  .room-gallery-prev {
    left: 10px;
  }

  .room-gallery-next {
    right: 10px;
  }

  .room-modal-content {
    padding: 30px 18px 22px;
  }

  .room-modal-copy ul {
    grid-template-columns: 1fr;
  }

  .room-modal-actions {
    right: -18px;
    bottom: -22px;
    left: -18px;
    margin-inline: -18px;
    padding: 14px 18px calc(14px + env(safe-area-inset-bottom));
    background: rgba(255, 253, 248, .94);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(16px);
  }

  .room-modal-actions .btn {
    flex: 1;
    min-width: 0;
    padding-inline: 10px;
    font-size: .92rem;
  }

  .price-card table {
    min-width: 560px;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img,
  .image-stack img:nth-child(2) {
    height: 300px;
  }

  .map-card,
  .location-map-illustration,
  .location-map-illustration img {
    min-height: auto;
  }

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

  .sticky-cta {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 1fr 1fr;
  }

  body.show-sticky-cta .sticky-cta {
    display: grid;
  }
}

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

  .map-art,
  .story-point,
  .story-point.estate,
  .map-routes path,
  .mic-button.is-recording {
    animation: none;
  }

  .map-stage,
  .map-art,
  .story-point,
  .map-tooltip {
    transition-duration: .01ms;
  }
}
