/* ==========================================================================
   EDAKKARA CONSTRUCTIONS — Home (clean modern real-estate style)
   ========================================================================== */

:root {
  --bg: #EEF2F4;
  --surface: #FFFFFF;
  --card: #E3EDF1;
  --card-2: #EAF0F2;
  --ink: #15242E;
  --ink-2: #33454F;
  --muted: #63737C;
  --line: #DDE5E9;
  --red: #C8102E;
  --red-d: #A80D25;
  --navy: #15242E;
  --cream: #F4F7F8;
  --r: 20px;
  --r-lg: 30px;
  --r-xl: 42px;
  --pill: 999px;
  --sora: "Sora", "Manrope", sans-serif;
  --sans: "Manrope", -apple-system, "Segoe UI", sans-serif;
  --shadow: 0 26px 60px -30px rgba(21,36,46,.42);
  --shadow-sm: 0 12px 30px -18px rgba(21,36,46,.3);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans); font-size: 1rem; line-height: 1.7; color: var(--ink-2);
  background: var(--bg); -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--red); color: #fff; padding: .75rem 1.25rem; }
.skip-link:focus { left: 0; }

h1, h2, h3, h4 { font-family: var(--sora); color: var(--ink); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; }

.wrap { max-width: 78rem; margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }

