:root {
  color-scheme: light;
  --ivory: #fbf6ec;
  --paper: #fffaf1;
  --sand: #e7d2b4;
  --wood: #7a3f1d;
  --terracotta: #a84f2a;
  --terracotta-dark: #773a25;
  --green: #163f2d;
  --green-soft: #375d44;
  --stone: #5f6259;
  --stone-pale: #d8d2c4;
  --gold: #bf9852;
  --ink: #221811;
  --muted: #6c6256;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(31, 23, 13, 0.18);
  --max: 1180px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(191, 152, 82, 0.8);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 200;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 4px;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem max(1.25rem, calc((100% - var(--max)) / 2));
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  min-height: 66px;
  background: rgba(251, 246, 236, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 35px rgba(31, 23, 13, 0.08);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: block;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.site-header.is-scrolled .brand-mark,
.site-header.nav-active .brand-mark {
  background: transparent;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name,
.brand-place {
  display: block;
  line-height: 1.2;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
}

.brand-place {
  color: currentColor;
  opacity: 0.72;
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  font-size: 0.78rem;
}

.site-nav a {
  position: relative;
  opacity: 0.86;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 180ms ease;
}

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

.language-selector {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: 0.35rem;
  padding-left: 0.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.site-header.is-scrolled .language-selector,
.site-header.nav-active .language-selector {
  border-left-color: rgba(122, 63, 29, 0.18);
}

.language-selector a {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0.28rem 0.46rem;
  white-space: nowrap;
  font-size: 0.68rem;
  line-height: 1.1;
}

.site-header.is-scrolled .language-selector a,
.site-header.nav-active .language-selector a {
  border-color: rgba(122, 63, 29, 0.22);
}

.language-selector a::after {
  display: none;
}

.language-selector a[aria-current="true"] {
  background: var(--gold);
  border-color: var(--gold);
  color: #18120c;
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: currentColor;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle-line,
.nav-toggle-line::before,
.nav-toggle-line::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-line {
  position: relative;
}

.nav-toggle-line::before,
.nav-toggle-line::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-line::before {
  top: -6px;
}

.nav-toggle-line::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line::before {
  transform: translateY(6px) rotate(90deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line::after {
  opacity: 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #1d2018;
}

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

.hero-fallback,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-fallback {
  z-index: 0;
}

.hero-video {
  z-index: 1;
}

.hero-overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(21, 18, 13, 0.78), rgba(21, 18, 13, 0.42) 48%, rgba(21, 18, 13, 0.18)),
    linear-gradient(0deg, rgba(21, 18, 13, 0.6), rgba(21, 18, 13, 0.05) 58%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 9rem 0 4.5rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
}

h1 {
  max-width: 820px;
  font-size: 4.65rem;
}

h2 {
  font-size: 2.65rem;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

p + p {
  margin-top: 1.1rem;
}

.hero-subtitle {
  max-width: 710px;
  margin-top: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0.78rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: #18120c;
  border-color: var(--gold);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

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

.trust-line {
  max-width: 760px;
  margin-top: 2.4rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.living-hero .hero-fallback {
  object-position: center 42%;
}

.living-hero-copy {
  max-width: 720px;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.section {
  padding: 7rem max(1.25rem, calc((100% - var(--max)) / 2));
  scroll-margin-top: var(--header-height);
}

.section-warm {
  background: var(--paper);
}

.section-muted {
  background: #eee5d6;
}

.section-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: center;
}

.section-grid-intro {
  gap: 5rem;
}

.split {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.split-reverse {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.section-copy p:not(.eyebrow),
.section-heading p {
  color: var(--muted);
}

.section-copy h2,
.section-heading h2 {
  margin-bottom: 1.2rem;
  color: var(--green);
}

.section-subtitle {
  max-width: 620px;
  margin-top: -0.4rem;
  margin-bottom: 1.4rem;
  font-weight: 700;
  color: var(--terracotta);
}

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

.feature-media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--stone-pale);
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.feature-media-tall img {
  aspect-ratio: 4 / 5;
  min-height: 540px;
}

.feature-media[data-asset-key="purification-ceremony-villa"] img {
  aspect-ratio: 4 / 3;
  height: auto;
  min-height: 0;
  object-position: center center;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(122, 63, 29, 0.18);
  border: 1px solid rgba(122, 63, 29, 0.18);
}

.highlight-card {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.8rem;
  padding: 1.3rem;
  background: var(--ivory);
  color: var(--green);
  font-weight: 650;
}

.highlight-card span {
  color: var(--terracotta);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.experience-grid,
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

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

.image-story,
.room-card {
  background: var(--paper);
  border: 1px solid rgba(95, 98, 89, 0.18);
  border-radius: 8px;
  overflow: hidden;
}

.image-story img,
.room-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.image-story div,
.room-body {
  padding: 1.4rem;
}

.image-story p,
.room-body li {
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--terracotta);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  color: var(--green);
}

.image-story h3,
.room-body h3 {
  color: var(--green);
  margin-bottom: 0.6rem;
}

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

.room-card img {
  height: 230px;
}

.room-body ul,
.two-column-list,
.connection-list,
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.room-body li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.92rem;
}

.room-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.notice {
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--terracotta);
  background: rgba(255, 250, 241, 0.7);
  color: var(--green);
  font-weight: 650;
}

.map-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 8px;
  color: var(--white);
  box-shadow: var(--shadow);
}

.map-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(22, 63, 45, 0.82), rgba(22, 63, 45, 0.12));
}

.map-card div {
  position: absolute;
  z-index: 1;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
}

.map-card span {
  display: block;
  color: var(--sand);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
}

.map-card strong,
.map-card a {
  display: block;
}

.map-card strong {
  margin: 0.35rem 0 0.8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
}

.map-card a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
}

.discover-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 2rem;
  align-items: start;
}

.discover-layout h3,
.driver-note h3 {
  margin-bottom: 1rem;
  color: var(--green);
}

.two-column-list,
.connection-list,
.info-grid {
  display: grid;
  gap: 0.75rem;
}

.rental-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.3rem;
}

.rental-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
  margin-top: 1.5rem;
}

.rental-detail-card,
.rental-option-card {
  border: 1px solid rgba(122, 63, 29, 0.18);
  border-radius: 8px;
  padding: 1.5rem;
  background: var(--paper);
}

.rental-option-card {
  display: flex;
  flex-direction: column;
}

.rental-detail-card h3,
.rental-option-card h3 {
  margin-bottom: 1rem;
  color: var(--green);
}

.rental-detail-card p,
.rental-option-card p {
  color: var(--muted);
}

.rental-option-highlights {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.rental-option-highlights li {
  position: relative;
  padding-left: 1rem;
  color: var(--ink);
  font-size: 0.96rem;
}

.rental-option-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--gold);
}

