:root {
  --ink: #0f1c2b;
  --ink-soft: #51606f;
  --muted: #6c7a89;
  --line: rgba(15, 28, 43, 0.1);
  --line-strong: rgba(15, 28, 43, 0.16);
  --paper: #ffffff;
  --ivory: #faf6ec;
  --sand: #f3ecdd;
  --mist: #eef4f7;
  --gold: #b8893b;
  --gold-deep: #9a6f2c;
  --gold-soft: #e6c878;
  --gold-line: linear-gradient(90deg, #d9b25f, #b8893b);
  --cyan: #06b6d4;
  --blue: #2563eb;
  --green: #16a34a;
  --red: #e11d48;
  --amber: #d97706;
  --shadow-sm: 0 8px 24px rgba(15, 28, 43, 0.07);
  --shadow-md: 0 22px 50px rgba(15, 28, 43, 0.1);
  --shadow-lg: 0 38px 90px rgba(15, 28, 43, 0.16);
  --radius: 20px;
  --radius-lg: 28px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% -4%, rgba(198, 154, 69, 0.1), transparent 30%),
    radial-gradient(circle at 4% 4%, rgba(6, 182, 212, 0.05), transparent 24%),
    var(--ivory);
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* subtle premium grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.topbar, .header, .mobileNav, main, .footer, .waFloat { position: relative; z-index: 2; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

h1, h2, h3 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}

h1 { font-size: clamp(40px, 6vw, 76px); line-height: 1.02; }
h2 { font-size: clamp(30px, 4.4vw, 52px); line-height: 1.06; }
h3 { font-size: 24px; line-height: 1.15; }

p { margin: 0; }

.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 18px;
}
.kicker::before {
  content: "";
  width: 26px; height: 2px; border-radius: 2px;
  background: var(--gold-line);
}
.kicker.light, .eyebrow.light { color: var(--gold-soft); }
.goldTick { width: 26px; height: 2px; border-radius: 2px; background: var(--gold-line); }

h1 em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, var(--gold-deep), #d9b25f);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.lead { color: var(--ink-soft); font-size: clamp(17px, 1.6vw, 20px); max-width: 60ch; }
.lead.light { color: rgba(255, 255, 255, 0.82); }

/* ---------- Top bar ---------- */
.topbar {
  background: linear-gradient(90deg, #0f1c2b, #143049 55%, #0f1c2b);
  color: #fff;
  font-size: 13px;
}
.topbarInner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 9px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.topbarItem { opacity: 0.92; }
.topbarItem strong { color: var(--gold-soft); font-weight: 800; }
.topbarDots { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(251, 249, 244, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brandMark { display: grid; place-items: center; filter: drop-shadow(0 8px 18px rgba(37, 109, 240, 0.3)); }
.brandMark svg { border-radius: 11px; }
.brandText strong { display: block; font-size: 19px; font-weight: 800; letter-spacing: -0.01em; line-height: 1; }
.brandUae {
  display: inline-block;
  margin-left: 3px;
  padding: 1px 7px;
  border-radius: 6px;
  background: linear-gradient(120deg, var(--gold), var(--gold-soft));
  color: #2a1e05;
  font-size: 12px;
}
.brandText > span { display: block; margin-top: 3px; font-size: 11.5px; font-weight: 600; color: var(--muted); letter-spacing: 0.01em; }

.nav { display: flex; gap: 26px; font-size: 14.5px; font-weight: 600; color: var(--ink-soft); }
.nav a { position: relative; padding: 4px 0; transition: color 0.2s; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }

.headerActions { display: flex; align-items: center; gap: 10px; }
.ghostCta {
  display: inline-flex; align-items: center;
  min-height: 42px; padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-weight: 700; font-size: 14px;
  transition: border-color 0.2s, color 0.2s;
}
.ghostCta:hover { border-color: var(--ink); }
.headerCta {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c4b);
  color: #fff; font-weight: 700; font-size: 14px;
  box-shadow: 0 14px 28px rgba(18, 140, 75, 0.32);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.headerCta:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(18, 140, 75, 0.4); }
.waDot { width: 8px; height: 8px; border-radius: 50%; background: #eafff0; box-shadow: 0 0 0 0 rgba(255,255,255,.7); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,.6);} 70% { box-shadow: 0 0 0 7px rgba(255,255,255,0);} 100% { box-shadow:0 0 0 0 rgba(255,255,255,0);} }

.navToggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 12px; background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.navToggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.25s; }

.mobileNav { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(560px, 86vh, 820px);
  display: flex;
  align-items: center;
}
.heroMedia { position: absolute; inset: 0; z-index: 0; }
.heroMedia img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.heroWash {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(250, 246, 236, 0.98) 0%, rgba(250, 246, 236, 0.88) 32%, rgba(250, 246, 236, 0.4) 56%, rgba(250, 246, 236, 0.05) 100%),
    radial-gradient(circle at 86% 14%, rgba(198, 154, 69, 0.2), transparent 42%);
}
.heroInner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px max(20px, calc((100vw - var(--max)) / 2));
  width: 100%;
}
.heroInner .eyebrow { color: var(--gold); }
.heroInner h1 { max-width: 16ch; }
.heroText { max-width: 43ch; margin: 22px 0 0; color: var(--ink-soft); font-size: clamp(17px, 1.7vw, 21px); }
.heroActions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 34px; }
.heroChips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px; border-radius: 999px;
  font-size: 13.5px; font-weight: 700;
  background: #fff; box-shadow: var(--shadow-sm);
}
.chip::before { content: ""; width: 9px; height: 9px; border-radius: 50%; }
.chip-cyan::before { background: var(--cyan); }
.chip-green::before { background: var(--green); }
.chip-amber::before { background: var(--amber); }
.chip-blue::before { background: var(--blue); }

