/*
Theme Name: Canang Sari
Theme URI: https://boromeusagie.com
Author: Boromeus Agie
Description: Custom one-page theme for Canang Sari Homestay & Experiences, Denpasar, Bali. Refined tropical aesthetic — deep forest, warm cream, aged gold.
Version: 1.0.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: canangsari
*/
/* ══════════════════════════════════════════
   JINENG VILLA — STYLESHEET
   Aesthetic: Refined Tropical Luxury
   Palette: Deep forest, warm cream, aged gold
   ══════════════════════════════════════════ */

:root {
  --forest:       #1a2218;
  --forest-mid:   #243021;
  --forest-light: #344830;
  --cream:        #f5f0e8;
  --cream-dark:   #ede5d4;
  --cream-muted:  #c4b89a;
  --gold:         #b89c6c;
  --gold-light:   #d4b882;
  --white:        #fdfbf7;
  --text:         #2c2c2a;
  --text-muted:   #7a7568;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;

  --radius:       4px;
  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --section-pad:  120px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

.img-placeholder {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--transition);
}

/* ── Typography ── */
.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin: 0.4rem 0 1.2rem;
}

.section-title--light { color: var(--cream); }

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2rem;
}

.section-sub--light { color: var(--cream-muted); }

.label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.label--light { color: var(--gold-light); }

/* ── Reveal Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: var(--radius);
}

.btn--dark {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.btn--dark:hover {
  background: var(--forest-light);
  border-color: var(--forest-light);
}

.btn--light {
  background: var(--cream);
  color: var(--forest);
  border-color: var(--cream);
}
.btn--light:hover {
  background: var(--white);
  border-color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,240,232,0.5);
}
.btn--ghost:hover {
  background: rgba(245,240,232,0.1);
  border-color: var(--cream);
}

.btn--full { width: 100%; justify-content: center; }

.link-arrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-top: 1rem;
  transition: gap 0.2s ease;
}
.link-arrow:hover { letter-spacing: 0.2em; }

/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 4rem;
  transition: all 0.5s ease;
}

.nav.scrolled {
  background: rgba(26, 34, 24, 0.96);
  backdrop-filter: blur(12px);
  padding: 1rem 4rem;
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-script {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.8rem;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-top: 0.1rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.8);
  transition: color 0.3s ease;
}

.nav__links a:hover { color: var(--cream); }

.nav__cta {
  padding: 0.55rem 1.4rem !important;
  border: 1.5px solid var(--gold) !important;
  color: var(--gold) !important;
  border-radius: var(--radius);
}
.nav__cta:hover {
  background: var(--gold) !important;
  color: var(--forest) !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--forest);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { display: flex; flex-direction: column; align-items: center; gap: 2.5rem; }
.mobile-menu a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.02em;
}

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1537953773345-d172ccf13cf1?w=1800&q=85');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.12); }
  to   { transform: scale(1.00); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 22, 14, 0.85) 0%,
    rgba(15, 22, 14, 0.4) 60%,
    rgba(15, 22, 14, 0.2) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 4rem;
  max-width: 680px;
}

.hero__eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  animation: fadeUp 1s 0.3s ease both;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 1.8rem;
  animation: fadeUp 1s 0.5s ease both;
}
.hero__title em { font-style: italic; color: var(--gold-light); }

.hero__sub {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.75);
  max-width: 420px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeUp 1s 0.7s ease both;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.9s ease both;
}

.hero__scroll {
  position: absolute;
  bottom: 3rem;
  right: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  z-index: 2;
  animation: fadeUp 1s 1.2s ease both;
}
.hero__scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════ */
.about {
  padding: var(--section-pad) 4rem;
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}
.about__text .btn { margin-top: 1rem; }

.about__image-stack {
  position: relative;
  height: 600px;
}

.about__img {
  position: absolute;
  overflow: hidden;
  border-radius: 2px;
}
.about__img:hover .img-placeholder { transform: scale(1.04); }

.about__img--main {
  top: 0; right: 0;
  width: 85%; height: 75%;
}
.about__img--accent {
  bottom: 0; left: 0;
  width: 55%; height: 42%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* ══════════════════════════════════════════
   STRIPE BANNER
   ══════════════════════════════════════════ */
.stripe-banner {
  background: var(--forest);
  padding: 1.2rem 0;
  overflow: hidden;
  border-top: 1px solid var(--forest-light);
}

.stripe-banner__inner {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: ticker 24s linear infinite;
}

.stripe-banner__inner span {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.stripe-banner__inner .dot { color: var(--gold); }

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

/* ══════════════════════════════════════════
   HOMES
   ══════════════════════════════════════════ */
.homes {
  padding: var(--section-pad) 4rem;
  background: var(--cream);
}

.homes__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
}

/* Featured Jineng */
.homes__featured {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 6rem;
}

.homes__featured-img {
  position: relative;
  height: 600px;
  overflow: hidden;
  border-radius: 2px;
}
.homes__featured-img:hover .img-placeholder { transform: scale(1.04); }

.homes__featured-badge {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  background: var(--gold);
  color: var(--forest);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2px;
}

.home-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--forest);
  margin: 0.4rem 0 1.2rem;
  letter-spacing: -0.02em;
}

