/* =========================================================
   VAJRAGIRI INTERIORS - Premium Design System
   "Living spaces with life"
   ========================================================= */

:root {
  /* Brand palette — blue diamond + warm luxury */
  --brand-blue: #1B73B5;
  --brand-blue-deep: #0F4A78;
  --brand-blue-light: #6CB4E4;
  --brand-blue-ice: #E6F2FB;

  --gold: #C9A961;
  --gold-soft: #E5D2A1;
  --gold-deep: #8B7340;

  --cream: #FAF6EE;
  --ivory: #FFFCF6;
  --warm-white: #FBF8F2;

  --charcoal: #1A1A1A;
  --graphite: #2C2C2C;
  --ink: #333333;
  --slate: #5C5C5C;
  --mist: #9A9A9A;
  --line: #E8E2D5;

  /* Type */
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max-w: 1320px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 18px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================================
   Reset
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease-out); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; margin: 0; }

/* =========================================================
   Typography
   ========================================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h4 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--slate); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
}

.serif-accent {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brand-blue);
}

/* =========================================================
   Layout helpers
   ========================================================= */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: clamp(64px, 9vw, 120px) 0;
}
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--cream { background: var(--cream); }
.section--dark { background: var(--charcoal); color: var(--cream); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--ivory); }
.section--dark p { color: rgba(255,255,255,0.78); }
.section--blue { background: var(--brand-blue-deep); color: #fff; }
.section--blue h2, .section--blue h3 { color: #fff; }
.section--blue p { color: rgba(255,255,255,0.85); }

.text-center { text-align: center; }
.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-head--left { text-align: left; margin-left: 0; }

.grid { display: grid; gap: 32px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--brand-blue);
  color: #fff;
}
.btn-primary:hover { background: var(--brand-blue-deep); transform: translateY(-2px); box-shadow: 0 18px 32px -16px rgba(15,74,120,.6); }
.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover { background: var(--gold-deep); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: #fff; }
.btn-light {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}
.btn-light:hover { background: #fff; color: var(--charcoal); border-color: #fff; }
.btn-arrow { transition: transform .3s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--brand-blue);
  border-bottom: 1px solid var(--brand-blue);
  padding-bottom: 4px;
  transition: gap .3s var(--ease-out);
}
.link-arrow:hover { gap: 14px; color: var(--gold-deep); border-color: var(--gold); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 18px 0;
  background: rgba(255,252,246,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all .4s var(--ease-out);
}
.site-header.scrolled { padding: 12px 0; box-shadow: 0 4px 24px rgba(0,0,0,0.05); }
.site-header.transparent { background: transparent; border-bottom: 1px solid rgba(255,255,255,0.1); }
.site-header.transparent:not(.scrolled) .nav-link,
.site-header.transparent:not(.scrolled) .menu-toggle { color: #fff; }
.site-header.transparent:not(.scrolled) .logo-text { color: #fff; }
.site-header.transparent:not(.scrolled) .logo-text-sub { color: rgba(255,255,255,0.6); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.brand {
  display: flex; align-items: center; gap: 12px;
}
.brand img { height: 68px; width: auto; transition: height .3s var(--ease-out); }
.site-header.scrolled .brand img { height: 56px; }
@media (max-width: 980px) {
  .brand img { height: 56px; }
  .site-header.scrolled .brand img { height: 48px; }
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text { font-family: var(--font-display); font-size: 22px; color: var(--brand-blue); letter-spacing: 0.04em; }
.logo-text-sub { font-size: 9px; letter-spacing: 0.3em; color: var(--mist); text-transform: uppercase; margin-top: 4px; }

.primary-nav { display: flex; align-items: center; gap: 36px; }
.nav-list { display: flex; gap: 32px; align-items: center; }
.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav-link::after {
  content: "";
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .35s var(--ease-out);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--brand-blue); }

.cta-mini {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  background: var(--brand-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .3s var(--ease-out);
}
.cta-mini:hover { background: var(--gold); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}
.menu-toggle span {
  height: 1.5px; background: var(--charcoal);
  transition: all .3s var(--ease-out);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 980px) {
  .primary-nav {
    position: fixed; top: 0; right: -100%;
    width: min(380px, 100%);
    height: 100vh;
    background: var(--ivory);
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 100px 40px 40px;
    transition: right .5s var(--ease-out);
    box-shadow: -20px 0 40px rgba(0,0,0,0.1);
  }
  .primary-nav.open { right: 0; }
  .nav-list {
    flex-direction: column; gap: 0;
    width: 100%; align-items: flex-start;
  }
  .nav-list li {
    width: 100%; padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-link { font-size: 15px; }
  .menu-toggle { display: flex; z-index: 1000; }
  .site-header.transparent:not(.scrolled) .menu-toggle span { background: #fff; }
  .cta-mini { margin-top: 24px; }
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand img { height: 60px; margin-bottom: 18px; filter: brightness(2); opacity: 0.9; }
.footer-brand p { color: rgba(255,255,255,0.55); max-width: 320px; font-size: 14px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 24px; font-weight: 500;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-col a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px; font-size: 14px; color: rgba(255,255,255,0.7);
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.social-row { display: flex; gap: 12px; margin-top: 24px; }
.social-row a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  transition: all .3s var(--ease-out);
}
.social-row a:hover { background: var(--gold); border-color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 12px;
}
@media (max-width: 840px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Hero (homepage)
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.5s var(--ease-out), transform 8s ease-out;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.7) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 880px;
  padding: 120px var(--gutter) 80px;
  margin: 0 auto;
  width: 100%;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  margin-bottom: 28px;
  font-weight: 400;
}
.hero h1 .accent {
  font-style: italic; color: var(--gold-soft); display: inline-block;
}
.hero p.lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-eyebrow {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 24px;
}

.hero-nav {
  position: absolute; bottom: 50px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 3;
}
.hero-nav button {
  width: 36px; height: 2px; background: rgba(255,255,255,0.3); border-radius: 0;
  transition: all .35s var(--ease-out);
}
.hero-nav button.active { background: var(--gold); width: 60px; }

.hero-scroll {
  position: absolute; bottom: 50px; right: var(--gutter);
  z-index: 3; color: rgba(255,255,255,0.7);
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  writing-mode: vertical-rl;
}
.hero-scroll::after {
  content: ""; width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.3; }
}
@media (max-width: 720px) { .hero-scroll { display: none; } }

/* =========================================================
   Page hero (non-home)
   ========================================================= */
.page-hero {
  position: relative;
  padding: 200px var(--gutter) 100px;
  text-align: center;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center top, rgba(201,169,97,0.08), transparent 70%);
}
.page-hero h1 { position: relative; margin-bottom: 18px; }
.page-hero p { position: relative; max-width: 620px; margin: 0 auto; font-size: 1.05rem; }
.page-hero-img {
  position: relative;
  margin-top: 60px;
  height: 380px;
  background-size: cover; background-position: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.breadcrumbs {
  position: relative;
  display: inline-flex; gap: 8px;
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--mist); margin-bottom: 20px;
}
.breadcrumbs a:hover { color: var(--brand-blue); }
.breadcrumbs span { color: var(--gold); }

/* =========================================================
   Cards
   ========================================================= */
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .5s var(--ease-out);
  border: 1px solid var(--line);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.15); }
.card-img {
  position: relative;
  padding-top: 65%;
  background-size: cover; background-position: center;
  overflow: hidden;
}
.card-img::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4));
  opacity: 0; transition: opacity .4s var(--ease-out);
}
.card:hover .card-img::before { opacity: 1; }
.card-body { padding: 28px 28px 32px; }
.card-body h3 { margin-bottom: 8px; }
.card-meta {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 12px;
}

/* Service card variant */
.service-card {
  position: relative;
  display: flex; flex-direction: column;
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius);
  /* Solid dark fallback so cards always have presence, even if image is slow/missing */
  background-color: var(--brand-blue-deep);
  background-size: cover;
  /* Show the lower-middle of each interior photo — that's where the furniture, finishes,
     and colour live. The top of most interior shots is plain ceiling. */
  background-position: center 75%;
  color: #fff;
  padding: 36px 32px;
  justify-content: flex-end;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
/* Full-card gradient: subtle veil at top (keeps num chip legible), middle stays visible,
   strong dark band at bottom for body copy clarity. */
.service-card::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,10,10,0.45) 0%,
      rgba(10,10,10,0.18) 22%,
      rgba(10,10,10,0.22) 50%,
      rgba(10,10,10,0.62) 78%,
      rgba(10,10,10,0.94) 100%);
  transition: background .4s var(--ease-out);
}
.service-card:hover::before {
  background:
    linear-gradient(180deg,
      rgba(10,10,10,0.5) 0%,
      rgba(10,10,10,0.22) 22%,
      rgba(10,10,10,0.28) 50%,
      rgba(10,10,10,0.7) 78%,
      rgba(10,10,10,0.96) 100%);
}
.service-card > * { position: relative; z-index: 2; }
.service-card h3 { color: #fff; margin-bottom: 12px; }
.service-card p { color: rgba(255,255,255,0.85); margin-bottom: 22px; font-size: 14px; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 40px 60px -30px rgba(0,0,0,0.4); }
.service-card .link-arrow {
  color: var(--gold-soft); border-color: var(--gold-soft);
}
.service-card .num {
  position: absolute; top: 28px; left: 32px;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--gold-soft);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  z-index: 3;
  font-weight: 500;
  text-shadow: 0 2px 14px rgba(0,0,0,0.85), 0 0 6px rgba(0,0,0,0.6);
}
.service-card .num::before { display: none; }

