/* ============================================================
   RANCHO POCO A POCO — main.css
   Brand: Forest #4C6B45 · Clay #A26E54 · Cream #F4EDE4
   Fonts: Playfair Display · Inter Tight
   ============================================================ */

:root {
  --forest: #4C6B45;
  --forest-dark: #3a5234;
  --forest-deep: #2a3d25;
  --clay: #A26E54;
  --clay-light: #b8845f;
  --cream: #F4EDE4;
  --cream-dark: #ece3d8;
  --slate: #414754;
  --slate-light: #5a6070;
  --carbon: #111111;
  --stone: #DDE2DB;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter Tight', system-ui, sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--carbon); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter+Tight:wght@300;400;500;600&display=swap');

/* ── NAV ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-height); display: flex; align-items: center; justify-content: space-between; padding: 0 2.5rem; background: rgba(42,61,37,0.97); backdrop-filter: blur(8px); transition: background 0.3s; }
.nav.scrolled { background: rgba(42,61,37,0.99); box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo svg line { stroke: var(--cream) !important; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-small { font-size: 9px; font-weight: 300; letter-spacing: 0.22em; color: rgba(244,237,228,0.6); text-transform: lowercase; }
.nav-logo-large { font-size: 15px; font-weight: 500; letter-spacing: 0.2em; color: var(--cream); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { font-size: 11.5px; font-weight: 400; letter-spacing: 0.04em; color: rgba(244,237,228,0.85); padding: 7px 12px; border-radius: 3px; transition: color 0.2s, background 0.2s; }
.nav-links a:hover { color: var(--cream); background: rgba(255,255,255,0.08); }

/* ── ACTIVE NAV STATE ── */
.nav-links a.nav-active {
  color: var(--cream) !important;
  background: rgba(255,255,255,0.1);
  border-bottom: 1px solid var(--clay-light);
}
.nav-mobile a.nav-active {
  color: var(--cream) !important;
  border-left: 2px solid var(--clay);
  padding-left: 0.75rem;
}

.nav-cta { background: var(--clay) !important; color: #fff !important; padding: 8px 20px !important; border-radius: 3px !important; }
.nav-cta:hover { background: var(--clay-light) !important; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--cream); transition: all 0.3s; }
.nav-mobile { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; background: var(--forest-deep); z-index: 999; padding: 1.5rem 2rem; flex-direction: column; gap: 4px; }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 14px; color: rgba(244,237,228,0.9); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.nav-cta-mobile { background: var(--clay); color: #fff !important; text-align: center; padding: 12px !important; border-radius: 3px; margin-top: 0.5rem; border: none !important; }

/* ── HERO ── */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0.65) 100%); }
.hero-content { position: relative; text-align: center; color: var(--cream); padding: 0 1.5rem 5rem; max-width: 800px; width: 100%; }
.hero-eyebrow { font-size: 11px; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(244,237,228,0.7); margin-bottom: 1.5rem; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 400; line-height: 1.15; margin-bottom: 1.5rem; }
.hero-title em { font-style: italic; color: var(--clay-light); }
.hero-sub { font-size: clamp(0.95rem, 1.5vw, 1.1rem); font-weight: 300; color: rgba(244,237,228,0.85); max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO (non-homepage) ── */
.page-hero { position: relative; height: 55vh; min-height: 380px; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.65) 100%); }
.page-hero-content { position: relative; padding: 3rem 2.5rem; color: var(--cream); max-width: var(--max-width); width: 100%; margin: 0 auto; }
.page-hero-label { font-size: 10px; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--clay-light); margin-bottom: 0.75rem; display: block; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 400; line-height: 1.2; }
.page-hero-title em { font-style: italic; }