.homes__features {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.homes__features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1rem;
  position: relative;
}
.homes__features li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Other Rooms Grid */
.homes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 6rem;
}

.home-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.home-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.home-card__img {
  height: 260px;
  overflow: hidden;
}
.home-card:hover .img-placeholder { transform: scale(1.06); }

.home-card__body {
  padding: 1.8rem;
}
.home-card__body h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: 0.6rem;
}
.home-card__body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.home-card__detail {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
}

/* Facilities */
.facilities {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 3rem;
  border-top: 1px solid var(--cream-dark);
}
.facilities__header {
  text-align: center;
  margin-bottom: 3rem;
}
.facilities__header h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2.2rem;
  color: var(--forest);
}

.facilities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.facility-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: 2px;
  text-align: center;
  transition: all 0.3s ease;
}
.facility-item:hover {
  background: var(--forest);
  color: var(--cream);
  transform: translateY(-3px);
}
.facility-icon { font-size: 1.8rem; }
.facility-item span {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.facility-item:hover span { color: var(--cream-muted); }

/* ══════════════════════════════════════════
   EXPERIENCES
   ══════════════════════════════════════════ */
.experiences {
  background: var(--forest);
  padding: var(--section-pad) 4rem;
  position: relative;
  overflow: hidden;
}

.experiences__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 300;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.experiences__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem;
  position: relative;
  z-index: 1;
}

/* Cooking Class */
.cooking-class {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto 6rem;
  position: relative;
  z-index: 1;
}

.cooking-class__text h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--cream);
  margin: 0.4rem 0 1.2rem;
  letter-spacing: -0.02em;
}
.cooking-class__text p {
  color: var(--cream-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* Class Details */
.class-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem;
  border: 1px solid rgba(184, 156, 108, 0.2);
  border-radius: 2px;
}
.class-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.class-detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.class-detail-value {
  font-size: 0.85rem;
  color: var(--cream-muted);
}

/* Mini Calendar */
.mini-calendar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184, 156, 108, 0.2);
  border-radius: 2px;
  padding: 1.5rem;
  margin: 1.5rem 0 2rem;
}

.mini-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.mini-calendar__header span {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
  font-style: italic;
}

.cal-nav {
  background: none;
  border: 1px solid rgba(184,156,108,0.3);
  color: var(--gold);
  width: 28px; height: 28px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.cal-nav:hover { background: var(--gold); color: var(--forest); }

.mini-calendar__days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 0.6rem;
}
.mini-calendar__days-header span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--gold);
}

.mini-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--cream-muted);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cal-day:hover:not(.cal-day--empty):not(.cal-day--past) {
  background: rgba(184,156,108,0.2);
  color: var(--cream);
}
.cal-day--today { color: var(--gold); font-weight: 500; }
.cal-day--selected {
  background: var(--gold) !important;
  color: var(--forest) !important;
  font-weight: 600;
}
.cal-day--past { opacity: 0.3; cursor: not-allowed; }
.cal-day--empty { cursor: default; }

.cal-note {
  font-size: 0.72rem;
  color: var(--cream-muted);
  margin-top: 1rem;
  opacity: 0.7;
}

/* Cooking Class Images */
.cooking-class__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  height: 600px;
}

.cooking-img {
  overflow: hidden;
  border-radius: 2px;
}
.cooking-img:hover .img-placeholder { transform: scale(1.05); }

.cooking-img--1 {
  grid-column: 1 / -1;
  grid-row: 1;
  height: 340px;
}
.cooking-img--2 { grid-row: 2; height: 240px; }
.cooking-img--3 { grid-row: 2; height: 240px; }

/* Experience Cards */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.exp-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  transition: all 0.4s ease;
}
.exp-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(184,156,108,0.3);
  transform: translateY(-4px);
}

