@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/font-0.woff2) format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/assets/font-1.woff2) format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/font-2.woff2) format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/font-3.woff2) format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/font-4.woff2) format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/assets/font-5.woff2) format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/font-6.woff2) format("woff2");
}

:root {
  --ink: #0e2e50;
  --forest: #00b98e;
  --muted: #667085;
  --paper: #ffffff;
  --cream: #effaf7;
  --line: #d6e8e2;
  --lime: #ff692e;
  --sand: #f5c66a;
  --white: #fff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "DM Sans", sans-serif;
  --display: Manrope, var(--sans);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.55;
}
button {
  border: 0;
}
img {
  max-width: 100%;
  display: block;
}
svg {
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.1;
  letter-spacing: -0.055em;
  font-weight: 500;
}
h1 {
  font-size: clamp(44px, 5.5vw, 84px);
}
h2 {
  font-size: clamp(40px, 4.4vw, 68px);
}
h3 {
  font-size: 27px;
  letter-spacing: -0.04em;
}
em {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.055em;
}
p + p {
  margin-top: 18px;
}
p {
  color: var(--muted);
}
p.lead {
  font-size: 21px;
  line-height: 1.6;
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid #a0af56;
  outline-offset: 5px;
}
::selection {
  background: var(--lime);
  color: var(--ink);
}
[hidden] {
  display: none !important;
}
.section {
  max-width: 1440px;
  padding: 100px 6%;
  margin: auto;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
}
.section-heading p {
  max-width: 360px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.17em;
  color: inherit;
  line-height: 1.6;
  margin-bottom: 20px;
}
.small {
  font-size: 13px;
}
.muted {
  color: var(--muted);
}
.narrow {
  max-width: 950px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: none;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 17px 25px;
  background: var(--forest);
  border: 1px solid var(--forest);
  color: white;
  font-size: 13px;
  font-weight: 550;
  line-height: 1.5;
  transition:
    background 0.2s,
    transform 0.2s;
  min-height: 52px;
}
.button:hover {
  background: #3f5542;
  transform: translateY(-2px);
}
.button.light {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}
.button.light:hover {
  background: #e3edc2;
}
.button.outline {
  background: transparent;
  color: var(--ink);
}
.circle {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 23px;
}
.circle.dark {
  background: var(--forest);
  color: white;
  border: 0;
}
.skip {
  position: absolute;
  left: 20px;
  top: -100px;
  z-index: 10000;
  background: white;
  padding: 10px;
}
.skip:focus {
  top: 8px;
}
.site-header {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  gap: 28px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(252, 252, 247, 0.97);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.3;
}
.brand small {
  display: block;
  font-size: 7px;
  letter-spacing: 0.19em;
  font-weight: 500;
  margin-top: 7px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 12px;
  font-weight: 550;
}
.desktop-nav a {
  position: relative;
  padding: 10px 0;
}
.desktop-nav a:after {
  content: "";
  height: 1px;
  background: currentColor;
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  transition: width 0.2s;
}
.desktop-nav a:hover:after {
  width: 100%;
}
.header-cta {
  font-size: 12px;
  border: 1px solid var(--line);
  padding: 12px 18px;
  white-space: nowrap;
  display: flex;
  gap: 25px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  margin: 6px 0;
}
.mobile-menu {
  position: fixed;
  inset: 76px 0 0;
  background: var(--forest);
  color: white;
  z-index: 999;
  overflow-y: auto;
  padding: 40px 7%;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}
