/* Gayaza Country Home Masaka — Editorial Luxury (Poppins + Fraunces) */

:root {
  --cream: #faf7f2;
  --cream-deep: #f0ebe3;
  --paper: #fffefb;
  --sage: #5f7358;
  --sage-soft: #8a9d84;
  --clay: #9a6b47;
  --espresso: #1f1a14;
  --espresso-soft: #4a4238;
  --hairline: rgba(31, 26, 20, 0.08);
  --hairline-strong: rgba(31, 26, 20, 0.14);
  --glass: rgba(250, 247, 242, 0.72);
  --shadow-diffuse: 0 32px 100px -24px rgba(31, 26, 20, 0.14);
  --shadow-soft: 0 12px 48px -16px rgba(31, 26, 20, 0.1);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --font-body: "Poppins", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --container: min(100% - 1.25rem, 76rem);
  --section-pad: clamp(3.25rem, 10vw, 9rem);
  --radius-outer: 1.15rem;
  --radius-inner: calc(1.15rem - 0.3rem);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--espresso-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, dl, dd, dt { margin: 0; }

.container { width: var(--container); margin-inline: auto; }

/* Display typography — serif editorial + Poppins body */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "SOFT" 50, "WONK" 0.9;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--espresso);
}

.display--md { font-size: clamp(1.5rem, 4.5vw, 3.25rem); }
.hero .display { font-size: clamp(1.75rem, 7vw, 4.5rem); }
.display--light { color: var(--cream); }

.lead { font-size: 1.125rem; line-height: 1.75; max-width: 52ch; }
.section-desc { margin-top: 1rem; max-width: 48ch; color: var(--espresso-soft); }

.eyebrow {
  display: inline-flex;
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  background: rgba(95, 115, 88, 0.12);
}

.eyebrow--glass {
  color: rgba(250, 247, 242, 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.eyebrow--light {
  color: rgba(250, 247, 242, 0.85);
  background: rgba(255, 255, 255, 0.1);
}

/* Texture layers */
.grain {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.ambient-orb--1 {
  width: 50vw;
  height: 50vw;
  top: -10%;
  right: -15%;
  background: radial-gradient(circle, rgba(154, 107, 71, 0.25), transparent 70%);
}

.ambient-orb--2 {
  width: 40vw;
  height: 40vw;
  bottom: 20%;
  left: -10%;
  background: radial-gradient(circle, rgba(95, 115, 88, 0.2), transparent 70%);
}

/* Double-bezel */
.bezel {
  padding: 0.4rem;
  border-radius: var(--radius-outer);
  background: rgba(31, 26, 20, 0.045);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-soft);
}

.bezel-inner {
  overflow: hidden;
  border-radius: var(--radius-inner);
  background: var(--paper);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.35rem 0.95rem 1.6rem;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.55s var(--ease), background 0.55s var(--ease), box-shadow 0.55s var(--ease);
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  color: var(--cream);
  background: var(--espresso);
  box-shadow: 0 4px 24px -4px rgba(31, 26, 20, 0.35);
}

.btn-primary:hover {
  background: #14110d;
  box-shadow: 0 8px 32px -6px rgba(31, 26, 20, 0.4);
}

.btn-ghost {
  color: var(--espresso);
  background: rgba(31, 26, 20, 0.06);
}

.btn-ghost:hover { background: rgba(31, 26, 20, 0.1); }

.btn-glass {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.btn-glass:hover { background: rgba(255, 255, 255, 0.2); }

.btn--light {
  color: var(--espresso);
  background: var(--cream);
}

.btn--light:hover { background: #fff; }

.btn-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 50%;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.14);
  transition: transform 0.55s var(--ease);
}

.btn-icon-wrap--muted { background: rgba(31, 26, 20, 0.08); color: var(--espresso); }
.btn-icon-wrap--glass { background: rgba(255, 255, 255, 0.15); }
.btn-icon-wrap--on-dark { background: rgba(31, 26, 20, 0.08); color: var(--espresso); }

.group:hover .btn-icon-wrap {
  transform: translate(3px, -2px) scale(1.06);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sage);
  transition: gap 0.45s var(--ease), color 0.3s;
}

.text-link:hover { gap: 0.65rem; color: var(--clay); }

/* Nav island */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 1.5rem 1.25rem 0;
  pointer-events: none;
}

.nav-island {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - 1rem), 52rem);
  margin-inline: auto;
  padding: 0.45rem 0.45rem 0.45rem 1.1rem;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  pointer-events: auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--espresso);
}

.nav-brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--cream);
  background: var(--espresso);
}

