/* ============================================================
   Aroma BaliKIS — stylesheet (pure CSS, no build step).
   Edit colours in :root, then refresh the browser.
   ============================================================ */

:root {
  /* Brand palette */
  --ivory: #f5edd8;
  --champagne: #e8d5a3;
  --gold: #c4a35a;
  --gold-lt: #d9bc7e;
  --umber: #7a5c2a;
  --espresso: #3c2a10;
  --esp-lt: #5a4020;
  --cream: #fdfaf4;
  --linen: #fbf6ea;
  /* Warm-earth accents */
  --terracotta: #c2683d;
  --sand: #e4d2ae;
  --sage: #7e8c6a;
  /* Chakra accents */
  --c-purple: #7b2d8b;
  --c-blue: #4b5cb8;
  --c-teal: #4a9cc4;
  --c-green: #3d9b6e;
  --c-yellow: #d4a020;
  --c-orange: #e07820;
  --c-red: #c82060;

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Jost", system-ui, sans-serif;

  --shadow-soft: 0 2px 30px rgba(60, 42, 16, 0.07);
  --shadow-warm: 0 18px 50px -20px rgba(122, 60, 30, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1152px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--espresso);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; }
.section { padding: 7rem 5%; }
.serif { font-family: var(--font-serif); }
.display { letter-spacing: -0.015em; }
.italic { font-style: italic; }

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--gold);
}
.rule { width: 48px; height: 1px; background: var(--gold); border: 0; }

/* Reveal base (GSAP animates these in). .js guard avoids hiding if JS fails. */
.js .reveal { opacity: 0; transform: translateY(28px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.65rem;
  padding: 1rem 2.25rem; font-family: var(--font-sans);
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; border: none; transition: all 0.3s var(--ease);
}
.btn-gold { background: var(--gold); color: var(--espresso); }
.btn-gold:hover { background: var(--espresso); color: var(--cream); }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #1ebe5d; }
.btn-outline { background: transparent; border: 1px solid rgba(196,163,90,0.5); color: var(--umber); }
.btn-outline:hover { background: var(--gold); border-color: var(--gold); color: var(--espresso); }
.btn-ghost { background: transparent; border: 1px solid rgba(245,237,216,0.32); color: rgba(245,237,216,0.85); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn svg { width: 17px; height: 17px; fill: currentColor; }

.link-underline { position: relative; }
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.link-underline:hover::after { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 5%; transition: background 0.4s, padding 0.4s, box-shadow 0.4s, transform 0.5s var(--ease);
}
.nav.scrolled {
  background: rgba(245, 237, 216, 0.95); padding: 0.75rem 5%;
  border-bottom: 1px solid rgba(196,163,90,0.15); box-shadow: var(--shadow-soft);
}
.nav.hidden { transform: translateY(-115%); }
.nav-logo img { height: 72px; width: auto; transition: height 0.4s; }
.nav.scrolled .nav-logo img { height: 52px; }
.nav-links { display: flex; gap: 2.25rem; }
.nav-links a {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245,237,216,0.85); transition: color 0.3s;
}
.nav.scrolled .nav-links a { color: var(--umber); }
.nav-links a:hover, .nav.scrolled .nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a:hover { color: var(--espresso); }
.nav-links a.active { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 1rem; position: relative; z-index: 50; }
.nav-cta {
  border: 1px solid rgba(245,237,216,0.45); color: #fff; padding: 0.55rem 1.3rem;
  font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; transition: all 0.3s;
}
.nav.scrolled .nav-cta { border-color: var(--gold); color: var(--espresso); }
.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--espresso); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: #fff; transition: all 0.3s; }
.nav.scrolled .hamburger span { background: var(--espresso); }
.hamburger.open span { background: var(--espresso); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 180; background: var(--linen);
  display: flex; flex-direction: column; justify-content: center; gap: 1.75rem; padding: 0 10%;
  opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 300; color: var(--espresso); }
