/* =========================================================
   KARMHUT — Design Tokens
   ========================================================= */
:root {
  --ivory: #FBF6EC;
  --cream: #F3ECDD;
  --charcoal: #2C2A24;
  --charcoal-soft: #55524A;
  --sage: #6E8B6E;
  --sage-dark: #3F5941;
  --sage-darker: #33452F;
  --sage-light: #E3EADD;
  --sage-tint: #EEF2E9;
  --coral: #B84226;
  --coral-dark: #9C3620;
  --mustard: #D8A23F;
  --mustard-accessible: #ECC670;
  --line: rgba(44, 42, 36, 0.1);
  --shadow-soft: 0 20px 45px -22px rgba(43, 58, 42, 0.35);
  --shadow-card: 0 12px 30px -16px rgba(43, 58, 42, 0.28);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --maxw: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: 'General Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Sora', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--coral);
  display: inline-block;
  border-radius: 2px;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .section-tight { padding: 44px 0; }
}

.bg-ivory { background: var(--ivory); }
.bg-cream { background: var(--cream); }
.bg-sage-tint { background: var(--sage-tint); }
.bg-sage-dark { background: var(--sage-dark); color: #F4EFE3; }
.bg-sage-dark h1, .bg-sage-dark h2, .bg-sage-dark h3 { color: #FBF6EC; }

.mural-quote {
  font-family: 'Caveat', 'Segoe Print', cursive;
  color: var(--sage-dark);
  font-weight: 700;
  line-height: 1.15;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(184, 66, 38, 0.55);
}
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 16px 28px -10px rgba(156, 54, 32, 0.55); }
.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-secondary:hover { background: var(--charcoal); color: #fff; transform: translateY(-2px); }
.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.55);
  color: #fff;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-whatsapp {
  background: #3F5941;
  color: #fff;
}
.btn-whatsapp:hover { background: #2f4531; transform: translateY(-2px); }
.btn-sm { padding: 11px 20px; font-size: 14px; }
.btn:focus-visible, a:focus-visible, button:focus-visible {
  outline: 2.5px solid var(--coral);
  outline-offset: 3px;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1150;
  padding: 22px 0;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.navbar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(251, 246, 236, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px -12px rgba(43,58,42,0.18);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 34px; width: 34px; border-radius: 8px; object-fit: cover; }
.nav-logo-text { font-family: 'Fraunces', serif; font-weight: 600; font-size: 20px; color: var(--charcoal); }
.nav-logo-text span { color: var(--sage-dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--charcoal-soft);
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width .25s ease;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(78vw, 340px);
  height: 100vh;
  background: var(--ivory);
  z-index: 1100;
  padding: 100px 32px 32px;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  box-shadow: -18px 0 40px -20px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: var(--charcoal);
}
.mobile-menu .btn { margin-top: 10px; width: 100%; }
.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(43,42,36,0.35);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.menu-overlay.open { opacity: 1; pointer-events: auto; }

@media (max-width: 900px) {
  .nav-links, .nav-cta .btn-secondary-desktop { display: none; }
  .hamburger { display: flex; }
}

/* Sticky mobile WhatsApp */
.sticky-whatsapp {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 900;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #3F5941;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px -10px rgba(0,0,0,0.35);
}
@media (max-width: 900px) {
  .sticky-whatsapp { display: flex; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 150px 0 90px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
}
.hero-copy h1 .accent { color: var(--sage-dark); }
.hero-copy p.lede {
  margin: 26px 0 34px;
  font-size: 18px;
  color: var(--charcoal-soft);
  max-width: 460px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 26px; margin-top: 40px; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--charcoal-soft); }
.hero-badge svg { color: var(--sage-dark); flex-shrink: 0; }

.hero-media { position: relative; }
.hero-media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
}
.hero-media-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.hero-media-frame:hover img { transform: scale(1.045); }

.floating-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatIn 1s ease both;
  transition: opacity .6s ease;
}
.floating-card.fc-hidden { opacity: 0; pointer-events: none; }
.floating-card .fc-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--sage-tint);
  color: var(--sage-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.floating-card .fc-title { font-weight: 600; font-size: 14.5px; color: var(--charcoal); transition: opacity .45s ease; }
.floating-card .fc-sub { font-size: 12.5px; color: var(--charcoal-soft); transition: opacity .45s ease; }
.floating-card .fc-title.fading, .floating-card .fc-sub.fading { opacity: 0; }
.floating-card .fc-icon svg { transition: opacity .3s ease; }
.fc-1 { top: 8%; left: -10%; animation-delay: .3s; }
.fc-2 { bottom: 10%; right: -8%; animation-delay: .55s; }
@media (max-width: 1080px) {
  .fc-1 { left: -4%; }
  .fc-2 { right: -4%; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 420px; margin: 0 auto; }
  .floating-card { position: static; margin-top: 14px; animation: none; }
  .hero-badges-mobile-wrap { display: flex; flex-direction: column; gap: 10px; }
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .floating-card { animation: none; transition: none; }
}

/* =========================================================
   QUICK BENEFITS STRIP
   ========================================================= */
.benefits-strip {
  background: var(--sage-dark);
}
.benefits-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  padding-top: 28px;
  padding-bottom: 28px;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #F4EFE3;
  font-size: 14.5px;
  font-weight: 500;
}
.benefit-item svg { color: var(--mustard); flex-shrink: 0; }
@media (max-width: 640px) {
  .benefits-row {
    justify-content: center;
    gap: 16px 20px;
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .benefit-item {
    flex: 0 1 calc(50% - 10px);
    font-size: 13.5px;
    white-space: normal;
  }
}
@media (max-width: 480px) {
  .benefits-row { gap: 14px; }
  .benefit-item { flex: 0 1 100%; justify-content: flex-start; }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-copy h2 { font-size: clamp(30px, 3.4vw, 42px); line-height: 1.15; margin-bottom: 22px; }
.about-copy p { color: var(--charcoal-soft); font-size: 16.5px; margin-bottom: 18px; max-width: 480px; }
.about-quote {
  font-size: clamp(24px, 3vw, 32px);
  margin: 30px 0;
  padding-left: 22px;
  border-left: 3px solid var(--coral);
}
.about-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.about-collage .ac-tall { grid-row: span 2; }
.about-collage img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.about-collage .ac-1 { aspect-ratio: 3/4.4; }
.about-collage .ac-focus-top { object-position: 50% 42%; }
.about-collage .ac-2 { aspect-ratio: 4/3; }
.about-collage .ac-3 { aspect-ratio: 4/3.3; object-position: 50% 62%; }
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-copy { order: 1; }
  .about-collage { order: 0; }
}

/* =========================================================
   WORKSPACE EXPERIENCE
   ========================================================= */
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(28px, 3.2vw, 40px); line-height: 1.15; }
.section-head p { color: var(--charcoal-soft); font-size: 16.5px; margin-top: 14px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.we-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.we-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.we-card:hover { transform: translateY(-6px); box-shadow: 0 22px 40px -18px rgba(43,58,42,0.32); }
.we-card-media { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.we-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.we-card:hover .we-card-media img { transform: scale(1.08); }
.we-card-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.92);
  color: var(--sage-dark);
  font-size: 12px; font-weight: 700;
  padding: 6px 12px; border-radius: 100px;
  letter-spacing: 0.02em;
}
.we-card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.we-card-body h3 { font-size: 19px; margin-bottom: 8px; }
.we-card-body p { color: var(--charcoal-soft); font-size: 14.5px; flex: 1; margin: 0 0 16px; }
.we-card-link { font-size: 14px; font-weight: 600; color: var(--coral); display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 980px) {
  .we-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .we-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   FACILITIES — editorial mixed grid
   ========================================================= */
.fac-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 108px;
  gap: 18px;
}
.fac-card {
  border-radius: var(--radius-sm);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .3s ease;
  border: 1px solid var(--line);
}
.fac-card:hover { transform: translateY(-4px); }
.fac-card svg { color: var(--sage-dark); }
.fac-card h4 { font-size: 15.5px; margin-top: 12px; line-height: 1.3; }
.fac-card span.fac-note { font-size: 12.5px; color: var(--charcoal-soft); margin-top: 4px; }

