/* =========================================================
   AVANI INTERLOCK BRICKS — Premium Stylesheet
   Palette: warm ink, terracotta, clay-gold, cream/sand
   ========================================================= */

:root {
  /* Colour */
  --ink: #18120d;
  --ink-soft: #2b201a;
  --ink-2: #3a2c23;
  --paper: #fbf7f1;
  --cream: #f4ece0;
  --sand: #e9ddc9;
  --sand-2: #ddcdb3;
  --terracotta: #c0492b;
  --terracotta-deep: #9f3a20;
  --clay: #d98a3d;
  --gold: #c79a4b;
  --stone: #6f655a;
  --muted: #8c8175;
  --line: rgba(24, 18, 13, 0.12);
  --line-soft: rgba(24, 18, 13, 0.07);
  --white: #ffffff;
  --wa: #25d366;

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing / layout */
  --container: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;

  /* Shadow */
  --shadow-sm: 0 2px 10px rgba(24, 18, 13, 0.06);
  --shadow-md: 0 14px 40px rgba(24, 18, 13, 0.10);
  --shadow-lg: 0 30px 70px rgba(24, 18, 13, 0.18);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.25s var(--ease);
  --t: 0.45s var(--ease);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: clamp(15px, 0.9rem + 0.2vw, 17px);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video, iframe, svg { display: block; max-width: 100%; }
img, video { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--terracotta); color: #fff; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 5vw, 48px); }
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section__head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 68px); }
.section__head.center { margin-inline: auto; text-align: center; }
.text-accent { color: var(--terracotta); }
.muted { color: var(--muted); font-weight: 500; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; color: var(--ink); }