/* labels / eyebrows */
.eyebrow { display: inline-flex; align-items: center; gap: .55rem; font-size: .78rem; font-weight: 700; letter-spacing: .02em; color: var(--ink); margin-bottom: 1.2rem; }
.eyebrow .ic { display: grid; place-items: center; width: 1.7rem; height: 1.7rem; border-radius: 8px; background: var(--red); color: #fff; }
.eyebrow .ic svg { width: 1rem; height: 1rem; }

.h-hero { font-family: var(--sora); font-weight: 800; text-transform: uppercase; letter-spacing: .01em; line-height: 1.02; font-size: clamp(2.1rem, 6vw, 4.6rem); }
.h-sec { font-size: clamp(1.7rem, 3.6vw, 2.9rem); font-weight: 700; }
.h-sec .accent { color: var(--red); }
.lead { color: var(--muted); font-size: clamp(1rem, 1.3vw, 1.12rem); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: .7rem; padding: .82rem 1.1rem .82rem 1.5rem; border-radius: var(--pill); font-weight: 700; font-size: .92rem; letter-spacing: -0.01em; transition: all .3s var(--ease); border: 1px solid transparent; }
.btn .chip { display: grid; place-items: center; width: 2.1rem; height: 2.1rem; border-radius: 50%; flex: none; transition: all .3s var(--ease); }
.btn .chip svg { width: 1rem; height: 1rem; }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary .chip { background: rgba(255,255,255,.2); color: #fff; }
.btn-primary:hover { background: var(--navy); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark .chip { background: #fff; color: var(--navy); }
.btn-dark:hover { background: var(--red); }
.btn-dark:hover .chip { color: var(--red); }
.btn-light { background: var(--surface); color: var(--ink); border-color: var(--line); padding: .82rem 1.5rem; }
.btn-light:hover { background: var(--ink); color: #fff; }
.btn-ghost { border: 1px solid rgba(255,255,255,.5); color: #fff; padding: .82rem 1.6rem; }
.btn-ghost:hover { background: rgba(255,255,255,.14); }
.icon-btn { display: grid; place-items: center; width: 3.1rem; height: 3.1rem; border-radius: 50%; background: var(--surface); color: var(--ink); border: 1px solid var(--line); transition: all .3s var(--ease); flex: none; }
.icon-btn:hover { background: var(--red); color: #fff; border-color: var(--red); transform: rotate(45deg); }
.icon-btn svg { width: 1.2rem; height: 1.2rem; }

/* ---------- Header ---------- */
.hdr { position: fixed; top: 0; left: 0; right: 0; z-index: 90; transition: all .35s var(--ease); padding-block: 1.1rem; }
.hdr .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; max-width: 84rem; }
.hdr .logo img { width: clamp(140px, 16vw, 176px); filter: drop-shadow(0 2px 9px rgba(0,0,0,.55)); }
.hdr .logo .w { display: block; }
.hdr .logo .c { display: none; }
.hdr.scrolled .logo img, .hdr.hdr-solid .logo img { filter: none; }
.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2.1rem); }
.nav a.link { font-size: .92rem; font-weight: 600; color: rgba(255,255,255,.9); position: relative; }
.nav a.link::after { content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 100%; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav a.link:hover::after, .nav a.link.active::after { transform: scaleX(1); }
.hdr-cta { display: flex; align-items: center; gap: .7rem; }
.hdr.scrolled { background: rgba(255,255,255,.9); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); box-shadow: 0 1px 0 var(--line); padding-block: .7rem; }
.hdr.scrolled .logo .w { display: none; }
.hdr.scrolled .logo .c { display: block; }
.hdr.scrolled .nav a.link { color: var(--ink); }
.burger { display: none; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.16); position: relative; z-index: 101; }
.burger span { position: absolute; left: 13px; right: 13px; height: 2px; background: #fff; transition: all .3s var(--ease); }
.burger span:nth-child(1) { top: 18px; } .burger span:nth-child(2) { top: 23px; } .burger span:nth-child(3) { top: 28px; }
.hdr.scrolled .burger { background: var(--card); } .hdr.scrolled .burger span { background: var(--ink); }
body.menu-open .burger span { background: #fff; }
body.menu-open .burger span:nth-child(1) { top: 23px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

.mobile-nav { position: fixed; inset: 0; z-index: 100; background: var(--navy); display: flex; flex-direction: column; justify-content: center; padding: 2rem clamp(1.5rem,6vw,3rem); gap: .2rem; opacity: 0; visibility: hidden; transition: all .4s var(--ease); }
body.menu-open .mobile-nav { opacity: 1; visibility: visible; } body.menu-open { overflow: hidden; }
.mobile-nav a.m-link { font-family: var(--sora); font-size: clamp(1.9rem, 8vw, 2.6rem); font-weight: 700; color: #fff; padding-block: .5rem; border-bottom: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; align-items: center; }
.mobile-nav a.m-link::after { content: "→"; color: var(--red); }
.mobile-nav .m-actions { margin-top: 1.8rem; display: flex; gap: .8rem; flex-wrap: wrap; }

/* ---------- Hero ---------- */
.hero { padding: .5rem .5rem 0; }
.hero-card { position: relative; border-radius: var(--r-xl); overflow: hidden; min-height: min(92vh, 820px); display: flex; align-items: flex-end; isolation: isolate; }
.hero-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; animation: heroZoom 12s var(--ease) forwards; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(105deg, rgba(8,14,20,.74) 0%, rgba(8,14,20,.44) 38%, rgba(8,14,20,.12) 64%, transparent 82%),
  linear-gradient(180deg, rgba(8,14,20,.45) 0%, transparent 26%, transparent 52%, rgba(8,14,20,.82) 100%); }
.hero-inner { width: 100%; padding: clamp(1.5rem, 4vw, 3rem); padding-top: clamp(7rem, 14vw, 10rem); color: #fff; }
.hero-top { max-width: 60rem; }
.hero-h { color: #fff; margin-bottom: 1.3rem; text-shadow: 0 2px 30px rgba(0,0,0,.3); }
.hero-h .thin { font-weight: 300; -webkit-text-stroke: 1.4px rgba(255,255,255,.96); -webkit-text-fill-color: rgba(255,255,255,.18); color: rgba(255,255,255,.18); text-shadow: 0 2px 18px rgba(0,0,0,.55); }
.hero-sub { max-width: 34rem; color: rgba(255,255,255,.9); font-size: 1.02rem; margin-bottom: 2rem; }
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.play-btn { display: inline-flex; align-items: center; gap: .8rem; color: #fff; font-weight: 600; }
.play-btn .pc { display: grid; place-items: center; width: 3.2rem; height: 3.2rem; border-radius: 50%; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.4); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); transition: all .3s var(--ease); }
.play-btn:hover .pc { background: #fff; color: var(--navy); }
.play-btn .pc svg { width: 1.1rem; height: 1.1rem; }

.hero-badges { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; flex-wrap: wrap; margin-top: clamp(2.5rem, 6vw, 4.5rem); }
.badge-glass { display: inline-flex; align-items: center; gap: .8rem; padding: .7rem 1.2rem .7rem .7rem; border-radius: var(--pill); background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.badge-glass .bc { display: grid; place-items: center; width: 2.4rem; height: 2.4rem; border-radius: 50%; background: var(--red); color: #fff; flex: none; }
.badge-glass .bc svg { width: 1.1rem; height: 1.1rem; }
.badge-glass b { display: block; font-family: var(--sora); font-size: .98rem; color: #fff; line-height: 1.1; }
.badge-glass span { font-size: .74rem; color: rgba(255,255,255,.75); }
.trust { display: flex; align-items: center; gap: .8rem; }
.trust .dots { display: flex; }
.trust .dots i { width: 2.2rem; height: 2.2rem; border-radius: 50%; border: 2px solid rgba(255,255,255,.6); margin-left: -.7rem; background-size: cover; background-position: center; }
.trust .dots i:first-child { margin-left: 0; }
.trust b { font-family: var(--sora); color: #fff; font-size: 1.05rem; display: block; line-height: 1.1; }
.trust span { font-size: .76rem; color: rgba(255,255,255,.8); }

/* ---------- About + stats ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: stretch; }
.about-img { border-radius: var(--r-lg); overflow: hidden; min-height: 22rem; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-panel { background: var(--card); border-radius: var(--r-lg); padding: clamp(1.6rem, 3vw, 2.6rem); display: flex; flex-direction: column; }
.about-panel .h-sec { margin-bottom: 1.4rem; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding-block: 1.6rem; border-block: 1px solid rgba(21,36,46,.1); margin-bottom: 1.5rem; }
.stat b { font-family: var(--sora); font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.5rem); color: var(--ink); display: block; line-height: 1; }
.stat span { font-size: .82rem; color: var(--muted); }
.about-panel p { font-size: .96rem; margin-bottom: 1.8rem; }
.about-panel .btn { align-self: flex-start; margin-top: auto; }

.about-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; margin-bottom: 2.2rem; flex-wrap: wrap; }
.about-head .h-sec { max-width: 22ch; }

/* ---------- Inquiry card ---------- */
.inquiry { background: var(--surface); border-radius: var(--r-xl); overflow: hidden; display: grid; grid-template-columns: 1.4fr 1fr; box-shadow: var(--shadow-sm); }
.inquiry-body { padding: clamp(1.8rem, 4vw, 3.2rem); display: flex; flex-direction: column; justify-content: center; }
.inquiry-body .h-sec { margin: .3rem 0 1rem; }
.inquiry-body p { margin-bottom: 1.8rem; max-width: 42ch; }
.inquiry-body .btn { align-self: flex-start; }
.inquiry-media { position: relative; min-height: 20rem; background: var(--card); }
.inquiry-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Projects ---------- */
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.proj-card { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 24rem; display: flex; isolation: isolate; }
.proj-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1s var(--ease); }
.proj-card:hover img { transform: scale(1.06); }
.proj-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10,18,24,.15) 0%, transparent 40%, rgba(10,18,24,.82) 100%); }
.proj-card .p-top { position: absolute; top: 1rem; left: 1rem; right: 1rem; display: flex; justify-content: space-between; align-items: center; }
.tag { padding: .38rem .9rem; border-radius: var(--pill); background: rgba(255,255,255,.9); color: var(--ink); font-size: .74rem; font-weight: 700; }
.proj-card .p-body { margin-top: auto; padding: 1.4rem; color: #fff; width: 100%; }
.proj-card .p-body h3 { color: #fff; font-size: 1.35rem; margin-bottom: .5rem; }
.proj-meta { display: flex; flex-wrap: wrap; gap: .4rem 1.1rem; font-size: .8rem; color: rgba(255,255,255,.82); margin-bottom: 1rem; }
.proj-meta span { display: inline-flex; align-items: center; gap: .35rem; }
.proj-card .btn-light { padding: .6rem 1.2rem; font-size: .82rem; }
.icon-btn-sm { width: 2.6rem; height: 2.6rem; background: rgba(255,255,255,.9); color: var(--ink); border: 0; }
.icon-btn-sm:hover { background: var(--red); color: #fff; }

/* ---------- Services strip ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.9rem, 1.6vw, 1.3rem); }
.svc-tile { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1.6rem; transition: all .3s var(--ease); }
.svc-tile:hover { background: var(--navy); transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.svc-tile:hover h3, .svc-tile:hover p { color: #fff; }
.svc-tile:hover .svc-ic { background: var(--red); color: #fff; }
.svc-ic { display: grid; place-items: center; width: 3rem; height: 3rem; border-radius: 14px; background: var(--card); color: var(--red); margin-bottom: 1.1rem; transition: all .3s var(--ease); }
.svc-ic svg { width: 1.4rem; height: 1.4rem; }
.svc-tile h3 { font-size: 1.12rem; margin-bottom: .4rem; transition: color .3s; }
.svc-tile p { font-size: .88rem; color: var(--muted); transition: color .3s; }

/* ---------- Reviews ---------- */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.rev-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
.rev-stars { color: var(--red); letter-spacing: .1em; font-size: .95rem; }
.rev-card p { color: var(--ink-2); font-size: .98rem; }
.rev-card cite { font-style: normal; font-weight: 700; color: var(--ink); font-size: .86rem; margin-top: auto; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; border-radius: var(--r-xl); overflow: hidden; padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 4vw, 4rem); text-align: center; color: #fff; isolation: isolate; }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(21,36,46,.55), rgba(21,36,46,.78)); }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3.2rem); max-width: 20ch; margin: 0 auto 1rem; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 40ch; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: rgba(255,255,255,.7); border-radius: var(--r-xl) var(--r-xl) 0 0; margin-top: 1rem; }
.footer-cta { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; padding-block: clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-cta h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.6rem); max-width: 16ch; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem; padding-block: clamp(2.5rem, 5vw, 4rem); }
.footer-grid .f-logo { width: 190px; margin-bottom: 1.2rem; }
.footer-grid p { font-size: .92rem; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer li { margin-bottom: .6rem; } .footer li a { font-size: .92rem; transition: color .25s; } .footer li a:hover { color: #fff; }
.footer .f-contact a { color: #fff; }
.footer .f-phone { font-family: var(--sora); font-size: 1.4rem; display: inline-block; margin-bottom: .8rem; }
.socials { display: flex; gap: .6rem; margin-top: 1.2rem; }
.socials a { width: 2.6rem; height: 2.6rem; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); transition: all .3s var(--ease); color: #fff; }
.socials a:hover { background: var(--red); }
.socials svg { width: 1.05rem; height: 1.05rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.4rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .84rem; }

/* ---------- Floating WA + mobile bar ---------- */
.wa-float { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 80; width: 3.4rem; height: 3.4rem; border-radius: 50%; background: #25A75A; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37,167,90,.6); transition: transform .3s var(--ease); }
.wa-float:hover { transform: translateY(-3px) scale(1.05); }
.wa-float svg { width: 1.7rem; height: 1.7rem; }
.mobile-bar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 85; grid-template-columns: 1fr 1fr; background: var(--navy); }
.mobile-bar a { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: 1rem; font-weight: 700; font-size: .86rem; color: #fff; }
.mobile-bar a.bar-wa { background: #1E8E4A; }
.mobile-bar svg { width: 1.1rem; height: 1.1rem; }

/* ---------- Reveal ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-1 { transition-delay: .1s; } .rv-2 { transition-delay: .2s; } .rv-3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; } .hero-card > img { animation: none; } }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img { min-height: 16rem; }
  .inquiry { grid-template-columns: 1fr; }
  .inquiry-media { min-height: 15rem; order: -1; }
  .proj-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .hdr-cta .btn-light { display: none; }
  .burger { display: block; }
  .hero { padding: .35rem .35rem 0; }
  .hero-card { border-radius: 26px; min-height: 88vh; }
  .hero-badges { flex-direction: column; align-items: stretch; gap: .7rem; }
  .badge-glass { width: fit-content; }
  .proj-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer { border-radius: 26px 26px 0 0; }
  .stat-row { gap: .5rem; }
  .mobile-bar { display: grid; }
  .wa-float { display: none; }
  body { padding-bottom: 3.4rem; }
  .cta-band { border-radius: 26px; }
}
@media (max-width: 400px) {
  .stat b { font-size: 1.5rem; }
  .stat span { font-size: .72rem; }
}

/* ==========================================================================
   INNER PAGES
   ========================================================================== */

/* solid header for light inner pages */
.hdr.hdr-solid { background: rgba(255,255,255,.92); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); box-shadow: 0 1px 0 var(--line); }
.hdr.hdr-solid .logo .w { display: none; } .hdr.hdr-solid .logo .c { display: block; }
.hdr.hdr-solid .nav a.link { color: var(--ink); }
.hdr.hdr-solid .burger { background: var(--card); } .hdr.hdr-solid .burger span { background: var(--ink); }
body.menu-open .hdr.hdr-solid .burger span { background: #fff; }

/* page head */
.page-head { padding-top: clamp(7.5rem, 13vw, 10.5rem); padding-bottom: clamp(1.6rem, 3vw, 2.6rem); }
.page-head h1 { font-size: clamp(2.2rem, 5.6vw, 4.1rem); letter-spacing: -0.03em; max-width: 18ch; }
.page-head .lead { max-width: 46rem; margin-top: 1.1rem; }

.feature-img { border-radius: var(--r-xl); overflow: hidden; }
.feature-img img { width: 100%; height: clamp(15rem, 40vw, 30rem); object-fit: cover; }

/* split content */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3.5vw, 3.5rem); align-items: center; }
.split-img { border-radius: var(--r-lg); overflow: hidden; align-self: stretch; }
.split-img img { width: 100%; height: 100%; min-height: 20rem; object-fit: cover; }
.split-img.tall img { min-height: 26rem; }
.prose p + p { margin-top: 1.1rem; }
.prose p { color: var(--ink-2); }

.card-soft { background: var(--card); border-radius: var(--r-lg); padding: clamp(1.6rem, 3.2vw, 2.6rem); }
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.6rem, 3vw, 2.4rem); }

.statement { font-family: var(--sora); font-weight: 700; font-size: clamp(1.4rem, 3vw, 2.2rem); line-height: 1.3; color: var(--ink); text-align: center; max-width: 48rem; margin-inline: auto; letter-spacing: -0.02em; }
.statement .accent { color: var(--red); }

/* stats full band */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat-band .stat { background: var(--card); border-radius: var(--r); padding: 1.5rem; text-align: center; }

/* values */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.9rem, 1.6vw, 1.2rem); }
.value-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.7rem; }
.value-card .vn { font-family: var(--sora); font-weight: 800; color: var(--red); font-size: 1.1rem; display: block; margin-bottom: .8rem; }
.value-card h3 { font-size: 1.12rem; }

/* services full grid */
.svc-grid.ten { grid-template-columns: repeat(3, 1fr); }
.svc-tile .svc-more { display: inline-flex; margin-top: 1rem; font-size: .82rem; font-weight: 700; color: var(--red); }

/* included strip */
.included { display: flex; flex-wrap: wrap; gap: .8rem 2rem; justify-content: center; }
.included span { display: inline-flex; align-items: center; gap: .55rem; font-weight: 600; color: var(--ink); font-size: .92rem; }
.included span::before { content: ""; width: 1.4rem; height: 1.4rem; border-radius: 50%; background: var(--red); flex: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

/* filter tabs */
.filter-tabs { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.filter-tabs button { padding: .55rem 1.2rem; border-radius: var(--pill); background: var(--surface); border: 1px solid var(--line); font-weight: 600; font-size: .88rem; color: var(--ink-2); transition: all .25s var(--ease); }
.filter-tabs button.active, .filter-tabs button:hover { background: var(--red); border-color: var(--red); color: #fff; }
.proj-card.hidden { display: none; }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.7rem, 1.5vw, 1.1rem); }
.gallery a { border-radius: var(--r); overflow: hidden; display: block; }
.gallery a img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .8s var(--ease); }
.gallery a.tall img { aspect-ratio: 3/4; }
.gallery a:hover img { transform: scale(1.06); }
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(12,18,22,.95); display: none; align-items: center; justify-content: center; padding: 3.5rem 1rem 4.5rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1080px, 94vw); max-height: 82vh; border-radius: var(--r); }
.lightbox button { position: absolute; color: #fff; font-size: 1.5rem; padding: 1rem; opacity: .8; }
.lightbox button:hover { opacity: 1; }
.lb-close { top: .6rem; right: 1rem; } .lb-prev { left: .5rem; top: 50%; transform: translateY(-50%); } .lb-next { right: .5rem; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 1.3rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: .8rem; letter-spacing: .1em; }

/* meta card */
.meta-card { background: var(--card); border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 2rem); display: flex; flex-wrap: wrap; gap: 1.2rem 2.6rem; }
.meta-card div span { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); display: block; }
.meta-card div b { font-family: var(--sora); font-size: 1.1rem; color: var(--ink); }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(1.5rem, 3vw, 3rem); align-items: start; }
.contact-line { padding-block: 1.2rem; border-bottom: 1px solid var(--line); }
.contact-line span { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: .3rem; }
.contact-line a.big, .contact-line strong { font-family: var(--sora); font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--ink); font-weight: 700; }
.contact-line a.big:hover { color: var(--red); }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.6rem, 3.5vw, 2.6rem); }
.form-card h3 { font-size: 1.4rem; margin-bottom: 1.4rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .8rem; font-weight: 700; color: var(--ink); margin-bottom: .45rem; }
.field input, .field select, .field textarea { width: 100%; padding: .85rem 1rem; font: inherit; font-size: .96rem; border: 1px solid var(--line); border-radius: 12px; background: var(--cream); color: var(--ink); -webkit-appearance: none; appearance: none; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2363737C' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(200,16,46,.1); background: #fff; }
.field textarea { min-height: 8rem; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-card .btn { width: 100%; justify-content: center; }
.form-note { font-size: .84rem; color: var(--muted); margin-top: .9rem; text-align: center; }

/* faq */
.faq { max-width: 50rem; margin-inline: auto; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); margin-bottom: .8rem; padding: 0 1.4rem; }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; font-family: var(--sora); font-weight: 700; font-size: 1.02rem; color: var(--ink); padding: 1.2rem 0; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--red); transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 1.3rem; color: var(--ink-2); }