/* Service card background images - declared in CSS (not inline HTML) so that
   Netlify's HTML minifier cannot corrupt the URLs by re-quoting attributes. */
.svc-full-home   { background-image: url(../images/rendered/service-full-home.jpg); }
.svc-kitchens    { background-image: url(../images/rendered/service-kitchens.jpg); }
.svc-wardrobes   { background-image: url(../images/rendered/service-wardrobes.jpg); }
.svc-commercial  { background-image: url(../images/rendered/service-commercial.jpg); }

/* =========================================================
   Portfolio grid
   ========================================================= */
.portfolio-filters {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 50px;
}
.filter-btn {
  padding: 10px 22px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--slate);
  background: transparent;
  transition: all .3s var(--ease-out);
}
.filter-btn:hover { border-color: var(--brand-blue); color: var(--brand-blue); }
.filter-btn.active {
  background: var(--charcoal); color: #fff; border-color: var(--charcoal);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
/* Stagger – alternates up/down so cards read like a flowing rhythm */
.portfolio-grid.stagger > .portfolio-item:nth-child(3n+1) { transform: translateY(0); }
.portfolio-grid.stagger > .portfolio-item:nth-child(3n+2) { transform: translateY(40px); }
.portfolio-grid.stagger > .portfolio-item:nth-child(3n+3) { transform: translateY(-30px); }
.portfolio-grid.stagger > .portfolio-item:nth-child(3n+1):hover,
.portfolio-grid.stagger > .portfolio-item:nth-child(3n+2):hover,
.portfolio-grid.stagger > .portfolio-item:nth-child(3n+3):hover {
  transform: translateY(-6px);
}
@media (max-width: 720px) {
  .portfolio-grid.stagger > .portfolio-item { transform: translateY(0) !important; }
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 4/3;
}
.portfolio-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.portfolio-item:hover img { transform: scale(1.07); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.75));
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  opacity: 0; transition: opacity .4s var(--ease-out);
  color: #fff;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 { color: #fff; margin-bottom: 4px; font-size: 1.2rem; }