.mobile-menu .btn { width: fit-content; margin-top: 1rem; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: var(--espresso); will-change: transform; }
.hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 80% 70% at 38% 45%, rgba(22,12,3,0.6) 0%, rgba(22,12,3,0.32) 55%, transparent 100%),
    linear-gradient(to bottom, rgba(22,12,3,0.4) 0%, rgba(22,12,3,0.18) 40%, rgba(22,12,3,0.55) 100%);
}
.hero-inner { position: relative; z-index: 3; width: 100%; max-width: var(--container); margin: 0 auto; padding: 7rem 5% 0; }
/* .hero-inner::before {
  content: "";
  position: absolute;
  left: 5%;
  top: 5.5rem;
  width: min(44rem, 88%);
  height: calc(100% - 10rem);
  border-radius: 2rem;
  border: 1px solid rgba(245, 237, 216, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(196, 163, 90, 0.05));
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  box-shadow: 0 20px 60px rgba(22, 12, 3, 0.18);
  pointer-events: none;
} */
.hero-inner > * { position: relative; z-index: 1; }
.hero h1 {
  font-family: var(--font-serif); font-weight: 300; line-height: 0.98; color: #fff;
  font-size: clamp(3rem, 8.5vw, 7rem); max-width: 60rem; letter-spacing: -0.015em;
}
.hero h1 .accent { font-style: italic; color: var(--gold-lt); }
.hero-eyebrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.75rem; }
.hero-eyebrow .rule { width: 48px; }
.hero-sub { margin-top: 2rem; max-width: 28rem; font-size: 1.15rem; font-weight: 300; color: rgba(245,237,216,0.85); line-height: 1.8; }
.hero-acts { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; }
.hero-acts .ghost { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,237,216,0.75); }
.scroll-hint { position: absolute; bottom: 2.25rem; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.scroll-hint span { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(196,163,90,0.55); }
.chevron { width: 16px; height: 16px; border-right: 1px solid rgba(196,163,90,0.45); border-bottom: 1px solid rgba(196,163,90,0.45); transform: rotate(45deg); animation: float 2s ease-in-out infinite; }
@keyframes float { 0%,100%{ transform: rotate(45deg) translate(0,0);} 50%{ transform: rotate(45deg) translate(4px,4px);} }

/* Chakra strip */
.chakra-strip { display: flex; gap: 6px; }
.chakra-strip span { width: 8px; height: 8px; border-radius: 50%; opacity: 0.75; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; background: var(--espresso); border-top: 1px solid rgba(196,163,90,0.15); border-bottom: 1px solid rgba(196,163,90,0.15); padding: 0.9rem 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee-track span { display: inline-flex; align-items: center; gap: 1.25rem; padding: 0 2rem; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(196,163,90,0.65); font-weight: 300; }
.marquee-track i { width: 4px; height: 4px; border-radius: 50%; background: rgba(196,163,90,0.45); }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ---------- Section header ---------- */
.section-header { display: flex; flex-direction: column; }
.section-header.center { align-items: center; text-align: center; }
.section-header .label { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.section-header.center .label::before, .section-header .label::after { content: ""; width: 48px; height: 1px; background: var(--gold); }
.section-header .label::after { content: ""; }
.section-header:not(.center) .label::before { display: none; }
.section-header h2 { font-family: var(--font-serif); font-weight: 300; line-height: 1.1; font-size: clamp(2rem, 4vw, 3.1rem); color: var(--espresso); letter-spacing: -0.015em; }
.section-header h2 .accent { font-style: italic; color: var(--umber); }
.section-header .sub { margin-top: 1.25rem; max-width: 34rem; font-size: 0.98rem; font-weight: 300; color: var(--esp-lt); line-height: 1.85; }
.section-header .rule { margin: 1.25rem 0; }
.section-header.center .rule { margin: 1.25rem auto; }

/* ---------- Intro statement ---------- */
.intro { background: var(--linen); }
.intro .big { font-family: var(--font-serif); font-weight: 300; line-height: 1.4; font-size: clamp(1.6rem, 3.4vw, 2.6rem); color: var(--espresso); max-width: 56rem; margin-top: 2rem; letter-spacing: -0.01em; }
.intro .big em { font-style: italic; color: var(--umber); }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.svc-grid, .product-grid { margin-top: 4rem; }

.card { background: var(--cream); border: 1px solid rgba(196,163,90,0.2); overflow: hidden; display: flex; flex-direction: column; height: 100%; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-warm); }
.card-img { position: relative; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.card:hover .card-img img { transform: scale(1.05); }

/* Service card */
.svc-card .card-img { height: 16rem; }
.svc-card .card-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(22,12,3,0.65), transparent 60%); }
.svc-num { position: absolute; top: 1.25rem; left: 1.5rem; z-index: 2; font-family: var(--font-serif); font-size: 3rem; font-weight: 300; color: rgba(255,255,255,0.25); }
.svc-chakras { position: absolute; bottom: 1.25rem; right: 1.25rem; z-index: 2; display: flex; gap: 6px; }
.svc-chakras span { width: 8px; height: 8px; border-radius: 50%; opacity: 0.85; }
.card-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.svc-card .name { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; line-height: 1.15; color: var(--espresso); margin: 0.5rem 0; }
.svc-card .desc { font-size: 0.88rem; font-weight: 300; color: var(--esp-lt); line-height: 1.7; flex: 1; }
.svc-card .meta { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid rgba(196,163,90,0.15); display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--esp-lt); }
.svc-card .meta .more { color: var(--umber); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.7rem; }
.card:hover .meta .more { color: var(--terracotta); }