.reviews-wall { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.4rem); }

@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; }
  .split-img img { min-height: 15rem; }
  .stat-band { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid.ten { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .reviews-wall { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .stat-band { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .svc-grid.ten { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Premium floating Call / WhatsApp bar + WA float
   ========================================================================== */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 85;
  grid-template-columns: 1fr 1fr; gap: .55rem;
  padding: .5rem .7rem calc(.6rem + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent, rgba(238,242,244,.85) 55%);
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .72rem .9rem; border-radius: var(--pill);
  font-family: var(--sans); font-weight: 700; font-size: .95rem; letter-spacing: -0.01em;
  box-shadow: 0 16px 34px -12px rgba(21,36,46,.5);
  transition: transform .18s var(--ease), box-shadow .25s var(--ease);
}
.mobile-bar a:active { transform: scale(.955); }
.mobile-bar svg {
  width: 2.05rem; height: 2.05rem; padding: .52rem; border-radius: 50%;
  flex: none; box-sizing: border-box;
}
.mobile-bar a.bar-call {
  background: rgba(21,36,46,.94);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  color: #fff; border: 1px solid rgba(255,255,255,.1);
}
.mobile-bar a.bar-call svg { background: var(--red); color: #fff; box-shadow: 0 6px 14px -4px rgba(200,16,46,.7); }
.mobile-bar a.bar-wa {
  background: linear-gradient(135deg, #2CD36F 0%, #1E9E4F 100%); color: #fff;
  box-shadow: 0 16px 34px -10px rgba(37,167,90,.6);
}
.mobile-bar a.bar-wa svg { background: rgba(255,255,255,.22); color: #fff; }

/* body clearance for the taller floating bar */
@media (max-width: 720px) { body { padding-bottom: 4.6rem; } }

/* Desktop WhatsApp float: pulse ring */
.wa-float { position: fixed; overflow: visible; }
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,167,90,.55); animation: waPulse 2.6s var(--ease) infinite;
}
@keyframes waPulse { to { box-shadow: 0 0 0 18px rgba(37,167,90,0); } }
@media (prefers-reduced-motion: reduce) { .wa-float::before { animation: none; } }

/* ==========================================================================
   BUILD REVEAL — scroll-scrub "blueprint -> finished home"
   ========================================================================== */
body { overflow-x: visible; }  /* no horizontal overflow exists; keeps page scroll + position:sticky working */

.build-reveal { position: relative; height: 240vh; }
.br-sticky { position: sticky; top: 0; height: 100svh; display: flex; align-items: center; padding: 0 clamp(.5rem, 2vw, 1rem); }
.br-stage {
  position: relative; margin-inline: auto;
  width: min(78rem, calc(84svh * 4 / 3), calc(100% - .8rem));
  aspect-ratio: 4 / 3;              /* matches the photo so nothing is cropped */
  border-radius: var(--r-xl); overflow: hidden;
  background: #0e1c28; box-shadow: var(--shadow);
}
.br-photo { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; clip-path: inset(100% 0 0 0); will-change: clip-path; }
.br-blue { position: absolute; inset: 0; z-index: 1; background: radial-gradient(130% 110% at 50% 0%, #244056, #0c1822 75%); will-change: opacity; }
.br-blue::before { content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 42px 42px; -webkit-mask-image: radial-gradient(120% 100% at 50% 40%, #000 55%, transparent); mask-image: radial-gradient(120% 100% at 50% 40%, #000 55%, transparent); }
.br-draw { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; }
.br-draw path { fill: none; stroke: rgba(255,255,255,.92); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1; stroke-dashoffset: 1; filter: drop-shadow(0 0 6px rgba(120,180,255,.35)); }
.br-stage::after { content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none; background: linear-gradient(180deg, rgba(8,14,20,.32) 0%, transparent 22%); }
.br-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 4; padding: clamp(4rem, 11vw, 7rem) clamp(1.5rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem); color: #fff; background: linear-gradient(180deg, transparent, rgba(8,14,20,.82) 60%); will-change: opacity; }
.br-cap .eyebrow { color: #fff; }
.br-cap h2 { color: #fff; max-width: 20ch; }
.br-cap h2 .accent { color: #FF8A97; }
.br-steps { display: flex; gap: .5rem; margin-top: 1.2rem; flex-wrap: wrap; }
.br-steps span { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); padding: .4rem .9rem; border: 1px solid rgba(255,255,255,.22); border-radius: var(--pill); transition: all .35s var(--ease); }
.br-steps span.on { color: #fff; background: var(--red); border-color: var(--red); box-shadow: 0 8px 20px -6px rgba(200,16,46,.6); }

@media (max-width: 720px) { .build-reveal { height: 190vh; } }
@media (prefers-reduced-motion: reduce) {
  .br-photo { clip-path: inset(0) !important; }
  .br-blue, .br-draw { opacity: 0 !important; }
  .br-cap { opacity: 1 !important; }
  .build-reveal { height: auto; } .br-sticky { position: static; height: auto; padding-block: .5rem; }
}

/* ==========================================================================
   SITE-WIDE ANIMATION LAYER
   ========================================================================== */
.rv { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .9s var(--ease); }
.rv.in { opacity: 1; transform: none; }

.rv-img { overflow: hidden; }
.rv-img img { clip-path: inset(0 0 101% 0); transform: scale(1.12); transition: clip-path 1.05s var(--ease), transform 1.2s var(--ease); }
.rv-img.in img { clip-path: inset(0 0 0 0); transform: none; }

.wsplit .w { display: inline-block; opacity: 0; transform: translateY(.62em); transition: opacity .55s var(--ease), transform .66s var(--ease); }
.wsplit.in .w { opacity: 1; transform: none; }

/* hover motion */
.proj-card { transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.proj-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value-card, .rev-card { transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s var(--ease); }
.value-card:hover, .rev-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.btn:hover .chip { transform: scale(1.12); }
.about-img:hover img, .feature-img:hover img, .split-img:hover img { transform: scale(1.05); }
.inquiry-media img { transition: transform 1.2s var(--ease); }
.inquiry:hover .inquiry-media img { transform: scale(1.05); }

/* scroll progress bar */
#progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 95; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--red), #ff8a5a); }

/* gentle hero badge float (desktop only) */
@media (hover: hover) and (min-width: 721px) {
  .badge-glass { animation: floaty 5.5s ease-in-out infinite; }
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

@media (prefers-reduced-motion: reduce) {
  .rv, .rv-img img, .wsplit .w { opacity: 1 !important; transform: none !important; clip-path: none !important; transition: none !important; }
  .badge-glass { animation: none !important; }
  #progress { display: none; }
}

/* ongoing / empty projects state */
.proj-empty { text-align: center; padding: clamp(2.5rem, 6vw, 4.5rem) 1rem; }
.proj-empty .pe-ic { display: inline-grid; place-items: center; width: 4rem; height: 4rem; border-radius: 50%; background: var(--card); color: var(--red); margin-bottom: 1.2rem; }
.proj-empty .pe-ic svg { width: 2rem; height: 2rem; }
.proj-empty h3 { font-size: 1.5rem; margin-bottom: .6rem; }
.proj-empty p { color: var(--muted); max-width: 42ch; margin: 0 auto 1.6rem; }

/* "Ongoing / live" project tag */
.proj-card .tag.tag-live { background: var(--red); color: #fff; display: inline-flex; align-items: center; gap: .4rem; }
.proj-card .tag.tag-live::before { content: ""; width: .5rem; height: .5rem; border-radius: 50%; background: #fff; animation: livePulse 1.6s ease-in-out infinite; }
@keyframes livePulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.65); } }
@media (prefers-reduced-motion: reduce) { .proj-card .tag.tag-live::before { animation: none; } }