.portfolio-overlay .meta { font-size: 12px; letter-spacing: 0.1em; color: var(--gold-soft); }
.portfolio-item.tall { aspect-ratio: 3/4; }

/* =========================================================
   Stats strip
   ========================================================= */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  text-align: center;
  padding: 24px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--brand-blue);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 12px;
}
.section--dark .stat-num, .section--blue .stat-num { color: var(--gold-soft); }
.stat-label {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--slate);
}
.section--dark .stat-label, .section--blue .stat-label { color: rgba(255,255,255,0.7); }
@media (max-width: 720px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   Testimonial
   ========================================================= */
.testimonial-slider {
  position: relative;
  max-width: 880px; margin: 0 auto;
  text-align: center;
}
.testimonial-slide {
  display: none;
  padding: 20px;
}
.testimonial-slide.active { display: block; animation: fadeIn .8s var(--ease-out); }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: 36px;
  position: relative;
}
.section--dark .testimonial-quote, .section--blue .testimonial-quote { color: #fff; }
.testimonial-quote::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  position: absolute;
  top: -50px; left: 50%; transform: translateX(-50%);
  line-height: 1;
  opacity: 0.4;
}
.testimonial-author {
  display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
}
.testimonial-author strong {
  font-family: var(--font-display); font-size: 1.05rem; color: var(--charcoal);
}
.section--dark .testimonial-author strong, .section--blue .testimonial-author strong { color: #fff; }
.testimonial-author small {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-deep);
}
.testimonial-dots { display: flex; gap: 8px; justify-content: center; margin-top: 32px; }
.testimonial-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line); transition: all .3s var(--ease-out);
}
.testimonial-dots button.active { background: var(--gold); width: 28px; border-radius: 4px; }
.section--dark .testimonial-dots button, .section--blue .testimonial-dots button { background: rgba(255,255,255,0.2); }
.section--dark .testimonial-dots button.active, .section--blue .testimonial-dots button.active { background: var(--gold); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; } }

