/* =====================================================================
   GA MODULAR — Dark editorial theme (Flexicube-inspired)
   Dark · minimal · photography-led · bold Montserrat headlines
   Brand: green #5A7F4E / timber #E5C08B on charcoal
   ===================================================================== */

:root {
  /* Surfaces */
  --bg:        #121312;   /* near-black base */
  --bg-soft:   #1a1c1a;   /* alt sections */
  --surface:   #1f211f;   /* cards */
  --surface-2: #262926;
  --line:      rgba(255,255,255,.10);
  --line-2:    rgba(255,255,255,.18);

  /* Text */
  --text:      #F3F4F1;
  --text-soft: #A7ADA3;
  --text-dim:  #767c73;

  /* Brand accents */
  --green:     #7FB069;   /* brightened green for dark bg */
  --green-2:   #5A7F4E;   /* deep brand green */
  --timber:    #E5C08B;
  --glass:     #CFE3E4;

  /* Aliases kept for existing markup */
  --ink: var(--bg); --blue: var(--green); --blue-dark: var(--green-2);
  --amber: var(--timber); --teal: #9CC18A; --coral: var(--timber);
  --cloud: var(--bg-soft); --white: #fff; --muted: var(--text-soft);

  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius: 4px; --radius-sm: 3px; --radius-lg: 6px;
  --shadow: 0 20px 50px rgba(0,0,0,.45);

  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.04; font-weight: 800; letter-spacing: -.01em; color: var(--text); text-transform: uppercase; }
h1 { font-size: clamp(2.6rem, 7vw, 6rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); letter-spacing: .01em; }
p  { color: var(--text-soft); }
a  { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 10vw, 150px); }
.section--soft { background: var(--bg-soft); }
.eyebrow {
  font-family: var(--font-display); font-weight: 600; font-size: .78rem;
  letter-spacing: .26em; text-transform: uppercase; color: var(--green);
  display: inline-block; margin-bottom: 20px;
}
.lead { font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--text-soft); max-width: 60ch; font-weight: 400; }
.center { text-align: center; margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 16px 30px; border-radius: 999px; border: 1.5px solid transparent; cursor: pointer;
  transition: all .2s ease; white-space: nowrap;
}
.btn--primary { background: var(--green); color: #10221a; }
.btn--primary:hover { background: #93c47d; }
.btn--amber { background: var(--timber); color: #2a2113; }
.btn--amber:hover { filter: brightness(1.06); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--green); color: var(--green); }
.btn--light { background: #fff; color: #161814; }
.btn--light:hover { background: #e9ebe6; }
.btn--lg { padding: 18px 38px; font-size: .86rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: transparent; transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(18,19,18,.85); backdrop-filter: blur(14px); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 86px; }
.nav__links { display: flex; align-items: center; gap: 38px; }
.nav__links a { font-weight: 500; color: var(--text); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
.nav__links a:hover, .nav__links a.active { color: var(--green); opacity: 1; }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; }
.nav__toggle span { display: block; width: 26px; height: 2px; background: var(--text); margin: 6px 0; transition: .25s; }

/* Brand lockup */
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark { height: 42px; width: auto; }
.brand__logo { height: 46px; width: auto; display: block; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,.28); }
.brand--footer .brand__logo { height: 60px; border-radius: 10px; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; letter-spacing: .06em; color: #fff; line-height: 1; text-transform: uppercase; }
.brand__name b { color: var(--green); font-weight: 800; }
.brand--footer { margin-bottom: 18px; }
.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__name b { color: var(--green); }

@media (max-width: 940px) {
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: block; }
  .nav__links.open {
    display: flex; flex-direction: column; gap: 22px;
    position: absolute; top: 86px; left: 0; right: 0;
    background: rgba(18,19,18,.97); backdrop-filter: blur(14px);
    padding: 30px var(--gutter); border-bottom: 1px solid var(--line);
  }
}

/* ---------- HERO (full-bleed) ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,19,18,.55) 0%, rgba(18,19,18,.2) 40%, rgba(18,19,18,.95) 100%); }
.hero__bg svg, .hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__inner { position: relative; z-index: 1; width: 100%; padding-bottom: clamp(60px, 9vw, 120px); padding-top: 140px; }
.hero h1 { color: #fff; max-width: 16ch; }
.hero h1 .hl { color: var(--green); }
.hero p { color: rgba(255,255,255,.82); font-size: clamp(1.05rem,1.5vw,1.3rem); margin-top: 26px; max-width: 46ch; font-weight: 400; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 40px; }
.hero__trust { display: flex; gap: 48px; margin-top: 56px; flex-wrap: wrap; }
.hero__trust b { font-family: var(--font-display); font-size: clamp(1.6rem,2.4vw,2.2rem); display: block; color: #fff; font-weight: 800; }
.hero__trust span { color: rgba(255,255,255,.6); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.scroll-cue { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 1; color: rgba(255,255,255,.5); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-cue span { width: 1px; height: 38px; background: linear-gradient(rgba(255,255,255,.6), transparent); }

/* ---------- Category tiles (HOME / RETAIL / CUSTOM style) ---------- */
.cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
@media (max-width: 820px){ .cats { grid-template-columns: 1fr; } }
.cat { position: relative; min-height: 460px; display: flex; align-items: flex-end; overflow: hidden; }
.cat__bg { position: absolute; inset: 0; transition: transform .7s ease; }
.cat__bg svg { width: 100%; height: 100%; object-fit: cover; }
.cat::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,19,18,.1), rgba(18,19,18,.85)); }
.cat:hover .cat__bg { transform: scale(1.06); }
.cat__body { position: relative; z-index: 1; padding: 40px; width: 100%; }
.cat__body h3 { color: #fff; font-size: 1.7rem; }
.cat__body p { color: rgba(255,255,255,.75); margin: 8px 0 18px; font-size: .95rem; }
.cat__more { font-family: var(--font-display); font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--green); display: inline-flex; align-items: center; gap: 8px; }
.cat__more:hover { gap: 14px; }