.rates-note {
  max-width: 780px;
  margin: 1.25rem 0 0;
  color: var(--muted);
}

.rental-positioning {
  max-width: 620px;
  margin-top: 0;
}

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

.two-column-list li,
.connection-list li {
  border-bottom: 1px solid rgba(122, 63, 29, 0.16);
  padding: 0.7rem 0;
  color: var(--stone);
}

.driver-note {
  border: 1px solid rgba(122, 63, 29, 0.18);
  border-radius: 8px;
  padding: 1.5rem;
  background: var(--paper);
}

.driver-note p {
  color: var(--muted);
}

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

.living-teaser .btn {
  margin-top: 1.4rem;
}

.living-teaser-copy {
  display: grid;
  gap: 1rem;
  max-width: 820px;
}

.living-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.living-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(122, 63, 29, 0.18);
  border-radius: 8px;
  padding: 1.35rem;
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.96), rgba(231, 210, 180, 0.42)),
    var(--paper);
}

.living-card h3 {
  color: var(--green);
  font-size: 1.18rem;
  line-height: 1.18;
}

.living-home-card-grid {
  margin-top: 2rem;
}

.living-home-card-grid .living-card {
  min-height: 190px;
  justify-content: flex-start;
}

.living-home-card-grid .living-card p {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.living-essay-section .section-copy {
  max-width: 680px;
}

.living-art-feature,
.living-gunada-feature {
  position: relative;
  overflow: hidden;
}

.living-art-feature {
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.98), rgba(199, 121, 67, 0.13)),
    var(--paper);
}

