/* ============================================================
   KILELE HOLIDAY HOMES — Main Stylesheet
   Brand: Forest Green #1a3a2a | Gold #c9952a | Lake Blue #3a7bc8
   Typography: Cormorant Garamond (display) + Inter (body)
   ============================================================ */

:root {
  --forest: #1a3a2a;
  --forest-mid: #2d5a3d;
  --forest-light: #3d7a52;
  --gold: #c9952a;
  --gold-light: #e8b84b;
  --lake: #3a7bc8;
  --cream: #f7f5f0;
  --dark: #111410;
  --text: #2c2c2c;
  --text-light: #6b7062;
  --nav-h: 80px;
  --topbar-h: 36px;
}

/* ── TOPBAR ── */
.kilele-topbar {
  background: var(--forest);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  letter-spacing: 0.05em;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.topbar-inner i { color: var(--gold); margin-right: 6px; }

/* ── NAV ── */
.kilele-nav {
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,58,42,0.1);
  z-index: 999;
  transition: box-shadow 0.3s, background 0.3s;
}
.kilele-nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}
.kilele-nav.dark-nav {
  background: rgba(26,58,42,0.96);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo img { display: block; }
.nav-links {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 2px;
  transition: color 0.2s;
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-links li a:hover::after,
.nav-links li a.active::after { transform: scaleX(1); }
.nav-links li a:hover { color: var(--forest); }
.nav-links li a.active { color: var(--forest); font-weight: 600; }

.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--forest); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--forest);
  z-index: 1100;
  padding: 70px 30px 40px;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none; border: none;
  color: rgba(255,255,255,0.7);
  font-size: 24px;
  cursor: pointer;
}
.mobile-menu ul { list-style: none; padding: 0; margin: 0 0 40px; }
.mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu ul li a {
  display: block;
  padding: 16px 0;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  transition: color 0.2s;
}
.mobile-menu ul li a:hover { color: var(--gold-light); }
.mobile-contact { color: rgba(255,255,255,0.6); font-size: 13px; }
.mobile-contact p { margin-bottom: 10px; }
.mobile-contact i { color: var(--gold); margin-right: 8px; }
.menu-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
}
.menu-overlay.open { display: block; }

/* ── HERO ── */
.kilele-hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  margin-top: calc(var(--topbar-h) + var(--nav-h));
}
.hero-slideshow {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 8s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17,20,16,0.25) 0%,
    rgba(17,20,16,0.55) 50%,
    rgba(17,20,16,0.75) 100%
  );
}
.hero-content {
  width: 90%;
  max-width: 700px;
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 9vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  color: #fff;
}
.hero-headline .gold { color: var(--gold-light); font-style: italic; }
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.82);
  font-weight: 300;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 36px;
}
.hero-cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%,100%{ opacity:0.5; height:40px; } 50%{ opacity:1; height:56px; } }

.slide-dots {
  position: absolute;
  bottom: 36px; right: 36px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.dot.active { background: var(--gold); transform: scale(1.4); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--forest);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 2px;
  border: 2px solid var(--forest);
  transition: background 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
}
.btn-primary:hover { background: var(--forest-mid); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 2px;
  border: 2px solid rgba(255,255,255,0.6);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 2px;
  border: 2px solid var(--gold);
  transition: background 0.2s, transform 0.15s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-small {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 2px;
  background: var(--forest);
  color: #fff;
  border: 2px solid var(--forest);
  transition: background 0.2s, transform 0.15s;
  margin-top: 16px;
}
.btn-small:hover { background: var(--forest-mid); }
.btn-small-gold { background: var(--gold); border-color: var(--gold); }
.btn-small-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--forest);
  padding: 36px 24px;
}
.intro-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

/* ── SECTION BASICS ── */
.section-pad { padding: 90px 20px; }
.section-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-eyebrow.light { color: var(--gold-light); }
.section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 24px;
}
.section-body {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 18px;
}

/* ── ABOUT SECTION ── */
.section-text-col { padding-top: 20px; }
.section-img-col { padding-top: 20px; }
.stats-row {
  display: flex;
  gap: 30px;
  margin: 36px 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}