/* ---------- Solutions (minimal numbered) ---------- */
.solutions { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1px; margin-top: 60px; background: var(--line); border: 1px solid var(--line); }
.solution { background: var(--bg); padding: 40px 34px; transition: background .25s ease; }
.solution:hover { background: var(--surface); }
.solution__num { font-family: var(--font-display); font-weight: 800; font-size: .82rem; color: var(--green); letter-spacing: .14em; }
.solution__icon { width: 50px; height: 50px; display: grid; place-items: center; margin: 22px 0 18px; color: var(--green); }
.solution__icon svg { stroke: var(--green); }
.solution h3 { margin-bottom: 10px; color: #fff; }
.solution p { font-size: .95rem; }

/* ---------- Steps ---------- */
.journey { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 36px; margin-top: 56px; }
.step__no { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--green); color: var(--green); font-family: var(--font-display); font-weight: 800; display: grid; place-items: center; margin-bottom: 20px; }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; color: #fff; }
.step p { font-size: .94rem; }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
@media (max-width: 880px){ .split { grid-template-columns: 1fr; gap: 40px; } }
.check-list { list-style: none; margin-top: 28px; display: grid; gap: 16px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--text); font-weight: 400; }
.check-list svg { flex: 0 0 auto; margin-top: 3px; stroke: var(--green); }
.media-frame { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); }