.exp-card__icon { font-size: 2rem; margin-bottom: 1.2rem; }
.exp-card h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.8rem;
}
.exp-card p { font-size: 0.85rem; color: var(--cream-muted); line-height: 1.7; }
.exp-duration {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ══════════════════════════════════════════
   INQUIRY
   ══════════════════════════════════════════ */
.inquiry {
  background: var(--cream);
}

.inquiry__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.inquiry__image {
  position: relative;
  overflow: hidden;
}
.inquiry__image .img-placeholder {
  position: absolute;
  inset: 0;
  height: 100%;
}

.inquiry__image-caption {
  position: absolute;
  bottom: 2rem; left: 2rem; right: 2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream);
  background: rgba(26,34,24,0.6);
  padding: 1rem 1.5rem;
  border-left: 3px solid var(--gold);
  backdrop-filter: blur(4px);
}

.inquiry__form-wrap {
  padding: 6rem 5rem;
  background: var(--white);
}
.inquiry__form-wrap > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

/* Form Styles */
.inquiry-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* Checkbox Group */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
}
.check-item input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--gold);
  flex-shrink: 0;
  padding: 0;
  background: none;
  border: none;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 4rem 2rem;
}
.success-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--forest);
  margin-bottom: 0.8rem;
}

/* ══════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════ */
.contact {
  background: var(--cream-dark);
  padding: var(--section-pad) 4rem;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.contact__col h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2rem;
  color: var(--forest);
  margin: 0.4rem 0 1.5rem;
}

.contact__col address {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 2;
  margin-bottom: 1.5rem;
}

.contact__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.contact__links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}
.contact__links a:hover { color: var(--gold); }

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}
.social-link:hover { color: var(--forest); }
.social-link svg { width: 18px; height: 18px; }

.contact__map {
  height: 480px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.map-placeholder { height: 100%; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  background: var(--forest);
  padding: 4rem;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 4rem;
}

.footer__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}
.footer__links a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color 0.3s ease;
}
.footer__links a:hover { color: var(--cream); }

.footer__copy {
  text-align: right;
}
.footer__copy p {
  font-size: 0.75rem;
  color: var(--cream-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }

  .nav { padding: 1.4rem 2.5rem; }
  .nav.scrolled { padding: 0.9rem 2.5rem; }
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero__content { padding: 0 2.5rem; max-width: 100%; }
  .hero__scroll { right: 2.5rem; }

  .about { padding: var(--section-pad) 2.5rem; }
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
  .about__image-stack { height: 360px; }

  .homes { padding: var(--section-pad) 2.5rem; }
  .homes__featured { grid-template-columns: 1fr; gap: 3rem; }
  .homes__featured-img { height: 380px; }
  .homes__grid { grid-template-columns: 1fr 1fr; }
  .facilities__grid { grid-template-columns: repeat(4, 1fr); }

  .experiences { padding: var(--section-pad) 2.5rem; }
  .cooking-class { grid-template-columns: 1fr; gap: 3rem; }
  .cooking-class__images { height: 400px; }
  .exp-grid { grid-template-columns: 1fr 1fr; }

  .inquiry__split { grid-template-columns: 1fr; }
  .inquiry__image { height: 50vh; position: relative; }
  .inquiry__form-wrap { padding: 4rem 2.5rem; }

  .contact { padding: var(--section-pad) 2.5rem; }
  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }

  .footer { padding: 3rem 2.5rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer__copy { text-align: center; }
  .footer__logo { align-items: center; }
}

@media (max-width: 640px) {
  .homes__grid { grid-template-columns: 1fr; }
  .facilities__grid { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-group { grid-template-columns: 1fr 1fr; }
  .class-details { grid-template-columns: 1fr; }
  .cooking-class__images {
    grid-template-columns: 1fr;
    height: auto;
  }
  .cooking-img--1 { height: 220px; grid-column: auto; }
  .cooking-img--2,
  .cooking-img--3 { height: 160px; }
  .footer__links { flex-direction: column; gap: 1rem; align-items: center; }
}

/* ══════════════════════════════════════════
   WORDPRESS / CANANG SARI ADDITIONS
   ══════════════════════════════════════════ */
.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  clip-path: inset(50%);
  overflow: hidden;
  word-wrap: normal;
}

body.admin-bar .nav { top: 32px; }

/* Experience cards with photos */
.exp-card { padding: 0; overflow: hidden; background: rgba(255,255,255,0.02); }
.exp-card__img { height: 200px; overflow: hidden; }
.exp-card__img .img-placeholder { height: 200px; }
.exp-card:hover .exp-card__img .img-placeholder { transform: scale(1.06); }
.exp-card__body { padding: 1.8rem; }

/* Three-card experience grid (we have 3 secondary experiences) */
.exp-grid--three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .exp-grid--three { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .exp-grid--three { grid-template-columns: 1fr; } }