/* ── BUTTONS ── */
.btn { display: inline-block; font-family: var(--font-body); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 32px; border-radius: 2px; transition: all 0.25s; cursor: pointer; border: none; }
.btn-primary { background: var(--clay); color: #fff; }
.btn-primary:hover { background: var(--clay-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--cream); border: 1px solid rgba(244,237,228,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--cream); }
.btn-outline-dark { background: transparent; color: var(--carbon); border: 1px solid rgba(17,17,17,0.3); }
.btn-outline-dark:hover { background: var(--carbon); color: var(--cream); }
.btn-forest { background: var(--forest); color: var(--cream); }
.btn-forest:hover { background: var(--forest-dark); }

/* ── STATS BAR ── */
.stats-bar { background: var(--forest); padding: 2rem; display: flex; justify-content: center; gap: 0; }
.stat-item { text-align: center; padding: 0 3rem; border-right: 1px solid rgba(244,237,228,0.15); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; color: var(--cream); line-height: 1; display: block; }
.stat-label { font-size: 9px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(244,237,228,0.55); margin-top: 4px; display: block; }

/* ── SECTION BASICS ── */
.section-label { font-size: 10px; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--clay); display: block; margin-bottom: 0.75rem; }
.section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; line-height: 1.25; }
.section-title em { font-style: italic; }
.divider { width: 40px; height: 1px; background: var(--clay); margin: 1.25rem 0; }

/* ── PATHWAY CARDS ── */
.pathway-section { padding: 6rem 2rem; background: var(--cream); }
.pathway-inner { max-width: var(--max-width); margin: 0 auto; }
.pathway-header { text-align: center; margin-bottom: 3.5rem; }
.pathway-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.pathway-card { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.pathway-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.pathway-card:hover img { transform: scale(1.04); }
.pathway-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%); }
.pathway-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 1.75rem; color: var(--cream); }
.pathway-card-label { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--clay-light); margin-bottom: 0.5rem; display: block; }
.pathway-card-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; margin-bottom: 0.75rem; }
.pathway-card-text { font-size: 0.82rem; color: rgba(244,237,228,0.8); line-height: 1.7; margin-bottom: 1rem; }
.pathway-card-link { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clay-light); display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.pathway-card:hover .pathway-card-link { gap: 8px; }

/* ── ESTATE SECTION ── */
.estate-section { padding: 7rem 2rem; background: var(--cream); }
.estate-inner { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center; }
.estate-text p { color: var(--slate); line-height: 1.85; margin-bottom: 1.25rem; font-size: 1.02rem; }

/* ── VIDEO SECTION ── */
.video-section { position: relative; height: 520px; overflow: hidden; background: var(--carbon); }
.video-section video { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.video-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.3); }
.video-overlay-text { text-align: center; color: var(--cream); }
.video-overlay-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 400; line-height: 1.3; margin-bottom: 1.5rem; }
.video-overlay-text h2 em { font-style: italic; color: var(--clay-light); }

/* ── DIFFERENTIATORS ── */
.diff-section { padding: 6rem 2rem; background: var(--slate); }
.diff-inner { max-width: var(--max-width); margin: 0 auto; }
.diff-header { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-bottom: 4rem; align-items: end; }
.diff-header p { color: rgba(244,237,228,0.8); line-height: 1.8; font-size: 1rem; }
.estate-text p, .story-text p { color: var(--slate); }
.diff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.diff-item { padding: 2rem 1.5rem; background: var(--cream); border: none; }
.diff-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.diff-item h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.75rem; }
.diff-item p { font-size: 0.875rem; color: var(--slate-light); line-height: 1.75; }

/* ── TESTIMONIAL ── */
.testimonial-section { padding: 6rem 2rem; background: var(--forest-deep); text-align: center; }
.testimonial-inner { max-width: 800px; margin: 0 auto; }
.testimonial-inner blockquote { font-family: var(--font-display); font-size: clamp(1.3rem, 2.2vw, 1.9rem); font-style: italic; color: var(--cream); line-height: 1.65; margin-bottom: 1.5rem; }
.testimonial-inner cite { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(244,237,228,0.45); }