.nav-brand-text { display: none; }
@media (min-width: 520px) { .nav-brand-text { display: inline; } }

.nav-island-actions { display: flex; align-items: center; gap: 0.5rem; }

.nav-phone {
  display: none;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--espresso);
  background: rgba(31, 26, 20, 0.05);
  transition: background 0.4s var(--ease);
}

.nav-phone:hover { background: rgba(31, 26, 20, 0.09); }
@media (min-width: 768px) { .nav-phone, .hide-mobile { display: inline-flex; } }

.nav-toggle {
  position: relative;
  width: 2.875rem;
  height: 2.875rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(31, 26, 20, 0.07);
  cursor: pointer;
  transition: background 0.45s var(--ease);
}

.nav-toggle:hover { background: rgba(31, 26, 20, 0.12); }

.nav-toggle-line {
  position: absolute;
  left: 50%;
  width: 1.05rem;
  height: 1.5px;
  border-radius: 1px;
  background: var(--espresso);
  transform: translateX(-50%);
  transition: transform 0.6s var(--ease), top 0.6s var(--ease);
}

.nav-toggle-line:first-child { top: calc(50% - 4px); }
.nav-toggle-line:last-child { top: calc(50% + 4px); }

.nav-toggle[aria-expanded="true"] .nav-toggle-line:first-child {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:last-child {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Full-screen nav overlay — dark glass */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(31, 26, 20, 0.82);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s var(--ease), visibility 0.65s;
}

.nav-overlay.is-open { opacity: 1; visibility: visible; }

.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 22rem;
  text-align: center;
}

.nav-overlay-list {
  width: 100%;
}

.nav-overlay-eyebrow {
  margin-bottom: 2rem;
  width: 100%;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.45);
  text-align: center;
}

.nav-overlay-link {
  display: block;
  width: 100%;
  padding: 0.5rem 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 500;
  text-align: center;
  color: var(--cream);
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease), color 0.35s;
}

.nav-overlay.is-open .nav-overlay-link {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.is-open .nav-overlay-list li:nth-child(1) .nav-overlay-link { transition-delay: 0.08s; }
.nav-overlay.is-open .nav-overlay-list li:nth-child(2) .nav-overlay-link { transition-delay: 0.13s; }
.nav-overlay.is-open .nav-overlay-list li:nth-child(3) .nav-overlay-link { transition-delay: 0.18s; }
.nav-overlay.is-open .nav-overlay-list li:nth-child(4) .nav-overlay-link { transition-delay: 0.23s; }
.nav-overlay.is-open .nav-overlay-list li:nth-child(5) .nav-overlay-link { transition-delay: 0.28s; }
.nav-overlay.is-open .nav-overlay-list li:nth-child(6) .nav-overlay-link { transition-delay: 0.33s; }

.nav-overlay-link:hover { color: var(--sage-soft); }

.nav-overlay-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.65s var(--ease) 0.38s, transform 0.65s var(--ease) 0.38s;
}

.nav-overlay.is-open .nav-overlay-footer { opacity: 1; transform: translateY(0); }

.nav-overlay-phones {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  width: 100%;
}

.nav-overlay-phone {
  display: block;
  width: 100%;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  color: var(--cream);
}

.nav-overlay-footer .btn {
  justify-content: center;
  margin-inline: auto;
  padding: 0.95rem 1.5rem;
  gap: 0.65rem;
}

.nav-overlay-footer .btn-icon-wrap {
  margin-left: 0;
}

body.nav-open { overflow: hidden; }

/* Hero */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 7rem 0 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(31, 26, 20, 0.88) 0%, rgba(31, 26, 20, 0.55) 48%, rgba(31, 26, 20, 0.25) 100%),
    linear-gradient(to top, rgba(31, 26, 20, 0.7), transparent 50%);
}

.hero-layout {
  display: grid;
  gap: 3.5rem;
  align-items: end;
}

@media (min-width: 768px) {
  :root {
    --container: min(100% - 2rem, 76rem);
    --radius-outer: 1.5rem;
    --radius-inner: calc(1.5rem - 0.35rem);
  }
}

@media (min-width: 1024px) {
  :root {
    --container: min(100% - 2.5rem, 76rem);
    --radius-outer: 2rem;
    --radius-inner: calc(2rem - 0.4rem);
  }

  .hero-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
  }
}

.hero-copy .display,
.hero-lead { color: var(--cream); }

.hero-lead {
  margin-top: 1.5rem;
  max-width: 34rem;
  font-size: 1.05rem;
  color: rgba(250, 247, 242, 0.82);
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2.75rem;
}


