/* АйлякЪ — стилове v3 (по мокъпите v2) */
:root {
  --cream: #f5efe3;
  --sand: #efe6d4;
  --paper: #fbf8f1;
  --white: #ffffff;
  --olive: #2f4a3a;
  --olive-2: #3b5a48;
  --ink: #26332c;
  --muted: #6e6c63;
  --terra: #b85c38;
  --terra-2: #a34f2e;
  --teal: #4e7c7a;
  --gold: #b8963f;
  --wood: #c8a275;
  --line: rgba(47, 74, 58, 0.25);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:
    "Manrope", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --r: 24px;
  --r-sm: 14px;
  --shadow: 0 10px 30px rgba(38, 51, 44, 0.1);
  --shadow-lg: 0 26px 60px rgba(38, 51, 44, 0.16);
  --wrap: 1280px;
  --pad: clamp(16px, 3vw, 32px);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: clip;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
h1,
h2,
h3,
h4,
.h-serif {
  font-family: var(--serif);
  color: var(--olive);
  margin: 0 0 0.5em;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
}
p {
  margin: 0 0 1em;
}
.wrap {
  width: min(var(--wrap), 100% - 2 * var(--pad));
  margin-inline: auto;
}
.ic {
  width: 18px;
  height: 18px;
  flex: none;
}
.ornament {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

/* section titles with rule */
.sec-title {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin: 0 0 26px;
}
.sec-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  margin-top: 0.15em;
}
.sec-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 72ch;
  margin: -8px 0 26px;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.95em 1.6em;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  border: 1.5px solid transparent;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  cursor: pointer;
  line-height: 1;
  font-family: var(--sans);
}
.btn .arrow {
  font-weight: 400;
  transition: transform 0.2s;
}
.btn:hover .arrow {
  transform: translateX(3px);
}
.btn-primary {
  background: var(--terra);
  color: #fff;
  box-shadow: 0 10px 24px rgba(184, 92, 56, 0.28);
}
.btn-primary:hover {
  background: var(--terra-2);
  transform: translateY(-1px);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.26);
}
.btn-sm {
  padding: 0.8em 1.3em;
  font-size: 0.92rem;
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 239, 227, 0.9);
  backdrop-filter: saturate(1.2) blur(12px);
  -webkit-backdrop-filter: saturate(1.2) blur(12px);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 8px 28px rgba(38, 51, 44, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.brand-icon {
  width: 96px;
  height: auto;
}
.brand-name {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--olive);
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand-light .brand-name {
  color: #f5efe3;
}
.brand-light .brand-icon {
  width: 72px;
  filter: brightness(0) invert(1) opacity(0.95);
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 40px);
}
.nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  color: var(--olive);
  position: relative;
  padding: 8px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--olive);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}
.header-cta {
  padding: 0.85em 1.5em;
}
.burger {
  display: none;
  background: none;
  border: 0;
  width: 46px;
  height: 46px;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.burger span {
  display: block;
  height: 2.5px;
  background: var(--olive);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* hero card */
.hero-wrap {
  padding: 0 clamp(12px, 1.6vw, 24px);
}
.hero {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  min-height: clamp(560px, 78vh, 760px);
  background: var(--olive);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 55%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(24, 34, 28, 0.62) 0%,
    rgba(24, 34, 28, 0.22) 42%,
    rgba(24, 34, 28, 0.05) 70%,
    rgba(24, 34, 28, 0.35) 100%
  );
}
.hero-content {
  position: relative;
  padding: clamp(34px, 5vw, 64px) clamp(24px, 4.5vw, 64px) 0;
  max-width: 1100px;
  color: #fff;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6.4vw, 5.9rem);
  font-weight: 800;
  margin: 0 0 0.12em;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.35);
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.6rem);
  font-weight: 500;
  margin: 0 0 26px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
  max-width: 44ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-pills {
  list-style: none;
  margin: auto 0 0;
  padding: 0 clamp(24px, 4.5vw, 64px) clamp(26px, 4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.pill-light {
  background: #fff;
  color: var(--olive);
}
.pill-light .ic {
  color: var(--terra);
}
.pill-dark {
  background: var(--olive);
  color: #fff;
}
.pill-dark .ic {
  color: #fff;
}

/* feature photo cards */
.features {
  margin-top: 34px;
}
.feature-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.fcard {
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: visible;
  padding-bottom: 22px;
}
.fcard-media {
  position: relative;
  border-radius: 22px 22px 0 0;
  overflow: visible;
  aspect-ratio: 4/3;
}
.fcard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px 22px 0 0;
}
.medal {
  position: absolute;
  left: 18px;
  bottom: -30px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}
.medal svg {
  width: 30px;
  height: 30px;
  color: #fff;
}
.m-terra {
  background: var(--terra);
}
.m-olive {
  background: #5e7a4a;
}
.m-teal {
  background: var(--teal);
}
.m-gold {
  background: var(--gold);
}
.fcard h3 {
  margin: 46px 20px 0;
  font-size: 1.45rem;
}

/* about */
.about {
  padding-block: clamp(64px, 8vw, 110px) 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.about-media {
  margin: 0;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-text {
  position: relative;
}
.about-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 0.45em;
}
.about-text p {
  font-size: 1.08rem;
  color: #3e4a44;
}
.facts {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 16px 28px;
}
.facts li {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--wood);
  padding-left: 12px;
}
.facts strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--olive);
  line-height: 1.1;
}
.facts span {
  color: var(--muted);
  font-size: 0.85rem;
}
.orn-about {
  right: -30px;
  top: -96px;
  width: 190px;
  opacity: 0.55;
  transform: scaleX(-1) rotate(-10deg);
}