.section__title {
  font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.section__intro { margin-top: 18px; color: var(--stone); font-size: 1.06rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
}
.center .eyebrow { justify-content: center; }
.eyebrow-rule { width: 30px; height: 2px; background: var(--terracotta); opacity: 0.6; border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--terracotta);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 24px;
  border-radius: 100px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
  will-change: transform;
  white-space: nowrap;
}
.btn .ic, .btn svg { width: 18px; height: 18px; fill: currentColor; }
.btn--lg { padding: 16px 30px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--solid { background: var(--terracotta); color: #fff; box-shadow: 0 10px 24px rgba(192, 73, 43, 0.28); }
.btn--solid:hover { background: var(--terracotta-deep); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(192, 73, 43, 0.36); }

.btn--ghost { background: rgba(255,255,255,0.08); color: #fff; border: 1.5px solid rgba(255,255,255,0.55); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: #fff; color: var(--ink); transform: translateY(-2px); border-color: #fff; }

.btn--wa { background: var(--wa); color: #07351b; box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3); }
.btn--wa:hover { background: #1fc15d; transform: translateY(-2px); }
.btn--wa svg { fill: #07351b; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar { background: var(--ink); color: rgba(255,255,255,0.82); font-size: 0.82rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 42px; gap: 16px; }
.topbar__left { display: flex; align-items: center; gap: 16px; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item .ic { width: 14px; height: 14px; fill: var(--clay); }
.topbar__divider { width: 1px; height: 14px; background: rgba(255,255,255,0.2); }
.topbar__cta { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: #fff; transition: color var(--t-fast); }
.topbar__cta .ic { width: 14px; height: 14px; fill: var(--clay); }
.topbar__cta:hover { color: var(--clay); }
@media (max-width: 640px) { .topbar__item--hide-sm { display: none; } }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 247, 241, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.header.scrolled { background: rgba(251, 247, 241, 0.96); border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__logo {
  height: 42px; width: auto; display: block;
  filter: drop-shadow(0 4px 10px rgba(24, 18, 13, 0.16));
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.01em; }
.brand__sub { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); margin-top: 3px; }
.brand--light .brand__name { color: #fff; }
.brand--light .brand__sub { color: rgba(255,255,255,0.6); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative; padding: 10px 14px; font-weight: 600; font-size: 0.94rem; color: var(--ink-soft);
  border-radius: 8px; transition: color var(--t-fast);
}
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px;
  background: var(--terracotta); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-fast);
}
.nav__link:hover { color: var(--terracotta); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__link.active { color: var(--terracotta); }
.nav__cta { margin-left: 12px; }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 1px solid var(--line); }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--t-fast), opacity var(--t-fast); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  /* Drop backdrop-filter on mobile: it creates a containing block that would
     trap the position:fixed off-canvas drawer inside the header. */
  .header { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(251, 247, 241, 0.94); }
  .header.scrolled { background: rgba(251, 247, 241, 0.98); }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 340px);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 4px;
    padding: 96px 22px 40px; background: var(--paper);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%); transition: transform var(--t);
  }
  .nav.open { transform: none; }
  .nav__link { padding: 14px 16px; font-size: 1.05rem; border-bottom: 1px solid var(--line-soft); }
  .nav__link::after { display: none; }
  .nav__cta { margin: 16px 0 0; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(24,18,13,0.5); opacity: 0; visibility: hidden; transition: opacity var(--t); z-index: 55; }
  .nav-backdrop.show { opacity: 1; visibility: visible; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; min-height: clamp(620px, 92vh, 940px); display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; transform: scale(1.06); animation: heroZoom 14s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(20,14,10,0.92) 0%, rgba(20,14,10,0.72) 38%, rgba(20,14,10,0.28) 70%, rgba(20,14,10,0.12) 100%),
    linear-gradient(to top, rgba(20,14,10,0.7), transparent 40%);
}
.hero__inner { position: relative; z-index: 2; padding-block: clamp(70px, 12vh, 120px); max-width: 820px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--clay); margin-bottom: 22px;
}
.hero__eyebrow .eyebrow-rule { background: var(--clay); width: 34px; }
.hero__title {
  font-size: clamp(2.9rem, 1.6rem + 6vw, 6rem);
  font-weight: 600; line-height: 0.98; letter-spacing: -0.03em; color: #fff;
}
.hero__title .text-accent { color: var(--clay); font-style: italic; font-weight: 500; }
.hero__lead { margin-top: 26px; max-width: 560px; font-size: clamp(1.02rem, 0.95rem + 0.4vw, 1.22rem); color: rgba(255,255,255,0.86); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.hero__chips {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 52px;
}
.hero__chips li {
  display: flex; flex-direction: column;
  padding: 14px 22px 12px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(6px); min-width: 110px;
}
.hero__chips strong { font-family: var(--font-display); font-size: 1.5rem; color: #fff; line-height: 1; }
.hero__chips span { font-size: 0.78rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.7); margin-top: 6px; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; z-index: 3; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.5); border-radius: 14px;
}
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; background: #fff; border-radius: 2px; animation: scrollDot 1.8s var(--ease) infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80%, 100% { opacity: 0; transform: translateY(14px); } }
@media (max-width: 640px) { .hero__scroll { display: none; } }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee { background: var(--terracotta); color: #fff; overflow: hidden; padding: 16px 0; }
.marquee__track { display: inline-flex; align-items: center; gap: 0; white-space: nowrap; animation: marquee 28s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; padding: 0 26px; }
.marquee__track i { color: rgba(255,255,255,0.55); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* =========================================================
   ABOUT
   ========================================================= */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 86px); align-items: center; }
.about__media { position: relative; }
.slider--about { aspect-ratio: 4/3; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about__badge {
  position: absolute; left: -22px; top: 28px;
  display: flex; align-items: center; gap: 12px;
  background: var(--ink); color: #fff; padding: 14px 18px; border-radius: 14px; box-shadow: var(--shadow-lg);
}
.about__badge strong { font-family: var(--font-display); font-size: 1.9rem; color: var(--clay); line-height: 1; }
.about__badge span { font-size: 0.74rem; line-height: 1.25; color: rgba(255,255,255,0.78); }

.about__body p { color: var(--stone); margin-top: 16px; }
.about__body p strong { color: var(--ink); }
.about__list { margin-top: 26px; display: grid; gap: 12px; }
.about__list li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink-soft); }
.ic-check { width: 22px; height: 22px; flex: none; fill: #fff; background: var(--terracotta); border-radius: 50%; padding: 4px; }

.about__owner { display: flex; align-items: center; gap: 14px; margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); }
.about__owner-avatar { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #fff; background: linear-gradient(145deg, var(--clay), var(--terracotta)); }
.about__owner-name { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; }
.about__owner-role { display: block; font-size: 0.85rem; color: var(--muted); }

@media (max-width: 820px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { width: 100%; max-width: 520px; margin: 0 auto 30px; }
}

/* =========================================================
   STATS
   ========================================================= */
.stats { background: var(--ink); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(40px, 6vw, 64px) 18px; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.stat:last-child { border-right: none; }
.stat__num { display: block; font-family: var(--font-display); font-weight: 600; font-size: clamp(2.6rem, 1.8rem + 3vw, 4rem); line-height: 1; color: var(--clay); }
.stat__label { display: block; margin-top: 12px; font-size: 0.9rem; color: rgba(255,255,255,0.72); letter-spacing: 0.02em; }
@media (max-width: 720px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
}

/* =========================================================
   WHY / FEATURES
   ========================================================= */
.why { background: linear-gradient(180deg, var(--paper), var(--cream)); }
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature {
  background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(192,73,43,0.25); }
.feature__icon {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(145deg, var(--cream), var(--sand)); margin-bottom: 18px;
}
.feature__icon svg { width: 28px; height: 28px; fill: none; stroke: var(--terracotta); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { font-size: 1.18rem; margin-bottom: 8px; }
.feature p { font-size: 0.92rem; color: var(--stone); }
@media (max-width: 980px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .features { grid-template-columns: 1fr; } }

/* =========================================================
   STRENGTH BANNER
   ========================================================= */
.strength { position: relative; background: var(--ink-soft); color: #fff; overflow: hidden; padding: clamp(56px, 8vw, 96px) 0; }
.strength::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 50%, rgba(192,73,43,0.4), transparent 45%),
              radial-gradient(circle at 90% 20%, rgba(217,138,61,0.25), transparent 40%);
}
.strength__inner { position: relative; display: grid; grid-template-columns: auto 1fr; gap: clamp(30px, 6vw, 70px); align-items: center; }
.strength__big { display: flex; align-items: baseline; gap: 8px; }
.strength__num { font-family: var(--font-display); font-weight: 600; font-size: clamp(6rem, 4rem + 10vw, 13rem); line-height: 0.82; color: var(--clay); letter-spacing: -0.04em; }
.strength__unit { font-family: var(--font-display); font-style: italic; font-size: clamp(1.6rem, 1rem + 2vw, 3rem); color: rgba(255,255,255,0.85); }
.strength__copy h2 { color: #fff; font-size: clamp(1.6rem, 1.2rem + 2vw, 2.6rem); }
.strength__copy p { margin: 18px 0 26px; color: rgba(255,255,255,0.82); max-width: 540px; }
.strength__copy em { color: var(--clay); font-family: var(--font-display); }
@media (max-width: 760px) { .strength__inner { grid-template-columns: 1fr; text-align: left; } }

/* =========================================================
   PRODUCTS
   ========================================================= */
.products__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 1080px; margin-inline: auto; }
.product {
  background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform var(--t-fast), box-shadow var(--t-fast);
  display: flex; flex-direction: column;
}
.product:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product__media { position: relative; aspect-ratio: 4/3; background: var(--sand); overflow: hidden; }
.product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.product:hover .product__media img { transform: scale(1.07); }
.product__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product__body h3 { font-size: 1.28rem; }
.product__spec { font-size: 0.82rem; font-weight: 700; color: var(--terracotta); letter-spacing: 0.04em; margin: 4px 0 10px; }
.product__body > p { font-size: 0.9rem; color: var(--stone); }
.product__tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 16px 0 18px; }
.product__tags span { font-size: 0.74rem; font-weight: 600; color: var(--ink-soft); background: var(--cream); padding: 5px 11px; border-radius: 100px; }
.product__link { margin-top: auto; display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--terracotta); }
.product__link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--t-fast); }
.product__link:hover svg { transform: translateX(4px); }
@media (max-width: 980px) { .products__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .products__grid { grid-template-columns: 1fr; } }