/* ── CTA SECTION ── */
.cta-section { padding: 7rem 2rem; background: var(--forest); text-align: center; }
.cta-section h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 400; color: var(--cream); line-height: 1.3; margin-bottom: 1rem; }
.cta-section h2 em { font-style: italic; }
.cta-section p { color: rgba(244,237,228,0.7); margin-bottom: 2.5rem; font-size: 1rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer { background: var(--forest-deep); color: var(--cream); padding: 0 2rem 0; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1fr 200px 1fr; gap: 3rem; align-items: start; padding: 4rem 0 3rem; border-bottom: 1px solid rgba(244,237,228,0.1); }
.footer-links-left, .footer-links-right { display: flex; flex-direction: column; }
.footer-links-right { align-items: flex-end; text-align: right; }
.footer-links-left h5, .footer-links-right h5 { font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,237,228,0.45); margin-bottom: 1rem; margin-top: 0; }
.footer-links-left a, .footer-links-right a { display: block; font-size: 13px; color: rgba(244,237,228,0.65); margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-links-left a:hover, .footer-links-right a:hover { color: var(--cream); }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.footer-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.footer-logo-small { font-size: 10px; font-weight: 300; letter-spacing: 0.22em; color: rgba(244,237,228,0.5); text-transform: lowercase; }
.footer-logo-large { font-size: 18px; font-weight: 500; letter-spacing: 0.2em; color: var(--cream); text-transform: uppercase; }
.footer-brand svg line { stroke: var(--cream) !important; }
.footer-brand p { font-size: 0.85rem; color: rgba(244,237,228,0.5); line-height: 1.7; max-width: 280px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-links h5 { font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,237,228,0.45); margin-bottom: 1rem; }
.footer-links a { display: block; font-size: 13px; color: rgba(244,237,228,0.65); margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-bottom { max-width: var(--max-width); margin: 0 auto; padding: 1.5rem 0 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 11.5px; color: rgba(244,237,228,0.35); }
.footer-bottom a { color: rgba(244,237,228,0.35); }

/* ── EXPERIENCE SECTIONS (wellness/retreats) ── */
.experience-section { padding: 5rem 2rem; background: var(--stone); }
.experience-section:nth-child(even) { background: var(--cream); }
.experience-inner { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.experience-inner.reverse { direction: rtl; }
.experience-inner.reverse > * { direction: ltr; }
.experience-img { width: 100%; height: 440px; object-fit: cover; }
.price-badge { display: inline-block; background: var(--forest); color: var(--cream); font-size: 11px; font-weight: 500; letter-spacing: 0.1em; padding: 8px 18px; margin-top: 1.25rem; }

/* ── HOUSE SECTIONS (accommodations) ── */
.house-section { padding: 5rem 2rem; background: var(--cream); }
.house-section:nth-child(even) { background: var(--stone); }
.house-inner { max-width: var(--max-width); margin: 0 auto; }
.house-hero-img { width: 100%; height: 500px; object-fit: cover; margin-bottom: 3rem; }
.house-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 3rem; align-items: start; }
.house-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1rem; }
.house-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; background: var(--stone); color: var(--slate); }
.rooms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
.room-card { padding: 1.5rem; background: var(--white); border-left: 3px solid var(--clay); }
.room-card h4 { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.4rem; }
.room-card .room-type { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clay); margin-bottom: 0.5rem; display: block; }
.room-card p { font-size: 0.875rem; color: var(--slate-light); line-height: 1.7; }

/* ── AMENITIES ── */
.amenities-section { padding: 5rem 2rem; background: var(--forest); color: var(--cream); }
.amenities-inner { max-width: var(--max-width); margin: 0 auto; }
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 3rem; }
.amenity-group h4 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 1rem; color: var(--clay-light); }
.amenity-group ul { list-style: none; }
.amenity-group li { font-size: 0.88rem; color: rgba(244,237,228,0.75); padding: 5px 0; border-bottom: 1px solid rgba(244,237,228,0.08); line-height: 1.6; }