.stat-unit { font-size: 22px; font-weight: 400; }
.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
}
.img-stack {
  position: relative;
  padding: 20px 20px 0 0;
  height: 420px;
}
.img-main {
  width: 85%;
  height: 380px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
.img-accent {
  position: absolute;
  bottom: -30px; right: 0;
  width: 45%;
  height: 200px;
  object-fit: cover;
  border-radius: 2px;
  border: 4px solid #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

/* ── VIEWS STRIP ── */
.views-strip { position: relative; }
.views-bg {
  min-height: 560px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.views-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(17,20,16,0.55), rgba(26,58,42,0.8));
}
.views-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.views-body {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ── PLOTS CARDS ── */
.plot-card {
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  margin-bottom: 30px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.plot-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.14); }
.featured-card { border: 2px solid var(--gold); }
.plot-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.plot-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--forest);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  border-radius: 2px;
}
.gold-badge { background: var(--gold); }
.plot-card-body { padding: 24px; }
.plot-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 10px;
}
.plot-desc { font-size: 14px; color: var(--text-light); line-height: 1.65; margin-bottom: 14px; }
.plot-features { list-style: none; padding: 0; margin: 0; }
.plot-features li { font-size: 13px; color: var(--text-light); padding: 5px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.plot-features li:last-child { border-bottom: none; }

/* ── PILLARS ── */
.pillar-col { margin-bottom: 30px; }
.pillar {
  padding: 30px 20px;
  border-left: 3px solid var(--cream);
  transition: border-color 0.25s;
}
.pillar:hover { border-color: var(--gold); }
.pillar-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 10px;
}
.pillar-body { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ── GALLERY STRIP ── */
.gallery-strip {
  display: flex;
  height: 340px;
  overflow: hidden;
}
.gallery-thumb {
  flex: 1;
  background-size: cover;
  background-position: center;
  transition: flex 0.4s ease, filter 0.3s;
  filter: brightness(0.85);
  position: relative;
  text-decoration: none;
}
.gallery-thumb:hover { flex: 2.5; filter: brightness(1); }
.gallery-thumb-wide { flex: 2; }
.gallery-cta-overlay {
  position: absolute; inset: 0;
  background: rgba(26,58,42,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-thumb-wide:hover .gallery-cta-overlay { opacity: 1; }

/* ── VISION QUOTE ── */
.vision-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3.5vw, 40px);
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.35;
  margin-bottom: 12px;
}
.vision-attr {
  font-size: 14px;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}
.vision-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ── PROCESS ── */
.process-row { text-align: center; }
.process-step { padding: 30px 20px; position: relative; }
.process-step::after {
  content: '→';
  position: absolute;
  top: 42px; right: -5px;
  color: var(--gold);
  font-size: 20px;
}
.process-step:last-child::after { display: none; }
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 700;
  color: rgba(26,58,42,0.1);
  line-height: 1;
  margin-bottom: 6px;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 10px;
}
.step-body { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* ── CONTACT CTA STRIP ── */
.contact-cta-strip {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 90px 20px;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: rgba(17,20,16,0.75);
}
.cta-inner { position: relative; z-index: 2; }
.cta-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  margin-bottom: 50px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.contact-tile {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  padding: 24px 16px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.2s, transform 0.2s;
}
.contact-tile:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); }
.contact-tile-gold { background: var(--gold); border-color: var(--gold); }
.contact-tile-gold:hover { background: var(--gold-light); }
.contact-icon { font-size: 22px; }
.contact-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.6); }
.contact-val { font-size: 13px; font-weight: 600; color: #fff; }

/* ── FOOTER ── */
.kilele-footer { background: var(--dark); color: rgba(255,255,255,0.7); }
.footer-top { padding: 70px 24px 50px; }
.footer-brand { padding-bottom: 30px; }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.2;
}
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 10px; font-size: 13px; color: rgba(255,255,255,0.55); }
.footer-nav li a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-nav li a:hover { color: var(--gold-light); }
.footer-subscribe-col { }
.footer-input {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 11px 14px;
  font-size: 13px;
  border-radius: 2px;
  margin-bottom: 8px;
  outline: none;
  transition: border-color 0.2s;
}
.footer-input::placeholder { color: rgba(255,255,255,0.35); }
.footer-input:focus { border-color: var(--gold); }
.footer-btn {
  width: 100%;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 11px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
}
.footer-btn:hover { background: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 24px;
}
.footer-bottom-inner { text-align: center; }
.footer-bottom-inner p { font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 6px; }
.footer-disclaimer { font-size: 11px !important; font-style: italic; color: rgba(255,255,255,0.25) !important; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  height: 45vh;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: calc(var(--topbar-h) + var(--nav-h));
  display: flex;
  align-items: flex-end;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(17,20,16,0.3), rgba(26,58,42,0.85));
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 30px 50px;
  color: #fff;
}
.page-hero-content .section-eyebrow { margin-bottom: 8px; }
.page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
}

/* ── GALLERY PAGE ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 4px;
}
.gallery-item {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s, filter 0.3s;
  overflow: hidden;
  position: relative;
}
.gallery-item:hover { transform: scale(1.02); filter: brightness(1.1); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: unset; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 2px; }
.lightbox-close {
  position: fixed;
  top: 20px; right: 24px;
  color: #fff; font-size: 30px;
  cursor: pointer; z-index: 2001;
  background: none; border: none;
}
.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 36px;
  cursor: pointer; z-index: 2001;
  background: none; border: none;
  padding: 10px 20px;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

/* ── CONTACT FORM ── */
.contact-form-section { background: var(--cream); }
.kilele-form label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 6px;
}
.kilele-form input,
.kilele-form select,
.kilele-form textarea {
  width: 100%;
  border: 1px solid rgba(26,58,42,0.2);
  background: #fff;
  padding: 12px 14px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  border-radius: 2px;
  outline: none;
  margin-bottom: 20px;
  transition: border-color 0.2s;
  color: var(--text);
}
.kilele-form input:focus,
.kilele-form select:focus,
.kilele-form textarea:focus { border-color: var(--gold); }
.kilele-form textarea { min-height: 130px; resize: vertical; }

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .kilele-hero { margin-top: calc(var(--topbar-h) + var(--nav-h)); }
  .page-hero { margin-top: calc(var(--topbar-h) + var(--nav-h)); }
  .img-stack { height: 280px; }
  .img-accent { display: none; }
  .gallery-strip { height: 200px; }
  .gallery-thumb-wide { flex: 1.5; }
  .process-step::after { display: none; }
  .views-bg { background-attachment: scroll; }
  .contact-cta-strip { background-attachment: scroll; }
  .topbar-inner span:last-child { display: none; }
  .stats-row { gap: 20px; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 48px; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .gallery-strip { display: grid; grid-template-columns: 1fr 1fr; height: 320px; }
  .gallery-thumb { flex: none; }
  .gallery-thumb-wide { grid-column: span 2; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide, .fade-in, .scroll-line, .plot-card, .gallery-thumb { transition: none !important; animation: none !important; }
}