/* =========================================================
   APPLICATIONS
   ========================================================= */
.applications { background: var(--cream); }
.apps__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.app {
  display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center;
  background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 30px 16px;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.app:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: var(--ink); }
.app svg { width: 40px; height: 40px; fill: none; stroke: var(--terracotta); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transition: stroke var(--t-fast); }
.app span { font-weight: 600; font-size: 0.92rem; transition: color var(--t-fast); }
.app:hover svg { stroke: var(--clay); }
.app:hover span { color: #fff; }
@media (max-width: 920px) { .apps__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .apps__grid { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   PROCESS
   ========================================================= */
.process__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.process__media img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.steps { margin-top: 30px; display: grid; gap: 6px; }
.step { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: none; }
.step__num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--terracotta); flex: none; width: 48px; }
.step h3 { font-size: 1.2rem; margin-bottom: 4px; }
.step p { font-size: 0.92rem; color: var(--stone); }
@media (max-width: 820px) {
  .process__grid { grid-template-columns: 1fr; }
  .process__media { max-width: 460px; margin-inline: auto; }
}

/* =========================================================
   COMPARE
   ========================================================= */
.compare { background: linear-gradient(180deg, var(--cream), var(--paper)); }
.compare__table { max-width: 880px; margin-inline: auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.compare__row { display: grid; grid-template-columns: 1.3fr 1fr 1fr; border-bottom: 1px solid var(--line-soft); }
.compare__row:last-child { border-bottom: none; }
.compare__cell { padding: 18px 20px; display: flex; align-items: center; gap: 10px; font-size: 0.94rem; }
.compare__row--head .compare__cell { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; background: var(--cream); }
.compare__cell--us { background: rgba(192,73,43,0.06); font-weight: 700; color: var(--ink); position: relative; }
.compare__row--head .compare__cell--us { background: var(--terracotta); color: #fff; }
.compare__cell svg { width: 20px; height: 20px; flex: none; }
.compare__cell .yes { fill: #2e8b57; }
.compare__cell .no { fill: #b9442b; }
@media (max-width: 620px) {
  .compare__cell { padding: 14px 12px; font-size: 0.82rem; }
  .compare__cell svg { width: 16px; height: 16px; }
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; grid-auto-flow: dense; gap: 16px; }
.gallery__item { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); cursor: pointer; }
.gallery__item img, .gallery__item video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery__item:hover img, .gallery__item:hover video { transform: scale(1.08); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 18px 14px; color: #fff; font-weight: 600; font-size: 0.9rem;
  background: linear-gradient(to top, rgba(20,14,10,0.8), transparent); opacity: 0; transform: translateY(8px); transition: opacity var(--t-fast), transform var(--t-fast);
}
.gallery__item:hover figcaption { opacity: 1; transform: none; }
.gallery__item--video .gallery__play {
  position: absolute; inset: 0; margin: auto; width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.92); display: grid; place-items: center; box-shadow: var(--shadow-md);
  transition: transform var(--t-fast), background var(--t-fast);
}
.gallery__item--video .gallery__play svg { width: 26px; height: 26px; fill: var(--terracotta); margin-left: 3px; }
.gallery__item--video.playing .gallery__play { opacity: 0; pointer-events: none; }
.gallery__item--video:hover .gallery__play { transform: scale(1.08); }
@media (max-width: 820px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
}

/* =========================================================
   DESIGNS & PLANS
   ========================================================= */
.designs { background: linear-gradient(180deg, var(--paper), var(--cream)); }
.designs__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.design-card {
  position: relative; background: var(--white); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  cursor: pointer; display: flex; flex-direction: column;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.design-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.design-card > img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: top center;
  background: var(--cream); transition: transform 0.7s var(--ease);
}
.design-card:hover > img { transform: scale(1.06); }
.design-card::after {
  content: "View"; position: absolute; top: 14px; right: 14px;
  background: rgba(20,14,10,0.78); color: #fff; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
  opacity: 0; transform: translateY(-4px); transition: opacity var(--t-fast), transform var(--t-fast);
}
.design-card:hover::after { opacity: 1; transform: none; }
.design-card figcaption {
  padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 3px;
  border-top: 1px solid var(--line-soft);
}
.design-card figcaption strong { font-family: var(--font-display); font-size: 1.08rem; color: var(--ink); line-height: 1.2; }
.design-card figcaption span { color: var(--muted); font-size: 0.84rem; }
@media (max-width: 1024px) { .designs__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .designs__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 440px)  { .designs__grid { grid-template-columns: 1fr; } }

/* =========================================================
   LOCATIONS
   ========================================================= */
.locations { background: linear-gradient(180deg, var(--cream), var(--paper)); }
.locations__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 980px; margin-inline: auto; }
.loc-card {
  position: relative; text-align: center; background: var(--white); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: 40px 26px 30px; box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.loc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.loc-card--hq { border-color: var(--terracotta); box-shadow: 0 14px 34px -14px rgba(192,73,43,0.5); }
.loc-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--terracotta); color: #fff; font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.loc-card__pin {
  display: inline-grid; place-items: center; width: 62px; height: 62px; margin-bottom: 16px;
  border-radius: 50%; background: var(--sand); transition: transform var(--t-fast);
}
.loc-card:hover .loc-card__pin { transform: scale(1.08); }
.loc-card__pin svg { width: 28px; height: 28px; fill: var(--terracotta); }
.loc-card--hq .loc-card__pin { background: var(--terracotta); }
.loc-card--hq .loc-card__pin svg { fill: #fff; }
.loc-card h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); line-height: 1.1; }
.loc-card p { color: var(--muted); font-size: 0.9rem; margin-top: 8px; }
@media (max-width: 760px) {
  .locations__grid { grid-template-columns: 1fr; max-width: 380px; gap: 30px; }
}