/* ── GALLERY ── */
.gallery-section { padding: 5rem 2rem; background: var(--slate); }
.gallery-inner { max-width: var(--max-width); margin: 0 auto; }
.gallery-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; padding: 8px 18px; border: 1px solid rgba(244,237,228,0.25); background: none; cursor: pointer; transition: all 0.2s; color: rgba(244,237,228,0.75); }
.filter-btn.active, .filter-btn:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.gallery-section .section-title { color: var(--cream); }
.gallery-section .section-label { color: var(--clay-light); }
.gallery-grid { columns: 3; gap: 8px; }
.gallery-item { break-inside: avoid; margin-bottom: 8px; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item .caption { font-size: 11px; color: rgba(244,237,228,0.5); padding: 6px 2px; }
.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; }
.lightbox-close { position: absolute; top: 1.5rem; right: 2rem; color: white; font-size: 2rem; cursor: pointer; background: none; border: none; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); color: white; font-size: 2rem; cursor: pointer; background: none; border: none; padding: 1rem; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ── FAQ ── */
.faq-section { padding: 5rem 2rem; background: var(--slate); }
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-group { margin-bottom: 3rem; }
.faq-group-title { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(244,237,228,0.15); color: var(--cream); }
.faq-item { border-bottom: 1px solid rgba(244,237,228,0.12); padding-left: 1rem; border-left: 2px solid transparent; transition: border-color 0.2s; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 1.1rem 0; font-family: var(--font-body); font-size: 0.95rem; font-weight: 500; color: var(--cream); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; line-height: 1.5; }
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--clay); flex-shrink: 0; transition: transform 0.2s; }
.faq-q.open::after { content: '−'; }
.faq-item:has(.faq-q.open) { border-left-color: var(--clay); }
.faq-a { display: none; padding: 0 0 1.25rem; font-size: 0.9rem; color: rgba(244,237,228,0.75); line-height: 1.8; }
.faq-a.open { display: block; }
.faq-a ul { padding-left: 1.25rem; margin-top: 0.5rem; }
.faq-a li { margin-bottom: 0.3rem; }
.faq-a strong { color: var(--cream); }

/* ── ABOUT PAGE ── */
.story-section { padding: 6rem 2rem; background: var(--cream); }
.story-inner { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: start; }
.story-text p { color: var(--slate); line-height: 1.85; margin-bottom: 1.25rem; font-size: 1rem; }
.pull-quote { font-family: var(--font-display); font-size: 1.4rem; font-style: italic; border-left: 3px solid var(--clay); padding-left: 1.5rem; margin: 2rem 0; line-height: 1.5; color: var(--carbon); }
.timeline { margin-top: 2rem; }
.timeline-item { padding: 1.25rem 0; border-bottom: 1px solid var(--stone); }
.timeline-item h4 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 0.4rem; }
.timeline-item p { font-size: 0.85rem; color: var(--slate-light); line-height: 1.7; }
.team-section { padding: 6rem 2rem; background: var(--slate); }
.team-inner { max-width: var(--max-width); margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2rem; margin-top: 3rem; }
.team-member { text-align: center; }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: rgba(244,237,228,0.1); border: 2px solid rgba(244,237,228,0.2); margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.8rem; color: var(--cream); }
.team-member h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.25rem; color: var(--cream); }
.team-member .role { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--clay); margin-bottom: 0.75rem; display: block; }
.team-member p { font-size: 0.8rem; color: rgba(244,237,228,0.7); line-height: 1.7; }

/* ── CONTACT ── */
.contact-section { padding: 6rem 2rem; background: var(--cream); }
.contact-inner { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; }
.contact-form { background: var(--white); padding: 3rem; border: 1px solid var(--stone); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--slate); margin-bottom: 0.5rem; transition: color 0.2s; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; font-family: var(--font-body); font-size: 14px; border: 1px solid var(--stone); background: var(--white); color: var(--carbon); outline: none; transition: border 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--forest); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── BLOG ── */
.blog-section { padding: 6rem 2rem; background: var(--slate); }
.blog-inner { max-width: var(--max-width); margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.blog-card { background: var(--cream); border: 1px solid rgba(221,226,219,0.3); overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.25); }
.blog-card-img { height: 220px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 1.5rem; }
.blog-card-date { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--clay-light); }
.blog-card-title { font-family: var(--font-display); font-size: 1.2rem; margin: 0.5rem 0 0.75rem; line-height: 1.35; }
.blog-card-excerpt { font-size: 0.875rem; color: var(--slate-light); line-height: 1.7; }