.mobile-menu nav a {
  font-size: 30px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.03em;
}
.home .site-header {
  position: absolute;
  width: 100%;
  background: transparent;
  color: white;
  border-bottom: 1px solid #ffffff30;
}
.home .site-header.scrolled {
  position: fixed;
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
}
.home .header-cta {
  border-color: #ffffff60;
}
.home .scrolled .header-cta {
  border-color: var(--line);
}
.hero {
  position: relative;
  min-height: 720px;
  height: min(850px, 94svh);
  color: white;
  overflow: hidden;
  background: #566049;
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 65%;
  animation: hero-drift 25s ease-out both;
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(21, 35, 24, 0.69), rgba(20, 32, 19, 0.1)),
    linear-gradient(0deg, #17271a80, transparent 40%, #1e2c2160);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 190px 6% 90px;
  max-width: 1440px;
  margin: auto;
}
.hero-kicker {
  font-size: 10px;
  letter-spacing: 0.21em;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 37px;
}
.live-dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
}
.hero h1 {
  font-size: clamp(66px, 8.2vw, 125px);
  font-weight: 400;
  letter-spacing: -0.064em;
  line-height: 0.98;
  max-width: 800px;
}
.hero h1 em {
  color: #e9ebcc;
}
.hero-content > p {
  font-size: 16px;
  color: #ffffffe0;
  margin-top: 29px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 34px;
}
.hero-map-link {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.hero-map-link .circle {
  width: 40px;
  height: 40px;
  font-size: 22px;
  border-color: #ffffff70;
}
.hero-edge {
  position: absolute;
  bottom: 27px;
  left: 6%;
  right: 6%;
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  letter-spacing: 0.17em;
  z-index: 1;
}
.search-ribbon {
  padding: 0 6%;
  background: var(--cream);
}
.search-ribbon form {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 72px;
  max-width: 1268px;
  margin: auto;
  align-items: center;
  min-height: 120px;
  gap: 22px;
}
.search-intro .eyebrow {
  font-size: 8px;
  margin-bottom: 5px;
}
.search-intro strong {
  font-size: 21px;
  letter-spacing: -0.04em;
  font-weight: 500;
}
.search-ribbon label {
  border-left: 1px solid #cbd0bd;
  padding-left: 26px;
  font-size: 8px;
  letter-spacing: 0.13em;
}
.search-ribbon input,
.search-ribbon select {
  background: transparent;
  width: 100%;
  border: 0;
  padding: 7px 0;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--ink);
  outline-offset: 2px;
}
.search-go {
  height: 65px;
  width: 65px;
  background: var(--forest);
  color: var(--lime);
  font-size: 30px;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
}
.intro-grid .text-link {
  margin-top: 20px;
}
.three-words {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 62px;
  border-top: 1px solid var(--line);
  padding-top: 23px;
  font-size: 13px;
}
.three-words i {
  font-size: 9px;
  color: var(--muted);
  margin-right: 18px;
  font-style: normal;
}
.birtamode-section {
  background: var(--cream);
  padding-bottom: 0;
}
.birtamode-section > .section {
  padding-bottom: 0;
}
.section-aside {
  max-width: 320px;
}
.section-aside .text-link {
  margin-top: 15px;
}
.location-experience {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 6% 80px;
  gap: 22px;
}
.location-photo {
  position: relative;
  min-height: 450px;
  overflow: hidden;
}
.location-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 18px;
  background: linear-gradient(transparent, #122518b0);
  color: white;
  font-size: 8px;
  letter-spacing: 0.14em;
}
.location-map-panel {
  background: #e3e8d8;
  display: flex;
  flex-direction: column;
}
.map-heading {
  display: flex;
  justify-content: space-between;
  padding: 25px 27px 0;
}
.map-heading .eyebrow {
  font-size: 10px;
}
.map-panel-bottom {
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  gap: 15px;
}
.map-shell {
  position: relative;
  min-height: 460px;
  background-color: #e7ebde;
  background-image: repeating-radial-gradient(
    ellipse at 70% 50%,
    transparent 0 45px,
    #b7c4a744 46px 47px,
    transparent 48px 75px
  );
  overflow: hidden;
  isolation: isolate;
}
.map-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.map-load {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--forest);
  color: white;
  z-index: 4;
  white-space: nowrap;
  padding: 15px 22px;
  font-size: 12px;
  box-shadow: 0 10px 20px #28352815;
}
.map-status {
  position: absolute;
  left: 16px;
  bottom: 25px;
  right: 16px;
  z-index: 400;
  background: #fffffff0;
  padding: 9px 12px;
  font-size: 11px;
  line-height: 1.5;
  pointer-events: none;
  max-width: 460px;
  color: var(--ink);
}
.small-map {
  min-height: 270px;
  flex: 1;
}
.map-tools {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 5px;
  z-index: 500;
}
.map-tools button {
  background: white;
  border: 1px solid #b8c2ac;
  font-size: 11px;
  min-height: 34px;
  padding: 6px 9px;
}
.map-shell:fullscreen {
  width: 100vw;
  height: 100vh;
}
.map-pin {
  background: var(--forest);
  border: 2px solid white;
  border-radius: 50%;
  width: 18px !important;
  height: 18px !important;
  box-shadow: 0 1px 10px #0003;
}
.map-pin.active {
  background: #d1a263;
  transform: scale(1.4);
}
.map-popup strong {
  font-size: 14px;
  display: block;
}
.map-popup a {
  display: block;
  font-size: 12px;
  padding-top: 8px;
  text-decoration: underline;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.land-card {
  position: relative;
  min-width: 0;
  transition: opacity 0.2s;
}
.card-image {
  display: block;
  position: relative;
  aspect-ratio: 1.24;
  overflow: hidden;
  background: var(--cream);
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.land-card:hover .card-image img {
  transform: scale(1.04);
}
.land-card.map-active {
  outline: 2px solid #9aad6e;
  outline-offset: 8px;
}
.status {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid #c5ccba;
  background: var(--paper);
  color: var(--forest);
}
.card-image .status {
  position: absolute;
  top: 13px;
  left: 13px;
}
.status-sold {
  background: #e4ddd3;
  color: #76543b;
}
.status-reserved {
  background: #eddfb1;
  color: #73571b;
}
.photo-note {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #fffc;
  padding: 4px 8px;
  font-size: 10px;
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  gap: 12px;
}
.card-top .eyebrow {
  margin: 0;
  font-size: 9px;
}
.save {
  background: none;
  font-size: 24px;
  min-width: 36px;
  min-height: 36px;
  padding: 0;
}
.save[aria-pressed="true"] {
  color: #a44d34;
}
.card-title {
  font-size: 23px;
  letter-spacing: -0.045em;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  line-height: 1.4;
}
.card-title > span {
  font-size: 18px;
  font-weight: 500;
}
.land-card > p {
  font-size: 12px;
  margin-top: 6px;
}
.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 16px;
  font-size: 11px;
  gap: 10px;
}
.card-bottom a {
  font-size: 25px;
}
.empty-land {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 65px 30px;
  text-align: center;
  max-width: 100%;
  background: linear-gradient(135deg, #eff2e8, transparent);
}
.empty-symbol {
  display: block;
  font-size: 36px;
  margin-bottom: 15px;
}
.empty-land .eyebrow {
  font-size: 9px;
  margin-bottom: 12px;
}
.empty-land p:not(.eyebrow) {
  max-width: 500px;
  margin: 20px auto 27px;
  font-size: 14px;
}
.empty-land .text-link {
  margin: 12px 20px;
}
.chandra-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  background: var(--cream);
  max-width: none;
  align-items: center;
}
.chandra-section > div:last-child {
  max-width: 490px;
}
.chandra-section p.lead {
  margin: 25px 0 10px;
}
.chandra-section .button {
  margin-top: 30px;
}
.chandra-art {
  min-height: 440px;
  background: #dce3d1;
  position: relative;
  overflow: hidden;
}
.chandra-art > span {
  position: absolute;
  top: 18px;
  left: 25px;
  font-size: 11px;
}
.contour {
  position: absolute;
  border: 1px solid #9aaa874f;
  border-radius: 45%;
  width: 440px;
  height: 440px;
  left: 40px;
  top: 15px;
  transform: rotate(-22deg);
}
.contour.c2 {
  width: 330px;
  height: 330px;
  left: 95px;
  top: 70px;
}
.contour.c3 {
  width: 210px;
  height: 210px;
  left: 155px;
  top: 130px;
}
.area-label {
  position: absolute;
  left: 30px;
  bottom: 30px;
  letter-spacing: 0.16em;
  font-size: 14px;
  line-height: 1.8;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.process-grid article {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.process-grid article > span {
  font-size: 9px;
  letter-spacing: 0.12em;
}
.process-grid h3 {
  font-size: 23px;
  margin: 42px 0 15px;
}
.process-grid p {
  font-size: 14px;
}
.brief-section {
  background: var(--forest);
  color: white;
  padding: 85px 6%;
  display: flex;
  justify-content: space-between;
  gap: 45px;
  align-items: center;
}
.brief-section h2 {
  font-size: clamp(42px, 5vw, 75px);
}
.brief-section h2 em {
  color: var(--lime);
}
.brief-section p:not(.eyebrow) {
  color: #e5e8dbb3;
  font-size: 14px;
  margin-top: 22px;
}
.brief-section .button {
  flex-shrink: 0;
}
.site-footer {
  padding: 85px 6% 25px;
  background: var(--cream);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  padding-bottom: 70px;
}
.footer-top h2 {
  font-size: clamp(34px, 4vw, 58px);
}
.footer-top .eyebrow {
  font-size: 9px;
}
.round-link {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
}
.round-link span {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #b9c3ad;
  font-size: 20px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  justify-content: center;
}
.footer-contact > a:first-of-type {
  font-size: 28px;
  letter-spacing: -0.04em;
}
.footer-contact > a:nth-of-type(2) {
  font-size: 15px;
}
.footer-contact p {
  font-size: 12px;
}
.footer-nav {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-nav > div {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  font-size: 11px;
}
.footer-base {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
  color: var(--muted);
}
.footer-base > div {
  display: flex;
  gap: 20px;
}
.footer-base > span:last-child {
  font-size: 8px;
  letter-spacing: 0.1em;
}
.collection-heading {
  padding-top: 65px;
  padding-bottom: 40px;
}
.collection-heading .section-heading {
  margin: 0;
}
.collection-heading h1 {
  font-size: clamp(45px, 5.5vw, 78px);
}
.collection {
  padding-top: 20px;
}
.filters {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 15px;
  align-items: end;
  background: var(--cream);
  padding: 22px;
}
.filters label,
.form-grid label,
.admin-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  font-weight: 550;
  letter-spacing: 0.025em;
}
input,
select,
textarea {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 12px 13px;
  color: var(--ink);
  border-radius: 0;
  min-width: 0;
  width: 100%;
  font-size: 14px;
  line-height: 1.5;
}
textarea {
  resize: vertical;
  min-height: 115px;
}
input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
}
.filters .button {
  min-height: 47px;
  padding: 12px 18px;
}
.more-filters {
  grid-column: 1/-1;
  font-size: 12px;
}
.more-filters summary {
  cursor: pointer;
  list-style: none;
  padding-top: 8px;
}
.more-filters > div {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  padding-top: 18px;
}
.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  margin: 30px 0;
  font-size: 12px;
  padding-bottom: 16px;
}
.view-switch {
  display: flex;
  gap: 5px;
}
.view-switch button {
  background: transparent;
  padding: 9px 14px;
  font-size: 12px;
}
.view-switch button[aria-pressed="true"] {
  background: var(--forest);
  color: white;
}
.discovery-map {
  display: none;
}
.map-view {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 22px;
}
.map-view .discovery-map {
  display: block;
  min-width: 0;
}
.map-view .card-grid {
  grid-template-columns: 1fr;
}
.map-view .discovery-list {
  max-height: 780px;
  overflow-y: auto;
  padding: 10px;
}
.map-view .map-shell {
  height: 780px;
  position: sticky;
  top: 110px;
}
.small-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--cream);
  max-width: none;
}
.small-cta h2 {
  font-size: 38px;
}
.detail-top {
  padding-top: 50px;
  padding-bottom: 30px;
}
.detail-top h1 {
  font-size: clamp(36px, 4vw, 60px);
  margin-top: 15px;
  max-width: 820px;
}
.detail-top .section-heading {
  margin-bottom: 0;
}
.detail-top p:not(.eyebrow) {
  margin-top: 15px;
  font-size: 13px;
}
.detail-price {
  display: flex;
  flex-direction: column;
  min-width: 190px;
  align-items: flex-end;
  gap: 8px;
}
.detail-price > strong {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.detail-price > span {
  font-size: 15px;
}
.detail-price > div {
  display: flex;
  gap: 22px;
  align-items: center;
}
.detail-price .save {
  font-size: 13px;
}
.detail-gallery {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.gallery-main {
  min-height: 470px;
}
.gallery-main > button {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
}
.gallery-main img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  max-height: 650px;
}
.gallery-main button > span {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: white;
  padding: 10px 17px;
  font-size: 12px;
}
.detail-intro {
  padding: 25px 28px;
  background: var(--cream);
}
.detail-intro .button {
  width: 100%;
  margin-top: 23px;
}
.detail-intro > p:last-child {
  margin-top: 10px;
}
.spec {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px;
  font-size: 13px;
}
.spec > span {
  color: var(--muted);
  font-size: 12px;
}
.spec strong {
  font-weight: 500;
}
.spec small {
  grid-column: 1/-1;
  color: var(--muted);
  font-size: 10px;
}
.missing-photo,
.map-unavailable {
  min-height: 420px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
}
.missing-photo > span,
.map-unavailable > span {
  font-size: 50px;
  margin-bottom: 15px;
}
.missing-photo h2 {
  font-size: 34px;
}
.missing-photo p,
.map-unavailable p {
  font-size: 14px;
  margin: 18px 0;
}
.thumb-strip {
  display: flex;
  gap: 10px;
  overflow: auto;
  padding-top: 0;
  padding-bottom: 0;
}
.thumb-strip button {
  background: none;
  flex: 0 0 110px;
  padding: 0;
}
.thumb-strip img {
  height: 75px;
  width: 110px;
  object-fit: cover;
}
.thumb-strip span {
  font-size: 10px;
  display: block;
  text-align: left;
  padding-top: 5px;
}
.gallery-dialog {
  border: 0;
  padding: 40px;
  background: #101a15f5;
  color: white;
  width: 100vw;
  max-width: 100vw;
  height: 100dvh;
  max-height: 100dvh;
}
.gallery-dialog::backdrop {
  background: #101a15;
}
.gallery-dialog[open] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.gallery-dialog figure {
  margin: 0;
  width: 85%;
  text-align: center;
}
.gallery-dialog figure img {
  max-height: 80vh;
  object-fit: contain;
  margin: auto;
}
.gallery-dialog figcaption {
  font-size: 12px;
  margin-top: 15px;
}
.gallery-dialog button {
  background: none;
  color: white;
  font-size: 32px;
  width: 48px;
  min-height: 48px;
}
.dialog-close {
  position: absolute;
  top: 15px;
  right: 15px;
}
.detail-story {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
}
.detail-story h3 {
  font-size: 23px;
  margin-bottom: 20px;
}
.preserve-lines {
  white-space: pre-line;
}
.highlights {
  padding: 0;
  list-style: none;
  margin-top: 25px;
}
.highlights li {
  border-top: 1px solid var(--line);
  padding: 12px 0;
  font-size: 14px;
}
.highlights li:before {
  content: "↗";
  margin-right: 15px;
}
.info-note {
  border-left: 3px solid #a7b58b;
  padding: 20px;
  background: var(--cream);
  font-size: 13px;
  margin-top: 25px;
}
.parcel-section {
  background: var(--cream);
  max-width: none;
}
.detail-map {
  min-height: 550px;
}
.map-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 15px;
  font-size: 11px;
  align-items: center;
}
.plan-explorer {
  padding-top: 30px;
}
.plan-explorer summary {
  cursor: pointer;
  font-size: 21px;
  letter-spacing: -0.03em;
}
.plan-controls {
  display: flex;
  gap: 30px;
  margin-top: 25px;
  max-width: 600px;
}
.plan-controls label {
  font-size: 12px;
  width: 33%;
}
.plan-stage {
  perspective: 800px;
  height: 400px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.parcel-plan {
  max-height: 330px;
  width: 500px;
  transform: rotateX(40deg);
  transform-origin: center;
  filter: drop-shadow(0 20px 12px #263d2820);
}
.road-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.road-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.road-specs > div {
  border-top: 1px solid var(--line);
  padding-top: 15px;
  display: flex;
  flex-direction: column;
}
.road-specs span {
  font-size: 12px;
  color: var(--muted);
}
.road-specs strong {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.04em;
}
.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin: 35px 0;
}
.nearby-grid article {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.nearby-grid h3 {
  font-size: 24px;
}
.nearby-grid p {
  font-size: 13px;
  margin-top: 12px;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 35px;
}
.video-grid figure {
  margin: 0;
}
.video-grid video {
  width: 100%;
  max-height: 550px;
  background: #142018;
}
.video-grid figcaption {
  font-size: 12px;
  margin-top: 8px;
}
.mobile-contact {
  display: none;
}
.lead-page {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 9%;
  align-items: start;
}
.lead-copy {
  position: sticky;
  top: 140px;
}
.lead-copy h1 {
  font-size: clamp(44px, 5vw, 73px);
}
.lead-copy > p:not(.eyebrow) {
  margin-top: 25px;
  font-size: 15px;
  max-width: 400px;
}
.contact-lines {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-lines a {
  font-size: 19px;
  letter-spacing: -0.03em;
}
.form-panel {
  background: var(--cream);
  padding: 35px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.span-2 {
  grid-column: 1/-1;
}
.form-panel h2 {
  font-size: 28px;
  margin-bottom: 25px;
}
.form-panel .button {
  margin-top: 10px;
  width: 100%;
}
.form-panel .small {
  margin-top: 20px;
}
.alert {
  padding: 18px 20px;
  border: 1px solid #aab998;
  background: #eef2e4;
  margin-bottom: 25px;
  font-size: 14px;
}
.alert.error {
  background: #f9eae2;
  border-color: #d5ab96;
  color: #733c29;
}
.lead-map {
  min-height: 260px;
  margin-top: 15px;
}
.drop-zone {
  display: block;
  border: 1px dashed #a5b296;
  padding: 20px;
  background: #ffffff60;
}
.drop-zone p {
  font-size: 12px;
  margin: 8px 0;
}
.form-help {
  font-size: 11px;
  color: var(--muted);
}
.about-hero h1 {
  max-width: 850px;
}
.about-image {
  width: 100%;
  aspect-ratio: 2;
  object-fit: cover;
  margin: 45px 0;
}
.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.about-body h2 {
  font-size: 42px;
}
.about-body p {
  font-size: 16px;
}
.legal h1 {
  margin-bottom: 40px;
}
.legal h2 {
  font-size: 26px;
  margin: 35px 0 15px;
}
.legal p {
  line-height: 1.8;
}
.toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--forest);
  color: white;
  padding: 15px 25px;
  z-index: 3000;
  font-size: 13px;
  box-shadow: 0 5px 20px #0002;
  max-width: 90vw;
}
.offline {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: #eadcb9;
  color: #443c27;
  padding: 10px;
  text-align: center;
  font-size: 12px;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.admin-body {
  background: #f2f4ee;
}
.admin-header {
  padding: 18px 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--forest);
  color: white;
  gap: 20px;
}
.admin-header a {
  font-size: 13px;
}
.admin-header nav {
  display: flex;
  gap: 20px;
}
.admin-main {
  max-width: 1250px;
  margin: auto;
  padding: 40px 4%;
}
.admin-main h1 {
  font-size: 38px;
}
.admin-main .section-heading {
  margin-bottom: 30px;
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 25px 0;
}
.admin-stats > a {
  background: white;
  border: 1px solid var(--line);
  padding: 20px;
  font-size: 12px;
}
.admin-stats strong {
  display: block;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
}
.table-wrap {
  overflow: auto;
  background: white;
  border: 1px solid var(--line);
  margin-top: 25px;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
  text-align: left;
}
th {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #e9eddf;
}
td,
th {
  padding: 15px;
  border-bottom: 1px solid var(--line);
}
td a {
  text-decoration: underline;
  margin-right: 12px;
  white-space: nowrap;
}
.admin-form fieldset {
  border: 1px solid var(--line);
  background: white;
  padding: 26px;
  margin: 25px 0;
}
.admin-form legend {
  padding: 0 10px;
  font-size: 18px;
}
.admin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.admin-grid .wide {
  grid-column: 1/-1;
}
.admin-form .map-shell {
  margin-top: 15px;
}
.admin-form .check-label {
  flex-direction: row;
  align-items: center;
}
.admin-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}
.media-admin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 20px 0;
}
.media-admin-grid img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.media-admin-grid label {
  font-size: 10px;
  margin-top: 8px;
}
.media-admin-grid input {
  padding: 6px;
}
.media-admin-grid .media-item {
  padding: 10px;
  border: 1px solid var(--line);
  background: white;
}
.media-item[draggable="true"] {
  cursor: grab;
}
.lead-record {
  padding: 25px;
  background: white;
  border: 1px solid var(--line);
  margin: 20px 0;
}
.lead-record h2 {
  font-size: 24px;
}
.lead-record dl {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 8px;
  font-size: 13px;
}
.lead-record dt {
  color: var(--muted);
}
.lead-record dd {
  margin: 0;
  overflow-wrap: anywhere;
}
.login-wrap {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 30px;
}
.login-card {
  max-width: 440px;
  width: 100%;
  border: 1px solid var(--line);
  padding: 40px;
  background: white;
}
.login-card h1 {
  font-size: 34px;
  margin: 30px 0;
}
.login-card label {
  display: block;
  font-size: 12px;
  margin-top: 20px;
}
.login-card .button {
  margin-top: 25px;
  width: 100%;
}
.login-card p {
  font-size: 12px;
  margin-top: 20px;
}
@keyframes hero-drift {
  from {
    transform: scale(1.055);
  }
  to {
    transform: scale(1);
  }
}
@media (min-width: 1700px) {
  .hero-content {
    padding-top: 210px;
  }
  .hero {
    height: 870px;
  }
  .brief-section,
  .site-footer,
  .chandra-section {
    padding-left: max(6%, calc((100vw - 1268px) / 2));
    padding-right: max(6%, calc((100vw - 1268px) / 2));
  }
}
@media (max-width: 1150px) {
  .desktop-nav {
    gap: 15px;
    font-size: 11px;
  }
  .brand span {
    font-size: 12px;
  }
  .site-header {
    gap: 16px;
    padding: 0 3%;
  }
  .header-cta {
    padding: 11px 14px;
  }
  .card-title {
    font-size: 21px;
    flex-direction: column;
    gap: 3px;
  }
  .hero h1 {
    font-size: 95px;
  }
  .admin-grid {
    grid-template-columns: 1fr 1fr;
  }
  .more-filters > div {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }
  .site-header {
    height: 76px;
    padding: 0 5%;
  }
  .header-cta {
    margin-left: auto;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    min-height: 680px;
    height: 90svh;
  }
  .hero-content {
    padding-top: 170px;
  }
  .hero h1 {
    font-size: 85px;
  }
  .search-ribbon form {
    grid-template-columns: 1.1fr 1fr 1fr 65px;
    padding: 25px 0;
  }
  .search-intro {
    grid-column: 1/-1;
  }
  .search-ribbon label {
    padding-left: 12px;
  }
  .intro-grid {
    gap: 6%;
  }
  .section {
    padding: 75px 5%;
  }
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .location-experience {
    padding: 0 5% 60px;
  }
  .location-photo {
    min-height: 380px;
  }
  .chandra-art {
    min-height: 360px;
  }
  .chandra-section {
    gap: 6%;
  }
  .footer-nav {
    align-items: flex-start;
  }
  .footer-nav > div {
    gap: 18px;
  }
  .filters {
    grid-template-columns: repeat(2, 1fr);
  }
  .filters > .button {
    grid-column: 1/-1;
  }
  .more-filters {
    grid-row: 3;
  }
  .map-view {
    grid-template-columns: 42% 58%;
    gap: 12px;
  }
  .detail-gallery {
    grid-template-columns: 1.3fr 1fr;
    gap: 22px;
  }
  .gallery-main {
    min-height: 400px;
  }
  .detail-intro {
    padding: 20px;
  }
  .detail-story {
    gap: 40px;
  }
  .lead-page {
    gap: 5%;
  }
  .form-panel {
    padding: 23px;
  }
  .lead-copy h1 {
    font-size: 47px;
  }
  .admin-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  body {
    font-size: 15px;
  }
  .section {
    padding: 55px 6%;
  }
  h1 {
    font-size: 44px;
  }
  h2 {
    font-size: 41px;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 17px;
  }
  .brand img {
    width: 34px;
    height: 34px;
  }
  .brand span {
    font-size: 11px;
  }
  .brand small {
    font-size: 6px;
    letter-spacing: 0.12em;
  }
  .header-cta {
    display: none;
  }
  .site-header {
    padding: 0 5%;
    height: 72px;
  }
  .mobile-menu {
    top: 72px;
  }
  .hero {
    min-height: 660px;
    height: 90svh;
    max-height: 800px;
  }
  .hero-image img {
    object-position: 38% 60%;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #172b1cca, #172b1c30),
      linear-gradient(0deg, #12231570, transparent);
  }
  .hero-content {
    padding: 155px 6% 90px;
  }
  .hero-kicker {
    font-size: 8px;
    letter-spacing: 0.13em;
    margin-bottom: 35px;
  }
  .hero h1 {
    font-size: clamp(59px, 14.5vw, 78px);
    line-height: 1.03;
  }
  .hero-content > p {
    font-size: 14px;
    margin-top: 25px;
  }
  .hero-actions {
    gap: 20px;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 28px;
  }
  .hero-actions .button {
    padding: 15px 22px;
  }
  .hero-map-link {
    font-size: 11px;
  }
  .hero-map-link .circle {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
  .hero-edge {
    font-size: 7px;
    bottom: 20px;
    gap: 15px;
  }
  .hero-edge > span:last-child {
    display: none;
  }
  .search-ribbon {
    padding: 0 6%;
  }
  .search-ribbon form {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  .search-intro {
    grid-column: 1/-1;
    margin-bottom: 2px;
  }
  .search-ribbon label {
    padding: 8px 0;
    border-left: 0;
    border-bottom: 1px solid #cbd0bd;
  }
  .search-go {
    width: 100%;
    height: 53px;
  }
  .search-intro strong {
    font-size: 23px;
  }
  .search-intro .eyebrow {
    font-size: 7px;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  p.lead {
    font-size: 18px;
  }
  .intro-grid p:not(.lead) {
    font-size: 14px;
  }
  .three-words {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 30px;
    padding: 0;
  }
  .three-words > span {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
  }
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 30px;
  }
  .section-heading > p,
  .section-aside p {
    font-size: 14px;
  }
  .location-experience {
    grid-template-columns: 1fr;
    padding: 0 6% 45px;
    gap: 16px;
  }
  .location-photo {
    min-height: 0;
    aspect-ratio: 1.25;
  }
  .location-map-panel .small-map {
    min-height: 300px;
  }
  .map-panel-bottom {
    padding: 20px;
  }
  .card-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .card-title {
    font-size: 23px;
    flex-direction: row;
  }
  .card-title > span {
    font-size: 20px;
  }
  .card-image {
    aspect-ratio: 1.4;
  }
  .empty-land {
    padding: 40px 20px;
  }
  .empty-land h3 {
    font-size: 27px;
  }
  .empty-land p:not(.eyebrow) {
    font-size: 13px;
  }
  .empty-land .button {
    font-size: 12px;
  }
  .chandra-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .chandra-art {
    min-height: 240px;
    order: 2;
  }
  .contour {
    width: 340px;
    height: 340px;
    left: 0;
    top: -40px;
  }
  .contour.c2 {
    width: 250px;
    height: 250px;
    left: 45px;
    top: 5px;
  }
  .contour.c3 {
    width: 160px;
    height: 160px;
    left: 90px;
    top: 50px;
  }
  .chandra-section .lead {
    font-size: 18px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .process-grid h3 {
    margin: 20px 0 12px;
  }
  .process-grid p {
    font-size: 13px;
  }
  .brief-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 55px 6%;
    gap: 30px;
  }
  .brief-section h2 {
    font-size: 46px;
  }
  .brief-section p:not(.eyebrow) {
    font-size: 13px;
  }
  .site-footer {
    padding: 55px 6% 22px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-bottom: 35px;
  }
  .footer-top h2 {
    font-size: 38px;
  }
  .footer-contact .eyebrow {
    margin-bottom: 5px;
  }
  .footer-contact > a:first-of-type {
    font-size: 24px;
  }
  .footer-nav {
    flex-direction: column;
    padding: 25px 0;
  }
  .footer-nav > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 25px;
  }
  .footer-base {
    flex-wrap: wrap;
    font-size: 9px;
  }
  .footer-base > span:last-child {
    display: none;
  }
  .collection-heading {
    padding-bottom: 20px;
  }
  .collection-heading h1 {
    font-size: 44px;
  }
  .collection-heading .section-heading > p {
    display: none;
  }
  .collection {
    padding-top: 10px;
  }
  .filters {
    padding: 18px;
    gap: 12px;
  }
  .filters label {
    font-size: 10px;
  }
  .filters input,
  .filters select {
    font-size: 12px;
    padding: 10px;
  }
  .more-filters > div {
    grid-template-columns: 1fr 1fr;
  }
  .collection-toolbar {
    font-size: 10px;
    gap: 12px;
  }
  .view-switch {
    gap: 0;
  }
  .view-switch button {
    font-size: 11px;
    padding: 8px 10px;
  }
  .map-view {
    display: block;
  }
  .map-view .discovery-map {
    display: block;
  }
  .map-view .discovery-list {
    display: none;
  }
  .map-view .map-shell {
    height: 65svh;
    min-height: 400px;
  }
  .map-shell .map-status {
    font-size: 10px;
    bottom: 22px;
  }
  .small-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .small-cta h2 {
    font-size: 34px;
  }
  .detail-top {
    padding-top: 30px;
    padding-bottom: 15px;
  }
  .detail-top h1 {
    font-size: 36px;
  }
  .detail-top .section-heading {
    gap: 18px;
  }
  .detail-price {
    align-items: flex-start;
  }
  .detail-price > strong {
    font-size: 27px;
  }
  .detail-price > div {
    position: absolute;
    right: 6%;
    align-self: flex-end;
  }
  .detail-price .text-link {
    font-size: 11px;
  }
  .detail-gallery {
    grid-template-columns: 1fr;
    padding-top: 15px;
    gap: 20px;
  }
  .gallery-main {
    min-height: 280px;
  }
  .gallery-main img {
    max-height: 400px;
  }
  .detail-intro {
    padding: 22px;
  }
  .detail-intro .spec {
    padding: 10px 0;
  }
  .thumb-strip {
    padding-top: 0;
    padding-bottom: 0;
  }
  .gallery-dialog {
    padding: 30px 5px;
  }
  .gallery-dialog button {
    font-size: 26px;
    width: 34px;
    flex-shrink: 0;
  }
  .gallery-dialog figure {
    width: calc(100% - 80px);
  }
  .detail-story {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .detail-story h2 {
    font-size: 38px;
  }
  .detail-story h3 {
    font-size: 21px;
  }
  .detail-story p {
    font-size: 14px;
  }
  .detail-map {
    min-height: 450px;
  }
  .map-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .plan-controls {
    gap: 15px;
  }
  .plan-stage {
    height: 290px;
  }
  .parcel-plan {
    max-height: 270px;
  }
  .road-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .road-specs strong {
    font-size: 27px;
  }
  .nearby-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .mobile-contact {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--paper);
    z-index: 900;
    border-top: 1px solid var(--line);
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    gap: 7px;
    box-shadow: 0 -5px 20px #0001;
  }
  .mobile-contact a {
    text-align: center;
    font-size: 12px;
    padding: 10px 5px;
    border: 1px solid var(--line);
  }
  .mobile-contact a:last-child {
    background: var(--forest);
    color: white;
  }
  .mobile-contact ~ script + .site-footer {
    padding-bottom: 100px;
  }
  .lead-page {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .lead-copy {
    position: static;
  }
  .lead-copy h1 {
    font-size: 45px;
  }
  .contact-lines {
    margin-top: 25px;
  }
  .form-panel {
    padding: 22px;
  }
  .form-grid {
    gap: 17px;
  }
  .form-grid label {
    font-size: 11px;
  }
  .form-grid .span-2 {
    grid-column: 1/-1;
  }
  .form-panel input,
  .form-panel select,
  .form-panel textarea {
    font-size: 16px;
  }
  .form-panel h2 {
    font-size: 25px;
  }
  .about-image {
    aspect-ratio: 1.25;
    margin: 30px 0;
  }
  .about-body {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-body h2 {
    font-size: 35px;
  }
  .about-body p {
    font-size: 14px;
  }
  .admin-header {
    align-items: flex-start;
    gap: 15px;
  }
  .admin-header nav {
    flex-wrap: wrap;
    gap: 12px;
  }
  .admin-header .brand span {
    font-size: 9px;
  }
  .admin-main {
    padding: 30px 5%;
  }
  .admin-main h1 {
    font-size: 30px;
  }
  .admin-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .admin-stats > a {
    padding: 15px;
    font-size: 10px;
  }
  .admin-stats strong {
    font-size: 27px;
  }
  .admin-grid {
    grid-template-columns: 1fr;
  }
  .admin-form fieldset {
    padding: 18px;
  }
  .media-admin-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lead-record dl {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .lead-record dd {
    margin-bottom: 10px;
  }
  .toast {
    bottom: 85px;
    white-space: normal;
    width: 90vw;
  }
  .login-card {
    padding: 28px;
  }
  .login-card h1 {
    font-size: 30px;
  }
}

/* Original-theme homepage with a real interactive WebGL land scene. */
.home .site-header,
.home .site-header.scrolled {
  position: sticky;
  top: 0;
  width: 100%;
  margin: 0;
  border-radius: 0;
  box-shadow: 0 7px 30px rgba(14, 46, 80, 0.07);
}
.button.orange {
  color: white;
  background: #ff692e;
  border-color: #ff692e;
  box-shadow: 0 10px 26px rgba(255, 105, 46, 0.24);
}
.button.orange:hover {
  color: white;
  background: #ed551b;
}
.classic-hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(520px, 1.12fr);
  background: white;
  overflow: hidden;
}
.classic-hero-copy {
  align-self: center;
  padding: 80px 8% 90px 11%;
  position: relative;
  z-index: 2;
}
.classic-hero-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
}
.classic-hero-copy .eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff692e;
  box-shadow: 0 0 0 0 rgba(255, 105, 46, 0.45);
  animation: location-pulse 2.2s infinite;
}
.classic-hero-copy h1 {
  color: var(--ink);
  font-size: clamp(58px, 6.2vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.065em;
}
.classic-hero-copy h1 em {
  color: var(--forest);
}
.classic-hero-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 28px 0 32px;
  font-size: 17px;
  color: #66758a;
}
.classic-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.classic-hero-facts {
  display: flex;
  gap: 30px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #66758a;
  font-size: 11px;
}
.classic-hero-facts span {
  display: flex;
  flex-direction: column;
}
.classic-hero-facts strong {
  color: var(--ink);
  font-size: 21px;
  font-weight: 650;
}
.land-3d-stage {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  background: linear-gradient(155deg, #dff8f1, #dbeaf8 55%, #fff0dc);
  isolation: isolate;
}
.land-3d-stage:active {
  cursor: grabbing;
}
.land-3d-stage > img,
.land-3d-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.land-3d-stage > img {
  object-fit: cover;
  opacity: 0.36;
  filter: saturate(0.8);
  transition: opacity 0.7s var(--ease);
}
.land-3d-canvas {
  z-index: 1;
}
.land-3d-canvas canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.land-3d-stage.is-3d-ready > img {
  opacity: 0;
}
.land-3d-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.65), transparent 14%),
    linear-gradient(0deg, rgba(14, 46, 80, 0.18), transparent 32%);
}
.land-3d-badge,
.land-3d-help,
.land-3d-note,
.land-3d-fallback {
  position: absolute;
  z-index: 3;
  padding: 10px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(14, 46, 80, 0.1);
  backdrop-filter: blur(10px);
  font-size: 9px;
  letter-spacing: 0.12em;
}
.land-3d-badge {
  top: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #007d60;
  font-weight: 700;
}
.land-3d-help {
  left: 25px;
  bottom: 25px;
  letter-spacing: 0.04em;
}
.land-3d-note {
  right: 25px;
  bottom: 25px;
  color: #5a6878;
  letter-spacing: 0.04em;
}
.land-3d-fallback {
  left: 25px;
  top: 25px;
}
.classic-search {
  position: relative;
  z-index: 4;
  max-width: 1320px;
  margin: -42px auto 0;
  padding: 0 25px;
}
.classic-search form {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr) auto;
  align-items: end;
  gap: 20px;
  padding: 23px;
  background: white;
  box-shadow: 0 24px 60px rgba(14, 46, 80, 0.13);
  border-bottom: 4px solid var(--forest);
}
.classic-search-title {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.2;
}
.classic-search-title img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.classic-search-title span {
  display: flex;
  flex-direction: column;
}
.classic-search-title small {
  margin-bottom: 6px;
  color: var(--forest);
  font-size: 8px;
  letter-spacing: 0.16em;
}
.classic-search label {
  color: #677487;
  font-size: 10px;
  font-weight: 600;
}
.classic-search input,
.classic-search select {
  margin-top: 7px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: white;
  padding: 10px 0;
}
.classic-section {
  padding-top: 125px;
}
.classic-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 45px;
  margin-bottom: 45px;
}
.classic-section-heading > p {
  max-width: 430px;
  font-size: 15px;
}
.classic-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.classic-feature-grid article {
  position: relative;
  padding: 30px;
  background: #f5fbf9;
  border: 1px solid #e0efea;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s,
    background 0.35s;
  overflow: hidden;
}
.classic-feature-grid article::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(0, 185, 142, 0.22);
  border-radius: 50%;
  transition: transform 0.5s var(--ease);
}
.classic-feature-grid article:hover {
  transform: translateY(-9px);
  box-shadow: 0 24px 50px rgba(14, 46, 80, 0.1);
  background: white;
}
.classic-feature-grid article:hover::after {
  transform: scale(1.35);
}
.classic-feature-grid img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 40px;
}
.classic-feature-grid article > span {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #ff692e;
  font-size: 11px;
}
.classic-feature-grid h3 {
  margin-bottom: 15px;
  color: var(--ink);
}
.classic-feature-grid p {
  min-height: 92px;
  font-size: 14px;
}
.classic-feature-grid a {
  display: inline-block;
  margin-top: 25px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 700;
}
.classic-location-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  max-width: 1440px;
  margin: 25px auto 0;
  padding: 80px 6%;
  gap: 45px;
  align-items: stretch;
  background: #effaf7;
}
.classic-location-copy {
  align-self: center;
}
.classic-location-copy h2 {
  font-size: clamp(42px, 4.5vw, 68px);
  color: var(--ink);
}
.classic-location-copy p:not(.eyebrow) {
  margin: 25px 0 30px;
  font-size: 15px;
}
.classic-home-map {
  min-height: 520px;
  box-shadow: 0 18px 45px rgba(14, 46, 80, 0.12);
}
.classic-listings {
  padding-top: 105px;
}
.classic-agent-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  gap: 0;
  padding-top: 70px;
  padding-bottom: 70px;
}
.classic-agent-photo {
  min-height: 530px;
  overflow: hidden;
  background: #e7f7f2;
}
.classic-agent-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  transition: transform 0.8s var(--ease);
}
.classic-agent-section:hover .classic-agent-photo img {
  transform: scale(1.035);
}
.classic-agent-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 65px;
  background: #f3faf8;
  border: 1px dashed rgba(0, 185, 142, 0.5);
}
.classic-agent-copy h2 {
  color: var(--ink);
}
.classic-agent-copy h2 em {
  color: #ef4d4d;
}
.classic-agent-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin: 25px 0;
  font-size: 15px;
}
.classic-agent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.agent-email {
  margin-top: 20px;
  color: var(--ink);
  font-size: 13px;
  text-decoration: underline;
}
.classic-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  padding: 80px max(6%, calc((100vw - 1268px) / 2));
  color: white;
  background: linear-gradient(125deg, #00a87f, #00b98e 60%, #15cfa3);
  overflow: hidden;
}
.classic-bottom-cta h2,
.classic-bottom-cta .eyebrow {
  color: white;
}
.classic-bottom-cta h2 em {
  color: #fff0b5;
}
.classic-bottom-cta p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 1050px) {
  .classic-hero {
    grid-template-columns: 0.92fr 1.08fr;
  }
  .classic-hero-copy {
    padding-left: 7%;
    padding-right: 5%;
  }
  .classic-search form {
    grid-template-columns: repeat(2, 1fr);
  }
  .classic-search-title {
    grid-column: 1 / -1;
  }
  .classic-search .button {
    width: 100%;
  }
}
@media (max-width: 760px) {
  .classic-hero {
    grid-template-columns: 1fr;
  }
  .classic-hero-copy {
    padding: 55px 6% 45px;
  }
  .classic-hero-copy h1 {
    font-size: clamp(52px, 15vw, 76px);
  }
  .classic-hero-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
  .classic-hero-facts {
    gap: 18px;
    overflow-x: auto;
  }
  .classic-hero-facts span {
    min-width: 95px;
  }
  .land-3d-stage {
    min-height: 500px;
  }
  .land-3d-help,
  .land-3d-note {
    max-width: 46%;
    line-height: 1.5;
  }
  .classic-search {
    margin-top: 0;
    padding: 0;
  }
  .classic-search form {
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 15px 35px rgba(14, 46, 80, 0.1);
  }
  .classic-search-title,
  .classic-search .button {
    grid-column: 1 / -1;
  }
  .classic-section {
    padding-top: 75px;
  }
  .classic-section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .classic-feature-grid {
    grid-template-columns: 1fr;
  }
  .classic-feature-grid p {
    min-height: 0;
  }
  .classic-location-section {
    grid-template-columns: 1fr;
    padding: 60px 6%;
  }
  .classic-home-map {
    min-height: 460px;
  }
  .classic-agent-section {
    grid-template-columns: 1fr;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .classic-agent-photo {
    min-height: 430px;
  }
  .classic-agent-copy {
    padding: 38px 25px;
  }
  .classic-bottom-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 60px 6%;
  }
}
@media (max-width: 430px) {
  .classic-hero-copy .eyebrow {
    font-size: 7px;
  }
  .classic-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .classic-hero-actions .button {
    width: 100%;
  }
  .land-3d-stage {
    min-height: 440px;
  }
  .land-3d-badge {
    top: 16px;
    right: 16px;
  }
  .land-3d-help {
    left: 16px;
    bottom: 16px;
  }
  .land-3d-note {
    right: 16px;
    bottom: 16px;
  }
  .classic-search form {
    grid-template-columns: 1fr;
  }
  .classic-search label,
  .classic-search .button {
    grid-column: 1;
  }
  .classic-agent-actions {
    flex-direction: column;
  }
  .classic-agent-actions .button {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .land-3d-stage {
    cursor: default;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-image img {
    transform: none;
  }
}

.quick-more {
  grid-column: 1/-1;
  padding-bottom: 18px;
  font-size: 11px;
}
.quick-more summary {
  cursor: pointer;
}
.quick-more > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  max-width: 600px;
  padding-top: 15px;
}
.quick-more label {
  display: block;
}
.map-tools {
  max-width: calc(100% - 65px);
  flex-wrap: wrap;
  justify-content: flex-end;
}
.map-north {
  background: #fff;
  padding: 6px 10px;
  font-size: 11px;
  border: 1px solid #b8c2ac;
  display: grid;
  place-items: center;
}
.dimension-label {
  font-size: 10px;
  background: #ffffffe8;
  color: #243b2d;
  text-align: center;
  padding: 2px;
  border: 1px solid #a4b08c;
  white-space: nowrap;
}
.map-sheet {
  position: absolute;
  z-index: 600;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: var(--paper);
  box-shadow: 0 -8px 24px #0002;
}
.map-sheet > button {
  float: right;
  background: none;
  font-size: 24px;
  width: 36px;
  height: 36px;
}
.map-sheet strong {
  font-size: 18px;
  font-weight: 500;
}
.map-sheet p {
  font-size: 13px;
  margin: 8px 0;
}
.map-sheet a {
  font-size: 12px;
}
input[type="range"] {
  accent-color: #647d4b;
  padding: 8px 0;
}
.site-footer {
  padding-bottom: max(25px, env(safe-area-inset-bottom));
}
body:has(.mobile-contact) .site-footer {
  padding-bottom: 100px;
}
model-viewer {
  width: 100%;
  height: 420px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.pagination .button {
  padding: 10px 16px;
  min-height: 44px;
}

.dimension-label.dim-hidden {
  display: none;
}

/* Restored Ghar Jagga Jhapa identity: clean white, emerald, orange and navy. */
.classic-brand {
  gap: 10px;
}
.classic-brand > img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(14, 46, 80, 0.12));
}
.classic-brand .brand-name {
  font-family: var(--display);
  font-size: clamp(17px, 1.55vw, 26px);
  font-style: italic;
  letter-spacing: -0.055em;
  white-space: nowrap;
}
.classic-brand .brand-name b {
  font-weight: 800;
}
.brand-ghar {
  color: #ed4c4c;
}
.brand-jagga {
  color: #3165de;
}
.brand-jhapa {
  color: #d43bbd;
}
.classic-brand .brand-name small {
  color: var(--muted);
  font-style: normal;
  font-size: 6px;
  letter-spacing: 0.14em;
  margin-top: 3px;
}
.site-header,
.home .site-header,
.home .site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(14, 46, 80, 0.1);
  box-shadow: 0 10px 35px rgba(14, 46, 80, 0.07);
  backdrop-filter: blur(16px);
}
.home .site-header {
  margin: 22px 4% 0;
  width: 92%;
  border-radius: 4px;
}
.home .site-header.scrolled {
  margin: 0;
  width: 100%;
}
.home .header-cta,
.home .scrolled .header-cta,
.header-cta {
  color: white;
  border-color: var(--forest);
  background: var(--forest);
  box-shadow: 0 8px 25px rgba(0, 185, 142, 0.22);
}
.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--forest);
}
.button {
  border-radius: 3px;
  box-shadow: 0 10px 26px rgba(0, 185, 142, 0.18);
}
.button.light {
  color: white;
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 10px 26px rgba(255, 105, 46, 0.25);
}
.button.light:hover {
  color: white;
  background: #f25418;
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 46, 80, 0.76), rgba(0, 185, 142, 0.1)),
    linear-gradient(0deg, rgba(14, 46, 80, 0.6), transparent 55%);
}
.hero h1 em {
  color: #b8f3df;
}
.hero-kicker .live-dot {
  background: #ffcf5a;
  box-shadow: 0 0 0 0 rgba(255, 207, 90, 0.65);
  animation: location-pulse 2.2s infinite;
}
.hero-content {
  animation: hero-copy-in 0.9s var(--ease) both;
}
.hero-map-link .circle {
  background: rgba(255, 255, 255, 0.13);
  transition:
    transform 0.25s var(--ease),
    background 0.25s;
}
.hero-map-link:hover .circle {
  transform: rotate(18deg) scale(1.08);
  background: var(--forest);
}
.search-ribbon,
.birtamode-section,
.chandra-section,
.site-footer,
.detail-intro,
.map-sheet {
  background: var(--cream);
}
.search-ribbon form {
  position: relative;
}
.search-ribbon form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 26%;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--lime));
  animation: search-glide 5s ease-in-out infinite alternate;
}
.search-go {
  background: var(--forest);
  color: white;
  transition:
    transform 0.24s var(--ease),
    background 0.24s;
}
.search-go:hover {
  transform: translateY(-4px) rotate(4deg);
  background: var(--lime);
}
.land-card:hover {
  transform: translateY(-7px);
}
.land-card {
  transition:
    transform 0.35s var(--ease),
    opacity 0.2s;
}
.card-bottom a,
.text-link,
.eyebrow {
  color: var(--forest);
}
.status-available {
  color: #006d54;
  background: #ddf8ee;
  border-color: #94dec9;
}
.brief-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, #00a77f, #00b98e 58%, #18cda2);
}
.brief-section::after {
  content: "";
  position: absolute;
  inset: -70% -10%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  animation: ambient-orbit 16s linear infinite;
  pointer-events: none;
}
.brief-section h2 em {
  color: #fff1c1;
}
.chandra-art {
  background: linear-gradient(145deg, #e8fbf4, #d8f4eb);
}
.contour {
  border-color: rgba(0, 185, 142, 0.24);
  animation: contour-breathe 6s ease-in-out infinite alternate;
}
.contour.c2 {
  animation-delay: -2s;
}
.contour.c3 {
  animation-delay: -4s;
}
.mobile-menu {
  color: white;
  background: linear-gradient(150deg, #00a87f, #0e2e50);
}
.mobile-menu a:hover {
  color: #fff0b5;
}
.map-pin {
  background: var(--forest);
  box-shadow:
    0 0 0 6px rgba(0, 185, 142, 0.2),
    0 3px 14px rgba(14, 46, 80, 0.25);
}
.map-pin.active {
  background: var(--lime);
}
.map-north,
.map-tools button {
  color: var(--ink);
}
.panorama-upload {
  border-color: var(--forest);
  background: linear-gradient(135deg, #e3fbf3, #fff7eb);
}
.panorama-admin-current {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px;
  margin: 22px 0;
  background: #effaf7;
  border: 1px solid var(--line);
}
.panorama-admin-current img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}
.panorama-admin-current p {
  font-size: 13px;
  margin: 7px 0 12px;
}
.panorama-section {
  max-width: 1440px;
}
.map-footer {
  flex-wrap: wrap;
}
.map-footer .exact-map-link,
.map-footer .street-view-link {
  margin-left: auto;
}
.panorama-shell {
  position: relative;
  height: min(68vw, 680px);
  min-height: 520px;
  overflow: hidden;
  color: white;
  background: #0e2e50;
  box-shadow: 0 32px 70px rgba(14, 46, 80, 0.18);
}
.panorama-shell > img,
.panorama-viewer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.panorama-shell > .panorama-viewer.pnlm-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.panorama-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14, 46, 80, 0.62), transparent 55%);
  pointer-events: none;
  transition: opacity 0.4s;
}
.panorama-shell.is-live::after,
.panorama-shell.is-live > img,
.panorama-shell.is-live .panorama-orbit {
  opacity: 0;
  pointer-events: none;
}
.panorama-load {
  position: absolute;
  left: 50%;
  bottom: 48px;
  z-index: 4;
  transform: translateX(-50%);
  white-space: nowrap;
}
.panorama-load:hover {
  transform: translateX(-50%) translateY(-3px);
}
.panorama-status {
  position: absolute;
  left: 25px;
  bottom: 19px;
  z-index: 4;
  color: white;
  font-size: 11px;
}
.panorama-orbit {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 54px;
  margin: -27px 0 0 -75px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  display: grid;
  place-items: center;
  animation: panorama-orbit 5s linear infinite;
}
.panorama-orbit span {
  padding: 8px 12px;
  background: rgba(14, 46, 80, 0.78);
  border-radius: 30px;
  font-weight: 700;
}
.panorama-viewer .pnlm-ui {
  font-family: var(--sans);
}
.panorama-viewer .pnlm-load-button,
.panorama-viewer .pnlm-controls-container {
  border-radius: 3px;
}
@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
}
@keyframes location-pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(255, 207, 90, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 207, 90, 0);
  }
}
@keyframes search-glide {
  to {
    transform: translateX(280%);
  }
}
@keyframes contour-breathe {
  to {
    transform: rotate(-15deg) scale(1.07);
  }
}
@keyframes ambient-orbit {
  to {
    transform: rotate(360deg);
  }
}
@keyframes panorama-orbit {
  to {
    transform: rotateY(360deg) rotateZ(360deg);
  }
}
@media (max-width: 640px) {
  .home .site-header,
  .home .site-header.scrolled {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }
  .classic-brand > img {
    width: 37px;
    height: 37px;
  }
  .classic-brand .brand-name {
    font-size: 16px;
  }
  .classic-brand .brand-name small {
    display: none;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(14, 46, 80, 0.8), rgba(0, 185, 142, 0.18)),
      linear-gradient(0deg, rgba(14, 46, 80, 0.52), transparent);
  }
  .panorama-shell {
    height: 62svh;
    min-height: 440px;
  }
  .panorama-load {
    width: calc(100% - 36px);
    white-space: normal;
  }
  .panorama-admin-current {
    grid-template-columns: 1fr;
  }
}