/* =========================================================
   SLIDERS (about slideshow + product red/grey)
   ========================================================= */
.slider { position: relative; overflow: hidden; background: var(--sand); }
.slider__track { position: relative; width: 100%; height: 100%; }
.slider .slider__slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.7s var(--ease), transform 0.6s var(--ease);
}
.slider .slider__slide.is-active { opacity: 1; }
.slider .slider__slide--fit { object-fit: contain; }
.slider__arrow {
  position: absolute; top: 50%; translate: 0 -50%; z-index: 2;
  display: grid; place-items: center; width: 38px; height: 38px;
  border: none; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,0.92); color: var(--ink); box-shadow: var(--shadow-sm);
  transition: background var(--t-fast), scale var(--t-fast), opacity var(--t-fast);
}
.slider__arrow:hover { background: #fff; scale: 1.08; }
.slider__arrow--prev { left: 12px; }
.slider__arrow--next { right: 12px; }
.slider__arrow svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.slider__dots { position: absolute; left: 0; right: 0; bottom: 12px; display: flex; justify-content: center; gap: 7px; z-index: 2; }
.slider__dot {
  width: 8px; height: 8px; padding: 0; border: none; border-radius: 999px; cursor: pointer;
  background: rgba(255,255,255,0.6); box-shadow: 0 1px 3px rgba(23,19,15,0.35);
  transition: background var(--t-fast), width var(--t-fast);
}
.slider__dot.is-active { width: 22px; background: var(--terracotta); }

.slider--product { position: absolute; inset: 0; background: none; }
.slider--product .slider__arrow { width: 30px; height: 30px; }
.slider--product .slider__arrow--prev { left: 10px; }
.slider--product .slider__arrow--next { right: 10px; }
.slider--product .slider__arrow svg { width: 14px; height: 14px; }
.slider--product .slider__dots { bottom: 10px; left: 14px; right: auto; justify-content: flex-start; }
.slider--product .slider__dot { box-shadow: 0 1px 3px rgba(23,19,15,0.25); background: rgba(23,19,15,0.22); }
.slider--product .slider__dot.is-active { background: var(--terracotta); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(15,10,7,0.92); display: flex; align-items: center; justify-content: center; padding: 30px; opacity: 0; visibility: hidden; transition: opacity var(--t); }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 22px; right: 28px; font-size: 2.4rem; color: #fff; line-height: 1; width: 48px; height: 48px; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { background: var(--ink); color: #fff; }
.testimonials .section__title { color: #fff; }
.testimonials .eyebrow { color: var(--clay); }
.testimonials .eyebrow-rule { background: var(--clay); }
.testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 32px 28px; position: relative;
}
.testi__stars { color: var(--clay); letter-spacing: 3px; font-size: 1rem; margin-bottom: 14px; }
.testi p { font-family: var(--font-display); font-size: 1.08rem; line-height: 1.5; color: rgba(255,255,255,0.92); }
.testi footer { margin-top: 22px; }
.testi footer span { display: block; font-weight: 700; }
.testi footer small { color: rgba(255,255,255,0.6); }
@media (max-width: 880px) { .testi__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }

/* =========================================================
   CTA BAND
   ========================================================= */
.ctaband { background: var(--terracotta); color: #fff; }
.ctaband__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: clamp(40px, 6vw, 64px) 0; flex-wrap: wrap; }
.ctaband h2 { color: #fff; font-size: clamp(1.6rem, 1.2rem + 2vw, 2.5rem); }
.ctaband p { color: rgba(255,255,255,0.88); margin-top: 8px; }
.ctaband__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.ctaband .btn--solid { background: #fff; color: var(--terracotta); box-shadow: 0 10px 24px rgba(0,0,0,0.18); }
.ctaband .btn--solid:hover { background: var(--ink); color: #fff; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact__grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(36px, 6vw, 70px); align-items: start; }
.contact__info p { color: var(--stone); }
.contact__list { margin: 30px 0; display: grid; gap: 18px; }
.contact__list li { display: flex; align-items: center; gap: 16px; }
.contact__ic { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--cream); flex: none; }
.contact__ic svg { width: 24px; height: 24px; fill: none; stroke: var(--terracotta); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact__list small { display: block; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.contact__list a, .contact__list span { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: var(--ink); }
.contact__list a:hover { color: var(--terracotta); }
.contact__map { margin-top: 26px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.contact__map iframe { width: 100%; height: 240px; border: 0; filter: saturate(0.9); }

.contact__form-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-md); position: sticky; top: 100px; }
.contact__form h3 { font-size: 1.5rem; }
.contact__form-sub { color: var(--muted); font-size: 0.92rem; margin: 6px 0 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 7px; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; background: var(--paper); border: 1.5px solid var(--line); border-radius: 12px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--terracotta); background: #fff; box-shadow: 0 0 0 4px rgba(192,73,43,0.12); }
.field textarea { resize: vertical; min-height: 70px; }
.contact__form .btn { margin-top: 6px; }
.contact__form .btn svg { fill: #fff; }
.contact__form-note { margin-top: 14px; font-size: 0.9rem; font-weight: 600; color: #2e8b57; text-align: center; min-height: 1.2em; }
@media (max-width: 880px) {
  .contact__grid { grid-template-columns: 1fr; }
  .contact__form-wrap { position: static; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding: clamp(54px, 7vw, 84px) 0 50px; }
.footer__logo {
  display: inline-block; margin-bottom: 20px;
  background: #fff; padding: 16px 20px; border-radius: 16px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
}
.footer__logo img { display: block; width: 188px; height: auto; }
.footer__desc { font-size: 0.92rem; max-width: 320px; }
.footer__col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; font-family: var(--font-sans); font-weight: 700; letter-spacing: 0.02em; }
.footer__col a, .footer__col span { display: block; padding: 6px 0; font-size: 0.92rem; color: rgba(255,255,255,0.7); transition: color var(--t-fast); }
.footer__col a:hover { color: var(--clay); }
.footer__bar { border-top: 1px solid rgba(255,255,255,0.1); }
.footer__bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 22px 0; font-size: 0.84rem; flex-wrap: wrap; }
.footer__credit { color: var(--clay); }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* =========================================================
   SERVICES / END-TO-END
   ========================================================= */
.services { background: var(--cream); }
.services__lead {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 84px);
  align-items: center; margin-bottom: clamp(48px, 7vw, 84px);
}
.services__media { position: relative; }
.services__media[data-src] { cursor: pointer; }
.services__img-main { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); transition: transform var(--t-fast), box-shadow var(--t-fast); }
.services__media[data-src]:hover .services__img-main { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.services__sub { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.3rem, 1rem + 1.4vw, 1.95rem); }
.services__sub.center { text-align: center; }
.services__pipeline > p { color: var(--stone); margin-top: 14px; max-width: 520px; }
.stages { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 28px; }
.stage-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--line-soft); border-radius: 100px;
  padding: 7px 18px 7px 7px; box-shadow: var(--shadow-sm); font-weight: 600; font-size: 0.9rem; color: var(--ink-soft);
}
.stage-chip b {
  display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(145deg, var(--clay), var(--terracotta)); color: #fff;
  font-family: var(--font-display); font-size: 0.82rem;
}
.services__block { margin-top: clamp(40px, 6vw, 64px); }
.services__block .services__sub { margin-bottom: 28px; }
.apps__grid--5 { grid-template-columns: repeat(5, 1fr); }
.why-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 30px; max-width: 980px; margin: 0 auto; }
.why-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink-soft); }
@media (max-width: 920px) { .apps__grid--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px) {
  .services__lead { grid-template-columns: 1fr; }
  .services__media { max-width: 520px; margin: 0 auto 22px; }
  .why-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) { .apps__grid--5 { grid-template-columns: repeat(2, 1fr); } .why-list { grid-template-columns: 1fr; } }

