@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,500;1,600&family=Inter:wght@300;400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ===== AZAD INTERIO DESIGN SYSTEM =====
   Design System: Swiss Modernism 2.0 (design-system/azad-interio/MASTER.md)
   Primary #78716C (warm grey) · Accent/CTA #D97706 (gold)
   Background #FAF5F2 · Foreground #0F172A → #1C1917 (stone-900)
   Headings: Playfair Display · Body: Inter · Labels: IBM Plex Mono
   Motion: Complex choreography (GSAP + ScrollTrigger — motion.js) */
:root {
  /* Design system roles */
  --primary: #78716C;
  --on-primary: #FFFFFF;
  --secondary: #57534E;
  --accent: #D97706;
  --accent-ink: #A16207;
  --heading: #1C1917;
  --body-text: #44403C;
  --muted-text: #57534E;
  --bg: #FAF5F2;
  --surface: #FFFFFF;
  --muted: #F6F6F6;
  --border: #E7E5E4;
  --destructive: #DC2626;
  --ring: #78716C;
  --success: #15803D;
  --error: #DC2626;
  --star-off: #D6D3D1;
  --grad-hero: linear-gradient(135deg, #F3EDE7 0%, #FAF5F2 100%);
  --grad-cta: linear-gradient(135deg, #C7790D 0%, #A85B0A 100%);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.1);
  --shadow-xl: 0 20px 25px rgba(0,0,0,.15);

  /* Legacy aliases mapped onto the new system */
  --cream: var(--surface);
  --rose-light: var(--muted);
  --rose-mid: var(--border);
  --rose-dark: var(--secondary);
  --walnut-950: var(--heading);
  --walnut-900: #292524;
  --walnut-800: var(--body-text);
  --oak: var(--accent-ink);
  --sand: var(--muted);
  --sand-light: var(--bg);
  --brass: var(--accent);
  --brass-light: var(--accent-ink);
  --ink: var(--body-text);
  --green-ok: var(--success);

  /* Glassmorphism surface tokens (ivory + champagne gold) */
  --glass-bg: rgba(255, 252, 247, 0.55);
  --glass-bg-strong: rgba(255, 252, 247, 0.72);
  --glass-bg-form: rgba(255, 252, 247, 0.78);
  --glass-bg-admin: rgba(255, 252, 247, 0.82);
  --glass-bg-modal: rgba(255, 252, 247, 0.86);
  --glass-border: rgba(217, 119, 6, 0.20);
  --glass-border-soft: rgba(217, 119, 6, 0.14);
  --glass-border-faint: rgba(217, 119, 6, 0.10);
  --glass-highlight: rgba(255, 255, 255, 0.65);
  --glass-shadow: 0 18px 45px rgba(28, 25, 23, 0.08);
  --glass-blur: 16px;
  --glass-input: rgba(255, 255, 255, 0.65);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: clip;
  font-family: 'Inter', sans-serif;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.22'/%3E%3C/svg%3E"),
    radial-gradient(42rem 42rem at 12% -6%, rgba(217,119,6,.30), transparent 62%),
    radial-gradient(50rem 50rem at 90% 8%, rgba(217,119,6,.22), transparent 62%),
    radial-gradient(44rem 44rem at 50% 108%, rgba(120,113,108,.20), transparent 65%),
    radial-gradient(95rem 55rem at 50% 118%, rgba(91,66,33,.16), transparent 70%),
    linear-gradient(180deg, #FBF6F1 0%, #FAF5F2 46%, #F1E7DD 100%);
  background-attachment: scroll, fixed, fixed, fixed, fixed, scroll;
  color: var(--ink);
  min-height: 100vh;
}
body::before {
  content: "";
  position: fixed; inset: -20%;
  z-index: -1; pointer-events: none;
  background:
    radial-gradient(38rem 38rem at 30% 18%, rgba(217,119,6,.20), transparent 65%),
    radial-gradient(34rem 34rem at 72% 64%, rgba(217,119,6,.14), transparent 65%);
  animation: bgDrift 32s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes bgDrift {
  from { transform: translate3d(0,0,0) rotate(0deg); }
  to   { transform: translate3d(3%, -2.5%, 0) rotate(2deg); }
}
/* ---------- Global floral decorative background ----------
   Fixed, viewport-level layer so the artwork stays anchored while
   scrolling (no repetition seams). Sits behind all content:
   page background → floral layer (15%) → normal content layers. */
body::after {
  content: "";
  position: fixed; inset: 0;
  z-index: -1; pointer-events: none;
  background: url('images/floral-bg.jpg') center top / cover no-repeat;
  opacity: .18;
}
@supports (background-image: url('images/floral-bg.webp')) {
  body::after {
    background: url('images/floral-bg.webp') center top / cover no-repeat;
  }
}
@media (max-width:900px) {
  body::after {
    opacity: .16;
    background-position: center 18%;
  }
}
@media (max-width:640px) {
  body::after {
    opacity: .12;
  }
}
h1, h2, h3, .display { font-family: 'Playfair Display', serif; font-weight: 600; letter-spacing: .01em; }
.mono { font-family: 'IBM Plex Mono', monospace; }
.font-quincy { font-family: 'Playfair Display', serif; }
.font-bettergrade { font-family: 'Playfair Display', serif; }
.text-48 { font-size: 48px; line-height: 1.1; }
.text-36 { font-size: 36px; line-height: 1.2; }
.eyebrow { position: relative; padding-left: 16px; }
.eyebrow::before {
  content: ""; position: absolute; left: 0; top: .32em; bottom: .32em;
  width: 4px; border-radius: 2px; background: var(--grad-cta);
}

/* ---------- Motion / scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
[data-reveal="left"] { transform: translateX(-34px); }
[data-reveal="right"] { transform: translateX(34px); }
[data-reveal="zoom"] { transform: scale(.92); }
[data-reveal="left"].in-view, [data-reveal="right"].in-view, [data-reveal="zoom"].in-view { transform: translateX(0) scale(1); }

.grid > *, .gallery-grid > *, .blog-grid > *, .feedback-list > * { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.grid.in-view > *, .gallery-grid.in-view > *, .blog-grid.in-view > *, .feedback-list.in-view > * { opacity: 1; transform: translateY(0); }

/* ---------- Motion-driven dynamics (GSAP — motion.js) ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; width: 100%; height: 3px; z-index: 90;
  background: linear-gradient(90deg, #D97706, #78716C);
  transform-origin: 0 50%; transform: scaleX(0);
  box-shadow: 0 1px 6px rgba(120, 113, 108, .35);
}
.hero-line { display: block; overflow: hidden; padding: .12em 0; margin: -.12em 0; }
.hero-word { display: inline-block; will-change: transform; }
.hero-word + .hero-word { margin-left: .24em; }
[data-magnetic] {
  transform: translate(var(--mx, 0px), var(--my, 0px));
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .28s ease, background .28s ease, filter .28s ease;
  will-change: transform;
}
.card, .gallery-item, .blog-card {
  transition: box-shadow .35s ease;
}
.grid.in-view > .card, .gallery-grid.in-view > .gallery-item, .blog-grid.in-view > .blog-card {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--ty, 0px));
  transition: transform .22s ease-out, box-shadow .35s ease;
  will-change: transform;
}
.card:hover, .gallery-item:hover, .blog-card:hover {
  --ty: -6px;
  box-shadow: 0 18px 40px rgba(28,25,23,.14);
}
.whatsapp-fab { transform: translate(var(--mx, 0px), var(--my, 0px)); transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease; will-change: transform; }
.whatsapp-fab:hover { transform: translate(var(--mx, 0px), var(--my, 0px)) scale(1.08); box-shadow: 0 8px 20px rgba(37,211,102,.4); }
.whatsapp-fab::after {
  content: ""; position: absolute; inset: 0; border-radius: 9999px;
  border: 2px solid #25D366; opacity: 0;
  animation: fab-pulse 2.6s ease-out infinite;
}
@keyframes fab-pulse {
  0% { transform: scale(1); opacity: .7; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
.gallery-item img { transition: transform .6s cubic-bezier(.22,.61,.36,1); }
.gallery-item:hover img { transform: scale(1.07); }

/* ---------- Hover micro-interactions ---------- */
.subnav button { transition: color .2s ease, border-color .2s ease, opacity .2s ease; }
.hero-cta, .ledger-btn, .add-item-btn { transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .28s ease, background .28s ease, filter .28s ease; }
.btn-primary { transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .28s ease, background .28s ease, filter .28s ease; }
.hero-cta:hover, .btn-primary:hover, .ledger-btn:hover { transform: translate(var(--mx,0px), var(--my,0px)) scale(1.03); box-shadow: 0 14px 30px rgba(168,91,10,.4); filter: brightness(1.05); }
.hero-cta:active, .btn-primary:active { transform: translate(var(--mx,0px), var(--my,0px)) scale(.97); }
.btn-ghost:hover { background: var(--muted); }
.hero-cta:focus-visible, .btn-primary:focus-visible, .ledger-btn:focus-visible, .btn-ghost:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }

/* ---------- Top switcher ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 245, 242, 0.72);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border-bottom: 1px solid rgba(217,119,6,.18);
  box-shadow: 0 2px 12px rgba(28,25,23,.08);
}
.mode-switch {
  display: flex; justify-content: space-between; align-items: center;
  background: transparent;
  color: var(--ink);
  padding: 14px 28px;
  border-bottom: 1px solid rgba(217,119,6,.10);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 600;
  color: var(--walnut-950);
}
.brand-mark { display: flex; align-items: center; justify-content: center; }
.brand-mark img { height: 96px; max-height: 96px; width: auto; display: block; }
.brand-word { display: flex; flex-direction: column; line-height: 1.05; font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 800; letter-spacing: -.01em; color: var(--walnut-950); text-shadow: 0 1px 0 rgba(255,255,255,.65), 0 2px 10px rgba(168,91,10,.14); }
.brand-word .sub { font-family: 'Inter', sans-serif; font-size: 11.5px; letter-spacing: .26em; color: var(--accent-ink); text-transform: uppercase; margin-top: 6px; font-weight: 700; }
.tabs {
  display: flex; gap: 6px; padding: 5px;
  background: linear-gradient(135deg, rgba(231,229,228,.55), rgba(250,245,242,.5));
  border: 1px solid rgba(120,113,108,.28);
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(28,25,23,.08), inset 0 1px 0 rgba(255,255,255,.65);
  backdrop-filter: blur(6px);
}
.tabs button {
  display: flex; align-items: center; gap: 8px;
  border: none; background: transparent;
  color: var(--muted-text);
  font-family: 'Playfair Display', serif; font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 10px 20px; cursor: pointer; border-radius: 9999px;
  position: relative; overflow: hidden; white-space: nowrap;
  transition: color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s cubic-bezier(.34,1.56,.64,1);
}
.tabs button svg { width: 15px; height: 15px; flex-shrink: 0; }
.tabs button { font-size: 0; padding: 10px 12px; }
.tabs button svg { width: 18px; height: 18px; }
.tabs button:hover { color: var(--heading); transform: translateY(-1px); }
.tabs button.active {
  background: var(--grad-cta); color: #fff;
  box-shadow: 0 6px 18px rgba(168,91,10,.4);
  transform: translateY(-1px);
}
.tabs button.active::after {
  content: ""; position: absolute; top: 0; left: -70%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-20deg);
  animation: tab-shine 3.4s ease-in-out infinite;
}
@keyframes tab-shine {
  0%, 55% { left: -70%; }
  85%, 100% { left: 135%; }
}
.tabs button:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }
@media (max-width:640px) { .tabs button { padding: 8px 10px; font-size: 0; } .tabs button svg { width: 16px; height: 16px; } .brand-mark img { height: 64px; max-height: 64px; } .brand-word { font-size: 24px; } .brand-word .sub { font-size: 9.5px; letter-spacing: .2em; } }
.subnav {
  position: fixed; right: 20px; z-index: 55;
  bottom: calc(24px + 56px + 64px);
  background: rgba(250, 245, 242, 0.55);
  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  border: 1px solid rgba(217,119,6,.20);
  box-shadow: 0 18px 45px rgba(28,25,23,.10), inset 0 1px 0 rgba(255,255,255,.6);
  padding: 10px 8px;
  display: flex; flex-direction: column; gap: 6px;
  border-radius: 9999px;
}
.subnav button {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; padding: 0;
  font-size: 0;
  font-family: 'Playfair Display', serif;
  color: var(--muted-text); text-decoration: none;
  border: none; background: transparent; cursor: pointer; border-radius: 9999px;
  position: relative;
  transition: color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s cubic-bezier(.34,1.56,.64,1);
}
.subnav button svg { width: 18px; height: 18px; flex-shrink: 0; }
.subnav button:hover { color: var(--heading); background: rgba(231,229,228,.65); transform: translateY(-1px); }
.subnav button.active {
  background: var(--grad-cta); color: #fff;
  box-shadow: 0 5px 16px rgba(168,91,10,.35);
  transform: translateY(-1px);
}
@media (max-width:640px) {
  .subnav {
    left: 0; right: 0; bottom: 0; top: auto;
    flex-direction: row; width: 100%;
    border-radius: 0; padding: 6px 10px calc(6px + env(safe-area-inset-bottom, 0px));
    gap: 2px; overflow-x: auto; justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .subnav::-webkit-scrollbar { display: none; }
  .subnav button { width: 44px; height: 44px; flex: 0 0 auto; }
  .subnav button svg { width: 18px; height: 18px; }
  body { padding-bottom: 58px; }
  .whatsapp-fab { bottom: calc(58px + 14px); }
  .toast { bottom: calc(58px + 14px); }
}
.subnav button:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }

/* Hover name tooltip (rail ke left side) */
.subnav button::after {
  content: attr(data-label);
  position: absolute; right: calc(100% + 12px); top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--walnut-950); color: var(--cream);
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: .04em; padding: 6px 12px; border-radius: 8px; white-space: nowrap;
  opacity: 0; visibility: hidden; pointer-events: none;
  box-shadow: 0 8px 20px rgba(28,25,23,.18);
  transition: opacity .18s ease, transform .18s ease;
}
.subnav button:hover::after { opacity: 1; visibility: visible; transform: translateY(-50%) translateX(0); }
@media (max-width:640px) { .subnav button::after { display: none; } }
.tab-panel { display: block; scroll-margin-top: 150px; }
#aboutAnchor, #catalogueAnchor, #galleryAnchor, #blogAnchor, #feedbackAnchor, #enquiryAnchor, #contactAnchor { scroll-margin-top: 150px; }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 20px; z-index: 60;
  width: 56px; height: 56px; border-radius: 9999px; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(37,211,102,.4);
}
@media (max-width:640px) { .whatsapp-fab { bottom: 18px; right: 12px; width: 50px; height: 50px; } }

/* ---------- HERO ---------- */
.hero {
  position: relative; height: 78vh; min-height: 480px; overflow: hidden;
  display: flex; align-items: flex-end;
  background: transparent;
}
.hero-carousel {
  position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
  width: min(1180px, calc(100% - 64px));
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}
.hero-carousel.dragging { cursor: grabbing; }
.carousel-track { display: flex; width: 100%; height: 100%; transition: transform .8s cubic-bezier(.65,0,.35,1); }
.carousel-slide {
  flex: 0 0 100%; height: 100%; position: relative;
  background: linear-gradient(135deg, rgba(243,237,231,.76) 0%, rgba(250,245,242,.56) 100%);
  display: flex; align-items: flex-start; justify-content: flex-end;
  user-select: none; -webkit-user-select: none;
}
.carousel-slide.has-img {
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.carousel-slide .slide-tag {
  margin: 24px 24px 0 0; background: rgba(255,255,255,.72); backdrop-filter: blur(3px);
  color: var(--walnut-950); font-family: 'IBM Plex Mono'; font-size: 11px; letter-spacing: .06em;
  text-transform: uppercase; padding: 6px 12px; border: 1px solid var(--border);
  border-radius: 9999px;
}
.carousel-slide .slide-caption {
  position: absolute; right: 28px; bottom: 80px; color: var(--walnut-950);
  font-family: 'Inter', sans-serif; font-style: italic; font-size: 22px; text-align: right;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(250,245,242,0) 0%, rgba(250,245,242,.10) 55%, rgba(250,245,242,.45) 100%);
}
.carousel-dots {
  position: absolute; z-index: 3; bottom: 24px; right: 28px; display: flex; gap: 9px;
}
.carousel-dots .dot {
  width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid var(--rose-dark);
  background: transparent; cursor: pointer; padding: 0; transition: background .2s, transform .2s;
}
.carousel-dots .dot.active { background: var(--rose-dark); transform: scale(1.25); }
.halo {
  position: absolute; top: -180px; left: 50%; transform: translateX(-50%);
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,119,6,.16) 0%, rgba(217,119,6,.05) 34%, transparent 68%);
  filter: blur(6px);
  animation: halo-breathe 7s ease-in-out infinite;
}
@keyframes halo-breathe {
  0%,100%{ opacity: .75; transform: translateX(-50%) scale(1); }
  50%{ opacity: 1; transform: translateX(-50%) scale(1.06); }
}
.falling-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.fshape {
  position: absolute; top: -80px;
  border: 1.5px solid rgba(217,119,6,.35);
  animation-name: shape-fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.fshape.circle { border-radius: 50%; background: rgba(217,119,6,.06); }
.fshape.ring { border-radius: 50%; border-width: 2px; }
@keyframes shape-fall {
  0%{ transform: translateY(-10%) rotate(0deg); opacity: 0; }
  8%{ opacity: .4; }
  92%{ opacity: .3; }
  100%{ transform: translateY(760px) rotate(180deg); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 2; color: var(--ink); max-width: 720px;
  margin: 0 0 56px;
  background: transparent;
  padding: 0 28px;
}
.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; line-height: 1; margin-bottom: 16px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--oak);
}
.hero h1 { font-size: clamp(34px,5.4vw,58px); line-height: 1.08; margin: 0 0 16px; color: var(--walnut-950); font-weight: 700; }
@media (max-width:640px) { .hero h1 { font-size: clamp(27px, 7.2vw, 34px); } }
.hero p { font-size: 16px; line-height: 1.55; color: var(--body-text); max-width: 520px; margin: 0 0 26px; }
.hero-cta {
  display: inline-block; background: var(--grad-cta); color: #fff;
  font-family: 'IBM Plex Mono'; font-size: 13px; text-transform: uppercase; letter-spacing: .06em;
  padding: 14px 30px; border: none; cursor: pointer; font-weight: 500; border-radius: 9999px;
  box-shadow: 0 10px 24px rgba(168,91,10,.35);
}