/* =========================================================
   Process steps
   ========================================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.process-step {
  padding: 36px 28px;
  background: var(--ivory);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
  transition: all .4s var(--ease-out);
}
.process-step:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -20px rgba(201,169,97,0.25);
}
.process-step .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}
.process-step h4 { font-size: 1.15rem; margin-bottom: 10px; }
.process-step p { font-size: 14px; margin: 0; }

/* =========================================================
   Calculator
   ========================================================= */
.calculator {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px -30px rgba(15,74,120,0.18);
}
.calc-form { display: flex; flex-direction: column; gap: 28px; }
.calc-field label {
  display: flex; justify-content: space-between;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 500; color: var(--charcoal);
  margin-bottom: 14px;
}
.calc-field label .val {
  color: var(--brand-blue); font-weight: 600; letter-spacing: 0;
  font-family: var(--font-display); font-size: 16px;
}
.calc-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px;
  background: var(--line); border-radius: 2px;
  outline: none;
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(201,169,97,0.5);
  cursor: pointer;
  transition: all .2s;
}
.calc-range::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-range::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(201,169,97,0.5);
  cursor: pointer; border: none;
}
.calc-select, .calc-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit; font-size: 14px; color: var(--charcoal);
  background: var(--warm-white);
}
.calc-select:focus, .calc-input:focus { outline: 1px solid var(--brand-blue); border-color: var(--brand-blue); }