.living-gunada-feature {
  background:
    linear-gradient(135deg, rgba(40, 50, 38, 0.97), rgba(89, 73, 54, 0.93)),
    var(--green);
  color: rgba(255, 250, 241, 0.9);
}

.living-art-feature .section-copy,
.living-gunada-feature .section-copy {
  max-width: 760px;
}

.living-gunada-feature-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.living-art-feature h2,
.living-gunada-feature h2 {
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 0.95;
}

.living-gunada-feature .eyebrow,
.living-gunada-feature h2 {
  color: var(--gold);
}

.living-gunada-feature p {
  color: rgba(255, 250, 241, 0.84);
}

.living-gunada-copy {
  position: relative;
  z-index: 1;
}

.living-gunada-copy::before {
  content: "";
  display: block;
  width: 5rem;
  height: 1px;
  margin-bottom: 1.4rem;
  background: rgba(212, 169, 81, 0.72);
}

.living-gunada-visuals {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.56fr);
  gap: 1rem;
  align-items: stretch;
}

.living-gunada-book,
.living-gunada-studies figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(212, 169, 81, 0.32);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.08);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
}

.living-gunada-book {
  min-height: 560px;
}

.living-gunada-book img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.living-gunada-studies {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.living-gunada-studies figure {
  min-height: 150px;
}

.living-gunada-studies img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
}

.living-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.living-image-card {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--stone-pale);
  box-shadow: var(--shadow);
}

.living-image-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.living-image-card-wide {
  grid-column: 1 / -1;
  min-height: 320px;
}

.living-image-card-wide img {
  min-height: 320px;
}

.living-image-stack {
  display: grid;
  gap: 1rem;
}

.living-image-stack .feature-media img {
  min-height: 280px;
}

.living-image-card figcaption:not(.sr-only) {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.living-image-card:has(figcaption:not(.sr-only))::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(21, 18, 13, 0.66), rgba(21, 18, 13, 0.03) 62%);
}

.living-cta-section .section-copy {
  max-width: 820px;
}

.living-cta-section .btn {
  margin-top: 1.6rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 270px;
  gap: 0.85rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: var(--stone-pale);
  color: var(--white);
  text-align: left;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 380ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(21, 18, 13, 0.66), rgba(21, 18, 13, 0.02) 58%);
}

.gallery-item span {
  position: absolute;
  z-index: 1;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
}

.info-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(122, 63, 29, 0.18);
  border: 1px solid rgba(122, 63, 29, 0.18);
}

.info-grid div {
  min-height: 132px;
  padding: 1.2rem;
  background: var(--ivory);
}