.fac-1 { grid-column: span 2; grid-row: span 2; background: var(--sage-dark); color: #fff; }
.fac-1 svg { color: var(--mustard); }
.fac-1 h4 { color: #fff; font-size: 19px; }
.fac-1 span.fac-note { color: rgba(255,255,255,0.75); }

.fac-2 { grid-column: span 2; grid-row: span 1; background: var(--cream); }
.fac-3 { grid-column: span 2; grid-row: span 1; background: var(--sage-tint); }
.fac-4 { grid-column: span 2; grid-row: span 1; background: var(--cream); }
.fac-5 { grid-column: span 2; grid-row: span 1; background: var(--sage-tint); }
.fac-6 { grid-column: span 2; grid-row: span 2; background: var(--coral); color: #fff; }
.fac-6 svg { color: #fff; }
.fac-6 h4 { color: #fff; font-size: 19px; }
.fac-6 span.fac-note { color: rgba(255,255,255,0.85); }
.fac-7 { grid-column: span 2; grid-row: span 1; background: var(--cream); }
.fac-8 { grid-column: span 2; grid-row: span 1; background: var(--sage-tint); }
.fac-9 { grid-column: span 2; grid-row: span 1; background: var(--cream); }
.fac-10 { grid-column: span 2; grid-row: span 1; background: var(--sage-tint); }
.fac-11 { grid-column: span 2; grid-row: span 1; background: var(--cream); }
.fac-12 { grid-column: span 2; grid-row: span 1; background: var(--sage-tint); }
.fac-13 { grid-column: span 2; grid-row: span 1; background: var(--cream); }

@media (max-width: 980px) {
  .fac-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 118px; }
  .fac-1 { grid-column: span 4; grid-row: span 1; }
  .fac-6 { grid-column: span 4; grid-row: span 1; }
  .fac-2, .fac-3, .fac-4, .fac-5, .fac-7, .fac-8, .fac-9, .fac-10, .fac-11 { grid-column: span 2; }
  .fac-12, .fac-13 { grid-column: span 4; }
}
@media (max-width: 620px) {
  .fac-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .fac-card { grid-column: span 2 !important; min-height: 96px; }
}

/* =========================================================
   PRICING
   ========================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 34px 26px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.price-card.recommended {
  background: var(--sage-dark);
  color: #F4EFE3;
  transform: scale(1.04);
  box-shadow: var(--shadow-soft);
}
.price-card.recommended:hover { transform: scale(1.04) translateY(-6px); }
.price-card.recommended h3, .price-card.recommended .price-amount { color: #fff; }
.price-card.recommended p { color: rgba(244,239,227,0.8); }
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--coral);
  color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 6px 16px; border-radius: 100px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.price-card h3 { font-size: 18px; margin-bottom: 6px; }
.price-card .price-amount { font-family: 'Fraunces', serif; font-size: 34px; font-weight: 600; margin: 10px 0 4px; }
.price-card .price-unit { font-size: 13px; color: var(--charcoal-soft); margin-bottom: 22px; display: block; }
.price-card.recommended .price-unit { color: rgba(244,239,227,0.7); }
.price-card ul { margin-bottom: 26px; flex: 1; }
.price-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; margin-bottom: 12px; }
.price-card li svg { color: var(--sage-dark); flex-shrink: 0; margin-top: 2px; }
.price-card.recommended li svg { color: var(--mustard); }
.price-card .btn { width: 100%; }

@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-card.recommended { transform: none; }
  .price-card.recommended:hover { transform: translateY(-6px); }
}
@media (max-width: 620px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-masonry {
  columns: 4 260px;
  column-gap: 18px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}
.gallery-item img { width: 100%; height: auto; display: block; aspect-ratio: 9 / 16; object-fit: cover; background: var(--sage-tint); transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(43,58,42,0.55), transparent 55%);
  opacity: 0;
  transition: opacity .3s ease;
  display: flex; align-items: flex-end; padding: 14px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { color: #fff; font-size: 13px; font-weight: 600; }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(20, 22, 18, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-content { max-width: 900px; width: 100%; text-align: center; }
.lightbox-content img { max-height: 78vh; margin: 0 auto; border-radius: 14px; width: auto; }
.lightbox-caption { color: #F4EFE3; margin-top: 16px; font-size: 14.5px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.22); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 700px) {
  .lightbox-prev { left: 8px; } .lightbox-next { right: 8px; }
  .lightbox-close { top: 12px; right: 12px; }
}

@media (max-width: 980px) { .gallery-masonry { columns: 3 220px; } }
@media (max-width: 620px) { .gallery-masonry { columns: 2 160px; column-gap: 12px; } .gallery-item { margin-bottom: 12px; } }

/* =========================================================
   WHO IT'S FOR
   ========================================================= */
.audience-scroll-wrap { position: relative; }
.audience-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}
@media (min-width: 901px) {
  .audience-scroll {
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0;
  }
}
@media (max-width: 900px) {
  .audience-scroll-wrap::after {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 8px;
    width: 56px;
    background: linear-gradient(to right, transparent, var(--cream));
    pointer-events: none;
  }
}
.audience-tag {
  flex: 0 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 16px 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.audience-tag svg { color: var(--sage-dark); transition: color .25s ease; }
.audience-tag:hover { background: var(--sage-dark); color: #fff; border-color: var(--sage-dark); }
.audience-tag:hover svg { color: var(--mustard); }

/* =========================================================
   WHY KARMHUT (stat facts)
   ========================================================= */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(244,239,227,0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.fact-item {
  background: var(--sage-dark);
  padding: 40px 28px;
  text-align: center;
}
.fact-item .fact-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 3.4vw, 44px);
  color: var(--mustard-accessible);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.fact-item .fact-label { font-size: 14px; color: rgba(244,239,227,0.85); }
@media (max-width: 780px) { .facts-grid { grid-template-columns: 1fr 1fr; } }

/* =========================================================
   LOCATION
   ========================================================= */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.location-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-card h3 { font-size: 24px; margin-bottom: 18px; }
.location-line { display: flex; gap: 14px; margin-bottom: 18px; font-size: 15.5px; color: var(--charcoal-soft); }
.location-line svg { color: var(--sage-dark); flex-shrink: 0; margin-top: 3px; }
.location-ctas { display: flex; gap: 14px; margin-top: 14px; flex-wrap: wrap; }
.map-embed { position: relative; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); min-height: 320px; background: var(--sage-tint); }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.map-fallback-link {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(255,255,255,0.94);
  color: var(--charcoal);
  font-size: 13px; font-weight: 600;
  padding: 8px 14px; border-radius: 100px;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: background .25s ease, color .25s ease;
}
.map-fallback-link:hover { background: var(--coral); color: #fff; }

/* Branded fallback shown when the map iframe fails to load (e.g. blocked network) */
.map-fallback {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  background:
    radial-gradient(circle at 30% 20%, rgba(216,162,63,0.14), transparent 55%),
    linear-gradient(160deg, var(--sage-tint) 0%, var(--sage-light) 100%);
}
.map-embed.map-error .map-fallback { display: flex; }
.map-embed.map-error iframe { visibility: hidden; }
.map-embed.map-error .map-fallback-link { display: none; }
.map-fallback-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  color: var(--sage-dark);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
  margin-bottom: 16px;
}
.map-fallback-title { font-family: 'Fraunces', serif; font-size: 19px; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
.map-fallback-text { font-size: 14px; color: var(--charcoal-soft); max-width: 280px; margin-bottom: 20px; }
.map-fallback-cta { padding: 10px 22px; font-size: 14px; }
@media (max-width: 900px) { .location-grid { grid-template-columns: 1fr; } }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--charcoal);
}
.faq-q svg { flex-shrink: 0; transition: transform .3s ease; color: var(--sage-dark); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a p { padding-bottom: 22px; color: var(--charcoal-soft); font-size: 15px; max-width: 640px; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta { text-align: center; padding: 110px 0; }
.final-cta h2 { font-size: clamp(30px, 4vw, 48px); color: #fff; line-height: 1.15; }
.final-cta p { color: rgba(244,239,227,0.85); font-size: 17px; margin: 20px 0 34px; }
.final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   CONTACT FORM (within Location section variant, or standalone)
   ========================================================= */
.form-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13.5px; font-weight: 600; color: var(--charcoal); }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  background: var(--ivory);
  color: var(--charcoal);
  transition: border-color .2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--sage-dark);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-error { font-size: 12.5px; color: var(--coral-dark); min-height: 16px; }
.form-group.invalid input, .form-group.invalid select, .form-group.invalid textarea { border-color: var(--coral); }
.form-submit-note { font-size: 12.5px; color: var(--charcoal-soft); margin-top: 14px; }
.form-success {
  display: none;
  background: var(--sage-tint);
  border: 1px solid var(--sage-light);
  color: var(--sage-dark);
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 20px;
  align-items: center;
  gap: 10px;
}
.form-success.show { display: flex; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } .form-card { padding: 26px 22px; } }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--sage-darker); color: rgba(244,239,227,0.8); padding: 72px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(244,239,227,0.14);
}
.footer-logo { font-family: 'Fraunces', serif; font-size: 24px; color: #fff; font-weight: 600; margin-bottom: 12px; }
.footer-logo span { color: var(--mustard); }
.footer-mural { font-family: 'Caveat', cursive; font-size: 22px; color: var(--mustard); margin-top: 14px; }
.footer h5 { color: #fff; font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul li { margin-bottom: 12px; font-size: 14.5px; }
.footer ul li a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 6px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(244,239,227,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.footer-social a:hover { background: var(--mustard); color: var(--sage-darker); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* Extra bottom clearance so the fixed sticky WhatsApp button never
     overlaps the last line of footer text on mobile. */
  .footer { padding-bottom: 96px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible .reveal-child { opacity: 1; transform: translateY(0); }
.reveal-child { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }

/* =========================================================
   SCROLL-TRIGGERED ENQUIRY POPUP
   ========================================================= */
.enquiry-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 22, 18, 0.55);
  z-index: 2200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .3s ease;
}
.enquiry-popup-overlay.open { display: flex; opacity: 1; }
.enquiry-popup {
  background: var(--ivory);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  width: 100%;
  max-width: 620px;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  padding: 40px;
  transform: translateY(18px) scale(.98);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}
.enquiry-popup-overlay.open .enquiry-popup { transform: translateY(0) scale(1); opacity: 1; }
.enquiry-popup-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--sage-tint);
  color: var(--charcoal);
  border: none;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.enquiry-popup-close:hover { background: var(--coral); color: #fff; }
.enquiry-popup-head { margin-bottom: 22px; padding-right: 36px; }
.enquiry-popup-head h3 { font-size: clamp(22px, 3vw, 28px); margin-bottom: 8px; }
.enquiry-popup-head p { color: var(--charcoal-soft); font-size: 15px; }
.enquiry-popup .form-row { grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) {
  .enquiry-popup { padding: 28px 22px; max-height: 92vh; }
  .enquiry-popup .form-row { grid-template-columns: 1fr; }
}

/* =========================================================
   RESPONSIVE — global guards
   ========================================================= */
@media (max-width: 900px) {
  .hero { padding: 120px 0 60px; }
}
html, body { max-width: 100%; overflow-x: hidden; }