/* ── CALENDAR ── */
.calendar-section { padding: 6rem 2rem; background: var(--cream); }
.calendar-inner { max-width: var(--max-width); margin: 0 auto; }
.calendar-embed { background: var(--white); padding: 3rem; min-height: 500px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--stone); margin-top: 3rem; }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .pathway-grid { grid-template-columns: 1fr; }
  .pathway-card { aspect-ratio: 16/9; }
  .estate-inner, .experience-inner, .house-header, .diff-header, .story-inner, .contact-inner, .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .experience-inner.reverse { direction: ltr; }
  .gallery-grid { columns: 2; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { border-right: none; padding: 0.75rem 2rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .gallery-grid { columns: 1; }
  .rooms-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
}

/* ── LANGUAGE TOGGLE ── */
.lang-toggle { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.lang-toggle a { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; color: rgba(244,237,228,0.6); padding: 4px 6px; border-radius: 2px; transition: color 0.2s; }
.lang-toggle a:hover, .lang-toggle a.active { color: var(--cream); }
.lang-toggle span { color: rgba(244,237,228,0.3); font-size: 10px; }


/* ── SOCIAL PROOF STRIP ── */
.social-proof-strip { background: var(--stone); padding: 3rem 2rem; border-top: 1px solid rgba(76,107,69,0.15); border-bottom: 1px solid rgba(76,107,69,0.15); }
.social-proof-inner { max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.social-proof-item { display: flex; align-items: center; gap: 1rem; text-decoration: none; color: var(--carbon); transition: opacity 0.2s; }
.social-proof-item:hover { opacity: 0.75; }
.social-proof-icon { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.social-proof-icon.google { background: #fff; border: 1px solid var(--stone); }
.social-proof-icon.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-proof-text { display: flex; flex-direction: column; }
.social-proof-label { font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--slate); }
.social-proof-value { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; color: var(--carbon); margin-top: 2px; }
.social-proof-stars { color: #f4b942; font-size: 0.85rem; letter-spacing: 2px; }
.social-proof-divider { width: 1px; height: 48px; background: var(--stone); }

/* ── CONDO SECTION ── */
.condo-section { padding: 4rem 2rem; background: var(--stone); }
.condo-inner { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.condo-text { }
.condo-text h3 { font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 400; margin-bottom: 1rem; line-height: 1.3; }
.condo-text p { color: var(--slate); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.condo-details { display: flex; gap: 2rem; margin: 1.5rem 0; flex-wrap: wrap; }
.condo-detail { text-align: center; }
.condo-detail span { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 300; color: var(--forest); }
.condo-detail small { font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--slate-light); }

/* ── IMPROVED MOBILE ── */
@media (max-width: 768px) {
  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content { padding: 0 1.25rem 4rem; }
  .hero-title { font-size: clamp(2rem, 8vw, 3.5rem); }
  .hero-sub { font-size: 0.9rem; }
  .hero-actions { flex-direction: column; align-items: center; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; max-width: 280px; text-align: center; }

  /* Page hero */
  .page-hero { height: 40vh; min-height: 260px; }
  .page-hero-content { padding: 2rem 1.25rem; }
  .page-hero-title { font-size: clamp(1.6rem, 6vw, 2.5rem); }

  /* Stats bar */
  .stats-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; padding: 1rem; flex-wrap: unset; }
  .stat-item { padding: 0.75rem 0.5rem; border-right: 1px solid rgba(244,237,228,0.15) !important; border-bottom: 1px solid rgba(244,237,228,0.15); }
  .stat-item:nth-child(3n) { border-right: none !important; }
  .stat-item:nth-child(4), .stat-item:nth-child(5) { border-bottom: none; }
  .stat-num { font-size: 1.5rem; }

  /* Experiences icons grid */
  .experiences-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 1.5rem !important; }

  /* Pathway cards */
  .pathway-grid { grid-template-columns: 1fr; }
  .pathway-card { aspect-ratio: 4/3; }
  .pathway-card-title { font-size: 1.3rem !important; }
  .pathway-card-text { font-size: 0.8rem !important; line-height: 1.5 !important; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .pathway-card-content { padding: 1.25rem !important; }
  .pathway-card-label { font-size: 9px !important; }

  /* Estate section */
  .estate-inner { grid-template-columns: 1fr; gap: 2rem; }
  .estate-inner img { height: 280px !important; }

  /* Video section */
  .video-overlay h2 { font-size: clamp(1.2rem, 4vw, 1.8rem) !important; margin-bottom: 1rem !important; }
  .video-overlay { padding-bottom: 2rem !important; }

  /* Diff grid */
  .diff-grid { grid-template-columns: 1fr; }
  .diff-header { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Footer */
  .footer { padding: 3rem 1.5rem 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .footer-links-right-cols { justify-content: center; }
  .footer-social-links { text-align: left; display: inline-block; }
  .footer-brand img { margin: 0 auto 1rem; }

  /* Social proof */
  .social-proof-inner { flex-direction: column; gap: 1.5rem; align-items: flex-start; padding: 0 1rem; }
  .social-proof-divider { width: 100%; height: 1px; }

  /* Condo section */
  .condo-inner { grid-template-columns: 1fr; gap: 2rem; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form { padding: 1.75rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Blog grid */
  .blog-grid { grid-template-columns: 1fr; }

  /* Story */
  .story-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Team */
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* Gallery */
  .gallery-grid { columns: 1; }

  /* Amenities */
  .amenities-grid { grid-template-columns: 1fr; }

  /* Rooms */
  .rooms-grid { grid-template-columns: 1fr; }

  /* Nav mobile CTA */
  .nav-cta-mobile { display: block; margin-top: 0.75rem; }

  /* Lang toggle mobile */
  .lang-toggle { margin-left: 4px; }
  .lang-toggle a { font-size: 10px; padding: 3px 5px; }

  /* Buttons on mobile */
  .btn { padding: 12px 24px; }
  
  /* Section padding reduction */
  .pathway-section, .estate-section, .diff-section { padding: 3.5rem 1.25rem; }
  .blog-section, .faq-section, .story-section, .team-section { padding: 3.5rem 1.25rem; }
  .contact-section, .calendar-section { padding: 3.5rem 1.25rem; }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(244,237,228,0.15); }
  .stat-item:nth-child(4) { border-right: none; }
  .experiences-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
}

/* ── MOBILE FIXES ── */

/* Burger at 768px */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  /* Hero bottom aligned */
  .hero { align-items: flex-end; }
  .hero-content { padding-bottom: 4.5rem; width: 100%; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; text-align: center; }

  /* Stats — 3 col grid */
  .stats-bar { display: grid !important; grid-template-columns: repeat(3, 1fr); flex-wrap: unset; padding: 1rem; }
  .stat-item { border-right: 1px solid rgba(244,237,228,0.15) !important; border-bottom: 1px solid rgba(244,237,228,0.15); padding: 0.75rem 0.5rem; }
  .stat-item:nth-child(3) { border-right: none !important; }
  .stat-item:nth-child(4), .stat-item:nth-child(5) { border-bottom: none; }
  .stat-num { font-size: 1.5rem; }

  /* Pathway cards */
  .pathway-card-content { padding: 1.25rem; }
  .pathway-card-label { font-size: 9px; }
  .pathway-card-title { font-size: 1.2rem; }
  .pathway-card-text { font-size: 0.78rem; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

  /* Video overlay — bottom */
  .video-overlay { align-items: flex-end !important; padding-bottom: 2.5rem; }
  .video-overlay h2 { font-size: clamp(1.3rem, 4vw, 2rem) !important; margin-bottom: 1rem !important; }

  /* Page hero */
  .page-hero { height: 40vh; min-height: 260px; }
  .page-hero-content { padding: 2rem 1.25rem; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form { padding: 1.75rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Story */
  .story-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Diff */
  .diff-header { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .footer-links-left, .footer-links-right { text-align: center; align-items: center; }
  .footer-links-left a[style*="display:flex"], .footer-links-right a[style*="display:flex"] { justify-content: center; }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr) !important; }
  .stat-item:nth-child(2) { border-right: none !important; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(244,237,228,0.15) !important; }
  .stat-item:nth-child(4) { border-right: none !important; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
  .stat-item:nth-child(5) { border-bottom: none; border-right: none !important; grid-column: 1 / -1; }
}

/* ── CLAY ACCENT SECTION (used for featured CTAs) ── */
.clay-section { background: var(--clay); }
.clay-section h2, .clay-section h3, .clay-section p { color: var(--cream); }

/* ── STONE SURFACE REFINEMENTS ── */


/* ── SOCIAL PROOF — warm it up ── */
.social-proof-strip { background: var(--stone); padding: 3rem 2rem; border-top: 1px solid rgba(76,107,69,0.15); border-bottom: 1px solid rgba(76,107,69,0.15); }

/* ── CALENDAR — cream bg ── */
.calendar-section { padding: 6rem 2rem; background: var(--cream); }
.calendar-embed { background: var(--white); padding: 3rem; min-height: 500px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--stone); margin-top: 3rem; }

/* ── BLOG CARD DATE — clay stays, body on stone ── */
.blog-card-body { padding: 1.5rem; background: var(--cream); }

/* ── PRICE BADGE — forest feels right ── */
.price-badge { display: inline-block; background: var(--forest); color: var(--cream); font-size: 11px; font-weight: 500; letter-spacing: 0.1em; padding: 8px 18px; margin-top: 1.25rem; }

/* ── PULL QUOTE — clay border, slate text ── */
.pull-quote { color: var(--slate); }

/* ── SECTION LABEL refinement — slate-light on light bgs ── */
.section-label-light { font-size: 10px; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--slate-light); display: block; margin-bottom: 0.75rem; }

/* ── SLATE SECTION TEXT OVERRIDES ── */
.diff-section .section-title,
.diff-section h2,
.blog-section .section-title,
.blog-section h2,
.faq-section h2,
.faq-section .section-title,
.gallery-section h2,
.team-section h2,
.team-section .section-title { color: var(--cream); }

.diff-section .section-label,
.blog-section .section-label,
.faq-section .section-label,
.team-section .section-label { color: var(--clay-light); }

.diff-section .section-title em,
.blog-section .section-title em { color: var(--clay-light); font-style: italic; }

/* ── SLATE SECTION CHILD ELEMENT OVERRIDES ── */
[style*="background:var(--slate)"] h1,
[style*="background:var(--slate)"] h2,
[style*="background:var(--slate)"] h3,
[style*="background:var(--slate)"] h4,
[style*="background:var(--slate)"] h5,
[style*="background:var(--slate)"] p:not([style*="color"]),
[style*="background:var(--slate)"] li { color: var(--cream); }

[style*="background:var(--slate)"] .section-label { color: var(--clay-light); }
[style*="background:var(--slate)"] .section-title em { color: var(--clay-light); }
[style*="background:var(--slate)"] .divider { background: var(--clay); }

/* About build section on slate */
[style*="background:var(--slate)"] h3,
[style*="background:var(--slate)"] h4 { color: var(--cream); }
[style*="background:var(--slate)"] p { color: rgba(244,237,228,0.75); }
[style*="background:var(--slate)"] .timeline-item { border-bottom-color: rgba(244,237,228,0.12); }

/* Retreat type cards on slate */
[style*="background:var(--slate)"] .diff-item,
[style*="background:var(--slate)"] [style*="background:var(--stone)"] { background: rgba(244,237,228,0.07) !important; border: 1px solid rgba(244,237,228,0.1) !important; }

/* Vendor cards on slate */
[style*="background:var(--slate)"] [style*="background:var(--cream)"] { background: rgba(244,237,228,0.08) !important; }
[style*="background:var(--slate)"] [style*="color:var(--slate-light)"] { color: rgba(244,237,228,0.65) !important; }
[style*="background:var(--slate)"] [style*="color:var(--slate)"] { color: rgba(244,237,228,0.8) !important; }

/* ══════════════════════════════════════════════
   POLISH PASS — Micro-interactions & refinements
   ══════════════════════════════════════════════ */

/* ── FOCUS STATES (accessibility + polish) ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(76,107,69,0.1);
}

/* ── SMOOTH IMAGE LOADING ── */
img { transition: opacity 0.3s ease; }
img[loading="lazy"] { opacity: 0; }
img[loading="lazy"].loaded { opacity: 1; }

/* ── SECTION LABEL — clay underline accent ── */
.section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--clay);
  margin-top: 6px;
  transition: width 0.3s ease;
}
.section-label:hover::after { width: 40px; }

/* ── BUTTONS — richer interactions ── */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.btn:hover::after { background: rgba(255,255,255,0.06); }
.btn:active { transform: translateY(1px); }
.btn-primary:active { transform: translateY(1px); }

/* ── ROOM CARDS — hover lift ── */
.room-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.room-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(76,107,69,0.1);
}

/* ── DIFF ITEMS — hover lift ── */
.diff-item {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.diff-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

/* ── NAV LINKS — smoother underline on hover ── */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--clay-light);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a.nav-active::after { transform: scaleX(1); }

/* ── FOOTER LINKS — arrow on hover ── */
.footer-links-left a::before,
.footer-links-right a::before {
  content: '';
  display: inline-block;
  width: 0;
  overflow: hidden;
  transition: width 0.2s ease;
  vertical-align: middle;
}
.footer-links-left a:hover::before,
.footer-links-right a:hover::before {
  content: '→ ';
  width: 1.2em;
}

/* ── SOCIAL PROOF STRIP — card hover ── */
.social-proof-item {
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  transition: background 0.2s, opacity 0.2s;
}
.social-proof-item:hover {
  background: rgba(76,107,69,0.08);
  opacity: 1;
}

/* ── PAGE HERO — subtle parallax feel ── */
.page-hero-bg img {
  transform: scale(1.03);
  transition: transform 6s ease-out;
}
.page-hero:hover .page-hero-bg img {
  transform: scale(1.0);
}

/* ── HERO TITLE — refined spacing ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 30px;
  height: 1px;
  background: rgba(244,237,228,0.4);
}

/* ── BLOCKQUOTES — refined styling ── */
blockquote {
  position: relative;
}
blockquote::before {
  content: '"';
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--clay);
  opacity: 0.2;
  line-height: 1;
  pointer-events: none;
}

/* ── STATS BAR — number emphasis ── */
.stat-num {
  background: linear-gradient(135deg, var(--cream) 0%, rgba(244,237,228,0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── PRICE BADGE — clay pill variant ── */
.price-badge {
  border-radius: 2px;
  letter-spacing: 0.08em;
  transition: background 0.2s;
}
.price-badge:hover { background: var(--forest-dark); }

/* ── GALLERY ITEM — overlay on hover ── */
.gallery-item::after {
  content: '↗';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(76,107,69,0);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  opacity: 0;
  transition: all 0.3s ease;
}
.gallery-item { position: relative; }
.gallery-item:hover::after {
  background: rgba(76,107,69,0.35);
  opacity: 1;
}

/* ── BLOG CARD — date bar ── */
.blog-card-date {
  display: inline-block;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--stone);
  margin-bottom: 0.5rem;
  width: 100%;
}

/* ── FORM SUBMIT BUTTON ── */
.contact-form .btn-primary {
  width: 100%;
  padding: 16px;
  font-size: 13px;
  letter-spacing: 0.12em;
}

/* ── MOBILE NAV — active indicator ── */
.nav-mobile a.nav-active {
  color: var(--cream) !important;
  border-left: 2px solid var(--clay);
  padding-left: 0.75rem;
}

/* ── SCROLL TO TOP — smooth experience ── */
html { scroll-padding-top: 80px; }

/* ── SELECTION COLOR ── */
::selection {
  background: var(--clay);
  color: var(--cream);
}
::-moz-selection {
  background: var(--clay);
  color: var(--cream);
}

/* ── SCROLLBAR (webkit) ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--clay); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--forest); }