/* Product card */
.product-card .card-img { aspect-ratio: 1; background: rgba(232,213,163,0.25); }
.product-tag { position: absolute; left: 1rem; top: 1rem; z-index: 2; background: rgba(253,250,244,0.9); padding: 0.25rem 0.75rem; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--umber); }
.product-card .body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-card .name { font-family: var(--font-serif); font-size: 1.15rem; line-height: 1.25; color: var(--espresso); }
.product-card .desc { margin-top: 0.5rem; font-size: 0.82rem; font-weight: 300; color: var(--esp-lt); line-height: 1.6; flex: 1; }
.product-card .row { margin-top: 1rem; display: flex; justify-content: space-between; align-items: center; }
.product-card .price { font-family: var(--font-serif); font-size: 1.15rem; color: var(--espresso); }
.product-card .view { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--umber); }
.product-card:hover .view { color: var(--terracotta); }

/* Filter */
.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 3rem; }
.filter-btn { padding: 0.65rem 1.25rem; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid rgba(196,163,90,0.3); background: transparent; color: var(--umber); cursor: pointer; transition: all 0.25s; }
.filter-btn:hover { background: rgba(196,163,90,0.1); }
.filter-btn.active { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }

/* ---------- About teaser (split) ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; }
.split-img { position: relative; min-height: 28rem; }
.split-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-text { background: var(--ivory); padding: 6rem 8%; display: flex; flex-direction: column; justify-content: center; }
.split-text h2 { font-family: var(--font-serif); font-weight: 300; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.1; color: var(--espresso); letter-spacing: -0.015em; }
..split-text h2 .accent { font-style: italic; color: var(--umber); }
.split-text p { margin: 1rem 0; max-width: 32rem; font-weight: 300; color: var(--esp-lt); line-height: 1.85; }

/* ---------- Map section ---------- */
.map-section .section-header { margin-bottom: 1.5rem; }
.map-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
}
.map-wrap iframe {
  width: 100%;
  min-height: 28rem;
  height: 100%;
  border: 0;
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--champagne); position: relative; overflow: hidden; }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(196,163,90,0.2); margin-top: 4rem; }
.t-card { background: rgba(251,246,234,0.7); padding: 2.25rem; position: relative; }
.t-card .quotemark { position: absolute; top: 0.5rem; right: 1.5rem; font-family: var(--font-serif); font-size: 6rem; color: rgba(196,163,90,0.15); line-height: 1; }
.t-stars { color: var(--gold); margin-bottom: 1.25rem; letter-spacing: 2px; }
.t-card .quote { font-family: var(--font-serif); font-size: 1.1rem; font-style: italic; font-weight: 300; color: var(--espresso); line-height: 1.7; margin-bottom: 1.25rem; }
.t-card .author { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--umber); }
.t-stats { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid rgba(196,163,90,0.3); display: flex; flex-wrap: wrap; justify-content: center; gap: 3rem; text-align: center; }
.t-stats .n { font-family: var(--font-serif); font-size: 2rem; font-weight: 300; color: var(--espresso); }
.t-stats .l { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--umber); }