/* =========================================================
   LEADERSHIP
   ========================================================= */
.leadership { background: linear-gradient(180deg, var(--paper), var(--cream)); }
.leaders { display: flex; flex-direction: column; gap: 28px; max-width: 1060px; margin-inline: auto; }
.leader {
  background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid; grid-template-columns: 320px 1fr; align-items: center;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.leader:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.leader--flip { grid-template-columns: 1fr 320px; }
.leader--flip .leader__photo { order: 2; }
.leader--flip .leader__body { order: 1; }
.leader__photo {
  align-self: stretch; position: relative; min-height: 380px; overflow: hidden;
  background: linear-gradient(150deg, var(--ink-soft), var(--ink));
  display: grid; place-items: center;
}
.leader__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.leader__silhouette { width: 80px; height: 80px; fill: rgba(255,255,255,0.45); }
.leader__body { padding: 34px 44px; }
.leader__name { font-size: 1.55rem; line-height: 1.15; }
.leader__role { color: var(--terracotta); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 8px; }
.leader__meta { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 0.88rem; margin-top: 10px; }
.leader__meta svg { width: 14px; height: 14px; fill: var(--clay); flex: none; }
.leader__msg {
  font-family: var(--font-display); color: var(--ink-soft); font-style: italic;
  font-size: 1.14rem; line-height: 1.6; margin-top: 18px; padding-left: 20px;
  border-left: 3px solid var(--sand);
}
@media (max-width: 860px) {
  .leaders { max-width: 460px; }
  .leader, .leader--flip { grid-template-columns: 1fr; }
  .leader--flip .leader__photo, .leader--flip .leader__body { order: 0; }
  .leader__photo { min-height: 0; aspect-ratio: 4/5; }
  .leader__body { padding: 26px 26px 30px; }
}

/* =========================================================
   MISSION & VISION
   ========================================================= */
.mv { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.mv::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 12% 18%, rgba(192,73,43,0.35), transparent 42%),
              radial-gradient(circle at 88% 82%, rgba(217,138,61,0.22), transparent 46%);
}
.mv .container { position: relative; z-index: 1; }
.mv__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.mv__card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 40px); }
.mv__icon {
  display: grid; place-items: center; width: 64px; height: 64px; border-radius: 16px;
  background: rgba(217,138,61,0.14); border: 1px solid rgba(217,138,61,0.3); margin-bottom: 20px;
}
.mv__icon svg { width: 32px; height: 32px; fill: none; stroke: var(--clay); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.mv__card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 12px; }
.mv__card p { color: rgba(255,255,255,0.82); }
.mv__tagline {
  text-align: center; margin-top: clamp(48px, 7vw, 76px);
  font-family: var(--font-display); font-size: clamp(1.8rem, 1.2rem + 3vw, 3.4rem);
  line-height: 1.14; color: #fff; letter-spacing: -0.01em;
}
.mv__tagline em { color: var(--clay); font-style: italic; }
.mv__dots { color: var(--clay); }
@media (max-width: 760px) { .mv__grid { grid-template-columns: 1fr; } }

/* =========================================================
   FOOTER — tagline addition
   ========================================================= */
.footer__tagline { margin-top: 14px; font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--clay); max-width: 320px; }

/* =========================================================
   FLOATING ACTION BUTTONS
   ========================================================= */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.fab__btn { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow-lg); transition: transform var(--t-fast); }
.fab__btn svg { width: 28px; height: 28px; fill: #fff; }
.fab__btn:hover { transform: scale(1.08); }
.fab__btn--wa { background: var(--wa); }
.fab__btn--call { background: var(--terracotta); }
.fab__btn--wa::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,0.5);
  animation: pulse 2.2s infinite;
}
.fab__btn--wa { position: relative; }
@keyframes pulse { 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@media (prefers-reduced-motion: reduce) { .fab__btn--wa::after { animation: none; } }