/* prices */
.prices {
  padding-block: clamp(64px, 8vw, 110px) 0;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pcard {
  background: var(--paper);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.pcard > img {
  aspect-ratio: 3/2;
  width: 100%;
  object-fit: cover;
}
.pcard-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
.pcard h3 {
  font-size: 1.5rem;
  margin-bottom: 0.15em;
}
.price {
  font-size: 1.15rem;
  color: #4b5750;
  margin: 0;
}
.price strong {
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--olive);
  margin-right: 0.15em;
  font-weight: 700;
}
.price-note {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0.15em 0 0.9em;
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  color: #3e4a44;
  font-size: 0.94rem;
  flex: 1;
}
.price-list li {
  padding: 6px 0 6px 18px;
  position: relative;
}
.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wood);
}
.pcard .btn {
  align-self: flex-end;
}
.price-extra {
  margin-top: 26px;
  background: var(--sand);
  border-radius: 22px;
  padding: 26px clamp(18px, 3vw, 34px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.price-extra h4 {
  color: var(--olive);
  margin-bottom: 0.5em;
}
.price-extra ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.93rem;
  color: #3e4a44;
}
.price-extra li {
  padding: 5px 0 5px 18px;
  position: relative;
}
.price-extra li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--terra);
}

/* quote band */
.quote {
  margin-top: clamp(64px, 8vw, 110px);
  background: var(--terra);
  color: #fff;
  padding: clamp(48px, 6vw, 76px) var(--pad);
  position: relative;
  text-align: center;
  overflow: hidden;
}
.quote blockquote {
  margin: 0 auto;
  max-width: 900px;
  position: relative;
  z-index: 1;
}
.quote blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.35;
  font-weight: 700;
  margin: 0;
}
.quote .ornament {
  top: 50%;
  width: clamp(120px, 15vw, 230px);
  opacity: 0.9;
}
.orn-l {
  left: clamp(8px, 6vw, 120px);
  transform: translateY(-50%) rotate(6deg);
}
.orn-r {
  right: clamp(8px, 6vw, 120px);
  transform: translateY(-50%) scaleX(-1) rotate(6deg);
}