.info-grid dt {
  color: var(--terracotta-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.info-grid dd {
  margin: 0.65rem 0 0;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1.25;
}

.contact {
  background:
    linear-gradient(rgba(22, 63, 45, 0.72), rgba(22, 63, 45, 0.72)),
    url("assets/img/gallery-living-kitchen-900.jpg") center / cover;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 3rem;
  align-items: start;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(251, 246, 236, 0.96);
  box-shadow: var(--shadow);
}

.contact-note {
  color: var(--green);
  font-weight: 650;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.inquiry-form label {
  display: grid;
  gap: 0.35rem;
}

.inquiry-form span {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(95, 98, 89, 0.28);
  border-radius: 4px;
  padding: 0.85rem 0.9rem;
  color: var(--ink);
  background: var(--white);
}

.inquiry-form select {
  appearance: none;
}

.inquiry-form textarea {
  resize: vertical;
}

.form-wide {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem max(1.25rem, calc((100% - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.84);
  background: #18120c;
}

.site-footer strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.footer-brand {
  max-width: 260px;
}

.footer-brand img {
  width: 112px;
  height: 112px;
  margin-bottom: 1rem;
  object-fit: contain;
}

.site-footer ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.25rem;
  max-width: 620px;
}

.site-footer a {
  text-decoration: underline;
  text-decoration-color: rgba(191, 152, 82, 0.6);
  text-underline-offset: 4px;
}

.cookie-banner {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 110;
  width: min(100% - 2rem, 460px);
  padding: 1rem;
  border: 1px solid rgba(122, 63, 29, 0.22);
  border-radius: 8px;
  background: rgba(251, 246, 236, 0.98);
  box-shadow: 0 24px 70px rgba(31, 23, 13, 0.18);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  color: var(--ink);
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cookie-actions .btn {
  min-height: 44px;
  padding: 0.75rem 1rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: calc(100vw - 2.2rem);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 34px rgba(22, 63, 45, 0.28);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 4.5rem 1.25rem 2rem;
  background: rgba(14, 12, 10, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 78svh;
  width: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox p {
  margin-top: 1rem;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  padding: 0.6rem 0.85rem;
  color: var(--white);
  background: transparent;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 3.8rem;
  }

  h2 {
    font-size: 2.25rem;
  }

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

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

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

  .room-card img {
    height: 280px;
  }
}

@media (max-width: 880px) {
  .site-header {
    padding-inline: 1rem;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    inset: 66px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 0.75rem 1rem 1.2rem;
    transform: translateY(-120%);
    color: var(--ink);
    background: rgba(251, 246, 236, 0.98);
    border-bottom: 1px solid rgba(122, 63, 29, 0.12);
    box-shadow: 0 24px 44px rgba(31, 23, 13, 0.11);
    transition: transform 200ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(122, 63, 29, 0.12);
    font-size: 1rem;
  }

  .language-selector {
    margin-left: 0;
    padding: 1rem 0 0;
    border-left: 0;
    border-bottom: 1px solid rgba(122, 63, 29, 0.12);
    flex-wrap: wrap;
  }

  .language-selector a {
    padding: 0.5rem 0.65rem;
    border-bottom: 1px solid rgba(122, 63, 29, 0.22);
    font-size: 0.82rem;
  }

  .section,
  .hero-content {
    width: auto;
  }

  .section {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .section-grid,
  .split,
  .split-reverse,
  .living-gunada-feature-shell,
  .discover-layout,
  .rental-option-grid,
  .rental-detail-grid,
  .living-card-grid,
  .living-card-grid-compact,
  .living-image-grid,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .image-story img {
    height: 360px;
  }

  .feature-media img,
  .feature-media-tall img {
    min-height: 360px;
  }

  .living-gunada-visuals {
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.58fr);
  }

  .living-gunada-book,
  .living-gunada-book img {
    min-height: 460px;
  }

  .living-gunada-studies img {
    min-height: 220px;
  }

  .gallery-grid {
    grid-auto-rows: 250px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 66px;
  }

  .brand-place {
    display: none;
  }

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

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    width: min(100% - 2rem, var(--max));
    padding-bottom: 3rem;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.02rem;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .btn {
    padding-inline: 1rem;
  }

  .living-gunada-visuals {
    grid-template-columns: 1fr;
  }

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

  .living-gunada-book,
  .living-gunada-book img {
    min-height: 420px;
  }

  .living-gunada-studies img {
    min-height: 160px;
  }

  .highlight-grid,
  .info-grid,
  .room-grid,
  .rental-option-grid,
  .living-card-grid,
  .living-card-grid-compact,
  .living-image-grid,
  .two-column-list,
  .connection-list,
  .inquiry-form,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .highlight-card,
  .info-grid div {
    min-height: auto;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
  }

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

  .site-footer {
    display: grid;
  }

  .site-footer ul {
    justify-content: flex-start;
  }

  .contact-panel {
    padding: 1.2rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