.hero-metrics .metric-inner {
  padding: 1rem 1.1rem;
  background: var(--paper);
}

.hero-metrics .metric {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.hero-metrics dt {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}

.hero-metrics .metric-value {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--espresso);
}

.hero-metrics .metric-stars {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: #b8862e;
  letter-spacing: 0.12em;
}

.hero-metrics .metric-sub {
  display: block;
  margin-top: 0.15rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--espresso-soft);
}

/* Z-axis cascade */
.hero-stack {
  position: relative;
  min-height: 22rem;
}

.cascade-card--main {
  transform: rotate(2deg);
  box-shadow: var(--shadow-diffuse);
}

.cascade-card--main img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.cascade-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: rgba(31, 26, 20, 0.75);
  backdrop-filter: blur(8px);
  color: var(--cream);
  font-size: 0.85rem;
}

.cascade-tag {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-soft);
  margin-bottom: 0.25rem;
}

.cascade-card--float {
  position: absolute;
  right: -0.5rem;
  bottom: -1.5rem;
  width: min(14rem, 75%);
  transform: rotate(-3deg);
  z-index: 2;
}

.cascade-card-inner {
  padding: 1.35rem;
}

.cascade-card-inner i {
  font-size: 1.5rem;
  color: var(--sage);
}

.cascade-quote {
  margin-top: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--espresso);
}

@media (max-width: 767px) {
  .cascade-card--main { transform: none; }
  .cascade-card--float {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 1rem;
    transform: none;
  }
  .hero-stack { min-height: auto; }
}

/* Marquee */
.marquee-band {
  overflow: hidden;
  padding: 1.25rem 0;
  border-block: 1px solid var(--hairline);
  background: var(--cream-deep);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee-track span {
  flex-shrink: 0;
  padding-right: 2rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--espresso);
  opacity: 0.45;
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section { padding: var(--section-pad) 0; position: relative; z-index: 1; }
.section--about { background: var(--paper); }
.section--experiences { background: var(--cream-deep); }
.section--reviews { background: var(--paper); }

.section-head { max-width: 40rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .section-desc { margin-inline: auto; }

/* Property film — mobile stack, desktop: copy left / video right */
.section--film {
  padding: clamp(2.75rem, 7vw, 5.5rem) 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}

.film-card {
  display: grid;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  align-items: center;
}

.film-copy {
  text-align: left;
}

.film-copy .section-desc {
  max-width: 38ch;
  margin-top: 1rem;
}

.film-player {
  width: 100%;
  min-width: 0;
}

.film-frame {
  margin: 0;
}

.film-inner {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--espresso);
  overflow: hidden;
}

.film-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--espresso);
}

@media (min-width: 768px) {
  .film-card {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
  }
}

/* About editorial */
.about-editorial {
  display: grid;
  gap: 2rem;
}

.about-prose-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-prose-col .lead {
  margin: 0;
}

.about-prose-col p {
  max-width: none;
}

.about-editorial a {
  color: var(--clay);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 900px) {
  .about-editorial {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 3rem 4.5rem;
    align-items: start;
  }

  .about-intro {
    grid-column: 1;
    grid-row: 1;
  }

  .about-prose {
    grid-column: 2;
    grid-row: 1;
  }

  .about-facts {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .about-prose-col p {
    max-width: 42ch;
  }
}

.about-facts {
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--hairline);
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

.about-facts li {
  display: grid;
  gap: 0.4rem;
  padding: 1rem 1.1rem;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 0.9rem;
}

.about-fact-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}

.about-fact-value {
  font-weight: 500;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--espresso);
}

.phone-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
}

.phone-list a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 0.65rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--espresso);
  text-decoration: none;
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--hairline);
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
}

.phone-list a:hover {
  color: var(--clay);
  border-color: rgba(154, 107, 71, 0.35);
}

@media (min-width: 480px) {
  .phone-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .phone-list a {
    padding: 0.6rem 0.35rem;
    font-size: 0.82rem;
  }
}

@media (min-width: 768px) {
  .about-prose {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
  }

  .about-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 2rem;
    padding-top: 2rem;
  }

  .about-facts li {
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
  }

  .about-facts li:first-child,
  .about-facts li:last-child {
    grid-column: auto;
  }

  .about-facts li:not(:last-child) {
    border-right: 1px solid var(--hairline);
    padding-right: 2rem;
  }

  .about-fact-value {
    font-size: 1rem;
  }

  .phone-list {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .phone-list a {
    padding: 0;
    border: none;
    border-radius: 0;
    text-align: left;
    background: transparent;
    font-size: inherit;
  }
}