/* map */
.map-section {
  padding-block: clamp(64px, 8vw, 110px) 0;
}
.map-frame {
  background: var(--paper);
  border-radius: 22px;
  padding: clamp(10px, 1.6vw, 18px);
  box-shadow: var(--shadow);
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.map-frame.has-card {
  grid-template-columns: 1fr 320px;
}
.map-stage {
  position: relative;
}
.map-holder {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #dcedf0;
}
.map-holder svg {
  display: block;
  width: 100%;
  height: auto;
}
.map-holder .unit {
  cursor: pointer;
}
.map-holder .unit:hover .body,
.map-holder .unit:focus .body,
.map-holder .unit.active .body {
  stroke: var(--terra);
  stroke-width: 6;
}
.map-holder .unit:hover .veranda {
  fill: #e4c08b;
}
.map-tip {
  position: absolute;
  pointer-events: none;
  background: var(--olive);
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  transform: translate(-50%, -125%);
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 3;
}
.map-tip small {
  display: block;
  font-weight: 500;
  opacity: 0.8;
  font-size: 0.78rem;
}
.map-reset {
  position: absolute;
  left: 14px;
  top: 14px;
  background: #fff;
  color: var(--olive);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  z-index: 4;
}
.map-reset[hidden] {
  display: none;
}
.plot-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  align-self: start;
  animation: pop 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.plot-card[hidden] {
  display: none;
}
.plot-card img {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
}
.plot-body {
  padding: 18px 20px 22px;
}
.plot-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--terra);
  margin: 0 0 4px;
}
.plot-body h3 {
  font-size: 1.6rem;
  margin-bottom: 0.3em;
}
.plot-desc {
  color: #3e4a44;
  font-size: 0.95rem;
}
@keyframes pop {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.legend {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-size: 0.9rem;
  color: #3e4a44;
}
.legend li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sw {
  width: 16px;
  height: 12px;
  border-radius: 3px;
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.sw-caravan {
  background: #fffdf8;
  border-color: #7a8f7c;
}
.sw-camper {
  background: #c9a27e;
}
.sw-building {
  background: #b85c38;
}
.sw-toilet {
  background: #8fb3ae;
}
.sw-beach {
  background: #f1e3c4;
}
.sw-parking {
  background: #e3dfd6;
}
.map-loading {
  padding: 40px;
  text-align: center;
  color: var(--muted);
}

/* gallery */
.gallery {
  padding-block: clamp(64px, 8vw, 110px) 0;
}
.masonry {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: 230px 230px;
  gap: 14px;
}
.tile {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--sand);
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tile:hover img {
  transform: scale(1.04);
}
.g1 {
  grid-column: 1/4;
  grid-row: 1/3;
}
.g2 {
  grid-column: 4/7;
}
.g3 {
  grid-column: 7/10;
}
.g4 {
  grid-column: 4/6;
}
.g5 {
  grid-column: 6/8;
}
.g6 {
  grid-column: 8/10;
}
.tile::after {
  content: attr(data-cap);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 14px 12px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.tile:hover::after {
  opacity: 1;
}

/* around */
.around {
  padding-block: clamp(64px, 8vw, 110px) 0;
}
.around-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.around-grid li {
  background: var(--paper);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 4px solid var(--wood);
}
.around-grid strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--olive);
  line-height: 1.2;
}
.around-grid span {
  color: var(--muted);
  font-size: 0.95rem;
}

/* contact */
.contact {
  padding-block: clamp(64px, 8vw, 110px);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.contact-lead {
  font-size: 1.08rem;
  color: #3e4a44;
  max-width: 48ch;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
  display: grid;
  gap: 14px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
}
.cdot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sand);
  display: grid;
  place-items: center;
  color: var(--terra);
  flex: none;
}
.contact-list a {
  text-decoration: none;
  color: var(--olive);
}
.contact-list a:hover {
  text-decoration: underline;
}
.map-embed {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/10;
  background: #dcedf0;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.booking {
  background: var(--paper);
  border-radius: 22px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 14px;
}
.booking h3 {
  margin: 0 0 6px;
  font-size: 1.6rem;
}
.field {
  display: grid;
  gap: 6px;
}
.field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--olive);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 13px 15px;
  border: 1.5px solid rgba(47, 74, 58, 0.22);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  width: 100%;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(184, 92, 56, 0.15);
}
.field textarea {
  resize: vertical;
}
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}
.form-status {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--olive);
  margin: 0;
  min-height: 1.2em;
}
.form-status.err {
  color: var(--terra);
}