.heroNote { margin: 22px 0 0; font-size: 13px; color: var(--muted); font-weight: 600; }

/* hero seal */
.heroSeal {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 40px;
  z-index: 2;
  display: flex; align-items: center; gap: 16px;
  max-width: 340px;
  padding: 16px 22px 16px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
  backdrop-filter: saturate(150%) blur(16px);
}
.sealRing {
  flex: none;
  display: grid; place-items: center;
  width: 64px; height: 64px; border-radius: 50%;
  color: var(--gold-deep);
  background:
    radial-gradient(circle at 50% 50%, #fff 56%, transparent 57%),
    conic-gradient(from 0deg, #d9b25f, #b8893b, #e6c878, #9a6f2c, #d9b25f);
  box-shadow: inset 0 0 0 1px rgba(184, 137, 59, 0.4);
}
.sealYear { font-family: "Fraunces", serif; font-weight: 600; font-size: 19px; letter-spacing: 0.02em; }
.sealText { display: block; font-size: 12.5px; color: var(--ink-soft); line-height: 1.4; }
.sealText strong { display: block; font-size: 14px; color: var(--ink); font-weight: 800; margin-bottom: 2px; }

/* ---------- Buttons ---------- */
.primaryCta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 0 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #2a1e05; font-weight: 800; font-size: 15.5px;
  box-shadow: 0 18px 38px rgba(198, 154, 69, 0.36);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.primaryCta:hover { transform: translateY(-2px); box-shadow: 0 24px 50px rgba(198, 154, 69, 0.46); }
.primaryCta.dark { background: var(--ink); color: #fff; box-shadow: 0 18px 38px rgba(15, 28, 43, 0.34); }
.primaryCta.dark:hover { box-shadow: 0 24px 50px rgba(15, 28, 43, 0.44); }
.textCta { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 15px; color: var(--ink); }
.textCta span { transition: transform 0.2s var(--ease); }
.textCta:hover span { transform: translateX(5px); }

/* ---------- Heritage ---------- */
.heritage { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.heritageGrid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat { padding: 40px 28px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat .num {
  display: block;
  font-family: "Fraunces", serif; font-weight: 600;
  font-size: clamp(40px, 4.6vw, 58px); line-height: 1;
  background: linear-gradient(120deg, var(--ink), #2a4865);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat p { margin-top: 12px; font-size: 14.5px; color: var(--muted); max-width: 22ch; }

/* ---------- Section shell ---------- */
.section { max-width: var(--max); margin: 0 auto; padding: clamp(64px, 9vw, 110px) max(20px, calc((100vw - var(--max)) / 2)); }
.sectionHead { max-width: 760px; margin-bottom: 48px; }
.sectionHead .lead { margin-top: 18px; }

/* ---------- Product range cards ---------- */
.rangeGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rangeCard {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 260px; padding: 26px;
  border-radius: var(--radius); color: #fff;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.rangeCard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.rangeCard::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 8%, rgba(255, 255, 255, 0.28), transparent 45%);
  pointer-events: none;
}
.rangeIco {
  display: inline-grid; place-items: center;
  width: 46px; height: 46px; border-radius: 13px;
  background: rgba(255, 255, 255, 0.22);
  font-family: "Fraunces", serif; font-weight: 600; font-size: 18px;
  backdrop-filter: blur(4px);
}
.rangeCard h3 { margin-top: auto; padding-top: 24px; color: #fff; font-size: 27px; }
.rangeCard p { margin-top: 10px; font-size: 15px; color: rgba(255, 255, 255, 0.9); }
.rangeLink { margin-top: 16px; font-weight: 700; font-size: 14px; }
.rangeLink span { display: inline-block; transition: transform 0.2s var(--ease); }
.rangeCard:hover .rangeLink span { transform: translateX(5px); }

.r-roof { background: linear-gradient(150deg, #0b80a8, #06b6d4); }
.r-sports { background: linear-gradient(150deg, #128a3e, #2bbf5e); }
.r-concrete { background: linear-gradient(150deg, #b06a1e, #e09a3c); }
.r-pool { background: linear-gradient(150deg, #1d56c2, #2f9be0); }
.r-industrial { background: linear-gradient(150deg, #3a2fb0, #6a5cf0); }
.r-prep { background: linear-gradient(150deg, #b23b53, #e2683b); }

/* ---------- Roof flagship ---------- */
.roofLead { background: var(--paper); border-top: 1px solid var(--line); }
.roofLeadInner {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(56px, 8vw, 100px) max(20px, calc((100vw - var(--max)) / 2));
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.benefitList { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 14px; }
.benefitList li { padding-left: 0; color: var(--ink-soft); font-size: 16px; }
.benefitList span {
  display: inline-block; margin-right: 10px; padding: 3px 11px;
  border-radius: 999px; background: var(--mist); color: var(--blue);
  font-weight: 700; font-size: 13px;
}
.roofViz {
  position: relative; overflow: hidden;
  min-height: 420px; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #bfe8fb 0%, #e8f7fd 52%, #ffffff 100%);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(184, 137, 59, 0.45), 0 0 0 6px rgba(255, 255, 255, 0.85);
}
.vizSun {
  position: absolute; top: 40px; right: 48px;
  width: 92px; height: 92px; border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, #fff6d8, #ffd24d 55%, #ffb01f);
  box-shadow: 0 0 50px 14px rgba(255, 196, 51, 0.6);
}
.vizRing {
  position: absolute; top: 86px; right: 94px; transform: translate(50%, -50%);
  border-radius: 50%; border: 2px solid rgba(255, 196, 51, 0.45);
}
.vizRing.ring1 { width: 170px; height: 170px; }
.vizRing.ring2 { width: 250px; height: 250px; border-color: rgba(255, 196, 51, 0.26); }
.vizRoof {
  position: absolute; left: -6%; right: -6%; bottom: 0; height: 46%;
  background: linear-gradient(180deg, #eafcff, #cfeef7);
  border-top: 3px solid rgba(255, 255, 255, 0.95);
  transform: skewY(-6deg); transform-origin: left bottom;
  box-shadow: 0 -18px 40px rgba(8, 120, 160, 0.18);
}
.vizSheen {
  position: absolute; left: -20%; bottom: 0; height: 46%; width: 50%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  transform: skewY(-6deg) skewX(-18deg);
  mix-blend-mode: screen;
}
.vizChip {
  position: absolute; z-index: 3;
  display: inline-flex; align-items: center;
  padding: 9px 15px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.86); color: var(--ink);
  font-size: 13.5px; font-weight: 700;
  box-shadow: var(--shadow-md); backdrop-filter: blur(8px);
}
.vizChip.chipTop { top: 150px; left: 36px; color: var(--amber); }
.vizChip.chipBottom { bottom: 96px; right: 40px; color: #0b80a8; }
.vizWord {
  position: absolute; left: 36px; bottom: 30px; z-index: 3;
  font-family: "Fraunces", serif; font-weight: 600;
  font-size: clamp(34px, 4vw, 52px); color: #0e5e7e; letter-spacing: -0.01em;
}

/* ---------- Product deck ---------- */
.deckSection { padding-top: clamp(56px, 8vw, 96px); }
.productGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.productCard {
  position: relative; overflow: hidden;
  padding: 26px; border-radius: var(--radius);
  background: var(--paper); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.productCard::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: var(--accent);
}
.productCard::after {
  content: ""; position: absolute; inset: 6px 0 auto 0; height: 60%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent);
  pointer-events: none; opacity: 0.5;
}
.productCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 64px rgba(184, 137, 59, 0.2);
  border-color: rgba(184, 137, 59, 0.55);
}
.productCard .tag {
  display: inline-flex; align-items: center;
  margin-top: 8px; padding: 5px 12px; border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 14%, #fff);
  color: color-mix(in srgb, var(--accent) 78%, #11202f);
  font-size: 12px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
}
.productCard h3 { margin-top: 18px; }
.productCard p { margin-top: 10px; color: var(--ink-soft); font-size: 15px; }
.cardMore { display: inline-block; margin-top: 16px; font-weight: 700; font-size: 14px; color: color-mix(in srgb, var(--accent) 78%, #11202f); }
.cardMore span { display: inline-block; transition: transform 0.2s var(--ease); }
.productCard:hover .cardMore span { transform: translateX(5px); }
.productCard.featured { border-top-width: 0; box-shadow: 0 26px 60px rgba(15, 28, 43, 0.12); }
.productCard.featured::before { height: 8px; }
.leadFlag {
  position: absolute; top: 16px; right: 16px;
  padding: 5px 11px; border-radius: 999px;
  background: linear-gradient(120deg, var(--gold), var(--gold-soft));
  color: #2a1e05; font-size: 11px; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* ---------- Colours / finishes ---------- */
.colours {
  background:
    radial-gradient(circle at 14% 16%, rgba(6, 182, 212, 0.12), transparent 40%),
    radial-gradient(circle at 86% 84%, rgba(198, 154, 69, 0.14), transparent 42%),
    linear-gradient(135deg, #f1f8fc, #fdf6e8 55%, #eef6fb);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.coloursInner { max-width: var(--max); margin: 0 auto; padding: clamp(64px, 9vw, 104px) max(20px, calc((100vw - var(--max)) / 2)); }
.colours h2 { color: var(--ink); }
.colours .kicker.light { color: var(--gold-deep); }
.colours .lead.light { color: var(--ink-soft); }
.swatchRow { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 12px; }
.swatch {
  position: relative; width: 92px; height: 92px; border-radius: 16px;
  background: var(--s); border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s var(--ease);
  cursor: default;
}
.swatch:hover { transform: translateY(-6px) scale(1.04); }
.swatch::after {
  content: attr(data-name);
  position: absolute; left: 0; right: 0; bottom: -24px;
  text-align: center; font-size: 12px; font-weight: 600;
  color: var(--muted);
}

/* ---------- Sports / NuCourt ---------- */
.sports { background: var(--paper); border-top: 1px solid var(--line); }
.sportsInner {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(56px, 8vw, 100px) max(20px, calc((100vw - var(--max)) / 2));
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.courtProducts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.courtProducts span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 15px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-weight: 700; font-size: 14px; box-shadow: var(--shadow-sm);
}
.courtProducts span::before { content: ""; width: 10px; height: 10px; border-radius: 3px; background: var(--c); }

.courtWrap { perspective: 1400px; }
.court {
  position: relative;
  border-radius: var(--radius-lg); overflow: hidden;
  padding: 16px;
  background: linear-gradient(135deg, #0c5bd6, #2bbf5e);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(184, 137, 59, 0.5), 0 0 0 7px rgba(255, 255, 255, 0.9), 0 0 0 8px rgba(184, 137, 59, 0.35);
  transform: rotateY(-9deg) rotateX(4deg);
  transition: transform 0.5s var(--ease);
}
.courtWrap:hover .court { transform: rotateY(-3deg) rotateX(1deg); }
.court::after {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.32) 0%, transparent 30%, transparent 70%, rgba(255, 255, 255, 0.12) 100%);
}
.courtCaption {
  display: block; margin-top: 22px; text-align: center;
  font-size: 13px; font-weight: 600; color: var(--muted);
  letter-spacing: 0.02em;
}
.courtFloor {
  position: relative; aspect-ratio: 4 / 3; border-radius: 16px;
  background: linear-gradient(90deg, #1668e0 0 50%, #16a34a 50% 100%);
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.9);
}
.courtLine { position: absolute; background: rgba(255, 255, 255, 0.92); }
.courtLine.vert { top: 0; bottom: 0; left: calc(50% - 3px); width: 6px; }
.courtLine.horiz { left: 0; right: 0; top: calc(50% - 3px); height: 6px; }
.courtCircle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 120px; height: 120px; border: 6px solid rgba(255, 255, 255, 0.92); border-radius: 50%;
}
.courtKey { position: absolute; top: 26%; bottom: 26%; width: 22%; border: 6px solid rgba(255, 255, 255, 0.9); }
.courtKey.left { left: 0; border-left: 0; }
.courtKey.right { right: 0; border-right: 0; }
.courtTag {
  position: absolute; right: 18px; bottom: 14px;
  font-family: "Fraunces", serif; font-weight: 600;
  font-size: clamp(34px, 6vw, 64px); color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.02em;
}

/* ---------- Families ---------- */
.familyGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.familyCard {
  padding: 30px 28px; border-radius: var(--radius);
  background: var(--paper); border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.familyCard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.familyCard h3 { color: var(--ink); }
.familyCard p { margin-top: 12px; color: var(--ink-soft); font-size: 15px; }

/* ---------- Process ---------- */
.process { background: linear-gradient(180deg, var(--sand), var(--ivory)); }
.processInner { max-width: var(--max); margin: 0 auto; padding: clamp(64px, 9vw, 104px) max(20px, calc((100vw - var(--max)) / 2)); }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.steps li {
  position: relative; padding: 28px 24px;
  border-radius: var(--radius); background: var(--paper);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.stepNo {
  display: inline-grid; place-items: center;
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #2a1e05; font-family: "Fraunces", serif; font-weight: 600; font-size: 18px;
}
.steps h3 { margin-top: 18px; font-size: 21px; }
.steps p { margin-top: 8px; color: var(--ink-soft); font-size: 14.5px; }

/* ---------- UAE application ---------- */
.apply {
  background:
    radial-gradient(circle at 90% 0%, rgba(6, 182, 212, 0.1), transparent 38%),
    linear-gradient(135deg, #ffffff, #f3f9fc);
  border-top: 1px solid var(--line);
}
.applyInner {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) max(20px, calc((100vw - var(--max)) / 2));
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.applyCopy .primaryCta { margin-top: 30px; }
.applyTiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.applyTiles span {
  display: flex; align-items: center; gap: 12px;
  padding: 20px 22px; border-radius: 16px;
  background: #fff; border: 1px solid var(--line);
  border-left: 5px solid var(--c);
  font-weight: 700; font-size: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.applyTiles span::before {
  content: ""; width: 12px; height: 12px; border-radius: 4px; background: var(--c);
}
.applyTiles span:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* ---------- Contact ---------- */
.contact {
  background:
    radial-gradient(circle at 12% 18%, rgba(198, 154, 69, 0.18), transparent 38%),
    radial-gradient(circle at 88% 84%, rgba(6, 182, 212, 0.16), transparent 40%),
    linear-gradient(140deg, #fffdf8, #eef6fb 55%, #fdf5e7);
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.contactInner {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(64px, 9vw, 104px) max(20px, calc((100vw - var(--max)) / 2));
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.contactCopy h2 { color: var(--ink); }
.contactList { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 12px; }
.contactList li { display: flex; gap: 12px; font-size: 16px; color: var(--ink-soft); }
.contactList strong { min-width: 96px; color: var(--gold-deep); font-weight: 700; }
.contactList a:hover { color: var(--ink); text-decoration: underline; }

.contactCard {
  padding: 30px; border-radius: var(--radius-lg);
  background: #fff; color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; color: #344a5e; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px;
  border: 1px solid var(--line-strong); border-radius: 12px;
  font: inherit; font-size: 15px; color: var(--ink);
  background: var(--ivory);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: #fff;
  box-shadow: 0 0 0 4px rgba(198, 154, 69, 0.16);
}
.field textarea { resize: vertical; }
.contactCard button {
  grid-column: 1 / -1;
  min-height: 54px; border: 0; border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c4b);
  color: #fff; font: inherit; font-weight: 800; font-size: 15.5px;
  cursor: pointer; box-shadow: 0 16px 34px rgba(18, 140, 75, 0.34);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.contactCard button:hover { transform: translateY(-2px); box-shadow: 0 22px 44px rgba(18, 140, 75, 0.42); }
.formNote { grid-column: 1 / -1; margin: 0; font-size: 13px; color: var(--muted); text-align: center; }

/* ---------- Footer ---------- */
.footer { background: #0a141f; color: rgba(255, 255, 255, 0.66); }
.footerInner {
  max-width: var(--max); margin: 0 auto;
  padding: 52px max(20px, calc((100vw - var(--max)) / 2)) 28px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 28px;
}
.footerBrand strong { display: block; font-size: 20px; color: #fff; font-family: "Fraunces", serif; font-weight: 600; }
.footerBrand p { margin-top: 8px; max-width: 42ch; font-size: 14px; }
.footerLinks { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; font-weight: 600; font-size: 14px; }
.footerLinks a:hover { color: #fff; }
.footerFine {
  max-width: var(--max); margin: 0 auto;
  padding: 18px max(20px, calc((100vw - var(--max)) / 2)) 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12.5px; color: rgba(255, 255, 255, 0.5);
}

/* ---------- Quick-contact floating stack (WhatsApp / Email / Call) ---------- */
.floatingStack {
  position: fixed; right: 20px; bottom: 20px; z-index: 1001;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.floatingStackBtn {
  position: relative;
  display: grid; place-items: center;
  width: 58px; height: 58px; border-radius: 50%;
  color: #fff;
  box-shadow: 0 14px 30px rgba(15, 28, 43, 0.28);
  transition: transform 0.18s var(--ease), box-shadow 0.18s;
}
.floatingStackBtn:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 20px 38px rgba(15, 28, 43, 0.34); }
.floatingStackWhatsapp { background: linear-gradient(135deg, #25d366, #128c4b); order: 3; }
.floatingStackEmail { background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep)); order: 1; width: 52px; height: 52px; }
.floatingStackCall { background: linear-gradient(135deg, #3a9bff, #1d4ed8); order: 2; width: 52px; height: 52px; }
.floatingStackLabel {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
@media (max-width: 600px) {
  .floatingStack { right: 14px; bottom: 14px; gap: 12px; }
  .floatingStackWhatsapp { width: 54px; height: 54px; }
  .floatingStackEmail, .floatingStackCall { width: 48px; height: 48px; }
}

/* ---------- Desktop contact modal ---------- */
.ccmOverlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(8, 15, 30, 0.55);
  backdrop-filter: blur(5px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.ccmOverlay[hidden] { display: none; }
.ccmDialog {
  position: relative; width: 100%; max-width: 430px;
  max-height: calc(100vh - 48px); overflow-y: auto;
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px 28px;
  animation: ccmIn 0.35s var(--ease);
}
@keyframes ccmIn { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
.ccmClose {
  position: absolute; top: 14px; right: 16px;
  width: 36px; height: 36px; border: none; background: transparent;
  font-size: 26px; line-height: 1; color: var(--muted); cursor: pointer;
  border-radius: 50%; transition: background 0.2s;
}
.ccmClose:hover { background: rgba(15, 28, 43, 0.06); }
.ccmEyebrow { margin: 0 0 8px; }
.ccmTitle { margin: 0 0 6px; font-size: 26px; }
.ccmSubtitle { margin: 0 0 20px; color: var(--ink-soft); font-size: 15px; }
.ccmActions { display: grid; gap: 10px; }
.ccmBtn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 50px; padding: 0 18px; border-radius: 999px;
  font: inherit; font-weight: 800; font-size: 15px; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.18s var(--ease), box-shadow 0.18s, background 0.18s;
}
.ccmBtn:hover { transform: translateY(-2px); }
.ccmBtnCall { background: linear-gradient(135deg, #3a9bff, #1d4ed8); color: #fff; box-shadow: 0 14px 28px rgba(29, 78, 216, 0.3); }
.ccmBtnEmail { background: #fff; color: var(--ink); border-color: var(--line-strong); }
.ccmBtnEmail:hover { border-color: var(--gold); }
.ccmBtnWa { background: linear-gradient(135deg, #25d366, #128c4b); color: #fff; box-shadow: 0 14px 28px rgba(18, 140, 75, 0.3); }
.ccmQr {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  margin: 22px 0 6px; text-align: center;
}
.ccmQr img {
  width: 156px; height: 156px; border-radius: 14px;
  border: 1px solid var(--line); padding: 8px; background: #fff;
}
.ccmQr span { font-size: 13px; color: var(--muted); }
.ccmDivider {
  display: flex; align-items: center; text-align: center;
  color: var(--muted); font-size: 13px; font-weight: 600; margin: 18px 0 14px;
}
.ccmDivider::before, .ccmDivider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.ccmDivider span { padding: 0 12px; }
.ccmForm { display: grid; gap: 10px; }
.ccmForm input {
  width: 100%; padding: 13px 14px;
  border: 1px solid var(--line-strong); border-radius: 12px;
  font: inherit; font-size: 15px; color: var(--ink); background: var(--ivory);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.ccmForm input:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(198, 154, 69, 0.16); }
.ccmForm button { min-height: 52px; }
.ccmTrap { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.ccmSuccess { color: var(--green); font-weight: 700; text-align: center; margin: 10px 0 0; }

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

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .waDot { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav, .headerActions { display: none; }
  .navToggle { display: flex; }
  .heroSeal { display: none; }
  .court { transform: none; }
  .heritageGrid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat { border-top: 1px solid var(--line); }
  .stat:nth-child(1), .stat:nth-child(2) { border-top: 0; }
  .rangeGrid, .productGrid, .familyGrid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .roofLeadInner, .sportsInner, .contactInner, .applyInner { grid-template-columns: 1fr; gap: 36px; }
  .roofViz { min-height: 340px; }
  .header.navOpen + .mobileNav,
  .mobileNav.open {
    display: flex; flex-direction: column;
  }
  .mobileNav {
    position: sticky; top: 71px; z-index: 55;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px max(20px, calc((100vw - var(--max)) / 2)) 18px;
    gap: 4px; box-shadow: var(--shadow-md);
  }
  .mobileNav a { padding: 12px 6px; font-weight: 600; border-bottom: 1px solid var(--line); }
  .mobileNav a:last-child { border-bottom: 0; }
  .mobileCta {
    margin-top: 8px; text-align: center;
    background: linear-gradient(135deg, #25d366, #128c4b);
    color: #fff !important; border-radius: 999px; border-bottom: 0 !important;
  }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .topbarInner { font-size: 11.5px; gap: 10px; padding: 8px 16px; }
  .heritageGrid { grid-template-columns: 1fr; }
  .stat { border-left: 0 !important; border-top: 1px solid var(--line); }
  .stat:first-child { border-top: 0; }
  .rangeGrid, .productGrid, .familyGrid, .steps { grid-template-columns: 1fr; }
  .contactCard { grid-template-columns: 1fr; }
  .swatch { width: 72px; height: 72px; }
  .brandText > span { display: none; }
  .heroWash {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.62) 0%, rgba(255,255,255,0.9) 46%, rgba(255,255,255,0.97) 100%);
  }
  .hero { align-items: flex-end; min-height: 78vh; }
}

/* ---------- Product detail pages ---------- */
.ppHero {
  background:
    radial-gradient(circle at 88% -10%, rgba(198, 154, 69, 0.12), transparent 40%),
    linear-gradient(135deg, #ffffff, #f1f8fc);
  border-bottom: 1px solid var(--line);
}
.ppHeroInner {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(40px, 6vw, 76px) max(20px, calc((100vw - var(--max)) / 2)) clamp(48px, 7vw, 84px);
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.crumbs { font-size: 13px; font-weight: 700; color: var(--muted); margin: 0 0 18px; letter-spacing: 0.02em; }
.crumbs a { color: var(--gold-deep); }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { margin: 0 8px; opacity: 0.6; }
.ppHero h1 { font-size: clamp(38px, 5.4vw, 66px); line-height: 1.03; }
.ppHero h1 em { font-style: italic; font-weight: 500; color: var(--gold-deep); -webkit-text-fill-color: initial; background: none; }
.ppHero .lead { margin-top: 20px; }
.ppActions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-top: 30px; }
.ppMedia { align-self: stretch; min-height: 360px; display: flex; }
.ppMedia .roofViz, .ppMedia .courtWrap { width: 100%; align-self: center; }

.ppSection { max-width: var(--max); margin: 0 auto; padding: clamp(52px, 7vw, 88px) max(20px, calc((100vw - var(--max)) / 2)); }
.ppSection + .ppSection { padding-top: 0; }
.featureGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.featureCard {
  padding: 26px; border-radius: var(--radius);
  background: var(--paper); border: 1px solid var(--line);
  border-top: 5px solid var(--accent, var(--gold));
  box-shadow: var(--shadow-sm);
}
.featureCard h3 { font-size: 20px; }
.featureCard p { margin-top: 10px; color: var(--ink-soft); font-size: 15px; }
.usedRow { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.usedRow span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-weight: 700; font-size: 14px; box-shadow: var(--shadow-sm);
}
.usedRow span::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }

.specNote {
  max-width: var(--max); margin: 0 auto;
  padding: 0 max(20px, calc((100vw - var(--max)) / 2)) clamp(40px, 6vw, 72px);
}
.specNote p {
  padding: 18px 22px; border-radius: 14px;
  background: var(--mist); border: 1px solid var(--line);
  color: var(--ink-soft); font-size: 14px;
}

.ppCta { background: linear-gradient(135deg, #0f1c2b, #16314a 55%, #0f1c2b); color: #fff; }
.ppCtaInner {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(48px, 7vw, 84px) max(20px, calc((100vw - var(--max)) / 2));
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
}
.ppCta h2 { color: #fff; max-width: 18ch; }
.ppCta p { color: rgba(255, 255, 255, 0.78); margin-top: 10px; }

@media (max-width: 980px) {
  .ppHeroInner { grid-template-columns: 1fr; gap: 36px; }
  .featureGrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .featureGrid { grid-template-columns: 1fr; }
}

/* ---------- Footer meta (company / address / phone) ---------- */
.footerMeta { margin: 8px 0 0; font-size: 12.5px; line-height: 1.5; color: rgba(255, 255, 255, 0.6); }
.footerMeta a { color: rgba(255, 255, 255, 0.78); }
.footerMeta a:hover { color: #fff; text-decoration: underline; }

/* ---------- Product pail visuals (official NuTech product images) ---------- */
.productCard { display: flex; flex-direction: column; }
.productPailWrap { display: flex; align-items: flex-end; min-height: 144px; margin-bottom: 6px; }
.productPail {
  height: 134px; width: auto; object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(15, 28, 43, 0.2));
  transition: transform 0.35s var(--ease);
}
.productCard:hover .productPail { transform: translateY(-6px) rotate(-2deg); }

.pailPedestal {
  position: absolute; left: 18px; bottom: 18px; z-index: 5;
  display: inline-flex; align-items: center; gap: 13px;
  padding: 10px 18px 10px 10px; border-radius: 16px;
  background: rgba(255, 255, 255, 0.92); border: 1px solid var(--line);
  box-shadow: var(--shadow-md); backdrop-filter: blur(6px);
}
.pailPedestal img {
  height: 116px; width: auto;
  filter: drop-shadow(0 8px 14px rgba(15, 28, 43, 0.2));
  transition: transform 0.35s var(--ease);
}
.roofViz:hover .pailPedestal img { transform: translateY(-4px) rotate(-2deg); }
.pailPedestal b { font-family: "Fraunces", serif; font-weight: 600; font-size: 20px; color: var(--ink); line-height: 1; }

.featureCard .productPail { height: 116px; margin-bottom: 14px; }

/* product pail on SEO system hero (white card on coloured gradient) */
.vizPailWrap {
  align-self: center; z-index: 2;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 18px; margin: 6px 0 16px;
  background: rgba(255, 255, 255, 0.95); border-radius: 18px;
  box-shadow: var(--shadow-md);
}
.vizPail { height: 150px; width: auto; object-fit: contain; filter: drop-shadow(0 10px 18px rgba(15, 28, 43, 0.18)); }

/* ---------- Generic system hero visual (SEO landing pages) ---------- */
.systemViz {
  position: relative; overflow: hidden;
  min-height: 380px; border-radius: var(--radius-lg);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 28px;
  color: #fff;
  background: linear-gradient(150deg, var(--accent, #0b80a8), color-mix(in srgb, var(--accent, #0b80a8) 55%, #0a1a2a));
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(184, 137, 59, 0.45), 0 0 0 6px rgba(255, 255, 255, 0.85);
}
.systemViz::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.28), transparent 45%);
}
.systemViz .vizTag {
  position: relative; z-index: 2; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.9); color: var(--ink);
  font-size: 13px; font-weight: 700; margin-bottom: 14px;
}
.systemViz b {
  position: relative; z-index: 2;
  font-family: "Fraunces", serif; font-weight: 600;
  font-size: clamp(30px, 4vw, 48px); line-height: 1.02; letter-spacing: -0.01em;
}

/* ---------- Related internal links (pills) ---------- */
.relLinks { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.relLinks a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-weight: 700; font-size: 14px; color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), border-color 0.2s;
}
.relLinks a:hover { transform: translateY(-3px); border-color: var(--gold); }

@media (max-width: 600px) {
  .productPail { height: 106px; }
  .featureCard .productPail { height: 100px; }
  .productPailWrap { min-height: 116px; }
  .pailPedestal { left: 12px; bottom: 12px; padding: 8px 14px 8px 8px; }
  .pailPedestal img { height: 92px; }
  .pailPedestal b { font-size: 17px; }
  .vizPail { height: 118px; }
  .vizPailWrap { padding: 10px 14px; }
}