.calc-options { display: flex; flex-wrap: wrap; gap: 10px; }
.calc-chip {
  padding: 10px 18px;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  transition: all .3s var(--ease-out);
}
.calc-chip:hover { border-color: var(--gold); color: var(--gold-deep); }
.calc-chip.active { background: var(--brand-blue); color: #fff; border-color: var(--brand-blue); }
.calc-chip.disabled {
  opacity: 0.35; cursor: not-allowed; text-decoration: line-through;
  border-color: var(--line); color: var(--slate); background: transparent;
}
.calc-chip.disabled:hover { border-color: var(--line); color: var(--slate); }

/* Simplified calculator extras */
.calc-simple .calc-chip { padding: 12px 22px; font-size: 13px; }
.calc-simple .calc-chip-group { gap: 12px; }
.calc-hint {
  margin-top: 12px; font-size: 12px; color: var(--mist);
  font-style: italic; min-height: 16px;
}
.calc-info {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 8px;
}
.calc-info h4 {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 14px; font-family: var(--font-body);
  font-weight: 500;
}
.calc-info ul { display: grid; gap: 10px; }
.calc-info li {
  font-size: 13px; line-height: 1.55; color: var(--slate);
}
.calc-info li b { color: var(--brand-blue); font-weight: 600; margin-right: 4px; }
.calc-result-fineprint {
  margin-top: 18px; font-size: 12px; line-height: 1.6;
  color: rgba(255,255,255,0.65);
}

/* =========================================================
   Interactive folder gallery (home page - Recent Work)
   ========================================================= */
.folder-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 60%, var(--ivory) 100%);
}
.folder-stage {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 40px auto 0;
  height: 560px;
  display: flex; align-items: flex-end; justify-content: center;
  perspective: 1200px;
  --easing: cubic-bezier(0.16, 1, 0.3, 1);
}
/* --- The dark folder back (visible behind photos when closed) --- */
.folder-back {
  position: absolute;
  bottom: 26px; left: 50%;
  width: 320px; height: 224px;
  transform: translateX(-50%);
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.5));
  transition: opacity .55s var(--easing), transform .55s var(--easing);
  z-index: 0;
  pointer-events: none;
}
.folder-back-tab {
  position: absolute;
  top: 0; left: 0;
  width: 128px; height: 40px;
  background: linear-gradient(0deg, #1e1e1e, #2a2a2a);
  border-radius: 12px 12px 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-left: 1px solid rgba(255,255,255,0.1);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.folder-back-body {
  position: absolute;
  top: 32px; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, #1e1e1e, #0a0a0a);
  border-radius: 0 12px 12px 12px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 0 40px rgba(0,0,0,0.8);
}
.folder-back-slot {
  position: absolute;
  top: 40px; left: 8px; right: 8px; bottom: 8px;
  background: #000;
  border-radius: 8px;
  box-shadow: inset 0 4px 12px rgba(0,0,0,0.6);
}
.folder-stage[data-open="true"] .folder-back { opacity: 0; transform: translateX(-50%) scale(0.9); }

/* --- The photos stack --- */
.folder-photos {
  position: absolute;
  bottom: 42px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 224px;
  pointer-events: none;
}
.folder-photo {
  position: absolute;
  bottom: 0; left: 50%;
  width: 224px; height: 290px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transform-origin: bottom center;
  transition:
    transform .55s var(--easing),
    box-shadow .35s var(--easing);
  will-change: transform;
  z-index: calc(10 + var(--z, 0));
  /* CLOSED baseline stacked position */
  --i: 0;
  transform: translate(calc(-50% + var(--i) * 3px), calc(var(--i) * -5px)) rotate(calc(var(--i) * 3deg)) scale(calc(1 - abs(var(--i)) * 0.03));
}
/* Fallback scale for browsers without CSS abs() */
@supports not (width: abs(1px)) {
  .folder-photo { transform: translate(calc(-50% + var(--i) * 3px), calc(var(--i) * -5px)) rotate(calc(var(--i) * 3deg)); }
}
.folder-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* HOVER (closed) - photos fan up */
.folder-stage[data-open="false"]:hover .folder-photo,
.folder-stage[data-open="false"].hovering .folder-photo {
  transform: translate(calc(-50% + var(--i) * 30px), calc(var(--i) * -10px - 40px)) rotate(calc(var(--i) * 8deg));
}

/* OPEN state - photos line up horizontally, above the folder */
.folder-stage[data-open="true"] .folder-photo {
  transform: translate(calc(-50% + var(--i) * 250px), -160px) rotate(0) scale(1.05);
  pointer-events: auto;
  cursor: grab;
}
.folder-stage[data-open="true"] .folder-photo:active {
  cursor: grabbing;
}
.folder-stage[data-open="true"] .folder-photo:hover {
  transform: translate(calc(-50% + var(--i) * 250px), -172px) rotate(0) scale(1.1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.55);
  z-index: 60;
}
.folder-photo.dragging {
  transition: none !important;
  z-index: 200 !important;
  cursor: grabbing;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

/* --- Front folder cover (click target) --- */
.folder-front {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 340px; height: 176px;
  cursor: pointer;
  z-index: 20;
  transform-origin: bottom center;
  transition:
    transform .5s var(--easing),
    opacity .5s var(--easing);
  filter: drop-shadow(0 -20px 40px rgba(0,0,0,0.7));
}
.folder-front-body {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #2a2a2a, #111);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: inset 0 2px 10px rgba(255,255,255,0.1);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 32px;
  overflow: hidden;
}
.folder-front-body::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}
.folder-front-label {
  padding: 10px 22px;
  background: #000;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.8);
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
}
.folder-front-label span {
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  font-family: 'Inter', var(--font-body);
}
.folder-front-label span::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 10px;
  vertical-align: middle;
  box-shadow: 0 0 6px var(--gold-soft);
}
.folder-stage[data-open="false"]:hover .folder-front,
.folder-stage[data-open="false"].hovering .folder-front {
  transform: translateX(-50%) rotateX(-25deg) translateY(10px);
}
.folder-stage[data-open="true"] .folder-front {
  opacity: 0;
  transform: translateX(-50%) rotateX(-70deg) translateY(30px);
  pointer-events: none;
}

/* --- Hint pill (visible when open) --- */
.folder-hint {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(50px);
  padding: 10px 22px;
  border-radius: 100px;
  background: rgba(10,10,10,0.06);
  border: 1px solid rgba(10,10,10,0.1);
  backdrop-filter: blur(6px);
  color: rgba(20,20,20,0.55);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  transition: opacity .5s var(--easing), transform .5s var(--easing);
  pointer-events: none;
  z-index: 30;
}
.folder-stage[data-open="true"] .folder-hint {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.folder-cta { margin-top: 40px; text-align: center; }

@media (max-width: 720px) {
  .folder-stage { height: 480px; }
  .folder-photo { width: 180px; height: 240px; }
  .folder-stage[data-open="true"] .folder-photo {
    transform: translate(calc(-50% + var(--i) * 46px), -180px) rotate(calc(var(--i) * 4deg)) scale(0.95);
  }
  .folder-stage[data-open="true"] .folder-photo:hover {
    transform: translate(calc(-50% + var(--i) * 46px), -190px) rotate(calc(var(--i) * 4deg)) scale(1);
  }
  .folder-front { width: 300px; height: 156px; }
  .folder-back { width: 280px; height: 196px; }
  .folder-photos { width: 180px; }
}

/* =========================================================
   Journey timeline - artistic animated
   ========================================================= */
.journey-section { position: relative; overflow: hidden; }
.journey-section::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(201,169,97,0.08), transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(108,180,228,0.08), transparent 40%);
  pointer-events: none;
}
.journey {
  position: relative;
  margin: 60px auto 0;
  max-width: 1100px;
  padding: 20px 30px 40px;
}
.journey-track {
  position: absolute;
  left: 60px; right: 60px;
  top: 42px;
  height: 2px;
  pointer-events: none;
}
.journey-track-line {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.08), rgba(255,255,255,0.18), rgba(255,255,255,0.08));
  border-radius: 2px;
}
.journey-track-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold));
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(201,169,97,0.6);
  transition: width 0.22s linear;
}
.journey-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
}
.journey-step {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  opacity: 0.42;
  transform: translateY(6px);
  transition: opacity .45s var(--ease-out), transform .45s var(--ease-out);
}
.journey-step.active {
  opacity: 1;
  transform: translateY(0);
}
.journey-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(10,30,55,0.9);
  border: 2px solid rgba(255,255,255,0.25);
  display: grid; place-items: center;
  position: relative;
  transition: all .4s var(--ease-out);
  z-index: 2;
}
.journey-dot-inner {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all .4s var(--ease-out);
}
.journey-step.active .journey-dot {
  background: var(--brand-blue-deep);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(15,74,120,0.35), 0 0 24px rgba(201,169,97,0.5);
}
.journey-step.active .journey-dot-inner {
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-soft);
}
.journey-dot::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: none;
}
.journey-step.active .journey-dot::before {
  animation: journeyPulse 2.4s ease-out infinite;
}
@keyframes journeyPulse {
  0%   { transform: scale(0.9); opacity: 0.7; }
  70%  { transform: scale(1.9); opacity: 0; }
  100% { transform: scale(1.9); opacity: 0; }
}
.journey-card {
  margin-top: 22px;
  padding: 20px 12px 22px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  width: 100%;
  transition: all .4s var(--ease-out);
}
.journey-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,169,97,0.4);
  box-shadow: 0 20px 40px -20px rgba(201,169,97,0.25);
}
.journey-icon {
  width: 42px; height: 42px;
  margin: 0 auto 12px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(201,169,97,0.12);
  color: var(--gold-soft);
  border: 1px solid rgba(201,169,97,0.25);
}
.journey-card h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 4px;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}
.journey-card p {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
@media (max-width: 880px) {
  .journey { padding: 20px 12px 30px; }
  .journey-track { display: none; }
  .journey-steps {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 540px) {
  .journey-steps { grid-template-columns: 1fr; }
}

.calc-result {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--brand-blue-deep) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  overflow: hidden;
}
.calc-result::before {
  content: ""; position: absolute; top: -50%; right: -30%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: 0.18;
}
.calc-result-label {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 14px;
}
.calc-result-amount {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1; margin-bottom: 8px;
  font-weight: 400;
}
.calc-result-range {
  font-size: 14px; color: rgba(255,255,255,0.75); margin-bottom: 28px;
}
.calc-breakdown { margin-top: auto; }
.calc-breakdown-row {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}
.calc-breakdown-row:last-child { border-bottom: none; }
.calc-breakdown-row span:last-child { color: var(--gold-soft); font-weight: 500; }

@media (max-width: 880px) {
  .calculator { grid-template-columns: 1fr; padding: 28px; gap: 32px; }
}

/* =========================================================
   Form
   ========================================================= */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-form .full { grid-column: 1 / -1; }
.form-group label {
  display: block;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--slate); margin-bottom: 8px; font-weight: 500;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--warm-white);
  font-family: inherit; font-size: 15px; color: var(--charcoal);
  transition: all .25s var(--ease-out);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--brand-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(27,115,181,0.08);
}
.form-group textarea { resize: vertical; min-height: 140px; }
@media (max-width: 640px) { .contact-form { grid-template-columns: 1fr; } }