/* footer */
.site-footer {
  background: var(--olive);
  color: #e3e9e1;
  padding-block: 34px 24px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 0;
}
.footer-items li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  padding: 0 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}
.footer-items li:first-child {
  padding-left: 0;
  border-left: 0;
}
.footer-items .ic {
  color: #f5efe3;
}
.footer-items a {
  color: #f5efe3;
  text-decoration: none;
}
.footer-items a:hover {
  text-decoration: underline;
}
.footer-copy {
  margin: 22px auto 0;
  font-size: 0.82rem;
  opacity: 0.65;
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 22, 19, 0.94);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox[hidden] {
  display: none;
}
.lightbox img {
  max-width: min(1400px, 92vw);
  max-height: 82vh;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lightbox button {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.lightbox button:hover {
  background: rgba(255, 255, 255, 0.25);
}
.lb-close {
  top: 18px;
  right: 18px;
}
.lb-prev {
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.lb-next {
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.lb-cap {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-weight: 600;
  margin: 0;
  padding: 0 60px;
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .tile img {
    transition: none;
  }
}

/* responsive */
@media (max-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-grid {
    grid-template-columns: 1fr 1fr;
  }
  .price-extra {
    grid-template-columns: 1fr 1fr;
  }
  .around-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .facts {
    grid-template-columns: repeat(2, auto);
  }
  .map-frame.has-card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-media {
    aspect-ratio: 3/2;
  }
  .header-inner {
    min-height: 84px;
  }
  .brand-icon {
    width: 78px;
  }
  .brand-name {
    font-size: 2rem;
  }
  .nav {
    position: fixed;
    inset: 84px 0 auto 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 10px var(--pad) 22px;
    gap: 2px;
    box-shadow: 0 20px 40px rgba(38, 51, 44, 0.15);
    transform: translateY(-120%);
    transition: transform 0.3s;
    z-index: 40;
  }
  .nav.open {
    transform: none;
  }
  .nav a {
    padding: 13px 4px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(47, 74, 58, 0.14);
  }
  .nav a::after {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .burger {
    display: flex;
  }
  .masonry {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 200px 200px 200px;
  }
  .g1 {
    grid-column: 1/4;
    grid-row: 1/3;
  }
  .g2 {
    grid-column: 4/7;
    grid-row: 1;
  }
  .g3 {
    grid-column: 4/7;
    grid-row: 2;
  }
  .g4 {
    grid-column: 1/3;
    grid-row: 3;
  }
  .g5 {
    grid-column: 3/5;
    grid-row: 3;
  }
  .g6 {
    grid-column: 5/7;
    grid-row: 3;
  }
  .footer-inner {
    justify-content: center;
    text-align: center;
  }
  .footer-items {
    justify-content: center;
  }
  .orn-about {
    display: none;
  }
}
@media (max-width: 700px) {
  .hero-wrap {
    padding: 0 12px;
  }
  .hero {
    min-height: 82svh;
    min-height: 82vh;
    justify-content: flex-end;
  }
  .hero-shade {
    background: linear-gradient(
      0deg,
      rgba(24, 34, 28, 0.82) 0%,
      rgba(24, 34, 28, 0.35) 45%,
      rgba(24, 34, 28, 0.05) 75%
    );
  }
  .hero-media img {
    object-position: 35% 45%;
  }
  .hero-content {
    padding: 0 22px 0;
    max-width: none;
  }
  .hero h1 {
    font-size: clamp(2.6rem, 6.4vw, 5.9rem);
  }
  .hero-sub {
    font-size: 1.05rem;
    margin-bottom: 18px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-actions .btn-outline {
    display: none;
  }
  .hero-pills {
    padding: 16px 22px 24px;
  }
  .pill {
    font-size: 0.88rem;
    padding: 10px 14px;
  }
  .features {
    margin-top: 22px;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .fcard {
    padding-bottom: 16px;
    border-radius: 18px;
  }
  .fcard-media {
    aspect-ratio: 1/1;
  }
  .medal {
    width: 52px;
    height: 52px;
    left: 12px;
    bottom: -22px;
    border-width: 3px;
  }
  .medal svg {
    width: 24px;
    height: 24px;
  }
  .fcard h3 {
    margin: 34px 14px 0;
    font-size: 1.1rem;
  }
  .sec-title {
    font-size: 1.9rem;
    gap: 14px;
  }
  .price-grid,
  .price-extra {
    grid-template-columns: 1fr;
  }
  .around-grid {
    grid-template-columns: 1fr;
  }
  .row {
    grid-template-columns: 1fr;
  }
  .masonry {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px 150px;
    gap: 10px;
  }
  .g1 {
    grid-column: 1/2;
    grid-row: 1/3;
  }
  .g2 {
    grid-column: 2/3;
    grid-row: 1;
  }
  .g3 {
    grid-column: 2/3;
    grid-row: 2;
  }
  .g4 {
    grid-column: 1/2;
    grid-row: 3;
  }
  .g5 {
    grid-column: 2/3;
    grid-row: 3;
  }
  .g6 {
    display: none;
  }
  .quote .ornament {
    display: none;
  }
  .footer-items {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .footer-items li {
    padding: 0;
    border-left: 0;
  }
  .facts {
    grid-template-columns: 1fr 1fr;
  }
}

/* generated icon elements */
.medal{background:#F5EFE3;border-width:0;box-shadow:0 8px 18px rgba(0,0,0,.18),0 0 0 4px #fff}
.medal img{width:42px;height:42px;object-fit:contain}
.m-terra{box-shadow:0 8px 18px rgba(0,0,0,.18),0 0 0 4px #fff,0 0 0 7px var(--terra)}
.m-olive{box-shadow:0 8px 18px rgba(0,0,0,.18),0 0 0 4px #fff,0 0 0 7px #5E7A4A}
.m-teal{box-shadow:0 8px 18px rgba(0,0,0,.18),0 0 0 4px #fff,0 0 0 7px var(--teal)}
.m-gold{box-shadow:0 8px 18px rgba(0,0,0,.18),0 0 0 4px #fff,0 0 0 7px var(--gold)}
.pcard-icon{position:absolute;right:22px;top:18px;width:56px;height:56px;object-fit:contain;opacity:.9}
.plot-icon{width:54px;height:54px;object-fit:contain;margin-bottom:6px}
@media(max-width:700px){.medal img{width:30px;height:30px}.pcard-icon{width:44px;height:44px}}

/* 3D overview */
.map-3d{margin:0 0 22px;border-radius:22px;overflow:hidden;box-shadow:var(--shadow-lg);position:relative;background:var(--sand)}
.map-3d img{width:100%;display:block}
.map-3d figcaption{position:absolute;left:18px;bottom:18px;background:rgba(255,255,255,.92);color:var(--olive);font-weight:700;font-size:.9rem;padding:10px 16px;border-radius:999px;box-shadow:0 6px 18px rgba(0,0,0,.15)}
@media(max-width:700px){.map-3d{border-radius:16px}.map-3d figcaption{font-size:.8rem;left:10px;bottom:10px;padding:8px 12px}}

.pcard-icon{aspect-ratio:auto!important;width:56px!important}
@media(max-width:700px){.pcard-icon{width:44px!important}}

/* views strip */
.views{margin-top:34px}
.views-title{font-size:1.5rem;margin:0 0 14px}
.views-strip{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(300px,1fr);gap:16px;overflow-x:auto;scroll-snap-type:x mandatory;padding-bottom:10px;scrollbar-width:thin}
.view{position:relative;display:block;border-radius:18px;overflow:hidden;aspect-ratio:16/10;scroll-snap-align:start;box-shadow:var(--shadow);background:var(--sand)}
.view img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}
.view:hover img{transform:scale(1.04)}
.view span{position:absolute;left:12px;bottom:12px;background:rgba(255,255,255,.94);color:var(--olive);font-weight:700;font-size:.85rem;padding:8px 13px;border-radius:999px;box-shadow:0 6px 16px rgba(0,0,0,.15)}
@media(max-width:700px){.views-strip{grid-auto-columns:82%}}

/* map tabs */
.map-tabs{display:flex;gap:10px;flex-wrap:wrap;margin:0 0 18px}
.map-tab{font:inherit;font-weight:700;font-size:.95rem;padding:11px 20px;border-radius:999px;border:1.5px solid rgba(47,74,58,.25);background:#fff;color:var(--olive);cursor:pointer;transition:background .2s,color .2s,border-color .2s}
.map-tab:hover{border-color:var(--olive)}
.map-tab.active{background:var(--olive);color:#fff;border-color:var(--olive)}
.map-panel[hidden]{display:none}
.map-fig{display:block;position:relative;border-radius:22px;overflow:hidden;box-shadow:var(--shadow-lg);background:var(--sand)}
.map-fig img{width:100%;display:block;transition:transform .6s ease}
.map-fig:hover img{transform:scale(1.015)}
.map-cap{position:absolute;left:18px;bottom:18px;background:rgba(255,255,255,.93);color:var(--olive);font-weight:700;font-size:.9rem;padding:10px 16px;border-radius:999px;box-shadow:0 6px 18px rgba(0,0,0,.15)}
.map-3d{display:none}
@media(max-width:700px){.map-tab{font-size:.85rem;padding:9px 14px}.map-fig{border-radius:16px}.map-cap{font-size:.78rem;left:10px;bottom:10px;padding:8px 12px}}