/* ---------- Catalogue ---------- */
.catalogue-wrap { max-width: 1180px; margin: 0 auto; padding: 52px 28px 80px; }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 26px; flex-wrap: wrap; gap: 14px;
}
.section-head .eyebrow { font-family: 'Playfair Display', serif; font-size: 46px; line-height: 1.1; color: var(--walnut-950); }
.filters { display: flex; gap: 8px; flex-wrap: wrap; align-items: flex-end; }
.filter-group { display: flex; flex-direction: column; gap: 6px; }
.filter-label { font-family: 'IBM Plex Mono'; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--oak); }
select {
  font-family: 'Inter'; font-size: 13px; padding: 8px 10px; border: 1px solid var(--rose-mid);
  background: var(--cream); color: var(--walnut-950); min-width: 130px; border-radius: 8px; cursor: pointer;
}
select:focus, input:focus, textarea:focus { outline: 2px solid var(--ring); outline-offset: 1px; }
.grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 22px; margin-top: 28px; }
.card {
  background: var(--cream); border: 1px solid var(--rose-mid); cursor: pointer;
  border-radius: 14px; overflow: hidden;
}
.card:hover { border-color: rgba(217,119,6,.45); }
.card-media {
  height: 190px; position: relative; overflow: hidden;
  background: var(--grad-hero);
  display: flex; align-items: center; justify-content: center;
  color: rgba(28,25,23,.45); font-family: 'IBM Plex Mono'; font-size: 11px;
}
.card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(28,25,23,.18)); opacity: 0; transition: opacity .35s ease; }
.card:hover .card-media::after { opacity: 1; }
.card-media .photocount {
  position: absolute; bottom: 8px; right: 8px; background: rgba(255,255,255,.88); color: var(--walnut-950);
  font-family: 'IBM Plex Mono'; font-size: 10px; padding: 3px 7px; border-radius: 9999px;
}
.card-body { padding: 16px 16px 18px; }
.card-body h3 { font-size: 17px; margin: 0 0 6px; color: var(--walnut-950); font-weight: 700; }
.card-price { font-family: 'Inter', sans-serif; font-size: 14px; color: var(--accent-ink); margin-bottom: 10px; font-weight: 600; letter-spacing: .01em; font-variant-numeric: tabular-nums lining-nums; }
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-family: 'IBM Plex Mono'; font-size: 10px; letter-spacing: .03em;
  border: 1px solid var(--rose-mid); color: var(--muted-text); padding: 3px 8px; text-transform: uppercase; border-radius: 6px;
}