/* ---------- Page header (inner pages) ---------- */
.page-header { position: relative; min-height: 58vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 6rem 5% 0; overflow: hidden; }
.page-header img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-header .ov { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(22,12,3,0.55), rgba(22,12,3,0.4) 60%, rgba(22,12,3,0.65)); }
.page-header .inner { position: relative; z-index: 2; max-width: 40rem; }
.page-header h1 { font-family: var(--font-serif); font-weight: 300; font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; color: #fff; letter-spacing: -0.015em; }
.page-header h1 .accent { font-style: italic; color: var(--gold-lt); }
.page-header .label { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1rem; }
.page-header .label::before, .page-header .label::after { content: ""; width: 40px; height: 1px; background: var(--gold); }
.page-header .sub { margin-top: 1.5rem; font-weight: 300; color: rgba(245,237,216,0.8); line-height: 1.8; }

/* ---------- Detail layouts ---------- */
.detail { background: var(--cream); }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2rem; }
.detail-grid.svc { grid-template-columns: 1.6fr 1fr; gap: 4rem; }
.detail-img { position: relative; aspect-ratio: 1; border: 1px solid rgba(196,163,90,0.2); background: rgba(232,213,163,0.25); overflow: hidden; }
.detail-img img { width: 100%; height: 100%; object-fit: cover; }
.detail h1 { font-family: var(--font-serif); font-weight: 300; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; color: var(--espresso); }
.detail .price { font-family: var(--font-serif); font-size: 1.5rem; color: var(--espresso); }
.detail p.body { margin: 0.85rem 0; font-weight: 300; color: var(--esp-lt); line-height: 1.75; font-size: 0.96rem; }
.bullets li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.9rem; color: var(--esp-lt); margin-bottom: 0.5rem; }
.bullets li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 8px; flex-shrink: 0; }
.qty { display: inline-flex; align-items: center; border: 1px solid rgba(196,163,90,0.4); }
.qty button { padding: 0.85rem 1rem; background: none; border: none; cursor: pointer; color: var(--umber); font-size: 1rem; }
.qty span { min-width: 2rem; text-align: center; }
.sidebar { border: 1px solid rgba(196,163,90,0.25); background: var(--ivory); padding: 2rem; position: sticky; top: 7rem; }
.ritual-step { display: flex; gap: 1.25rem; margin-bottom: 1.25rem; }
.ritual-step .num { font-family: var(--font-serif); font-size: 2rem; font-weight: 300; color: rgba(196,163,90,0.5); line-height: 1; }
.ritual-step h4 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--espresso); }
.ritual-step p { font-size: 0.85rem; font-weight: 300; color: var(--esp-lt); margin-top: 0.25rem; }