/* Final classic-home header rule comes after shared theme overrides. */
.home .site-header,
.home .site-header.scrolled {
  position: sticky;
  top: 0;
  width: 100%;
  margin: 0;
  border-radius: 0;
}

/* Plain, touch-friendly property editor for nontechnical admins. */
.admin-body {
  background: #f3f8f6;
  color: var(--ink);
}
.admin-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 78px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 7px 26px rgba(14, 46, 80, 0.07);
  backdrop-filter: blur(14px);
}
.admin-header nav a {
  padding: 10px 12px;
  border-radius: 4px;
}
.admin-header nav a:hover {
  color: white;
  background: var(--forest);
}
.admin-website-logo > img {
  width: 45px;
  height: 45px;
}
.admin-website-logo .brand-name {
  font-size: 20px;
}
.admin-main {
  max-width: 1180px;
  padding-top: 42px;
  padding-bottom: 90px;
}
.admin-main > .section-heading {
  align-items: center;
  padding: 26px 30px;
  margin-bottom: 20px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(14, 46, 80, 0.05);
}
.admin-main > .section-heading h1 {
  font-size: clamp(30px, 4vw, 48px);
}
.admin-simple-intro {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 17px 21px;
  color: #355267;
  background: #e8f9f4;
  border-left: 4px solid var(--forest);
}
.admin-simple-intro span {
  color: var(--muted);
  font-size: 13px;
}
.admin-stepper {
  position: sticky;
  top: 78px;
  z-index: 800;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin: 16px 0 22px;
  overflow-x: auto;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: 0 8px 25px rgba(14, 46, 80, 0.06);
}
.admin-stepper button {
  min-height: 64px;
  padding: 10px 13px;
  text-align: left;
  color: #536477;
  background: white;
  font-size: 11px;
  font-weight: 650;
  transition:
    color 0.2s,
    background 0.2s;
}
.admin-stepper button:hover,
.admin-stepper button:focus-visible {
  color: #006d54;
  background: #ecfbf6;
}
.admin-stepper button span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-bottom: 4px;
  color: white;
  background: var(--forest);
  border-radius: 50%;
  font-size: 10px;
}
.admin-form fieldset {
  scroll-margin-top: 175px;
  padding: 30px;
  margin: 0 0 22px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 10px 32px rgba(14, 46, 80, 0.045);
}
.admin-form legend {
  padding: 0 12px;
  color: var(--ink);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.035em;
}
.admin-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.admin-form label {
  color: #30475e;
  font-size: 12px;
  font-weight: 700;
}
.admin-form input,
.admin-form select,
.admin-form textarea {
  min-height: 51px;
  color: var(--ink);
  background: #fbfdfc;
  border: 1px solid #cfe0dc;
  font-size: 16px;
}
.admin-form textarea {
  min-height: 125px;
}
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(0, 185, 142, 0.12);
  outline: 0;
}
.admin-form label:has(> [name="lat"]),
.admin-form label:has(> [name="lng"]),
.admin-form label:has(> [name="polygon"]),
.admin-form label:has(> [name="dimensions"]),
.admin-form label:has(> [name="road_side"]),
.admin-form label:has(> [name="nearby"]),
.admin-technical-field {
  display: none !important;
}
.admin-location-summary {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px 17px;
  margin: 20px 0 14px;
  background: #fff7ee;
  border: 1px solid #f5d5b7;
}
.admin-location-summary.is-set {
  background: #e9faf5;
  border-color: #a8dfcf;
}
.admin-location-summary p {
  margin-top: 2px;
  font-size: 12px;
}
.location-state-dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 5px;
  background: #ff8a4b;
  border: 3px solid #ffe0cd;
  border-radius: 50%;
  box-sizing: content-box;
}
.is-set .location-state-dot {
  background: var(--forest);
  border-color: #c9f0e5;
}
.admin-form [data-editor] {
  min-height: 490px;
  border: 1px solid #bed7cf;
}
.admin-outline-builder,
.admin-nearby-builder {
  padding: 22px;
  margin-top: 18px;
  background: #f7fbfa;
  border: 1px solid #d7e7e2;
}
.admin-builder-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.admin-builder-heading strong {
  color: var(--ink);
  font-size: 17px;
}
.admin-builder-heading strong small {
  padding: 4px 7px;
  margin-left: 7px;
  color: #6c777f;
  background: #e7efec;
  border-radius: 3px;
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.admin-builder-heading p {
  max-width: 650px;
  margin-top: 4px;
  font-size: 12px;
}
.corner-count {
  flex: 0 0 auto;
  padding: 7px 10px;
  color: #006d54;
  background: #ddf8ee;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}
.side-intro {
  grid-column: 1 / -1;
}
.side-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 17px;
}
.boundary-side-row {
  padding: 14px;
  background: white;
  border: 1px solid var(--line);
}
.boundary-side-row label > span {
  color: var(--muted);
  font-weight: 400;
}
.boundary-side-row input[type="number"] {
  margin-top: 7px;
}
.road-side-choice {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  color: #536477 !important;
  font-weight: 500 !important;
}
.road-side-choice input,
.check-label input {
  width: 20px;
  min-width: 20px;
  min-height: 20px;
}
.nearby-rows {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.nearby-row {
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
}
.nearby-main {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 12px;
  align-items: end;
}
.remove-nearby {
  min-height: 51px;
  padding: 10px 14px;
  color: #a04433;
  background: #fff1ec;
  border: 1px solid #f1c2b5;
}
.nearby-row details {
  margin-top: 12px;
  color: #536477;
  font-size: 11px;
}
.nearby-row details > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 10px;
}
.admin-advanced-settings {
  margin-top: 10px;
}
.admin-advanced-settings summary {
  cursor: pointer;
  padding: 16px;
  color: #006d54;
  background: #effaf7;
  font-weight: 700;
}
.admin-advanced-settings[open] .admin-grid {
  padding-top: 20px;
}
.admin-actions {
  position: sticky;
  bottom: 0;
  z-index: 850;
  justify-content: flex-end;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--line);
  box-shadow: 0 -10px 30px rgba(14, 46, 80, 0.09);
  backdrop-filter: blur(12px);
}
.admin-actions .button {
  min-width: 210px;
}
.drop-zone {
  min-height: 150px;
  justify-content: center;
  border: 2px dashed #acd5ca;
  background: #f5fcfa;
}
.drop-zone:hover {
  border-color: var(--forest);
  background: #ebfaf5;
}
.login-wrap {
  padding: 25px;
  background:
    radial-gradient(circle at 20% 15%, #ddf8ee, transparent 36%),
    radial-gradient(circle at 85% 80%, #fff0e5, transparent 35%), #f6faf8;
}
.login-card {
  max-width: 475px;
  padding: 42px;
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(14, 46, 80, 0.12);
}
.login-card .admin-website-logo {
  margin-bottom: 30px;
}
.login-kicker {
  margin: 0 0 8px !important;
  color: var(--forest) !important;
  font-size: 9px !important;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.login-card .login-intro {
  margin: 10px 0 24px;
  color: var(--muted);
  font-size: 13px;
}
.login-card h1 {
  margin: 0;
}
.login-card input {
  min-height: 52px;
  font-size: 16px;
}
@media (max-width: 720px) {
  .admin-header {
    min-height: 68px;
    padding: 10px 4%;
  }
  .admin-header .admin-website-logo > img {
    width: 31px;
    height: 31px;
  }
  .admin-header .admin-website-logo .brand-name {
    font-size: 13px;
  }
  .admin-header .admin-website-logo {
    gap: 6px;
    min-width: 0;
  }
  .admin-header nav {
    gap: 4px;
    flex-wrap: nowrap;
    margin-left: auto;
  }
  .admin-header nav a {
    padding: 7px 5px;
    font-size: 9px;
    white-space: nowrap;
  }
  .admin-header nav a:nth-child(3) {
    display: none;
  }
  .admin-header nav a:first-child {
    display: none;
  }
  .admin-header .brand-name small {
    display: none;
  }
  .admin-main {
    padding: 20px 4% 85px;
  }
  .admin-main > .section-heading {
    padding: 20px;
  }
  .admin-main > .section-heading .button {
    width: 100%;
  }
  .admin-stepper {
    top: 68px;
    grid-template-columns: repeat(5, minmax(125px, 1fr));
    margin-left: -4.2%;
    margin-right: -4.2%;
    scrollbar-width: thin;
  }
  .admin-stepper button {
    min-height: 58px;
  }
  .admin-form fieldset {
    scroll-margin-top: 142px;
    padding: 22px 16px;
  }
  .admin-form legend {
    font-size: 19px;
  }
  .admin-grid,
  .side-fields,
  .nearby-main,
  .nearby-row details > div {
    grid-template-columns: 1fr;
  }
  .admin-form [data-editor] {
    min-height: 58svh;
  }
  .admin-outline-builder,
  .admin-nearby-builder {
    padding: 17px 13px;
  }
  .admin-builder-heading {
    flex-direction: column;
  }
  .admin-builder-heading .button {
    width: 100%;
  }
  .remove-nearby {
    width: 100%;
  }
  .admin-actions {
    left: 0;
    right: 0;
    margin: 0 -4.2%;
    padding: 10px 4%;
  }
  .admin-actions .button {
    flex: 1;
    min-width: 0;
  }
  .login-wrap {
    padding: 15px;
  }
  .login-card {
    padding: 28px 22px;
  }
  .login-card .admin-website-logo .brand-name {
    font-size: 18px;
  }
}
