/* =========================================================
   Bento grid layout — homepage
   ========================================================= */

.page-bento {
  background: #f3f1eb;
  background-image:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(61, 80, 66, 0.04), transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(122, 74, 82, 0.03), transparent 45%);
}

.page-bento .site-header.bento-header {
  background: rgba(246, 244, 239, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

.page-bento .site-header.bento-header .logo-text strong,
.page-bento .site-header.bento-header .nav-link,
.page-bento .site-header.bento-header .header-phone {
  color: var(--ink);
}

.page-bento .site-header.bento-header .logo-text span {
  color: var(--muted);
}

.page-bento .site-header.bento-header .nav-toggle span {
  background: var(--green-900);
}

.page-bento .site-header.bento-header .nav-link:hover,
.page-bento .site-header.bento-header .nav-link.active {
  color: var(--green-800);
  opacity: 1;
}

/* Homepage with full-bleed video hero: transparent header until scroll */
.has-video-hero .site-header:not(.is-scrolled) {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.has-video-hero .site-header.is-scrolled {
  background: rgba(246, 244, 239, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}

.has-video-hero .site-header.is-scrolled .logo-text strong,
.has-video-hero .site-header.is-scrolled .nav-link,
.has-video-hero .site-header.is-scrolled .header-phone {
  color: var(--ink);
}

.has-video-hero .site-header.is-scrolled .logo-text span {
  color: var(--muted);
}

.has-video-hero .site-header.is-scrolled .nav-toggle span {
  background: var(--green-900);
}

.has-video-hero .site-header.is-scrolled .nav-link:hover,
.has-video-hero .site-header.is-scrolled .nav-link.active {
  color: var(--green-800);
  opacity: 1;
}

/* Page shell */
.bento-page {
  padding-top: calc(var(--header-h) + 1.75rem);
  padding-bottom: 2rem;
}

.bento-page.bento-after-hero {
  padding-top: 2.5rem;
}

.bento-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem 2.5rem;
  margin-bottom: 1.5rem;
}

.bento-intro h1,
.bento-intro-title {
  margin-top: 0.4rem;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 14ch;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  color: var(--ink);
}

.bento-intro-lead {
  max-width: 36ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.55;
  padding-bottom: 0.35rem;
}

/* ---------- Core grid ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 10px;
}

/* Cells */
.bento-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: #f5f2eb;
  border: 1px solid rgba(18, 26, 21, 0.08);
  min-height: 160px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

a.bento-cell:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(18, 26, 21, 0.12);
  border-color: transparent;
}

.bento-cell > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

a.bento-cell:hover > img {
  transform: scale(1.04);
}

.bento-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 26, 21, 0.05) 0%,
    rgba(18, 26, 21, 0.15) 40%,
    rgba(18, 26, 21, 0.78) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.bento-body {
  position: relative;
  z-index: 2;
  padding: 1.15rem 1.2rem 1.25rem;
  color: var(--white);
}

.bento-body-bottom {
  margin-top: auto;
}

.bento-body h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 2.5vw, 2.15rem);
  margin: 0.35rem 0 0.4rem;
}

.bento-body h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin: 0.25rem 0 0.2rem;
}

.bento-body p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  max-width: 36ch;
}

.bento-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.95);
  width: fit-content;
}

.bento-tag.dark {
  background: rgba(42, 61, 48, 0.14);
  color: var(--green-800);
  backdrop-filter: none;
}

.bento-tag.light {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.95);
}

/* Placement map (desktop 4-col) */
.bento-hero {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
  min-height: 380px;
}

.bento-tall {
  grid-column: 3;
  grid-row: 1 / span 2;
  min-height: 380px;
}

.bento-stat {
  grid-column: 4;
  justify-content: center;
  padding: 1.35rem 1.25rem;
  background: var(--green-800);
  color: var(--white);
  border-color: transparent;
}

.bento-stat-soft {
  background: #ebe6dc;
  color: var(--ink);
  border-color: transparent;
}

.bento-stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}

.bento-stat-label {
  display: block;
  margin-top: 0.45rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.bento-stat-note {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  opacity: 0.72;
}

.bento-wide {
  grid-column: 1 / span 2;
  min-height: 240px;
}

.bento-price {
  grid-column: 3 / span 2;
  padding: 1.4rem 1.35rem;
  gap: 0.85rem;
  background: #f0ebe3;
  justify-content: center;
}

.bento-price-row {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.bento-price-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--green-800);
  line-height: 1.1;
}

.bento-price-row span {
  font-size: 0.82rem;
  color: var(--muted);
}

.bento-price > p {
  color: var(--muted);
  font-size: 0.9rem;
}

.bento-quote {
  grid-column: span 1;
  padding: 1.4rem 1.3rem;
  justify-content: space-between;
  background: #e6eee8;
  border-color: transparent;
  min-height: 220px;
}

.bento-quote p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.35;
  color: var(--green-900);
  font-style: italic;
}

.bento-quote footer {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  font-style: normal;
}

.bento-mid {
  grid-column: span 1;
  min-height: 220px;
}

.bento-cta {
  grid-column: span 2;
  padding: 1.5rem 1.4rem;
  background: linear-gradient(145deg, var(--green-900), var(--green-800));
  color: var(--white);
  border-color: transparent;
  justify-content: center;
  gap: 0.6rem;
  min-height: 220px;
}

.bento-cta h3 {
  color: var(--white);
  font-size: 1.65rem;
}

.bento-cta p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  max-width: 40ch;
}

.bento-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.bento-contact {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.5rem;
  background: #efece5;
  min-height: 120px;
}

.bento-contact h3 {
  margin: 0.35rem 0 0.25rem;
  font-size: 1.45rem;
}