/* ---------- Contact CTA ---------- */
.cta { position: relative; overflow: hidden; text-align: center; }
.cta img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta .ov { position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, rgba(60,42,16,0.92), rgba(22,12,3,0.8)); }
.cta .inner { position: relative; z-index: 2; max-width: 40rem; margin: 0 auto; }
.cta h2 { font-family: var(--font-serif); font-weight: 300; font-size: clamp(2.25rem, 5vw, 4rem); line-height: 1.05; color: #fff; letter-spacing: -0.015em; }
.cta h2 .accent { font-style: italic; color: var(--gold-lt); }
.cta p { margin: 1.75rem auto 2.5rem; max-width: 28rem; font-weight: 300; color: rgba(245,237,216,0.75); line-height: 1.8; }
.cta-acts { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ---------- Footer ---------- */
.footer { background: var(--espresso); color: var(--champagne); padding: 5rem 5% 2.5rem; }
.footer-top { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 2rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(196,163,90,0.15); }
.footer-top h2 { font-family: var(--font-serif); font-weight: 300; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.1; color: var(--cream); max-width: 34rem; letter-spacing: -0.015em; }
.footer-top h2 .accent { font-style: italic; color: var(--gold-lt); }
.footer-cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; padding: 3.5rem 0; }
.footer-logo { display: block; width: fit-content; margin: 0; }
.footer-logo img {
  width: min(100%, 260px);
  height: auto;
  max-height: 140px;
  object-fit: contain;
  display: block;
  margin-left: -0.35rem;
}
.footer .brand { font-family: var(--font-serif); font-size: 1.5rem; color: var(--champagne); }
.footer .brand span { color: var(--gold); }
.footer .tag { font-family: var(--font-serif); font-style: italic; color: rgba(232,213,163,0.45); margin-top: 0.75rem; }
.footer p.about { margin-top: 1.25rem; max-width: 20rem; font-size: 0.88rem; color: rgba(232,213,163,0.55); line-height: 1.6; }
.footer h3 { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(196,163,90,0.8); margin-bottom: 1rem; }
.footer-cols a, .footer-cols li { font-size: 0.88rem; color: rgba(232,213,163,0.65); margin-bottom: 0.6rem; display: block; }
.footer-cols a:hover { color: var(--gold); }
.footer-bottom { padding-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem; font-size: 0.72rem; color: rgba(232,213,163,0.35); }

/* ---------- Cart drawer ---------- */
/* Cart UI removed — presentation rules cleared */

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); grid-auto-rows: 220px; gap: 1rem; }
.gal-item { position: relative; overflow: hidden; cursor: pointer; background: rgba(232,213,163,.3); }
.gal-item.tall { grid-row: span 2; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gal-item:hover img { transform: scale(1.06); }
.gal-item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem 1rem 0.85rem; color: #fff; font-size: 0.78rem; letter-spacing: 0.04em; background: linear-gradient(to top, rgba(22,12,3,.7), transparent); opacity: 0; transform: translateY(8px); transition: all 0.3s var(--ease); }
.gal-item:hover figcaption { opacity: 1; transform: translateY(0); }

.lightbox { position: fixed; inset: 0; z-index: 320; background: rgba(22,12,3,.88); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; padding: 5%; opacity: 0; pointer-events: none; transition: opacity 0.3s; cursor: zoom-out; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 100%; max-height: 82vh; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox figcaption { color: rgba(245,237,216,.8); font-size: 0.8rem; letter-spacing: 0.08em; }

/* ---------- Blog ---------- */
.blog-grid { margin-top: 0; }
.blog-card .body { padding: 1.5rem; }
.blog-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.85rem; font-size: 0.72rem; letter-spacing: 0.08em; color: var(--umber); }
.blog-card .name { font-size: 1.3rem; line-height: 1.25; }
.blog-card .desc { margin-top: 0.65rem; }

.post { max-width: 46rem; margin: 0 auto; }
.post-head { margin-top: 1.5rem; }
.post-head .product-tag { margin-bottom: 1rem; }
.post-head h1 { font-family: var(--font-serif); font-weight: 300; font-size: clamp(2rem, 4.5vw, 3.25rem); line-height: 1.1; color: var(--espresso); letter-spacing: -0.015em; margin-top: 0.5rem; }
.post-date { color: var(--umber); font-size: 0.8rem; letter-spacing: 0.08em; margin-top: 0.75rem; }
.post-img { margin: 2.5rem 0; aspect-ratio: 16/10; overflow: hidden; background: rgba(232,213,163,.3); border: 1px solid rgba(196,163,90,.2); }
.post-img img { width: 100%; height: 100%; object-fit: cover; }
.post-body p { font-size: 1.02rem; font-weight: 300; color: var(--esp-lt); line-height: 1.9; margin-bottom: 1.25rem; }
.post-more { max-width: var(--container); margin: 5rem auto 0; }
.post-more h2 { text-align: center; font-weight: 300; font-size: 1.9rem; margin-bottom: 2rem; }

/* Floating WhatsApp */
.float-wa { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 150; width: 56px; height: 56px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 24px rgba(37,211,102,0.45); transition: transform 0.3s; }
.float-wa:hover { transform: scale(1.1); background: #1ebe5d; }
.float-wa svg { width: 28px; height: 28px; fill: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .detail-grid, .detail-grid.svc { grid-template-columns: 1fr; }
  .t-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .sidebar { position: static; }
}
@media (max-width: 720px) {
  .section { padding: 4.5rem 5%; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .hero-inner::before { left: 4%; top: 4.5rem; width: 92%; height: calc(100% - 8rem); }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .marquee-track, .chevron { animation: none; }
  .js .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