/* =========================================================
   Lightbox
   ========================================================= */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10,10,10,0.95);
  z-index: 9999;
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; animation: fadeIn .35s var(--ease-out); }
.lightbox-content { max-width: 1100px; width: 100%; position: relative; }
.lightbox-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute; top: -50px; right: 0;
  width: 40px; height: 40px;
  color: #fff;
  font-size: 24px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  transition: all .25s;
}
.lightbox-close:hover { background: var(--gold); border-color: var(--gold); }
.lightbox-caption {
  margin-top: 18px;
  color: #fff; text-align: center;
}
.lightbox-caption h4 { color: #fff; margin-bottom: 4px; }
.lightbox-caption .meta { color: var(--gold-soft); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; }

/* =========================================================
   Floating WhatsApp (sits left of chat launcher)
   ========================================================= */
.fab-whatsapp {
  position: fixed; bottom: 24px; right: 100px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  z-index: 50;
  transition: all .3s var(--ease-out);
}
.fab-whatsapp:hover { transform: scale(1.08); }
.fab-whatsapp::before {
  content: ""; position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
@media (max-width: 540px) {
  .fab-whatsapp { right: 90px; bottom: 18px; width: 52px; height: 52px; }
}

/* =========================================================
   Chat Bot widget
   ========================================================= */
.chat-launcher {
  position: fixed; bottom: 24px; right: 24px;
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-deep) 100%);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 14px 36px rgba(15,74,120,0.45);
  z-index: 60;
  cursor: pointer;
  transition: all .3s var(--ease-out);
  border: none;
}
.chat-launcher:hover { transform: scale(1.06); box-shadow: 0 18px 40px rgba(15,74,120,0.55); }
.chat-launcher.hidden { opacity: 0; transform: scale(0.6); pointer-events: none; }
.chat-launcher::after {
  content: "1";
  position: absolute;
  top: -2px; right: -2px;
  width: 22px; height: 22px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-size: 11px; font-weight: 600;
  display: grid; place-items: center;
  border: 2px solid var(--ivory);
}
.chat-launcher-icon { display: grid; place-items: center; }
@media (max-width: 540px) {
  .chat-launcher { width: 58px; height: 58px; bottom: 18px; right: 18px; }
}