/* ---------- OTP & Modal ---------- */
.gate-overlay {
  position: fixed; inset: 0; background: rgba(250,245,242,.92); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; z-index: 100; padding: 20px;
}
.ledger {
  background: var(--cream); width: 100%; max-width: 400px; position: relative;
  padding: 34px 32px 30px; box-shadow: var(--shadow-xl);
  border-top: 5px solid var(--accent); border-radius: 12px;
}
.ledger-eyebrow { font-family: 'IBM Plex Mono'; font-size: 11px; color: var(--oak); text-transform: uppercase; letter-spacing: .1em; }
.ledger h2 { font-size: 24px; margin: 8px 0 4px; color: var(--walnut-950); font-weight: 700; }
.ledger p.sub { font-size: 13px; color: var(--muted-text); margin: 0 0 22px; line-height: 1.5; }
.field-label { font-family: 'IBM Plex Mono'; font-size: 10px; text-transform: uppercase; letter-spacing: .07em; color: var(--muted-text); margin-bottom: 6px; display: block; }
.ledger input {
  width: 100%; font-family: 'IBM Plex Mono'; font-size: 15px; padding: 11px 12px;
  border: 1px solid var(--rose-mid); background: var(--cream); color: var(--walnut-950); margin-bottom: 16px; letter-spacing: .04em; border-radius: 8px;
}
.ledger input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.ledger-btn {
  width: 100%; background: var(--grad-cta); color: #fff; border: none; padding: 13px;
  font-family: 'IBM Plex Mono'; font-size: 12px; text-transform: uppercase; letter-spacing: .07em; cursor: pointer; border-radius: 9999px;
  box-shadow: 0 8px 20px rgba(168,91,10,.3);
}
.ledger-note { font-size: 11px; color: var(--muted-text); margin-top: 14px; line-height: 1.5; }
.otp-boxes { display: flex; gap: 8px; margin-bottom: 16px; }
.otp-boxes input { width: 44px; height: 50px; text-align: center; padding: 0; margin-bottom: 0; background: var(--cream); color: var(--walnut-950); border: 1px solid var(--rose-mid); }
.demo-tip { background: var(--rose-light); border: 1px dashed var(--accent); font-size: 11px; padding: 8px 10px; margin-bottom: 16px; color: var(--muted-text); font-family: 'IBM Plex Mono'; border-radius: 8px; }
.pmodal-overlay {
  position: fixed; inset: 0; background: rgba(250,245,242,.92); z-index: 90;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.pmodal {
  background: var(--cream); max-width: 820px; width: 100%; max-height: 88vh; overflow: auto; position: relative; border-radius: 14px;
  box-shadow: var(--shadow-xl);
}
.pmodal-close { position: absolute; top: 14px; right: 16px; background: var(--walnut-950); color: var(--cream); border: none; width: 30px; height: 30px; cursor: pointer; z-index: 5; border-radius: 9999px; }
.pmodal-media { height: 280px; background: var(--grad-hero); display: flex; align-items: center; justify-content: center; color: rgba(28,25,23,.45); font-family: 'IBM Plex Mono'; font-size: 12px; gap: 8px; border-radius: 14px 14px 0 0; }
.pmodal-thumbs { display: flex; gap: 6px; padding: 10px 24px; background: var(--rose-light); }
.pmodal-thumbs div { width: 48px; height: 36px; background: var(--cream); opacity: .5; font-family: 'IBM Plex Mono'; font-size: 8px; color: var(--walnut-950); display: flex; align-items: center; justify-content: center; border-radius: 4px; }
.pmodal-thumbs div.video { opacity: .8; }
.pmodal-body { padding: 26px 30px 34px; }
.pmodal-body h2 { margin: 0 0 8px; font-size: 26px; color: var(--walnut-950); font-weight: 700; }
.spec-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(150px,1fr)); gap: 14px; margin: 22px 0; padding: 18px 0; border-top: 1px solid var(--rose-mid); border-bottom: 1px solid var(--rose-mid); }
.spec-item .field-label { margin-bottom: 4px; }
.spec-item .val { font-family: 'IBM Plex Mono'; font-size: 13px; }