/* Featured home gallery strip */
.homes__featured-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 0.8rem;
}
.homes__featured-strip .strip-img {
  height: 110px;
  overflow: hidden;
  border-radius: 2px;
}
.homes__featured-strip .strip-img:hover .img-placeholder { transform: scale(1.06); }

/* Inquiry form errors */
.form-note {
  font-size: 0.8rem;
  color: #c0392b;
}

/* WhatsApp quick link under form */
.inquiry__alt {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}
.inquiry__alt a { color: var(--gold); font-weight: 500; }
.inquiry__alt a:hover { text-decoration: underline; }

/* Nav logo image (optional) */
.nav__logo img { height: 44px; width: auto; }

/* Restore native checkbox appearance (form-group input resets it) */
.check-item input[type="checkbox"] {
  -webkit-appearance: checkbox;
  appearance: auto;
}

/* ══════════════════════════════════════════
   STANDALONE PAGES: HOMES / EXPERIENCES
   ══════════════════════════════════════════ */
.page-hero {
  background: var(--forest);
  padding: 180px 4rem 90px;
  text-align: center;
}
.page-hero .section-title { color: var(--cream); margin-bottom: 0.8rem; }
.page-hero .section-sub { margin: 0 auto; }

.listing {
  padding: var(--section-pad) 4rem;
}
.listing--dark { background: var(--forest); }
.listing--light { background: var(--cream); }

.listing__item {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto 7rem;
  scroll-margin-top: 110px;
}
.listing__item:last-child { margin-bottom: 0; }
.listing__item--flip .listing__text { order: 2; }
.listing__item--flip .listing__gallery { order: 1; }

.listing__text { position: sticky; top: 120px; }
.listing__text .home-title { margin-top: 0.4rem; }
.listing--dark .listing__text .home-title,
.listing--dark .listing__text h3 { color: var(--cream); }
.listing__text p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.2rem; line-height: 1.8; }
.listing--dark .listing__text p { color: var(--cream-muted); }
.listing__text .homes__features { margin-top: 0; }
.listing__text .btn { margin-top: 0.6rem; }

.listing__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.gallery-img {
  height: 240px;
  overflow: hidden;
  border-radius: 2px;
  cursor: zoom-in;
  border: none;
  padding: 0;
  background: var(--cream-dark);
}
.gallery-img--wide { grid-column: 1 / -1; height: 380px; }
.gallery-img .img-placeholder { height: 100%; }
.gallery-img:hover .img-placeholder { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 22, 14, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(245,240,232,0.08);
  border: 1px solid rgba(184,156,108,0.4);
  color: var(--cream);
  width: 46px; height: 46px;
  border-radius: 2px;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.lightbox__nav:hover { background: var(--gold); color: var(--forest); }
.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }

/* View-all buttons on the front page */
.homes__more, .experiences__more {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 5rem;
}
.experiences__more { margin-bottom: 0; position: relative; z-index: 1; margin-top: 4rem; }

@media (max-width: 1024px) {
  .page-hero { padding: 150px 2.5rem 70px; }
  .listing { padding: var(--section-pad) 2.5rem; }
  .listing__item { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 5rem; }
  .listing__item--flip .listing__text { order: 1; }
  .listing__item--flip .listing__gallery { order: 2; }
  .listing__text { position: static; }
}
@media (max-width: 640px) {
  .listing__gallery { grid-template-columns: 1fr; }
  .gallery-img { height: 220px; }
  .gallery-img--wide { height: 240px; }
}

/* ══════════════════════════════════════════
   LIGHT HEADER — cream bar so the green logo reads clearly
   ══════════════════════════════════════════ */
.nav {
  background: var(--cream);
  padding: 0.9rem 4rem;
  box-shadow: 0 1px 0 rgba(26, 34, 24, 0.08);
}
.nav.scrolled {
  background: rgba(245, 240, 232, 0.96);
  backdrop-filter: blur(12px);
  padding: 0.6rem 4rem;
  box-shadow: 0 2px 30px rgba(26, 34, 24, 0.14);
}
.nav__logo img {
  height: 60px;
  width: auto;
  display: block;
  transition: height 0.4s ease;
}
.nav.scrolled .nav__logo img { height: 48px; }

.nav__links a { color: rgba(26, 34, 24, 0.7); }
.nav__links a:hover { color: var(--forest); }

.nav__cta {
  border-color: var(--gold) !important;
  color: #7d6334 !important;
}
.nav__cta:hover {
  background: var(--gold) !important;
  color: var(--forest) !important;
}

.nav__burger span { background: var(--forest); }

@media (max-width: 1024px) {
  .nav { padding: 0.8rem 2.5rem; }
  .nav.scrolled { padding: 0.6rem 2.5rem; }
  .nav__logo img { height: 52px; }
}