.chat-window {
  position: fixed;
  bottom: 100px; right: 24px;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 560px;
  max-height: calc(100vh - 130px);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  display: flex; flex-direction: column;
  z-index: 70;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  pointer-events: none;
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
  border: 1px solid var(--line);
}
.chat-window.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
@media (max-width: 540px) {
  .chat-window {
    bottom: 90px; right: 8px; left: 8px;
    width: auto;
    height: calc(100vh - 110px);
  }
}

.chat-header {
  background: linear-gradient(135deg, var(--brand-blue-deep) 0%, var(--charcoal) 100%);
  color: #fff;
  padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
}
.chat-avatar {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  color: #fff;
  flex-shrink: 0;
}
.chat-meta { flex: 1; }
.chat-title {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.02em;
}
.chat-status {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
}
.chat-status::before {
  content: "";
  width: 8px; height: 8px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(37,211,102,0.25);
}
.chat-close {
  background: rgba(255,255,255,0.08);
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .25s;
}
.chat-close:hover { background: rgba(255,255,255,0.2); }

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 22px 18px;
  background: var(--warm-white);
  background-image: linear-gradient(rgba(201,169,97,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(201,169,97,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  display: flex; flex-direction: column; gap: 12px;
  scroll-behavior: smooth;
}
.chat-body::-webkit-scrollbar { width: 5px; }
.chat-body::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }

.chat-msg {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
  animation: chatMsgIn .35s var(--ease-out);
}
@keyframes chatMsgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-msg-bot {
  background: #fff;
  color: var(--charcoal);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.chat-msg-user {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-deep) 100%);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.chat-typing {
  display: inline-flex; gap: 4px;
  padding: 14px 18px;
  align-self: flex-start;
}
.chat-typing span {
  width: 6px; height: 6px;
  background: var(--mist);
  border-radius: 50%;
  animation: chatDot 1.2s infinite ease-in-out;
}
.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes chatDot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

.chat-input-row {
  display: flex;
  gap: 8px;
  padding: 12px 14px 14px;
  background: #fff;
  border-top: 1px solid var(--line);
}
.chat-input-row input {
  flex: 1;
  border: 1px solid var(--line);
  background: var(--warm-white);
  padding: 12px 16px;
  border-radius: 24px;
  font-family: inherit;
  font-size: 14px;
  color: var(--charcoal);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.chat-input-row input:focus {
  border-color: var(--brand-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(27,115,181,0.08);
}
.chat-input-row button {
  width: 42px; height: 42px;
  border: none;
  background: var(--brand-blue);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.chat-input-row button:hover { background: var(--brand-blue-deep); transform: translateX(2px); }

.chat-summary {
  background: var(--cream);
  border: 1px solid var(--gold-soft);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--charcoal);
  align-self: flex-start;
  max-width: 100%;
  width: 100%;
}
.chat-summary-title {
  font-family: var(--font-display);
  color: var(--gold-deep);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.chat-summary div { margin: 4px 0; }
.chat-summary b { color: var(--brand-blue); font-weight: 500; }
.chat-cta {
  align-self: flex-start;
  margin-top: 6px;
  padding: 10px 18px;
  background: #25D366;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
}
.chat-cta:hover { opacity: 0.9; }

/* =========================================================
   Reveal animations
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-left { transform: translateX(-40px); }
.reveal-left.in { transform: translateX(0); }
.reveal-right { transform: translateX(40px); }
.reveal-right.in { transform: translateX(0); }

/* =========================================================
   Split feature (image + text)
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background-size: cover; background-position: center;
}
.split-media::after {
  content: "";
  position: absolute;
  bottom: -30px; right: -30px;
  width: 180px; height: 180px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.split-content h2 { margin-bottom: 24px; }
.split-content .lead {
  font-size: 1.1rem; color: var(--slate); margin-bottom: 28px;
}
.feature-list { margin-top: 28px; }
.feature-list li {
  padding: 14px 0;
  display: flex; align-items: flex-start; gap: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 15px; color: var(--charcoal);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  margin-top: 9px;
  flex-shrink: 0;
}
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-media { aspect-ratio: 16/10; }
  .split-media::after { display: none; }
}

/* =========================================================
   Diamond decoration (brand motif)
   ========================================================= */
.diamond-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
  margin: 18px 0;
}
.diamond-divider .line {
  flex: 1; max-width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.diamond-divider .diamond {
  width: 10px; height: 10px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* =========================================================
   Utilities
   ========================================================= */
.bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(201,169,97,0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.no-pad-bottom { padding-bottom: 0 !important; }

/* =========================================================
   Map embed
   ========================================================= */
.map-wrap {
  height: 460px;
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* =========================================================
   Timeline – animated storytelling
   ========================================================= */
.timeline {
  position: relative;
  padding-left: 56px;
  --progress: 0;
}
.timeline::before {
  content: ""; position: absolute;
  left: 14px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--line);
  border-radius: 2px;
}
.timeline::after {
  content: ""; position: absolute;
  left: 14px; top: 8px;
  width: 2px;
  height: var(--progress, 0%);
  background: linear-gradient(180deg, var(--gold), var(--brand-blue));
  border-radius: 2px;
  transition: height 1.2s var(--ease-out);
  box-shadow: 0 0 18px rgba(201,169,97,0.5);
}
.timeline-item {
  position: relative;
  padding-bottom: 56px;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
}
.timeline-item.in {
  opacity: 1;
  transform: translateX(0);
}
.timeline-item::before {
  content: ""; position: absolute;
  left: -49px; top: 6px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ivory);
  border: 2px solid var(--line);
  transition: all .5s var(--ease-out);
  box-shadow: 0 0 0 6px var(--ivory);
}
.timeline-item.in::before {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 6px var(--ivory), 0 0 24px rgba(201,169,97,0.6);
  transform: scale(1.1);
}
.timeline-item::after {
  content: ""; position: absolute;
  left: -45px; top: 10px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: timelinePulse 2.5s ease-out infinite;
  pointer-events: none;
}
.timeline-item.in::after { opacity: 1; }
@keyframes timelinePulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(2.5); opacity: 0; }
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--brand-blue);
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
  padding-right: 16px;
  font-weight: 500;
}
.timeline-year::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .8s var(--ease-out) 0.3s;
}
.timeline-item.in .timeline-year::after { width: 40px; right: -50px; }
.timeline-item h4 {
  margin-bottom: 6px;
  font-size: 1.25rem;
}