.bento-contact p {
  color: var(--muted);
  font-size: 0.9rem;
}

.bento-arrow {
  font-size: 1.6rem;
  color: var(--green-700);
  transition: transform 0.3s ease;
}

a.bento-contact:hover .bento-arrow {
  transform: translateX(6px);
}

/* Rooms row */
.bento-section {
  padding: 2.5rem 0 0.5rem;
}

.bento-section-muted {
  padding-bottom: 1rem;
}

.bento-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.bento-section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.bento-rooms {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(280px, auto);
}

.bento-room {
  min-height: 280px;
}

.bento-room-info {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 1.15rem 1.2rem;
  color: var(--white);
}

.bento-room-info h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
}

.bento-room-info span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.bento-room::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(18, 26, 21, 0.8) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Reviews row */
.bento-reviews {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
}

.bento-review {
  padding: 1.4rem 1.3rem;
  min-height: 200px;
  justify-content: space-between;
  background: #f5f2eb;
}

.bento-review p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.bento-review footer {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.bento-review-accent {
  background: var(--green-800);
  border-color: transparent;
}

.bento-review-accent p {
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.4;
}

.bento-review-accent footer {
  color: rgba(255, 255, 255, 0.65);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-hero {
    grid-column: 1 / span 2;
    grid-row: span 1;
    min-height: 320px;
  }

  .bento-tall {
    grid-column: 1;
    grid-row: span 1;
    min-height: 260px;
  }

  .bento-stat,
  .bento-stat-soft {
    grid-column: span 1;
  }

  .bento-wide {
    grid-column: 1 / span 2;
  }

  .bento-price {
    grid-column: 1 / span 2;
  }

  .bento-mid,
  .bento-quote {
    grid-column: span 1;
  }

  .bento-cta,
  .bento-contact {
    grid-column: 1 / span 2;
  }

  .bento-rooms,
  .bento-reviews {
    grid-template-columns: 1fr 1fr;
  }

  .bento-reviews .bento-review:last-child {
    grid-column: 1 / span 2;
  }
}

@media (max-width: 640px) {
  .bento-page {
    padding-top: calc(var(--header-h) + 1.1rem);
  }

  .bento {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .bento-hero,
  .bento-tall,
  .bento-stat,
  .bento-stat-soft,
  .bento-wide,
  .bento-price,
  .bento-mid,
  .bento-quote,
  .bento-cta,
  .bento-contact {
    grid-column: 1;
    grid-row: auto;
    min-height: 200px;
  }

  .bento-hero {
    min-height: 300px;
  }

  .bento-stat,
  .bento-stat-soft {
    min-height: 140px;
  }

  .bento-rooms,
  .bento-reviews {
    grid-template-columns: 1fr;
  }

  .bento-reviews .bento-review:last-child {
    grid-column: 1;
  }

  .bento-intro {
    margin-bottom: 1.1rem;
  }

  .bento-cell {
    border-radius: 14px;
  }
}

/* =========================================================
   Inner pages — shared bento patterns
   ========================================================= */

.bento-text {
  padding: 1.35rem 1.3rem;
  gap: 0.65rem;
  justify-content: center;
  background: #f2efe8;
}

.bento-text h2,
.bento-text h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.bento-text p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

.bento-text ul {
  display: grid;
  gap: 0.45rem;
  margin: 0.25rem 0 0;
}

.bento-text li {
  position: relative;
  padding-left: 0.95rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.bento-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--peony-600);
}

.bento-span-2 { grid-column: span 2; }
.bento-span-3 { grid-column: span 3; }
.bento-span-4 { grid-column: span 4; }
.bento-row-2 { grid-row: span 2; min-height: 340px; }

.bento-fill {
  min-height: 220px;
}

.bento-fill-lg {
  min-height: 300px;
}

.bento-map-list {
  padding: 1.2rem 1.15rem;
  gap: 0.55rem;
  background: #f0ebe3;
}

.bento-map-list h3 {
  margin-bottom: 0.35rem;
  font-size: 1.25rem;
}

.bento-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  overflow: auto;
}

.bento-points span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  padding: 0.35rem 0.45rem;
  background: rgba(42, 61, 48, 0.1);
  border-radius: 8px;
}

.bento-points b {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-800);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  flex-shrink: 0;
}

.bento-plant {
  min-height: 260px;
}

.bento-plant-info {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 1rem 1.1rem;
  color: #fff;
}

.bento-plant::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(18, 26, 21, 0.85) 100%);
  z-index: 1;
  pointer-events: none;
}

.bento-plant-info h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.bento-plant-info p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bento-plant-info strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.05rem;
  color: #fff;
}

.bento-form-cell {
  padding: 1.35rem 1.3rem;
  gap: 0.85rem;
  background: #f2efe8;
}

.bento-form-cell h3 {
  font-size: 1.35rem;
}

.bento-dark {
  background: var(--green-900);
  color: #fff;
  border-color: transparent;
}

.bento-dark h2,
.bento-dark h3 {
  color: #fff;
}

.bento-dark p,
.bento-dark li {
  color: rgba(255, 255, 255, 0.8);
}

.bento-dark li::before {
  background: var(--peony-200);
}

.bento-soft {
  background: #ebe6dc;
}

.bento-mosaic-cell {
  min-height: 180px;
}

@media (max-width: 1100px) {
  .bento-span-2,
  .bento-span-3,
  .bento-span-4 {
    grid-column: span 2;
  }

  .bento-row-2 {
    grid-row: span 1;
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .bento-span-2,
  .bento-span-3,
  .bento-span-4,
  .bento-row-2 {
    grid-column: 1;
    grid-row: auto;
  }

  .bento-points {
    grid-template-columns: 1fr;
  }
}