/* Bento */
.bento {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(11rem, auto);
  }
  .bento-tile--hero { grid-column: span 7; grid-row: span 2; }
  .bento-tile:not(.bento-tile--hero):not(.bento-tile--wide) { grid-column: span 5; }
  .bento-tile--wide { grid-column: span 12; }
}

.bento-media { position: relative; height: 100%; min-height: 14rem; }
.bento-media img { width: 100%; height: 100%; min-height: 14rem; object-fit: cover; }

.bento-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(31, 26, 20, 0.85));
  color: var(--cream);
}

.bento-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--cream);
}

.bento-overlay p { margin-top: 0.5rem; font-size: 0.9rem; opacity: 0.85; }

.bento-card {
  padding: 2rem;
  height: 100%;
  min-height: 11rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento-card i { font-size: 1.5rem; color: var(--sage); margin-bottom: 1rem; }
.bento-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; color: var(--espresso); }
.bento-card p { margin-top: 0.5rem; font-size: 0.9rem; }

.bento-split {
  display: grid;
  gap: 0;
}

@media (min-width: 768px) {
  .bento-split { grid-template-columns: 1fr 1fr; }
}

.bento-split-copy {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-split-copy h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--espresso);
}

.bento-split-copy p { margin-top: 0.75rem; font-size: 0.95rem; }

.bento-split img {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
}

/* Zigzag */
.zigzag { display: flex; flex-direction: column; gap: clamp(3rem, 8vw, 6rem); }

.zigzag-row {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .zigzag-row {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .zigzag-row--reverse .zigzag-visual { order: 2; }
  .zigzag-row--reverse .zigzag-copy { order: 1; }
}

.zigzag-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.zigzag-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--espresso);
}

.zigzag-copy p { margin-top: 1rem; max-width: 42ch; }

.amenity-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: clamp(3rem, 8vw, 5rem);
  width: 100%;
}

.amenity-strip > li {
  min-width: 0;
  display: flex;
}

.amenity-strip > li .bezel {
  flex: 1;
  width: 100%;
  padding: 0.28rem;
  border-radius: 1rem;
}

.amenity-strip > li .bezel-inner {
  border-radius: calc(1rem - 0.28rem);
  height: 100%;
}

.amenity-pill {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  width: 100%;
  min-height: 3.25rem;
  padding: 0.85rem 0.9rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--espresso);
}

.amenity-pill i {
  flex-shrink: 0;
  color: var(--sage);
  font-size: 1.05rem;
}

.amenity-pill span {
  min-width: 0;
}

@media (min-width: 640px) {
  .amenity-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .amenity-pill {
    min-height: 3.5rem;
    padding: 0.9rem 1rem;
    font-size: 0.85rem;
  }
}

@media (min-width: 1024px) {
  .amenity-strip {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .amenity-pill {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 6.25rem;
    padding: 1.1rem 1.15rem;
  }

  .amenity-pill i {
    font-size: 1.25rem;
  }
}

/* Reviews */
.reviews-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.review-inner { padding: 2rem; height: 100%; display: flex; flex-direction: column; }

.review-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1;
  color: var(--espresso);
}

.review-stars { color: #b8862e; letter-spacing: 0.15em; font-size: 1rem; }
.review-source { margin-top: 0.5rem; font-size: 0.8rem; color: var(--sage); text-transform: uppercase; letter-spacing: 0.1em; }
.review-platform { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); }
.review-text { margin: 1rem 0 1.5rem; flex: 1; font-size: 0.95rem; }
.reviews-note { margin-top: 2rem; font-size: 0.85rem; opacity: 0.7; max-width: 52ch; }

/* Gallery — editorial mosaic */
.section--gallery {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 38%, var(--cream) 100%);
}

.gallery-head {
  display: grid;
  gap: 1.75rem;
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

@media (min-width: 768px) {
  .gallery-head {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 3rem;
  }
}

.gallery-stat {
  margin: 0;
  text-align: left;
}

@media (min-width: 768px) {
  .gallery-stat {
    text-align: right;
    padding-bottom: 0.35rem;
  }
}

.gallery-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--espresso);
}

.gallery-stat-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}

.gallery-mosaic {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gallery-tile {
  margin: 0;
  min-width: 0;
}

.gallery-tile .bezel-inner {
  height: 100%;
}

.gallery-media {
  position: relative;
  height: 100%;
  min-height: 13.5rem;
  overflow: hidden;
  line-height: 0;
}

.gallery-tile--feature .gallery-media {
  min-height: 15rem;
  aspect-ratio: 16 / 10;
}

.gallery-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.03);
}