/* ---------- Admin ---------- */
.admin-wrap { max-width: 1100px; margin: 0 auto; padding: 36px 28px 80px; }
.admin-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.admin-head h2 { font-size: 26px; margin: 0; color: var(--walnut-950); font-weight: 700; }
.btn-primary { background: var(--grad-cta); color: #fff; border: none; padding: 11px 20px; font-family: 'IBM Plex Mono'; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; cursor: pointer; border-radius: 9999px; box-shadow: 0 8px 20px rgba(168,91,10,.3); }
.btn-ghost { background: transparent; border: 1px solid var(--secondary); color: var(--body-text); padding: 9px 16px; font-family: 'IBM Plex Mono'; font-size: 11px; cursor: pointer; text-transform: uppercase; border-radius: 9999px; }
.admin-table { width: 100%; border-collapse: collapse; background: var(--cream); font-size: 13px; border-radius: 12px; overflow: hidden; }
.admin-table th { text-align: left; font-family: 'IBM Plex Mono'; font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: var(--oak); border-bottom: 2px solid var(--rose-mid); padding: 10px 12px; }
.admin-table td { padding: 12px; border-bottom: 1px solid var(--rose-light); vertical-align: middle; }
.admin-swatch { width: 38px; height: 38px; background: var(--grad-hero); border-radius: 8px; }
.row-actions button { font-family: 'IBM Plex Mono'; font-size: 10px; background: none; border: 1px solid var(--rose-mid); color: var(--walnut-950); padding: 5px 10px; cursor: pointer; margin-right: 6px; text-transform: uppercase; border-radius: 6px; transition: border-color .2s, color .2s, background .2s; }
.row-actions button:hover { border-color: var(--accent); color: var(--heading); background: var(--muted); }
.row-actions button.danger { border-color: var(--error); color: var(--error); }
.row-actions button.danger:hover { background: rgba(220,38,38,.08); }
.admin-form-overlay { position: fixed; inset: 0; background: rgba(250,245,242,.92); z-index: 95; display: flex; justify-content: flex-end; }
.admin-form { background: var(--cream); width: 520px; max-width: 100%; height: 100%; overflow-y: auto; padding: 28px 30px 60px; border-radius: 12px 0 0 12px; box-shadow: var(--shadow-xl); }
.admin-form h2 { font-size: 22px; margin: 0 0 4px; color: var(--walnut-950); font-weight: 700; }
.admin-form .sub { font-size: 12px; color: var(--muted-text); margin-bottom: 24px; }
.f-group { margin-bottom: 16px; }
.f-group label { font-family: 'IBM Plex Mono'; font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted-text); display: block; margin-bottom: 6px; }
.f-group input, .f-group select { width: 100%; padding: 9px 10px; border: 1px solid var(--rose-mid); background: var(--cream); color: var(--walnut-950); font-family: 'Inter'; font-size: 13px; border-radius: 8px; }
.attr-row { display: flex; gap: 8px; margin-bottom: 8px; align-items: center; }
.attr-row input { flex: 1; padding: 8px 10px; border: 1px solid var(--rose-mid); background: var(--cream); color: var(--walnut-950); font-size: 13px; border-radius: 8px; }
.attr-remove { background: none; border: none; color: var(--error); cursor: pointer; font-size: 16px; padding: 0 4px; }
.add-attr-btn { font-family: 'IBM Plex Mono'; font-size: 11px; background: none; border: 1px dashed var(--accent); color: var(--accent-ink); padding: 8px 12px; cursor: pointer; width: 100%; margin-top: 4px; border-radius: 8px; }
.add-attr-btn:hover { background: rgba(217,119,6,.08); }
.upload-box { border: 1.5px dashed var(--rose-mid); padding: 22px; text-align: center; font-family: 'IBM Plex Mono'; font-size: 11px; color: var(--muted-text); margin-bottom: 8px; border-radius: 8px; }
.media-chip-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.media-chip { background: var(--rose-light); font-family: 'IBM Plex Mono'; font-size: 10px; padding: 6px 8px; display: flex; align-items: center; gap: 6px; border-radius: 6px; }
.media-chip button { background: none; border: none; color: var(--error); cursor: pointer; font-size: 12px; }
.media-chip img { width: 26px; height: 26px; object-fit: cover; border-radius: 4px; }
.media-chip .chip-file-name { max-width: 130px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.chip-video-icon { width: 26px; height: 26px; border-radius: 4px; background: var(--walnut-950); color: var(--cream); display: flex; align-items: center; justify-content: center; }
.upload-box.dragover { border-color: var(--accent); background: rgba(217,119,6,.06); }
.media-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(180px,1fr)); gap: 14px; margin-bottom: 20px; }
.upload-card { background: var(--cream); border: 1px solid var(--rose-mid); border-radius: 12px; overflow: hidden; }
.upload-thumb { position: relative; aspect-ratio: 16/10; background: var(--walnut-950); cursor: pointer; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.upload-thumb img { width: 100%; height: 100%; object-fit: cover; }
.fb-thumb-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(38,35,58,.45); color: #fff; }
.upload-meta { padding: 8px 10px; }
.upload-name { font-family: 'IBM Plex Mono'; font-size: 11px; color: var(--walnut-950); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.upload-sub { font-family: 'IBM Plex Mono'; font-size: 9.5px; color: var(--muted-text); margin-top: 2px; }
.upload-badge { display: inline-block; background: var(--rose-mid); color: #fff; font-family: 'IBM Plex Mono'; font-size: 8px; letter-spacing: .06em; padding: 1px 5px; border-radius: 4px; margin-left: 4px; vertical-align: 1px; }
.upload-actions { display: flex; gap: 6px; padding: 0 10px 10px; }
.upload-actions a, .upload-actions button { font-family: 'IBM Plex Mono'; font-size: 10px; }
.fb-thumb { position: relative; width: 56px; height: 44px; border-radius: 8px; overflow: hidden; cursor: pointer; background: var(--rose-light); }
.fb-thumb img { width: 100%; height: 100%; object-fit: cover; }
.fb-thumb .fb-thumb-play svg { width: 18px; height: 18px; }
.thumb-del { position: absolute; top: 5px; right: 5px; width: 20px; height: 20px; border-radius: 9999px; background: rgba(38,35,58,.85); color: #fff; border: none; cursor: pointer; font-size: 11px; line-height: 1; padding: 0; z-index: 2; }
.thumb-del:hover { background: var(--error); }
.phone-link { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.field-hint { font-size: 10px; opacity: .65; font-family: 'IBM Plex Mono'; font-weight: 400; }
.banner { background: var(--rose-light); border-left: 3px solid var(--accent); padding: 10px 14px; font-size: 12px; margin-bottom: 20px; color: var(--muted-text); line-height: 1.5; border-radius: 8px; }
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); background: var(--walnut-950); color: var(--cream); padding: 12px 22px; font-family: 'IBM Plex Mono'; font-size: 12px; z-index: 200; opacity: 0; transition: opacity .3s, transform .3s; border-radius: 9999px; box-shadow: var(--shadow-lg); }
.toast.show { opacity: 1; }

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  position: fixed; left: 50%; bottom: 20px; z-index: 130;
  width: min(520px, calc(100vw - 28px));
  transform: translate(-50%, 160%); opacity: 0; pointer-events: none;
  background: var(--walnut-950); color: rgba(250,245,242,.85);
  border: 1px solid rgba(217,119,6,.4); border-radius: 16px;
  box-shadow: 0 25px 60px -12px rgba(0,0,0,.45);
  padding: 20px 22px 18px;
  transition: transform .5s cubic-bezier(.22,.61,.36,1), opacity .5s ease;
}
.cookie-banner.show { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
.cookie-banner.hidden { transform: translate(-50%, 160%); opacity: 0; pointer-events: none; }
.cookie-title {
  display: flex; align-items: center; gap: 9px;
  font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700;
  color: #fff; margin: 0 0 7px;
}
.cookie-title svg { color: var(--accent); flex-shrink: 0; }
.cookie-text { font-size: 12.5px; line-height: 1.55; margin: 0 0 15px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn {
  padding: 10px 18px; border-radius: 9999px;
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  letter-spacing: .06em; text-transform: uppercase; cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.cookie-accept { background: var(--grad-cta); color: #fff; border: none; box-shadow: 0 6px 16px rgba(168,91,10,.35); }
.cookie-accept:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(168,91,10,.45); }
.cookie-essential { background: transparent; color: rgba(250,245,242,.85); border: 1px solid rgba(250,245,242,.25); }
.cookie-essential:hover { border-color: rgba(250,245,242,.55); background: rgba(250,245,242,.06); }
.cookie-close {
  position: absolute; top: 10px; right: 12px;
  background: none; border: none; color: rgba(250,245,242,.55);
  font-size: 14px; cursor: pointer; padding: 4px; line-height: 1;
}
.cookie-close:hover { color: #fff; }
.cookie-btn:focus-visible, .cookie-close:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (max-width:640px) {
  .cookie-banner {
    bottom: calc(58px + 14px);
    width: calc(100vw - 16px);
    padding: 14px 16px 13px;
    border-radius: 14px;
  }
  .cookie-title { font-size: 13.5px; margin-bottom: 5px; }
  .cookie-text {
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; font-size: 11.5px; margin-bottom: 10px;
  }
  .cookie-btn { padding: 10px 14px; }
  .cookie-close { top: 8px; right: 10px; font-size: 16px; padding: 8px; }
}

/* ---------- SEO Service Locations ---------- */
.seo-locations {
  background: rgba(255,252,247,.5);
  border-top: 1px solid rgba(217,119,6,.16);
  border-bottom: 1px solid rgba(217,119,6,.16);
  box-shadow: inset 0 8px 20px -14px rgba(28,25,23,.18);
  backdrop-filter: blur(10px) saturate(115%);
  -webkit-backdrop-filter: blur(10px) saturate(115%);
}
.seo-locations-inner { max-width: 1180px; margin: 0 auto; padding: 44px 28px 56px; }
.seo-locations .seo-note {
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted-text); margin: 10px 0 0;
}
.loc-block { margin-top: 22px; }
.loc-label {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--oak);
  margin-bottom: 10px; display: flex; align-items: center; gap: 8px;
}
.loc-label::after { content: ""; flex: 1; height: 1px; max-width: 90px; background: var(--border); }
.loc-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.loc-cloud a {
  font-family: 'Inter', sans-serif; font-size: 12.5px;
  color: var(--muted-text); text-decoration: none;
  border: 1px solid rgba(217,119,6,.16); background: rgba(255,255,255,.6);
  padding: 6px 13px; border-radius: 9999px;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.loc-cloud a:hover {
  color: var(--accent-ink); border-color: rgba(217,119,6,.5);
  background: rgba(255,255,255,.85); transform: translateY(-2px);
}
.loc-cloud a:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }
@media (max-width:640px) { .loc-cloud a { padding: 11px 15px; font-size: 13px; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--walnut-950);
  color: rgba(250,245,242,.72);
  text-align: center;
  padding: 26px 28px 30px;
  border-top: 3px solid var(--accent);
  margin-top: 8px;
}
.site-footer .footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.site-footer .footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 12px 0 10px;
}
.site-footer .footer-social a {
  width: 40px; height: 40px; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,245,242,.85);
  background: rgba(250,245,242,.08);
  border: 1px solid rgba(250,245,242,.16);
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.site-footer .footer-social a:hover {
  color: #fff;
  background: var(--grad-cta);
  border-color: transparent;
  transform: translateY(-2px);
}
.site-footer .footer-copy {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: .06em;
}

/* Footer link columns (SEO internal linking) */
.footer-links {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 26px 32px; text-align: left;
  max-width: 1180px; margin: 0 auto 22px; padding: 0 12px;
}
.footer-col { display: flex; flex-direction: column; gap: 7px; }
.footer-col-title {
  font-family: 'IBM Plex Mono', monospace; font-size: 10px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 2px;
}
.footer-col a {
  color: rgba(250,245,242,.74); text-decoration: none;
  font-size: 12.5px; line-height: 1.35;
  transition: color .2s ease;
}
.footer-col a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-nap { color: rgba(250,245,242,.74); font-size: 12.5px; line-height: 1.45; }
@media (max-width:640px) { .footer-links { grid-template-columns: 1fr 1fr; } .footer-col a { display: inline-block; padding: 6px 0; font-size: 13px; } }

/* Static no-JS homepage fallback (crawlable SEO content) */
.hero-static {
  position: relative; padding: 96px 28px 64px;
  background: linear-gradient(135deg, rgba(217,119,6,.14), rgba(250,245,242,.35));
}
.hero-static-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.hero-static h1 { font-size: clamp(28px, 4.6vw, 52px); line-height: 1.12; margin: 14px 0 18px; color: var(--walnut-950); }
.hero-static p { font-size: 15.5px; line-height: 1.75; color: var(--body-text); max-width: 680px; margin: 0 auto 22px; }
.hero-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.svc-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.svc-strip a {
  font-family: 'Inter', sans-serif; font-size: 12.5px;
  color: var(--walnut-950); text-decoration: none;
  border: 1px solid rgba(217,119,6,.35); background: rgba(255,255,255,.65);
  padding: 8px 15px; border-radius: 9999px;
  transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.svc-strip a:hover { background: var(--grad-cta); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 18px rgba(168,91,10,.3); }
.nap-block {
  background: var(--cream); border: 1px solid var(--rose-mid); border-radius: 14px;
  padding: 18px 22px; margin-top: 22px; max-width: 720px;
  font-size: 13.5px; line-height: 1.7; color: var(--body-text);
}
.nap-block b { color: var(--walnut-950); font-family: 'Playfair Display', serif; }

/* ---------- Generic sections ---------- */
.section-wrap { max-width: 1180px; margin: 0 auto; padding: 56px 28px 20px; border-top: 1px solid rgba(217,119,6,.14); }
.section-wrap.tight { padding-top: 44px; }

/* ---------- About ---------- */
#aboutAnchor {
  position: relative;
  background: linear-gradient(90deg, rgba(250,245,242,.86) 0%, rgba(250,245,242,.7) 55%, rgba(250,245,242,.58) 100%);
  padding-top: 72px;
  padding-bottom: 52px;
}
#aboutAnchor .brand-strip {
  padding: 20px 0;
}
.about-grid { display: grid; grid-template-columns: 1fr; max-width: 760px; margin-top: 24px; }
.about-grid p { line-height: 1.7; font-size: 14.5px; color: var(--body-text); margin: 0 0 14px; }
.about-hero-bg {
  position: relative;
  border-radius: 20px;
  padding: 40px 34px 34px;
  background-image: url('images/living-hall.jpg');
  background-size: cover;
  background-position: center 60%;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.about-hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg,
    rgba(250,245,242,.97) 0%,
    rgba(250,245,242,.90) 42%,
    rgba(250,245,242,.55) 68%,
    rgba(250,245,242,.35) 100%);
}
.about-hero-bg > * { position: relative; z-index: 1; }
.about-hero-bg .about-grid { margin-top: 18px; }
@media (max-width:760px) {
  .about-hero-bg { padding: 28px 20px 24px; }
  .about-hero-bg::before { background: linear-gradient(180deg, rgba(250,245,242,.96) 0%, rgba(250,245,242,.92) 55%, rgba(250,245,242,.78) 100%); }
}
.stat-row { display: flex; gap: 40px; margin-top: 24px; padding: 18px 22px; background: rgba(255,252,247,.6); backdrop-filter: blur(12px) saturate(115%); -webkit-backdrop-filter: blur(12px) saturate(115%); border: 1px solid rgba(217,119,6,.2); border-radius: 14px; width: max-content; max-width: 100%; box-shadow: 0 14px 30px rgba(28,25,23,.08), inset 0 1px 0 rgba(255,255,255,.6); }
.stat b { display: block; font-family: 'Playfair Display', serif; font-size: 30px; color: var(--oak); font-weight: 700; font-variant-numeric: tabular-nums; }
.stat span { font-family: 'IBM Plex Mono'; font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted-text); }
@media (max-width:760px) { .stat-row { flex-wrap: wrap; gap: 22px; } #aboutAnchor { background-position: 30% 20%; } }

/* Brand Partners */
.brand-strip { overflow: hidden; margin-top: 40px; padding: 20px 0; border-top: 1px solid var(--rose-mid); border-bottom: 1px solid var(--rose-mid); }
.brand-track { display: flex; gap: 40px; animation: scrollBrands 40s linear infinite; width: max-content; }
.brand-track:hover { animation-play-state: paused; }
.brand-track .brand-logo {
  flex: 0 0 auto; width: 270px; height: 142px; border-radius: 32px;
  display: flex; align-items: center; justify-content: center; font-family: 'IBM Plex Mono'; font-size: 10px; color: var(--muted-text); padding: 0 24px;
}
.brand-track .brand-logo img { max-width: 92%; max-height: 116px; object-fit: contain; display: block; filter: drop-shadow(0 2px 4px rgba(28,25,23,.12)); }
.brand-logo-placeholder { color: var(--muted-text); display: flex; opacity: .55; }
.brand-logo-placeholder svg { width: 36px; height: 36px; }
.brand-logo-text { font-family: 'Playfair Display', serif; font-size: 12px; font-weight: 700; letter-spacing: .04em; color: var(--muted-text); opacity: .75; white-space: nowrap; padding: 0 8px; }
.brand-logo-preview { max-width: 100%; max-height: 170px; object-fit: contain; border-radius: 8px; display: block; margin: 0 auto; }
.brand-admin-thumb { width: 68px; height: 48px; object-fit: contain; border: 1px solid var(--rose-mid); border-radius: 8px; padding: 4px; display: block; }
@keyframes scrollBrands { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 14px; margin-top: 24px; }
.gallery-item {
  aspect-ratio: 4/3; background: var(--grad-hero);
  display: flex; align-items: center; justify-content: center; color: rgba(28,25,23,.45);
  font-family: 'IBM Plex Mono'; font-size: 10px; position: relative; cursor: pointer; border-radius: 12px; overflow: hidden;
}
.gallery-item.video::after { content: '▶'; position: absolute; font-size: 18px; color: var(--walnut-950); }
.gallery-item.video.has-play::after { content: none; }
.gallery-play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(28,25,23,.28); color: #fff; pointer-events: none;
}
.gallery-play-btn svg { width: 34px; height: 34px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Gallery social (like / comment / share) ---------- */
.gallery-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; gap: 6px; padding: 10px;
  background: linear-gradient(180deg, rgba(28,25,23,0) 0%, rgba(28,25,23,.55) 100%);
  opacity: 0; transition: opacity .25s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
@media (hover: none) { .gallery-overlay { opacity: 1; } }
@media (max-width:640px) {
  .g-btn { min-width: 44px; min-height: 44px; justify-content: center; padding: 8px 12px; font-size: 12px; }
  .g-btn svg { width: 16px; height: 16px; }
  .carousel-dots { gap: 2px; right: 14px; bottom: 16px; }
  .carousel-dots .dot { width: 24px; height: 24px; padding: 6px; background-clip: content-box; }
}
.g-btn {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(250,245,242,.88); border: 1px solid rgba(217,119,6,.25);
  color: var(--walnut-950); font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  padding: 5px 9px; border-radius: 9999px; cursor: pointer; line-height: 1;
  transition: transform .2s ease, background .2s ease;
}
.g-btn:hover { transform: translateY(-1px); background: #fff; }
.g-btn svg { width: 14px; height: 14px; }
.g-btn.liked { background: #FEE2E2; border-color: #F87171; color: #DC2626; }

.g-comments-modal {
  width: min(560px, 92vw); max-height: 86vh; display: flex; flex-direction: column;
  background: var(--cream); border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(28,25,23,.25);
}
.g-comments-media { height: 220px; background: var(--oak); position: relative; }
.g-comments-media img, .g-comments-media video { width: 100%; height: 100%; object-fit: cover; }
.g-comments-body { display: flex; flex-direction: column; min-height: 0; }
.g-comments-list { max-height: 34vh; overflow-y: auto; padding: 10px 18px; }
.g-comment { padding: 10px 0; border-bottom: 1px solid var(--rose-mid); }
.g-comment:last-child { border-bottom: none; }
.g-comment b { color: var(--walnut-950); font-size: 13px; }
.g-comment-date { font-size: 10px; color: var(--muted-text); margin-left: 8px; }
.g-comment p { margin: 4px 0 0; font-size: 13px; color: var(--body-text); line-height: 1.5; }
.g-comments-form {
  display: flex; gap: 8px; padding: 12px 18px 16px; align-items: center;
  border-top: 1px solid var(--rose-mid);
}
.g-comments-form input {
  font-family: 'Inter', sans-serif; font-size: 13px;
  padding: 9px 10px; border: 1px solid var(--rose-mid); border-radius: 10px;
  background: var(--cream); color: var(--walnut-950); min-width: 0;
}
.g-comments-form #gCommentName { width: 110px; flex-shrink: 0; }
.g-comments-form #gCommentText { flex: 1; }

.g-share-modal {
  width: min(400px, 90vw); background: var(--cream); border-radius: 16px; padding: 24px;
  box-shadow: 0 24px 60px rgba(28,25,23,.25);
  display: flex; flex-direction: column; gap: 10px;
}
.g-share-btn {
  padding: 12px 16px; border-radius: 12px; border: 1px solid var(--rose-mid);
  background: #fff; color: var(--walnut-950); font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 600; cursor: pointer; text-align: left;
  transition: transform .2s ease, box-shadow .2s ease;
}
.g-share-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(28,25,23,.12); }

/* ---------- Gallery fullscreen viewer (Instagram-style) ---------- */
.g-story-overlay {
  position: fixed; inset: 0; z-index: 130;
  background: rgba(20,18,17,.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 16px;
}
.g-story {
  position: relative; width: min(1100px, 100%); height: min(680px, 92vh);
  display: grid; grid-template-columns: 1.25fr 1fr;
  background: var(--cream); border-radius: 18px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.g-story-close {
  position: absolute; top: 12px; right: 12px; z-index: 8;
  width: 38px; height: 38px; border: none; border-radius: 9999px;
  background: rgba(28,25,23,.72); color: #fff; font-size: 15px; cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,.3); transition: transform .2s ease, background .2s ease;
}
.g-story-close:hover { transform: scale(1.08); background: rgba(28,25,23,.92); }
.g-story-media { position: relative; background: #111; min-width: 0; min-height: 0; display: flex; align-items: center; justify-content: center; }
.g-story-media img, .g-story-media video { width: 100%; height: 100%; object-fit: contain; }
.g-story-demo { color: rgba(255,255,255,.55); font-family: 'IBM Plex Mono', monospace; font-size: 13px; text-align: center; padding: 24px; line-height: 1.9; }
.g-story-demo span { font-size: 11px; opacity: .8; }
.g-story-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 7;
  width: 42px; height: 42px; border: none; border-radius: 9999px;
  background: rgba(28,25,23,.55); color: #fff; font-size: 24px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center; padding-bottom: 4px;
  box-shadow: 0 4px 14px rgba(0,0,0,.35); transition: background .2s ease, transform .2s ease;
}
.g-story-nav:hover { background: rgba(28,25,23,.9); transform: translateY(-50%) scale(1.08); }
.g-story-nav.prev { left: 10px; }
.g-story-nav.next { right: 10px; }
.g-story-side { display: flex; flex-direction: column; min-height: 0; min-width: 0; }
.g-story-head { padding: 18px 20px 14px; border-bottom: 1px solid var(--rose-mid); display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
.g-story-title { min-width: 0; padding-right: 40px; }
.g-story-title b { display: block; font-family: 'Playfair Display', serif; font-size: 15px; color: var(--walnut-950); line-height: 1.35; }
.g-story-type { display: block; font-size: 10px; color: var(--muted-text); margin-top: 4px; letter-spacing: .06em; }
.g-story-actions { display: flex; gap: 6px; flex-shrink: 0; }
.g-story-comments { flex: 1; overflow-y: auto; padding: 6px 20px; min-height: 0; }
.g-story-form {
  display: flex; gap: 8px; padding: 12px 16px 14px; align-items: center;
  border-top: 1px solid var(--rose-mid); background: var(--muted);
}
.g-story-form input {
  font-family: 'Inter', sans-serif; font-size: 13px;
  padding: 9px 10px; border: 1px solid var(--rose-mid); border-radius: 10px;
  background: var(--cream); color: var(--walnut-950); min-width: 0;
}
.g-story-form #gCommentName { width: 100px; flex-shrink: 0; }
.g-story-form #gCommentText { flex: 1; }
.g-story-post {
  flex-shrink: 0; border: none; border-radius: 9999px; cursor: pointer;
  background: var(--grad-cta); color: #fff; font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; text-transform: uppercase; letter-spacing: .05em; padding: 10px 16px;
  box-shadow: 0 6px 14px rgba(168,91,10,.3); transition: transform .2s ease;
}
.g-story-post:hover { transform: translateY(-1px); }
@media (max-width:760px) {
  .g-story { grid-template-columns: 1fr; grid-template-rows: 42vh 1fr; height: 94vh; }
  .g-story-head { padding: 14px 14px 10px; }
  .g-story-head .g-story-title { padding-right: 0; }
  .g-story-actions { flex-wrap: wrap; justify-content: flex-end; }
  .g-story-form #gCommentName { width: 78px; }
  .g-story-form { padding: 10px 12px 12px; }
  .g-story-comments { padding: 4px 14px; }
}

/* ---------- Back Office gallery analytics ---------- */
.gal-analytics { margin: 0 0 18px; padding: 16px; background: var(--glass-bg-admin); border: 1px solid var(--glass-border); border-radius: 14px; }
.gal-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin-bottom: 16px; }
.gal-stats .stat-card { margin: 0; }
.gal-chart-title { font-size: 10px; color: var(--muted-text); letter-spacing: .08em; margin-bottom: 10px; }
.gbar-row { display: flex; align-items: center; gap: 10px; padding: 4px 0; }
.gbar-lbl { width: 18px; flex-shrink: 0; text-align: center; color: var(--oak); font-size: 11px; }
.gbar-track { flex: 1; height: 10px; background: var(--rose-light); border-radius: 9999px; overflow: hidden; }
.gbar-fill { height: 100%; background: var(--grad-cta); border-radius: 9999px; transition: width .5s ease; }
.gbar-val { width: 34px; flex-shrink: 0; text-align: right; font-size: 11px; color: var(--walnut-950); }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 22px; margin-top: 24px; }
.blog-card { background: var(--cream); border: 1px solid var(--rose-mid); border-radius: 12px; overflow: hidden; }
.blog-media { height: 150px; background: var(--grad-hero); display: flex; align-items: center; justify-content: center; color: rgba(28,25,23,.45); font-family: 'IBM Plex Mono'; font-size: 10px; }
.blog-card-body { padding: 16px; }
.blog-date { font-family: 'IBM Plex Mono'; font-size: 10px; color: var(--oak); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.blog-card-body h3 { font-size: 16px; margin: 0 0 8px; color: var(--walnut-950); font-weight: 700; }
.blog-card-body p { font-size: 13px; color: var(--body-text); line-height: 1.55; margin: 0; }
.blog-search { display: flex; gap: 12px; margin-bottom: 20px; }
.blog-search input { flex: 1; padding: 10px 14px; border: 1px solid var(--rose-mid); background: var(--cream); color: var(--walnut-950); border-radius: 8px; font-family: 'Inter'; }
.blog-card { cursor: pointer; }
.blog-card:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.blog-read-more { display: inline-block; margin-top: 10px; font-family: 'IBM Plex Mono'; font-size: 11px; color: var(--accent); letter-spacing: .04em; }
.blog-modal-media { height: 170px; background: var(--grad-hero); display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 40px; color: var(--walnut-950); font-family: 'Playfair Display', serif; font-weight: 700; font-size: 20px; border-radius: 14px 14px 0 0; }
.blog-modal-lede { font-size: 14.5px; color: var(--walnut-950); font-weight: 600; line-height: 1.6; }
.blog-modal-p { font-size: 13.5px; color: var(--body-text); line-height: 1.7; margin: 12px 0 0; white-space: pre-line; }
.blog-modal-cta { margin-top: 24px; padding: 16px 18px; background: var(--rose-light); border: 1px solid var(--rose-mid); border-radius: 10px; font-size: 13.5px; color: var(--walnut-950); }

/* ---------- Feedback ---------- */
.feedback-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.feedback-card { background: var(--cream); border: 1px solid var(--rose-mid); padding: 18px 20px; border-radius: 12px; }
.feedback-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.feedback-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 15px; color: var(--walnut-950); }
.feedback-stars { color: var(--oak); font-size: 13px; letter-spacing: 2px; }
.feedback-text { font-size: 13.5px; color: var(--body-text); line-height: 1.6; margin: 0 0 10px; }
.feedback-media-row { display: flex; gap: 8px; margin-bottom: 10px; }
.feedback-media-row div { width: 56px; height: 44px; background: var(--rose-light); font-family: 'IBM Plex Mono'; font-size: 8px; display: flex; align-items: center; justify-content: center; color: var(--muted-text); border-radius: 8px; }
.feedback-reply { background: var(--rose-light); border-left: 3px solid var(--accent); padding: 10px 14px; font-size: 12.5px; color: var(--muted-text); margin-top: 8px; border-radius: 8px; }
.feedback-reply b { font-family: 'IBM Plex Mono'; font-size: 10px; text-transform: uppercase; letter-spacing: .05em; color: var(--oak); display: block; margin-bottom: 4px; }
.feedback-form { background: var(--cream); border: 1px solid var(--rose-mid); padding: 24px; margin-top: 26px; border-radius: 12px; }
.feedback-form h3 { margin: 0 0 4px; font-size: 18px; color: var(--walnut-950); font-weight: 700; }
.feedback-form .sub { font-size: 12px; color: var(--muted-text); margin-bottom: 16px; }
textarea { width: 100%; padding: 10px 12px; border: 1px solid var(--rose-mid); background: var(--cream); color: var(--walnut-950); font-family: 'Inter'; font-size: 13px; resize: vertical; min-height: 80px; border-radius: 8px; }
.star-picker { display: flex; gap: 4px; font-size: 22px;   color: var(--star-off); margin-bottom: 14px; cursor: pointer; }
.star-picker span { transition: transform .15s ease, color .15s ease; }
.star-picker span:hover { transform: scale(1.2); }
.star-picker span.active { color: var(--oak); }

/* ---------- Enquiry ---------- */
.enquiry-form { max-width: 1120px; margin-top: 24px; background: var(--cream); border: 1px solid var(--rose-mid); padding: 26px; border-radius: 12px; display: grid; grid-template-columns: 1.35fr 1fr; gap: 30px; }
.enquiry-left { grid-column: 1; }
.enquiry-right { grid-column: 2; }
.wa-inquiry-card {
  background: var(--glass-bg-form);
  backdrop-filter: blur(12px) saturate(110%);
  -webkit-backdrop-filter: blur(12px) saturate(110%);
  border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 24px; box-shadow: var(--shadow-md);
  position: sticky; top: 130px;
}
.wa-card-head { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; }
.wa-card-head > svg { width: 40px; height: 40px; color: #25D366; flex-shrink: 0; }
.wa-card-title { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--walnut-950); }
.wa-card-sub { font-size: 12px; color: var(--muted-text); margin-top: 3px; line-height: 1.5; }
.wa-code {
  background: var(--rose-light); border: 1px solid var(--rose-mid); border-right: none;
  border-radius: 10px 0 0 10px; display: flex; align-items: center; padding: 0 12px;
  font-family: 'IBM Plex Mono'; font-size: 13px; color: var(--muted-text); flex-shrink: 0;
}
.wa-inquiry-card input {
  width: 100%; padding: 11px 12px; border: 1px solid var(--rose-mid); background: var(--cream);
  color: var(--walnut-950); font-family: 'IBM Plex Mono'; font-size: 15px; letter-spacing: .04em; border-radius: 10px;
}
.wa-inquiry-card #waPhone { border-radius: 0 10px 10px 0; min-width: 0; }
.wa-inquiry-card textarea {
  width: 100%; padding: 11px 12px; border: 1px solid var(--rose-mid); background: var(--cream);
  color: var(--walnut-950); font-family: 'Inter', sans-serif; font-size: 14px;
  border-radius: 10px; resize: vertical; min-height: 76px; line-height: 1.5;
}
.wa-send-btn {
  width: 100%; margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25D366; color: #fff; border: none; padding: 13px; cursor: pointer;
  font-family: 'IBM Plex Mono'; font-size: 12px; text-transform: uppercase; letter-spacing: .05em;
  border-radius: 9999px; box-shadow: 0 8px 20px rgba(37,211,102,.35);
  transition: transform .2s ease, background .2s ease;
}
.wa-send-btn:hover { transform: translateY(-1px); background: #1EBE5B; }
.wa-send-btn svg { width: 16px; height: 16px; }
.wa-note { margin-top: 12px; font-size: 11px; color: var(--muted-text); line-height: 1.6; }
.wa-success { text-align: center; padding: 18px 6px; }
.wa-success-icon {
  width: 56px; height: 56px; margin: 0 auto 12px; border-radius: 9999px;
  background: var(--grad-cta); display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 10px 24px rgba(168,91,10,.3);
}
.wa-success b { display: block; font-family: 'Playfair Display', serif; font-size: 18px; color: var(--walnut-950); }
.wa-success p { font-size: 13px; color: var(--muted-text); margin: 8px 0 0; line-height: 1.6; }
.eq-item-row { display: grid; grid-template-columns: 1.4fr 1fr auto; gap: 8px; align-items: end; margin-bottom: 10px; }
.enquiry-form .f-group label, .enquiry-form .field-label { font-size: 14px; letter-spacing: .05em; padding-bottom: 2px; }
.eq-item-row .f-group { margin-bottom: 0; }
.eq-item-remove { background: none; border: 1px solid var(--rose-mid); color: var(--error); width: 38px; height: 38px; cursor: pointer; border-radius: 8px; font-size: 15px; }
.add-item-btn { font-family: 'IBM Plex Mono'; font-size: 11px; background: none; border: 1px dashed var(--accent); color: var(--accent-ink); padding: 9px 14px; cursor: pointer; border-radius: 8px; margin: 4px 0 20px; }
.add-item-btn:hover { background: rgba(217,119,6,.08); }
@media (max-width:900px) { .enquiry-form { grid-template-columns: 1fr; } .enquiry-right { grid-column: 1; position: static; } .wa-inquiry-card { position: static; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 26px; margin-top: 24px; align-items: start; }
.contact-card { background: var(--cream); border: 1px solid var(--rose-mid); padding: 26px; border-radius: 12px; }
.contact-row { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-row:last-child { margin-bottom: 0; }
.contact-icon { width: 38px; height: 38px; border-radius: 9999px; background: var(--rose-light); border: 1px solid var(--rose-mid); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; color: var(--oak); }
.contact-icon svg { display: block; }
.contact-row .clabel { font-family: 'IBM Plex Mono'; font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted-text); margin-bottom: 4px; }
.contact-row .cval { font-size: 14px; color: var(--walnut-950); }
.map-embed { width: 100%; height: 360px; border: 1px solid var(--rose-mid); overflow: hidden; border-radius: 12px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2) sepia(.08) contrast(.96); }

/* ---------- Back Office role tabs ---------- */
.role-tabs { display: flex; gap: 2px; background: var(--rose-mid); padding: 3px; margin-bottom: 22px; border-radius: 9999px; }
.role-tabs button { flex: 1; border: none; background: transparent; padding: 10px; font-family: 'IBM Plex Mono'; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; cursor: pointer; color: var(--muted-text); opacity: .65; border-radius: 9999px; }
.role-tabs button.active { background: var(--cream); color: var(--walnut-950); opacity: 1; }

.dev-badge { background: var(--walnut-950); color: var(--cream); font-family: 'IBM Plex Mono'; font-size: 9px; text-transform: uppercase; letter-spacing: .06em; padding: 3px 8px; margin-left: 10px; vertical-align: middle; border-radius: 9999px; }
.dev-badge + .dev-badge { margin-left: 6px; }

/* ---------- Admin analytics panel ---------- */
.an-filters { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.an-filter-group { display: flex; gap: 4px; background: var(--rose-light); padding: 4px; border-radius: 9999px; border: 1px solid var(--rose-mid); }
.an-filter {
  border: none; background: transparent; cursor: pointer;
  font-family: 'IBM Plex Mono'; font-size: 10.5px; letter-spacing: .05em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 9999px; color: var(--muted-text); min-height: 34px;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.an-filter.active { background: var(--grad-cta); color: #fff; box-shadow: 0 4px 12px rgba(168,91,10,.3); }
.an-filter:hover:not(.active) { color: var(--walnut-950); background: rgba(255,255,255,.7); }
.an-heading { font-size: 11px; letter-spacing: .1em; color: var(--oak); margin: 4px 0 12px; }
.gbar-row .an-rank { width: 26px; flex-shrink: 0; font-size: 10px; color: var(--muted-text); text-align: right; }
.gbar-row .an-name { flex: 1; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; color: var(--walnut-950); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 260px; }
.db-panel { background: var(--walnut-950); color: var(--cream); font-family: 'IBM Plex Mono'; font-size: 11.5px; padding: 18px; overflow-x: auto; line-height: 1.7; white-space: pre; border-radius: 12px; }
.dev-section-title { font-size: 20px; margin: 32px 0 4px; color: var(--walnut-950); font-weight: 700; }
.dev-section-sub { font-size: 12px; color: var(--muted-text); margin-bottom: 16px; }
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 14px; margin-bottom: 24px; }
.stat-card { background: var(--cream); border: 1px solid var(--rose-mid); border-radius: 12px; padding: 16px 18px; }
.stat-card .num { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--oak); line-height: 1; font-weight: 700; }
.stat-card .lbl { font-family: 'IBM Plex Mono'; font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted-text); margin-top: 6px; }
.stat-card.alert .num { color: var(--error); }

button:not(:disabled) { cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], .grid > *, .gallery-grid > *, .blog-grid > *, .feedback-list > * { opacity: 1; transform: none; transition: none; }
  .scroll-progress, .whatsapp-fab::after { display: none; }
  [data-magnetic] { transform: none !important; transition: none; }
  .card, .gallery-item, .blog-card { transform: none !important; }
  .cookie-banner { transition: none; }
  .hero-line, .hero-word { animation: none; }
  body::before { animation: none; }
  .fshape { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- District SEO pages ---------- */
.district-hero {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(217,119,6,.14), transparent 60%),
    linear-gradient(160deg, var(--surface) 0%, var(--cream) 55%, var(--rose-light) 100%);
  padding: 84px 28px 60px;
  border-bottom: 1px solid var(--border);
}
.district-hero-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.district-hero h1 {
  font-family: 'Playfair Display', serif; font-size: 44px; line-height: 1.15; margin: 0 0 18px;
  color: var(--walnut-950); font-weight: 700;
}
.district-hero p { font-size: 15px; color: var(--body-text); line-height: 1.75; margin: 0 auto; max-width: 720px; }
.district-hero p b { color: var(--walnut-950); }
.district-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }
.district-cta .hero-cta, .district-cta .btn-ghost { font-size: 12px; padding: 11px 22px; display: inline-flex; align-items: center; }
@media (max-width:760px) { .district-hero h1 { font-size: 32px; } .district-hero { padding: 56px 20px 44px; } }

.dg-grid { grid-template-columns: repeat(auto-fill,minmax(250px,1fr)); }
.dg-grid .card { box-shadow: none; }
.dg-grid .card:hover { border-color: rgba(217,119,6,.45); box-shadow: var(--shadow-md); }

.d-steps { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 16px; }
.d-step { background: var(--cream); border: 1px solid var(--rose-mid); border-radius: 12px; padding: 20px; position: relative; }
.d-step-num {
  width: 32px; height: 32px; border-radius: 9999px; background: var(--grad-cta); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'IBM Plex Mono', monospace; font-size: 13px; margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(168,91,10,.3);
}
.d-step h4 { font-family: 'Playfair Display', serif; font-size: 15px; margin: 0 0 6px; color: var(--walnut-950); font-weight: 700; }
.d-step p { font-size: 12.5px; color: var(--body-text); line-height: 1.6; margin: 0; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--cream); border: 1px solid var(--rose-mid); border-radius: 12px; overflow: hidden; }
.faq-item summary {
  font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 700; color: var(--walnut-950);
  padding: 16px 18px; cursor: pointer; list-style: none; display: flex; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; margin-left: auto; font-family: 'IBM Plex Mono', monospace; font-size: 16px; color: var(--oak); transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { border-bottom: 1px solid var(--rose-mid); }
.faq-item p { padding: 14px 18px 16px; margin: 0; font-size: 13px; color: var(--body-text); line-height: 1.7; }

.cta-band {
  background: linear-gradient(120deg, #A85B0A 0%, var(--accent) 55%, #B45309 100%);
  color: #fff; text-align: center; padding: 54px 28px; margin-top: 40px;
}
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; margin: 0 0 10px; }
.cta-band p { font-size: 13.5px; color: rgba(255,255,255,.85); margin: 0 auto 22px; max-width: 560px; }
.cta-band .district-cta .hero-cta { background: #fff; color: #A85B0A; box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.cta-band .district-cta .btn-ghost { border-color: rgba(255,255,255,.6); color: #fff; }
.cta-band .district-cta .btn-ghost:hover { background: rgba(255,255,255,.12); }
@media (max-width:760px) { .cta-band h2 { font-size: 21px; } }

/* ---------- Service / design / cost pages ---------- */
.svc-breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  max-width: 1180px; margin: 0 auto; padding: 18px 28px 0;
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--muted-text);
}
.svc-breadcrumb a { color: var(--oak); text-decoration: none; }
.svc-breadcrumb a:hover { text-decoration: underline; text-underline-offset: 3px; }
.svc-breadcrumb span[aria-hidden="true"] { opacity: .6; }
.svc-bc-current { color: var(--walnut-950); font-weight: 500; }
.svc-h2 {
  font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700;
  color: var(--walnut-950); margin: 0 0 14px;
}
.svc-body p { font-size: 14px; color: var(--body-text); line-height: 1.75; margin: 0 0 14px; max-width: 860px; }
.svc-body a { color: var(--oak); }
.svc-list { list-style: none; padding: 0; margin: 0 0 16px; display: flex; flex-direction: column; gap: 8px; max-width: 860px; }
.svc-list li {
  position: relative; padding-left: 22px;
  font-size: 13.5px; color: var(--body-text); line-height: 1.6;
}
.svc-list li::before {
  content: ""; position: absolute; left: 4px; top: 8px;
  width: 7px; height: 7px; border-radius: 2px;
  background: var(--grad-cta); transform: rotate(45deg);
}
.svc-list a { color: var(--oak); }
@media (max-width:640px) { .svc-h2 { font-size: 20px; } .svc-breadcrumb { padding: 14px 18px 0; } }

.loc-cloud a.active {
  background: var(--walnut-950); color: var(--cream);
  border-color: var(--walnut-950); pointer-events: none;
}

/* =========================================================
   PREMIUM GLASSMORPHISM SURFACE LAYER
   Ivory + champagne gold + warm charcoal over floral artwork.
   Depth hierarchy: cards < forms < admin < modals < inputs.
   ========================================================= */

/* ---------- LEVEL 2: Large content cards ---------- */
.card, .blog-card, .feedback-card, .stat-card, .contact-card,
.faq-item, .d-step, .brand-logo, .upload-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(115%);
  -webkit-backdrop-filter: blur(16px) saturate(115%);
  border-color: rgba(217, 119, 6, 0.20);
  box-shadow:
    0 18px 45px rgba(28, 25, 23, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.card:hover, .blog-card:hover, .feedback-card:hover, .faq-item:hover {
  border-color: rgba(217, 119, 6, 0.45);
}
.card-body h3, .blog-card-body h3 { text-shadow: 0 1px 0 rgba(255,255,255,.4); }

/* ---------- LEVEL 3: Important forms ---------- */
.enquiry-form, .feedback-form {
  background: rgba(255, 252, 247, 0.68);
  backdrop-filter: blur(18px) saturate(115%);
  -webkit-backdrop-filter: blur(18px) saturate(115%);
  border-color: rgba(217, 119, 6, 0.22);
  box-shadow:
    0 18px 45px rgba(28, 25, 23, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.ledger {
  background: rgba(255, 252, 247, 0.78);
  backdrop-filter: blur(18px) saturate(115%);
  -webkit-backdrop-filter: blur(18px) saturate(115%);
  border: 1px solid rgba(217, 119, 6, 0.18);
  box-shadow: 0 25px 60px rgba(28, 25, 23, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.ledger { border-top: 5px solid var(--accent); }

/* ---------- LEVEL 4: Inputs (readable, never too transparent) ---------- */
select,
.f-group input, .f-group select, .attr-row input,
.ledger input, .otp-boxes input,
.blog-search input, textarea {
  background: var(--glass-input);
  border-color: rgba(120, 113, 108, 0.25);
}
select:focus, input:focus, textarea:focus { outline-color: var(--accent); }

/* ---------- LEVEL 4b: Admin surfaces (information-dense, more opaque) ---------- */
.admin-table {
  background: rgba(255, 252, 247, 0.72);
  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  border: 1px solid rgba(217, 119, 6, 0.16);
  box-shadow: 0 12px 30px rgba(28, 25, 23, 0.06);
}
.admin-form {
  background: var(--glass-bg-admin);
  backdrop-filter: blur(18px) saturate(115%);
  -webkit-backdrop-filter: blur(18px) saturate(115%);
  border-left: 1px solid rgba(217, 119, 6, 0.18);
}
.upload-box { background: rgba(255, 255, 255, 0.35); border-color: rgba(120, 113, 108, 0.3); }

/* ---------- LEVEL 5: Modals (highly readable) ---------- */
.pmodal-overlay, .admin-form-overlay, .gate-overlay {
  background: rgba(250, 245, 242, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pmodal {
  background: var(--glass-bg-modal);
  backdrop-filter: blur(20px) saturate(115%);
  -webkit-backdrop-filter: blur(20px) saturate(115%);
  border: 1px solid rgba(217, 119, 6, 0.18);
  box-shadow: 0 25px 60px rgba(28, 25, 23, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

/* ---------- Small glass accents ---------- */
.slide-tag { background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.pmodal-thumbs { background: rgba(255, 255, 255, 0.5); }

/* ---------- Mobile: softer blur, stronger opacity ---------- */
@media (max-width:760px) {
  .card, .blog-card, .feedback-card, .stat-card, .contact-card,
  .faq-item, .d-step, .brand-logo, .upload-card,
  .enquiry-form, .feedback-form, .stat-row, .ledger {
    background: rgba(255, 252, 247, 0.68);
    backdrop-filter: blur(12px) saturate(110%);
    -webkit-backdrop-filter: blur(12px) saturate(110%);
  }
  .admin-table, .admin-form { background: rgba(255, 252, 247, 0.88); }
  .site-header { backdrop-filter: blur(14px) saturate(115%); -webkit-backdrop-filter: blur(14px) saturate(115%); }
  .subnav { backdrop-filter: blur(12px) saturate(110%); -webkit-backdrop-filter: blur(12px) saturate(110%); }
  .hero-content { padding: 0 20px; margin: 0 0 40px; background: transparent; border: none; border-radius: 0; box-shadow: none; }
}

/* ---------- Brand Partners: transparent logo tiles ---------- */
.brand-track .brand-logo {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

/* =========================================================
   PRODUCTS & SERVICES SLIDING STRIP (user swipes both ways)
   ========================================================= */
.marquee-wrap { max-width: 1180px; margin: 0 auto; padding: 64px 28px 8px; }
.marquee-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 22px; flex-wrap: wrap; gap: 10px; }
.marquee-head p { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--muted-text); margin: 0; }
.prod-marquee {
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.prod-marquee.dragging { cursor: grabbing; }
.prod-track { display: flex; gap: 18px; width: max-content; transition: transform .35s ease; will-change: transform; }
.prod-card {
  flex: 0 0 auto; width: 300px; cursor: pointer;
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(115%);
  -webkit-backdrop-filter: blur(16px) saturate(115%);
  border: 1px solid rgba(217,119,6,.20);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 14px 34px rgba(28,25,23,.08), inset 0 1px 0 rgba(255,255,255,.65);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.prod-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217,119,6,.45);
  box-shadow: 0 20px 44px rgba(28,25,23,.14);
}
.prod-media {
  height: 150px; position: relative;
  background: linear-gradient(135deg, var(--oak), var(--walnut-950));
  color: rgba(255,255,255,.85); font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: .08em;
  display: flex; align-items: center; justify-content: center;
}
.prod-media .photocount {
  position: absolute; right: 10px; bottom: 8px; font-size: 10px;
  background: rgba(0,0,0,.35); padding: 3px 8px; border-radius: 9999px;
}
.prod-body { padding: 14px 16px 16px; }
.prod-body h3 { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: var(--walnut-950); margin: 0 0 6px; }
.prod-body .tag-row { margin-top: 8px; }
@media (max-width:640px) {
  .prod-card { width: 230px; }
  .prod-media { height: 120px; }
  .marquee-wrap { padding: 44px 18px 6px; }
}

/* =========================================================
   PRODUCT FULLSCREEN VIEWER (left: media, right: details)
   ========================================================= */
.pfull-overlay {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(250, 245, 242, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center; padding: 18px;
}
.pfull {
  position: relative; width: 100%; max-width: 1240px; height: 92vh;
  display: grid; grid-template-columns: 1.15fr 1fr;
  background: var(--glass-bg-modal);
  backdrop-filter: blur(20px) saturate(115%);
  -webkit-backdrop-filter: blur(20px) saturate(115%);
  border: 1px solid rgba(217,119,6,.18);
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(28,25,23,.2), inset 0 1px 0 rgba(255,255,255,.65);
}
.pfull-close {
  position: absolute; top: 14px; right: 14px; z-index: 5;
  width: 40px; height: 40px; border: none; border-radius: 9999px;
  background: var(--walnut-950); color: #fff; font-size: 15px; cursor: pointer;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}
.pfull-close:hover { transform: scale(1.08); }
.pfull-media {
  background: var(--walnut-950);
  display: flex; flex-direction: column; min-height: 0;
}
.pfull-main {
  flex: 1; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; letter-spacing: .1em; padding: 18px;
}
.pfull-thumbs { display: flex; gap: 8px; padding: 12px; background: rgba(0,0,0,.35); overflow-x: auto; }
.pfull-thumbs div {
  flex: 0 0 auto; width: 64px; height: 46px; border-radius: 8px;
  background: rgba(255,255,255,.14); color: #fff;
  font-family: 'IBM Plex Mono', monospace; font-size: 9px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  border: 1px solid rgba(255,255,255,.25);
}
.pfull-thumbs div.video { color: #FBBF24; }
.pfull-details { padding: 40px 36px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; }
.pfull-details h2 { font-size: clamp(22px, 3vw, 34px); margin: 0; }
.pfull-details .card-price { font-size: 16px; }
.pfull-details .hero-cta { margin-top: 8px; align-self: flex-start; }
@media (max-width:760px) {
  .pfull { grid-template-columns: 1fr; grid-template-rows: auto 1fr; height: 94vh; }
  .pfull-media { min-height: 34vh; }
  .pfull-details { padding: 22px 18px; }
}