/* ---------- Gallery ---------- */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin: 34px 0 40px; }
.filter-bar button {
  font-family: var(--font-display); font-weight: 600; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 11px 22px; border-radius: 999px; border: 1.5px solid var(--line-2);
  background: transparent; color: var(--text); cursor: pointer; transition: .18s;
}
.filter-bar button:hover { border-color: var(--green); color: var(--green); }
.filter-bar button.active { background: var(--green); color: #10221a; border-color: var(--green); }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 2px; background: var(--line); border: 1px solid var(--line); }
.card { background: var(--bg); overflow: hidden; transition: background .25s ease; }
.card:hover { background: var(--surface); }
.card__media { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.card__media svg { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .card__media svg { transform: scale(1.05); }
.card__body { padding: 26px 26px 30px; }
.card__tag { display: inline-block; font-family: var(--font-display); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; font-weight: 600; margin-bottom: 14px; }
.tag--new { background: rgba(127,176,105,.16); color: var(--green); }
.tag--refurb { background: rgba(156,193,138,.16); color: #9CC18A; }
.tag--sourced { background: rgba(229,192,139,.18); color: var(--timber); }
.card h3 { font-size: 1.2rem; margin-bottom: 6px; color: #fff; }
.card__meta { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; }
.card__price { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: #fff; }
.card__price small { font-weight: 500; font-size: .72rem; color: var(--text-dim); }
.card__spec { display: flex; gap: 16px; font-size: .82rem; color: var(--text-dim); margin-top: 8px; flex-wrap: wrap; }

/* ---------- Stats band ---------- */
.band { background: var(--bg-soft); border-block: 1px solid var(--line); }
.band .stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px,1fr)); gap: 40px; text-align: center; }
.band .stats b { font-family: var(--font-display); font-size: clamp(2.2rem,4vw,3.4rem); display: block; color: var(--green); font-weight: 800; }
.band .stats span { color: var(--text-soft); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }

/* ---------- Instagram strip ---------- */
.ig-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px; }
@media (max-width: 820px){ .ig-strip { grid-template-columns: repeat(3, 1fr); } }
.ig-tile { aspect-ratio: 1; position: relative; overflow: hidden; }
.ig-tile svg { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ig-tile:hover svg { transform: scale(1.08); }
.ig-tile::after { content: "\f32d"; }

/* ---------- CTA ---------- */
.cta-box { background: var(--green-2); border-radius: var(--radius-lg); padding: clamp(44px, 7vw, 90px); text-align: center; color: #fff; }
.cta-box h2 { color: #fff; }
.cta-box p { color: rgba(255,255,255,.88); margin: 18px auto 32px; max-width: 52ch; font-weight: 400; }

/* ---------- Big statement ---------- */
.statement { text-align: center; }
.statement h2 { font-size: clamp(2rem, 5vw, 4.4rem); max-width: 18ch; margin-inline: auto; }
.statement h2 em { font-style: normal; color: var(--green); }

/* ---------- Footer ---------- */
.footer { background: #0d0e0d; color: var(--text-soft); padding-block: 80px 36px; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; }
@media (max-width: 780px){ .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
.footer h4 { color: #fff; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px; }
.footer a { display: block; padding: 6px 0; color: var(--text-soft); font-size: .92rem; }
.footer a:hover { color: var(--green); }
.footer__bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .82rem; color: var(--text-dim); }
.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; padding: 0; }
.social-row a:hover { background: var(--green); border-color: var(--green); }
.social-row a:hover svg { stroke: #10221a; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding-block: clamp(150px, 16vw, 220px) clamp(40px,6vw,70px); text-align: center; border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.page-hero p { margin: 20px auto 0; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Badges ---------- */
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.badge { font-size: .8rem; font-weight: 500; color: var(--text); background: var(--surface); border: 1px solid var(--line-2); padding: 8px 16px; border-radius: 999px; }

/* =====================================================================
   Chatbot ("Modi") — dark
   ===================================================================== */
#gaChatFab { position: fixed; right: 24px; bottom: 24px; z-index: 90; width: 60px; height: 60px; border-radius: 50%; border: 0; cursor: pointer; background: var(--green); box-shadow: 0 12px 30px rgba(0,0,0,.5); display: grid; place-items: center; transition: transform .2s ease; }
#gaChatFab svg { stroke: #10221a; }
#gaChatFab:hover { transform: scale(1.06); }
#gaChatFab.open { background: var(--surface-2); }
#gaChatFab.open svg { stroke: #fff; }
.ga-fab-dot { position: absolute; top: 12px; right: 12px; width: 12px; height: 12px; border-radius: 50%; background: var(--timber); border: 2px solid var(--bg); }

.ga-chat { position: fixed; right: 24px; bottom: 96px; z-index: 90; width: min(380px, calc(100vw - 32px)); height: min(580px, calc(100vh - 130px)); background: var(--surface); border-radius: 10px; box-shadow: var(--shadow); display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line-2); animation: gaPop .22s ease; }
.ga-chat[hidden] { display: none; }
@keyframes gaPop { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.ga-chat__head { background: #0d0e0d; color: #fff; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.ga-chat__id { display: flex; align-items: center; gap: 12px; }
.ga-chat__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: #10221a; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: .85rem; }
.ga-chat__id b { font-family: var(--font-display); display: block; font-size: 1rem; }
.ga-chat__id small { color: var(--text-dim); font-size: .76rem; }
#gaChatClose { background: none; border: 0; color: #fff; font-size: 1.7rem; line-height: 1; cursor: pointer; opacity: .75; }
#gaChatClose:hover { opacity: 1; }
.ga-chat__body { flex: 1; overflow-y: auto; padding: 18px; background: var(--bg); display: flex; flex-direction: column; gap: 10px; }
.ga-msg { max-width: 82%; padding: 11px 15px; border-radius: 14px; font-size: .92rem; line-height: 1.5; animation: gaPop .2s ease; }
.ga-msg--bot { background: var(--surface-2); color: var(--text); border-bottom-left-radius: 4px; align-self: flex-start; }
.ga-msg--user { background: var(--green); color: #10221a; border-bottom-right-radius: 4px; align-self: flex-end; font-weight: 500; }
.ga-chat__foot { padding: 14px; border-top: 1px solid var(--line); background: var(--surface); }
.ga-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.ga-opt { font-family: var(--font-body); font-size: .86rem; font-weight: 500; cursor: pointer; padding: 9px 14px; border-radius: 999px; border: 1.5px solid var(--line-2); background: transparent; color: var(--text); transition: .15s; text-decoration: none; }
.ga-opt:hover { border-color: var(--green); color: var(--green); }
.ga-opt--primary { background: var(--timber); border-color: var(--timber); color: #2a2113; font-weight: 600; }
.ga-inputbar { display: flex; gap: 8px; }
.ga-inputbar input { flex: 1; padding: 12px 14px; border-radius: 8px; border: 1.5px solid var(--line-2); background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: .95rem; outline: none; }
.ga-inputbar input:focus { border-color: var(--green); }
.ga-send { width: 46px; border: 0; border-radius: 8px; background: var(--green); cursor: pointer; display: grid; place-items: center; }
.ga-send svg { stroke: #10221a; }
.ga-summary { font-size: .85rem; color: var(--text); margin-bottom: 12px; }
.ga-summary b { font-family: var(--font-display); color: #fff; }
.ga-summary ul { list-style: none; margin-top: 8px; display: grid; gap: 4px; }
.ga-summary li { display: flex; justify-content: space-between; gap: 10px; padding: 4px 0; border-bottom: 1px dashed var(--line); }
.ga-summary li span { color: var(--text-dim); }

/* ---------- Photo fills ---------- */
.cat__bg img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s ease; }
.card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.ig-tile:hover img { transform: scale(1.08); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