.gallery-img--wide {
  object-position: center 38%;
}

.gallery-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(31, 26, 20, 0.82) 0%, rgba(31, 26, 20, 0.2) 42%, transparent 68%),
    linear-gradient(135deg, rgba(154, 107, 71, 0.12) 0%, transparent 55%);
  pointer-events: none;
  transition: opacity 0.55s var(--ease);
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  margin: 0;
  padding: 1.15rem 1.25rem 1.2rem;
  color: var(--cream);
  transform: translateY(0);
  transition: transform 0.55s var(--ease);
}

.gallery-num {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  opacity: 0.65;
}

.gallery-tag {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.78);
}

.gallery-caption-title {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.gallery-foot {
  margin-top: 2rem;
  padding-top: 0.25rem;
}

@media (min-width: 640px) {
  .gallery-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .gallery-tile--feature {
    grid-column: 1 / -1;
  }

  .gallery-tile--feature .gallery-media {
    aspect-ratio: 21 / 9;
    min-height: 16rem;
  }
}

@media (min-width: 900px) {
  .gallery-mosaic {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(10.5rem, auto);
    gap: 1rem 1.125rem;
  }

  .gallery-tile--feature {
    grid-column: 1 / 8;
    grid-row: span 2;
  }

  .gallery-tile--feature .gallery-media {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .gallery-tile--upper {
    grid-column: 8 / 13;
    grid-row: 1;
  }

  .gallery-tile--lower {
    grid-column: 8 / 13;
    grid-row: 2;
  }

  .gallery-tile--third {
    grid-column: span 4;
  }

  .gallery-tile--upper .gallery-media,
  .gallery-tile--lower .gallery-media {
    min-height: 11.5rem;
  }
}

/* Location */
.location-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) {
  .location-grid { grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: start; }
}

.location-address {
  margin: 1.5rem 0;
  font-style: normal;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--espresso);
}

.plus-code {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--sage);
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.map-wrap iframe { width: 100%; min-height: 22rem; display: block; border: 0; }

/* Contact */
.contact-shell.bezel { background: rgba(31, 26, 20, 0.06); }

.contact-grid {
  display: grid;
  gap: 3rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: var(--espresso);
  color: rgba(250, 247, 242, 0.8);
}

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 4rem; }
}

.contact-channels { margin-top: 2rem; }

.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: opacity 0.35s;
}

.contact-channel:hover { opacity: 0.85; }

.contact-channel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.2rem;
  color: var(--sage-soft);
}

.contact-channel-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.45);
}

.contact-channel-value {
  display: block;
  font-weight: 500;
  color: var(--cream);
}

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }

.form-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 0.45s var(--ease), background 0.45s var(--ease);
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(250, 247, 242, 0.3); }

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.form-field input.is-error,
.form-field textarea.is-error { border-color: #c97a6a; }

.form-row-2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 480px) {
  .form-row-2 { grid-template-columns: 1fr 1fr; }
}

.field-error {
  display: block;
  min-height: 1.25rem;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: #e8a598;
}

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

.contact-form button[type="submit"]:disabled {
  opacity: 0.72;
  cursor: wait;
}

.form-status {
  min-height: 1.25rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--sage-soft);
}

.form-status--success {
  color: #9cb89a;
}

.form-status--error {
  color: #e8a598;
}

/* Footer */
.site-footer {
  padding: 3rem 0 4rem;
  border-top: 1px solid var(--hairline);
  background: var(--cream-deep);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.2fr auto 1fr;
    align-items: center;
    text-align: left;
  }
  .footer-copy { text-align: right; }
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

@media (min-width: 768px) { .footer-brand { justify-content: flex-start; } }

.footer-name { font-weight: 600; color: var(--espresso); }
.footer-tag { font-size: 0.8rem; color: var(--espresso-soft); margin-top: 0.15rem; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 1.75rem;
}

.footer-links a {
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.35s;
}

.footer-links a:hover { color: var(--sage); }
.footer-copy { font-size: 0.8rem; }

/* Tilt cards */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.15s var(--ease);
  will-change: transform;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(4rem);
  filter: blur(10px);
  transition:
    opacity 1s var(--ease),
    transform 1s var(--ease),
    filter 1s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-delay-1 { transition-delay: 0.14s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .marquee-track { animation: none; }
  .nav-overlay-link,
  .nav-overlay-footer { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  .tilt-card { transition: none; }
}
