/* ============================================================
   Elite Wallpapers — Website Stylesheet
   Rebuilt to match design reference (Elite Wallpapers Homepage)
   ============================================================ */

/* ── Webfonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ══════════════════════════════════════════════════════════
   DESIGN TOKENS
   ══════════════════════════════════════════════════════════ */
:root {
  /* ── Colours ── */
  --ew-black:        #0B0B0B;
  --ew-green:        #0F6B56;
  --ew-green-dark:   #07483B;
  --ew-green-deep:   #053A30;
  --ew-green-mid:    #0A5547;
  --ew-gold:         #D79727;
  --ew-gold-deep:    #A86F15;
  --ew-gold-soft:    #F4C46C;
  --ew-gold-wash:    #FBEED3;
  --ew-orange:       #C95824;
  --ew-ink:          #161B22;
  --ew-slate:        #5C6571;
  --ew-taupe:        #8B8473;
  --ew-paper:        #FFFAF0;
  --ew-card:         #FFFDF8;
  --ew-cream:        #F4EAD4;
  --ew-bone:         #F6EFE0;
  --ew-sand:         #ECE3D2;
  --ew-stone:        #D9CDB5;
  --ew-ivory:        #FFFAF0;
  --ew-ivory-dim:    rgba(255,250,240,0.82);
  --ew-ivory-faint:  rgba(255,250,240,0.36);

  /* ── Semantic ── */
  --surface-page:        var(--ew-paper);
  --surface-page-alt:    var(--ew-cream);
  --surface-card:        var(--ew-card);
  --surface-dark:        var(--ew-green-dark);
  --text-strong:         var(--ew-ink);
  --text-body:           var(--ew-slate);
  --text-muted:          var(--ew-taupe);
  --accent:              var(--ew-gold);
  --accent-strong:       var(--ew-gold-deep);
  --accent-soft:         var(--ew-gold-soft);
  --accent-wash:         var(--ew-gold-wash);
  --line:                var(--ew-sand);
  --line-strong:         var(--ew-stone);
  --line-on-dark:        rgba(255,255,255,0.14);
  --line-gold:           rgba(215,151,39,0.45);
  --glass-light:         rgba(255,250,240,0.84);
  --glass-border:        rgba(255,255,255,0.22);
  --shadow-xs:           0 1px 2px rgba(17,17,17,0.04);
  --shadow-sm:           0 4px 14px rgba(17,17,17,0.06);
  --shadow-md:           0 14px 40px rgba(17,17,17,0.09);
  --shadow-lg:           0 30px 80px rgba(17,17,17,0.14);
  --shadow-gold:         0 18px 50px rgba(169,133,76,0.22);
  --shadow-glass:        0 8px 32px rgba(11,11,11,0.12);

  /* ── Typography ── */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-ui:      'Manrope', 'Inter', system-ui, sans-serif;

  --fs-display:   clamp(3.25rem, 6.5vw, 6rem);
  --fs-hero:      clamp(3.25rem, 6.5vw, 6rem);
  --fs-h1:        clamp(2.5rem, 4.6vw, 4rem);
  --fs-h2:        clamp(2rem, 3.4vw, 3rem);
  --fs-h3:        clamp(1.5rem, 2.2vw, 2rem);
  --fs-h4:        1.375rem;
  --fs-lede:      clamp(1.25rem, 1.7vw, 1.6rem);
  --fs-body-lg:   1.1875rem;
  --fs-body:      1.0625rem;
  --fs-body-sm:   0.9375rem;
  --fs-label:     0.6875rem;
  --fs-caption:   0.8125rem;
  --fs-eyebrow:   0.75rem;
  --lh-display:   1.08;
  --lh-heading:   1.18;
  --lh-body:      1.72;

  /* ── Letter spacing ── */
  --ls-display:  -0.02em;
  --ls-tight:    -0.01em;
  --ls-normal:    0;
  --ls-eyebrow:   0.28em;
  --ls-label:     0.14em;
  --ls-button:    0.12em;

  /* ── Spacing ── */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-7: 32px;  --sp-8: 40px;
  --sp-9: 48px; --sp-10: 64px; --sp-11: 80px; --sp-12: 96px;

  /* ── Radii ── */
  --r-none: 0px;  --r-xs: 2px;  --r-sm: 4px;  --r-md: 8px;  --r-lg: 14px;  --r-pill: 999px;

  /* ── Motion ── */
  --dur-fast: 120ms;  --dur-base: 240ms;  --dur-slow: 560ms;  --dur-reveal: 480ms;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);

  /* ── Layout ── */
  --wrap-max: 1200px;
  --z-nav: 100;  --z-mega: 200;  --z-mobile-nav: 300;
}

/* ══════════════════════════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-strong);
  background: var(--surface-page);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: var(--lh-display);
  letter-spacing: var(--ls-tight);
  color: var(--text-strong);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 5px 0;
}
.footer-contact-list svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 4px;
    color: #999;
}
.footer-contact-list a,
.footer-contact-list span {
    color: rgb(255 250 240 / 82%);
    font-size: 15px;
    line-height: 1.6;
    text-decoration: none;
}
.footer-contact-list a:hover {
    text-decoration: none;
}

/* ── Utilities ── */
.ew-wrap { max-width: var(--wrap-max); margin: 0 auto; padding: 0 clamp(20px,4vw,60px); }
.ew-section { padding: clamp(64px,8vw,120px) 0; }

/* ── Eyebrow ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ew-green-dark);
  background: var(--ew-paper);
  border: 1px solid rgba(7,72,59,0.14);
  border-radius: var(--r-pill);
  padding: 7px 18px 7px 14px;
  box-shadow: var(--shadow-xs);
  width: fit-content;
  align-self: flex-start;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #D9604A;          /* coral/terracotta dot */
  flex-shrink: 0;
}
/* Gold variant (on dark backgrounds) */
.eyebrow--gold {
  color: var(--ew-gold);
  background: rgba(215,151,39,0.10);
  border-color: rgba(215,151,39,0.22);
}
.eyebrow--gold::before { background: var(--ew-gold); }
/* Light variant (on dark green backgrounds) */
.eyebrow--light {
  color: var(--ew-gold);
  background: rgba(255,250,240,0.10);
  border-color: rgba(255,250,240,0.18);
}
.eyebrow--light::before { background: var(--ew-gold); }

/* ── Reveal animation ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--dur-reveal) var(--ease-out), transform var(--dur-reveal) var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

/* ── Hero animation keyframes ── */
@keyframes heroRise {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroCardMain {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes heroCardSecondary {
  from { opacity: 0; transform: translateY(60px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes heroStatCard {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes floatYSlow {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(7px); }
}
@keyframes grainDrift {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-40px); }
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION — Fixed glass pill
   ══════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
}
.nav-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 18px clamp(16px,3vw,48px) 0;
}

.nav-pill {
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 14px 0 26px;
  border-radius: var(--r-pill);
  /* Hero state: nearly transparent */
  background: rgba(250,248,245,0.10);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.12);
  transition: background var(--dur-base) var(--ease-out),
              backdrop-filter var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.nav-pill.scrolled {
  background: var(--glass-light);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-color: rgba(255,255,255,0.28);
  box-shadow: var(--shadow-glass);
}

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img {
  height: 44px; width: auto;
  /* White on hero */
  filter: brightness(0) invert(1);
  transition: filter var(--dur-base) var(--ease-out);
}
.nav-pill.scrolled .nav-logo img { filter: none; }

/* Links */
.nav-pill { position: relative; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links > .nav-item { position: static; }
.nav-links a.ew-navlink {
  display: flex; align-items: center; gap: 4px;
  font-family: var(--font-ui); font-size: 13.5px; font-weight: 500;
  color: rgba(255,250,240,0.9); /* ivory on hero */
  padding: 8px 14px; border-radius: var(--r-pill);
  transition: color var(--dur-base) var(--ease-out), background var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
/* .content-text and .text-block defined in Section Title System below */
.prod-caro{
margin-bottom: 25px;  
}



.nav-links a.ew-navlink:hover { background: rgba(255,255,255,0.10); }
.nav-pill.scrolled .nav-links a.ew-navlink { color: var(--ew-ink); }
.nav-pill.scrolled .nav-links a.ew-navlink:hover { background: rgba(11,11,11,0.06); }

/* Chevron icon */
.nav-chevron { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform var(--dur-base) var(--ease-out); }
.nav-item--drop:hover .nav-chevron { transform: rotate(180deg); }

/* ── Wallpaper nav dropdown ─────────────────── */
.nav-links > .nav-item--drop { position: relative; } /* override .nav-links > .nav-item { position: static } */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  transform: translateY(-6px);
  width: 230px;
  background: var(--ew-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
  z-index: 200;
}
.nav-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
/* Arrow tip — aligned to left edge of dropdown */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px; left: 24px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--line-soft);
}
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: -5px; left: 24px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--ew-paper);
}
.nav-drop-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: background var(--dur-fast);
}
.nav-drop-item:hover { background: rgba(7,72,59,0.06); }
.nav-drop-item:hover .nav-drop-dot { background: var(--ew-green-dark); transform: scale(1.3); }
.nav-drop-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #D9604A;
  flex-shrink: 0;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.nav-drop-item:nth-child(2) .nav-drop-dot { background: var(--accent); }
.nav-drop-item:nth-child(3) .nav-drop-dot { background: var(--ew-gold); }
.nav-drop-item strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-strong);
  letter-spacing: 0.01em;
}
.nav-drop-item em {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
}
/* Scrolled state keeps text readable */
.nav-pill.scrolled .nav-drop-item strong { color: var(--ew-ink); }

/* ══════════════════════════════════════════════════════════
   WALLPAPER SUB-SECTION CARDS
   ══════════════════════════════════════════════════════════ */
.wp-subcards {
  display: flex;
  gap: 12px;
  margin: 22px 0 36px;
  flex-wrap: wrap;
}
.wp-subcard {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border: 1.5px solid var(--line-soft);
  border-radius: var(--r-lg);
  text-decoration: none;
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  transition:
    border-color var(--dur-base) var(--ease-out),
    box-shadow var(--dur-base) var(--ease-out),
    transform var(--dur-base) var(--ease-out),
    background var(--dur-base) var(--ease-out);
  min-width: 220px;
}
.wp-subcard:hover {
  border-color: var(--ew-green-dark);
  box-shadow: var(--shadow-sm), 0 0 0 3px rgba(7,72,59,0.06);
  transform: translateY(-2px);
  background: #FDFCF8;
}
.wp-subcard:hover .wp-subcard-arrow {
  transform: translateX(4px);
  stroke: var(--ew-green-dark);
}
.wp-subcard:hover .wp-subcard-icon {
  background: var(--ew-green-dark);
  color: var(--ew-ivory);
}

/* Active (scroll-based) */
.wp-subcard--active {
  border-color: var(--ew-green-dark);
  background: rgba(7,72,59,0.04);
  box-shadow: var(--shadow-sm);
}
.wp-subcard--active .wp-subcard-icon {
  background: var(--ew-green-dark);
  color: var(--ew-ivory);
}
.wp-subcard--active .wp-subcard-title { color: var(--ew-green-dark); }

/* Icon box */
.wp-subcard-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: rgba(7,72,59,0.07);
  color: var(--ew-green-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}

/* Text */
.wp-subcard-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.wp-subcard-title {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: 0.01em;
}
.wp-subcard-desc {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Arrow */
.wp-subcard-arrow {
  flex-shrink: 0;
  stroke: var(--text-muted);
  transition: transform var(--dur-base) var(--ease-out), stroke var(--dur-base);
}

/* ── CTA button ── */
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-size: var(--fs-label); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  /* Hero state: gold bg, dark text */
  background: var(--ew-gold); color: var(--ew-ink);
  padding: 0 22px; height: 46px; border-radius: var(--r-pill);
  margin-left: 8px; white-space: nowrap;
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), transform var(--dur-fast), box-shadow var(--dur-fast);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.nav-pill.scrolled .nav-cta { background: #07483b; color: var(--ew-ivory); }

/* ── Hamburger ── */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  width: 44px; height: 44px; gap: 5px; border-radius: var(--r-pill);
  background: rgba(255,255,255,0.12); margin-left: 8px;
}
.nav-toggle span {
  display: block; width: 20px; height: 1.5px;
  background: var(--ew-ivory);
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-fast);
}
.nav-pill.scrolled .nav-toggle span { background: var(--ew-ink); }

/* ── Mega Menu ── */
.mega-menu {
  position: absolute; top: calc(100% + 12px); left: 0; right: 0;
  background: var(--surface-card); border-radius: var(--r-lg);
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  padding: 36px 40px; display: grid;
  z-index: var(--z-mega);
  grid-template-columns: repeat(4,1fr); gap: 32px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--dur-base) var(--ease-out),
              visibility var(--dur-base),
              transform var(--dur-base) var(--ease-out);
}
.mega-menu.open {
  opacity: 1; visibility: visible; pointer-events: all; transform: translateY(0);
}

.mega-col-head {
  font-family: var(--font-ui); font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-strong);
  padding-bottom: 10px; margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.mega-col ul { display: flex; flex-direction: column; gap: 6px; margin-top: 0; }
.mega-col ul li a {
  font-family: var(--font-body); font-size: 14px; color: var(--text-body);
  padding: 4px 0; display: block;
  transition: color var(--dur-fast);
}
.mega-col ul li a:hover { color: var(--accent-strong); }
.mega-col + .mega-col { border-left: 1px solid var(--line); padding-left: 20px; margin-left: 4px; }

/* ══════════════════════════════════════════════════════════
   MOBILE NAV OVERLAY
   ══════════════════════════════════════════════════════════ */
.mobile-nav-overlay {
  position: fixed; inset: 0; z-index: var(--z-mobile-nav);
  background: var(--ew-green-dark);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 48px clamp(28px,8vw,80px);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out);
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav-overlay a {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500; color: var(--ew-ivory); line-height: 1.2;
  padding: 10px 0;
  opacity: 0.7; transition: opacity var(--dur-fast);
}
.mobile-nav-overlay a:hover { opacity: 1; }
.mobile-nav-overlay .nav-mobile-cta {
  margin-top: 32px;
  font-family: var(--font-ui); font-size: var(--fs-label); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  font-size: 1rem; color: var(--ew-gold); opacity: 1;
  border: 1px solid var(--ew-gold); padding: 14px 32px; border-radius: var(--r-pill);
}

.mobile-nav-close {
  position: absolute; top: 24px; right: 28px;
  font-size: 28px; color: var(--ew-ivory-dim); width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); border-radius: 50%;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.mobile-nav-close:hover { background: rgba(255,255,255,0.16); color: var(--ew-ivory); }


/* ══════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-weight: 600;
  border-radius: var(--r-pill); cursor: pointer; border: none;
  text-decoration: none; transition: transform var(--dur-fast), box-shadow var(--dur-fast), background var(--dur-fast);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(11,11,11,0.16); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn--sm  { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; padding: 10px 18px; }
.btn--md  { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; padding: 13px 24px; }
.btn--lg  { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; padding: 16px 32px; }

.btn--gold          { background: var(--ew-gold); color: var(--ew-ink); }
.btn--primary       { background: var(--ew-green-dark); color: var(--ew-ivory); }
.btn--outline       { background: transparent; color: var(--ew-ink); border: 1.5px solid var(--ew-ink); }
.btn--outline-light { background: transparent; color: var(--ew-ivory); border: 1.5px solid rgba(255,250,240,0.5); }
.btn--outline-light:hover { border-color: var(--ew-ivory); background: rgba(255,250,240,0.08); }
.btn--ghost         { background: transparent; color: var(--text-strong); border: 1.5px solid var(--line-strong); }
.btn--ghost:hover   { border-color: var(--accent); color: var(--accent-strong); }

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: #07483b url('assets/hero-bg.jpg') center center / cover no-repeat;
  overflow: hidden;
  display: flex; align-items: stretch;
}

/* Grain texture overlay */
.hero-grain {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  /*opacity: 0.12;*/
  background-size: cover; background-position: center;
}

/* Gradient overlay (left heavy) */
.hero-overlay {
 /* position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(7,72,59,0.88) 0%, rgba(7,72,59,0.65) 42%, rgba(7,72,59,0.30) 100%);*/
}

/* Content grid */
.hero-grid {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--wrap-max);
  margin: 0 auto; padding: 0 clamp(20px,4vw,60px);
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px,5vw,80px);
  align-items: center;
  padding-top: 120px; padding-bottom: 80px;
  min-height: 100vh;
}

/* Text side */
.hero-text { display: flex; flex-direction: column; }
.hero-heading {
  font-family: var(--font-display); font-weight: 500;
  font-size: 45px; 
  letter-spacing: var(--ls-display);
 
  color: var(--ew-ivory); margin-top: 20px;
}
@media (max-width: 768px) {
  .hero-heading {
    font-size: 33px;
    line-height: 1.1;
  }
}.nowrap{
    white-space: nowrap;
}
    .text-accent {
      font-family: "Playfair Display", Georgia, serif;
      font-style: italic;
      font-weight: 400;         
      color: goldenrod;
    }
 

/* .ew-title responsive sizing handled by clamp() in Section Title System below */


@media screen and (max-width: 768px) {
.con-text p {
   margin-right: 15px;
  } 
}

@media (max-width: 400px) {
.contact-form-card {
       padding: 15px 15px !important;
    }
}

@media (max-width: 480px) {
    .nav-pill {
        margin-right: 15px;
        margin-left: 15px;
        height: 60px;
    }
}

/* prod-sub-header layout defined in Section Title System below */

@media (max-width: 576px) {
    .prod-info-pitch {
       margin-bottom: 30px !important;
        gap: 24px;
    }
}

@media (max-width: 375px){
  .prod-info-pitch{
    margin-bottom: 30px !important;
  }
}

.paper-title{ margin-top: 20px; }
.ind-card-content{ display: flex; gap: 10px; }
/* prod-caro top margin handled by .prod-caro rule (36px) — no override */

/* .ew-heading p — no forced white; inherits section color */
.ew-heading p { margin-top: 10px; }

.prod-car h3 { margin-top: 20px; /* font-size managed by .prod-carousel-heading token */ }

html { scroll-behavior: smooth; }

@media (max-width: 768px) {
  /* Show hamburger, hide desktop links and CTA */
  .nav-toggle { display: flex; }
  .nav-links  { display: none; }
  .nav-cta    { display: none; }

  /* Mobile overlay nav links — large, readable */
  .mobile-nav-overlay a {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  /* Mobile CTA button — keep the gold pill style */
  .mobile-nav-overlay .nav-mobile-cta {
    font-size: 0.9rem;
    background-color: transparent;
    color: var(--ew-gold);
    margin-top: 32px;
    margin-bottom: 0;
    padding: 12px 28px;
    border: 1px solid var(--ew-gold);
  }
}


/* Each word is wrapped: .word-clip (overflow:hidden) > .word-inner (animates up) */
.word-clip { display: block; overflow: hidden; }
.word-inner { display: inline-block; }
.hero-heading em {
  font-style: italic; font-family: var(--font-serif);
  color: var(--accent); font-weight: 500;
}
.hero-lede {
  margin-top: 28px;
  font-family: var(--font-serif); font-size: var(--fs-lede);
  line-height: 1.5; color: var(--ew-ivory-dim);
  max-width: 46ch;
  animation: heroFade var(--dur-reveal) var(--ease-out) 0.85s both;
}
.hero-actions {
  margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  animation: heroFade var(--dur-reveal) var(--ease-out) 1s both;
}

/* Scroll cue */
.hero-scroll-cue {
  display: flex; align-items: center; gap: 10px; margin-top: 48px;
  font-family: var(--font-ui); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ew-ivory-faint);
}
.hero-scroll-line { width: 1px; height: 40px; background: var(--ew-ivory-faint); }

/* Art side */
.hero-art {
  position: relative; height: clamp(400px, 70vh, 680px); align-self: center;
}
.hero-art-card {
  position: absolute; border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.hero-art-card img { width: 100%; height: 100%; object-fit: cover; }
/* Parallax wrappers (JS moves these) */
.hero-parallax-main {
  position: absolute; width: 62%; height: 78%; top: 0; right: 0;
  animation: heroCardMain 1s var(--ease-out) 0.3s both;
  will-change: transform;
}
.hero-parallax-sec {
  position: absolute; width: 52%; height: 60%; bottom: 0; left: 0;
  animation: heroCardSecondary 1s var(--ease-out) 0.55s both;
  will-change: transform;
}
/* Cards float independently inside the wrapper */
.hero-art-card--main {
  width: 100%; height: 100%;
  animation: floatY 6s ease-in-out 1.3s infinite;
}
.hero-art-card--secondary {
  width: 100%; height: 100%;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--ew-black);
  animation: floatYSlow 7s ease-in-out 1.55s infinite;
}

/* Glass stat card — light glass over dark hero, ink text (matches reference) */
.hero-stat-card {
  position: absolute; bottom: 14%; right: 0;
  background: var(--glass-light);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md); padding: 18px 22px;
  min-width: 130px; z-index: 3;
  box-shadow: var(--shadow-md);
  animation: heroStatCard 0.8s var(--ease-out) 0.9s both;
}
.hero-stat-card .stat-num {
  font-family: var(--font-display); font-size: 30px; font-weight: 600; color: var(--ew-ink);
  line-height: 1;
}
.hero-stat-card .stat-desc {
  font-family: var(--font-ui); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted); margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════════ */
/* ── ABOUT / STUDIO — brand dark green, ivory text ────────────────────── */
/* Padding so absolute quote card doesn't get clipped */
.ew-about-media { padding-bottom: 40px; }
.about-section {
  background: var(--ew-green-dark);   /* #07483B — dramatic shift from cream */
  color: var(--ew-ivory);
  position: relative;
  overflow: hidden;

}
/* Subtle noise texture overlay for depth */
.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}
/* About — override text colours for dark bg */
.about-section h2,
.about-section h3,
.about-section h4  { color: var(--ew-ivory); }
.about-section p   { color: #ffffff; }
.about-section .eyebrow {
  color: var(--ew-gold);
  background: rgba(215,151,39,0.12);
  border-color: rgba(215,151,39,0.25);
}
.about-section .eyebrow::before { background: var(--ew-gold); }
.about-section .about-quote-card {
  background: rgba(255,250,240,);
  border: 1px solid rgba(255,250,240,0.14);
}
.about-section .about-quote-text  { color: var(--ew-ivory); }
.about-section .about-quote-attr  { color: var(--ew-ivory-dim); }
/* Small stat labels below about text */
.about-section [style*="color: var(--text-strong)"] { color: var(--ew-ivory) !important; }
.about-section [style*="color: var(--text-muted)"]  { color: var(--ew-ivory-dim) !important; }
.about-section [style*="background: var(--accent)"] { background: var(--ew-gold) !important; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,96px); align-items: center;
}

/* Image side */
.about-image-wrap { position: relative; }
.about-figure {
  margin: 0; border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5;
}
.about-figure img { width: 100%; height: 100%; object-fit: cover; }

/* Floating quote card — exact from design reference */
.about-quote-card {
  position: absolute; bottom: -28px; right: -20px;
  background: var(--ew-black); color: var(--ew-ivory);
  padding: 26px 30px; border-radius: var(--r-md);
  max-width: 230px; box-shadow: var(--shadow-md);
}
.about-quote-text {
  font-family: var(--font-serif); font-style: italic;
  font-size: 20px; line-height: 1.4;
}
.about-quote-byline {
  margin-top: 12px;
  font-family: var(--font-ui); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ew-ivory-faint);
}

/* Text side */
.about-h2 {
  margin-top: 22px;
  font-family: var(--font-display); font-size: var(--fs-h1); font-weight: 700;
  line-height: var(--lh-heading);
}
.about-body-lg {
  margin-top: 24px; font-size: var(--fs-body-lg);
  line-height: var(--lh-body); color: var(--text-body); max-width: 54ch;
}
.about-body {
  margin-top: 18px; font-size: var(--fs-body);
  line-height: var(--lh-body); color: var(--text-body); max-width: 54ch;
}

/* Pillars — exact from design reference */
.about-pillars {
  margin-top: 36px; display: flex; gap: 48px; flex-wrap: wrap;
}
.about-pillar-rule {
  width: 28px; height: 1px; background: var(--accent); margin-bottom: 12px;
}
.about-pillar-title {
  font-family: var(--font-display); font-size: 20px; color: var(--text-strong);
}
.about-pillar-sub {
  font-family: var(--font-ui); font-size: 13px;
  color: var(--text-muted); margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════
   SOLUTIONS — Numbered showcase layout
   ══════════════════════════════════════════════════════════ */
.solutions-section {
  background: #FFFAF0;          /* ew-paper — warm cream */
  position: relative;
  overflow: hidden;
}
/* Left stripe on wallpaper section too */
.solutions-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.7s 0.2s var(--ease-out);
}
.solutions-section.reveal.in::after { transform: scaleY(1); }
.sol-tag {
  font-family: var(--font-ui); font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; padding: 7px 18px; border-radius: var(--r-pill);
  background: transparent; border: 1.5px solid var(--line-strong);
  color: var(--text-body); cursor: pointer;
  transition: background var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast);
}
.sol-tag.active, .sol-tag:hover { background: var(--ew-green-dark); border-color: var(--ew-green-dark); color: var(--ew-ivory); }

/* Showcase — alternating 2-col */
.showcase {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,5vw,80px); align-items: center;
  padding: clamp(48px,0vw,96px) 0;
}
.showcase:first-of-type { padding-top: clamp(30px,4vw,56px); }
.showcase.flip .showcase-text { order: 2; }
.showcase.flip .showcase-image { order: 1; }

/* Showcase text */
.showcase-index {
  font-family: var(--font-display); font-size: 13px; color: var(--accent-strong);
  letter-spacing: 0.06em;
}
.showcase-eyebrow-wrap { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }

/* Pill label inside showcase-eyebrow-wrap — matches reference design */
.showcase-eyebrow-wrap .sol-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ew-green-dark);
  background: var(--ew-paper);
  border: 1px solid rgba(7,72,59,0.14);
  border-radius: var(--r-pill);
  padding: 7px 18px 7px 12px;
  box-shadow: var(--shadow-xs);
}
.showcase-eyebrow-wrap .sol-tag::before {
  content: '';
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #D9604A;
  flex-shrink: 0;
}
/* Light variant for dark-bg sections */
.showcase-eyebrow-wrap .sol-tag--light {
  color: var(--accent);
  background: rgba(255,250,240,0.10);
  border-color: rgba(255,250,240,0.18);
}
.showcase-eyebrow-wrap .sol-tag--light::before { background: var(--accent); }
.showcase-text h3 {
  font-family: var(--font-display); font-size: var(--fs-h1); font-weight: 700;
  line-height: var(--lh-display); max-width: 16ch;
}
.showcase-text p {
  margin-top: 18px; 
  /* font-size: var(--fs-body-lg); */
  line-height: var(--lh-body); color: var(--text-body); max-width: 52ch;
}
.showcase-features {
  margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.showcase-feature {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: var(--fs-body-sm); color: var(--text-body); line-height: 1.5;
}
.showcase-feature::before { content: '—'; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.showcase-actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Showcase image */
.showcase-image {
  position: relative; border-radius: var(--r-md);
  overflow: hidden; aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.showcase-image img { width: 100%; height: 100%; object-fit: cover; }

/* Glass icon circle */
.showcase-icon {
  position: absolute; top: 20px; left: 20px; width: 52px; height: 52px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(250,248,245,0.18);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--ew-ivory);
}
.showcase.flip .showcase-icon { left: auto; right: 20px; }

/* ══════════════════════════════════════════════════════════
   PRODUCT SECTION — wallpaper showcase + carousel + sub-sections
   ══════════════════════════════════════════════════════════ */
.prod-section {
  padding-top: clamp(40px,0vw,96px);
  padding-bottom: clamp(48px,7vw,96px);
}


@media (max-width: 576px) {
    .prod-section {
        padding-top: 0px;
    }
}
.prod-header {
  margin-bottom: 32px;
}
.prod-carousel-heading {
  font-family: var(--font-display);
  font-size: clamp(1.3rem,2.2vw,1.8rem);
  font-weight: 700;
  color: var(--ew-ink);
  /* margin-bottom: 20px; */
}

/* Carousel scroll container */
.prod-carousel-wrap {
  position: relative;
  margin-bottom: 0;
}
.prod-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.prod-carousel::-webkit-scrollbar { display: none; }

.prod-slide {
  flex: 0 0 clamp(180px, 22vw, 260px);
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  cursor: pointer;
  background: #e8e4dc;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.prod-slide:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.prod-slide img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform var(--dur-slow) var(--ease-out);
}
.prod-slide:hover img { transform: scale(1.04); }

/* Slide info overlay — always visible */
.prod-slide-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(11,11,11,0.82) 0%, rgba(11,11,11,0) 100%);
  padding: 40px 14px 14px;
  display: flex; flex-direction: column; gap: 4px;
  opacity: 1; transform: translateY(0);
}
.prod-slide-title {
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  color: var(--ew-ivory); letter-spacing: 0.02em;
}
.prod-slide-desc {
  font-size: 13px; color: rgba(255,250,240,0.78); line-height: 1.4;
}

/* Carousel arrow buttons */
.prod-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ew-black); color: var(--ew-ivory);
  border: none; font-size: 20px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 2;
  transition: opacity var(--dur-fast), background var(--dur-fast);
  opacity: 0.8;
}
.prod-arrow:hover { opacity: 1; }
.prod-arrow--prev { left: -22px; }
.prod-arrow--next { right: -22px; }

/* Sub-sections (Wallpaper Murals, Custom Wallpapers) */
.prod-sub { padding-top: clamp(48px,6vw,80px); }
.prod-sub-header { margin-bottom: 36px; }
.prod-sub-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.prod-sub-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
.prod-sub-label { }
.prod-sub-header h4 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 700;
  line-height: var(--lh-heading);
  color: var(--ew-green-dark);
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
}
.prod-sub-header h4::before {
  content: ''; position: absolute; left: 0; top: 0.1em;
  width: 4px; height: 0.8em; background: var(--accent); border-radius: 2px;
}
.prod-sub-header p {
  margin-top: 14px; 
  /* font-size: var(--fs-body-lg); */
  line-height: var(--lh-body); color: var(--text-body);
  max-width: 56ch;
}

/* Showcase number index */
.showcase-index {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; color: var(--text-muted);
}
.showcase-index--light { color: rgba(255,250,240,0.5); }

/* Flooring 4-col grid */
.flooring-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 18px;
  margin-top: 36px;
}
.floor-card {
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-md); background: var(--surface-card);
}
.floor-card-img { aspect-ratio: 1/1; overflow: hidden; }
.floor-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-reveal) var(--ease-out); }
.floor-card:hover .floor-card-img img { transform: scale(1.05); }
.floor-card-body { padding: 16px; }
.floor-card-title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; }
.floor-card-desc { margin-top: 4px; font-size: var(--fs-body-sm); color: var(--text-body); }

/* ══════════════════════════════════════════════════════════
   TRUST — Why Choose (dark band) + Stats
   ══════════════════════════════════════════════════════════ */
.trust-section {
  background: var(--ew-green-dark); color: var(--ew-ivory);
}
.trust-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px,5vw,80px); align-items: end; margin-bottom: 56px;
}
.trust-intro h2 {
  margin-top: 16px; font-family: var(--font-display);
  font-size: var(--fs-h1); font-weight: 700; color: var(--ew-ivory);
}
.trust-intro p { 
  /* font-size: var(--fs-body-lg); */
   line-height: var(--lh-body); color: var(--ew-ivory-dim); }

/* Stats bar */
.trust-stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 40px;
  padding: 48px 0; border-top: 1px solid var(--line-on-dark); border-bottom: 1px solid var(--line-on-dark);
}
.stat-item {}
.stat-value {
  font-family: var(--font-display); font-size: clamp(2.5rem,4vw,3.5rem);
  font-weight: 700; color: var(--ew-ivory); line-height: 1;
}
.stat-suffix { font-size: 0.55em; }
.stat-label {
  margin-top: 8px; font-family: var(--font-ui); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ew-ivory-dim);
}

/* Reasons grid */
.trust-reasons {
  margin-top: 56px; display: grid; grid-template-columns: repeat(4,1fr); gap: 40px;
}
.trust-reason-icon { color: var(--accent); margin-bottom: 16px; }
.trust-reason-icon svg { width: 28px; height: 28px; }
.trust-reason h4 { font-family: var(--font-display); font-size: var(--fs-h4); font-weight: 600; color: var(--ew-ivory); }
.trust-reason p { margin-top: 8px; font-size: var(--fs-body-sm); line-height: var(--lh-body); color: var(--ew-ivory-dim); }

/* ══════════════════════════════════════════════════════════
   INDUSTRIES — hover cards
   ══════════════════════════════════════════════════════════ */
.industries-section { background: #EEF2EF; }   /* light sage — distinct from every other section */
.industries-head { margin-bottom: 40px; }
.industries-head h2 { margin-top: 16px; font-family: var(--font-display); font-size: var(--fs-h1); font-weight: 700; }
.industries-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
}
.ind-card {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer;
}
.ind-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-reveal) var(--ease-out);
}
.ind-card:hover img { transform: scale(1.06); }
.ind-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,11,0) 35%, rgba(11,11,11,0.85) 100%);
}
.ind-card-content { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px; }
.ind-card-icon { color: var(--accent); margin-bottom: 10px; }
.ind-card-icon svg { width: 22px; height: 22px; }
.ind-card h4 { font-family: var(--font-display); font-size: var(--fs-h4); color: var(--ew-ivory); font-weight: 600; }
.ind-card p {
  font-size: var(--fs-body-sm); line-height: 1.55; color: var(--ew-ivory-dim);
  margin-top: 6px; opacity: 0; transform: translateY(8px);
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.ind-card:hover p { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════
   PROCESS — Sticky accordion
   ══════════════════════════════════════════════════════════ */
.process-section {
  background: rgb(255 255 255);
  color: var(--ew-ink);
}
.process-section .eyebrow         { color:#07483b; border-color: rgba(7, 72, 59, 0.14); background: #fffaf0; }
.process-section .eyebrow::before { background: #d9604a; }
.process-layout {
  display: grid; grid-template-columns: 0.9fr 1.4fr;
  gap: clamp(40px,6vw,96px); align-items: start;
}
.process-sticky { position: sticky; top: 110px; }
.process-sticky h2 {
  margin-top: 16px; font-family: var(--font-display);
  font-size: var(--fs-h1); font-weight: 700; line-height: var(--lh-heading);
  color: black;
}
.process-sticky p {
  margin-top: 20px; 
  /* font-size: var(--fs-body-lg); */
  line-height: var(--lh-body); color: #5c6571; max-width: 44ch;
}
.process-counter {
  margin-top: 32px; display: flex; align-items: baseline; gap: 12px;
}
.process-counter-num {
  font-family: var(--font-display); font-size: 56px; font-weight: 700;
  color: #07483b; line-height: 1;
}
.process-counter-of {
  font-family: var(--font-ui); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: #07483b;
}
.process-steps { display: flex; flex-direction: column; }
.process-step {
  border-bottom: 1px solid black; cursor: pointer;
}
.process-step:first-child { border-top: 1px solid black; }
.process-step-header {
  display: flex; align-items: center; gap: 16px; padding: 22px 0;
  transition: opacity var(--dur-fast);
}
.process-step:hover .process-step-header { opacity: 0.85; }
.process-step-index {
  font-family: var(--font-display); font-size: 13px; font-weight: 500;
  color: #8B8473; min-width: 26px; letter-spacing: 0.04em;
}
.process-step-title {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  color: black; flex: 1;
}
.process-step-toggle {
  font-size: 20px; color: #8B8473; line-height: 1;
  transition: transform var(--dur-base) var(--ease-out), color var(--dur-base);
}
.process-step.open .process-step-toggle { transform: rotate(45deg); color: #8B8473; }
.process-step-body {
  display: none; padding-bottom: 22px; padding-left: 42px;
}
.process-step.open .process-step-body { display: block; }
.process-step-body p { font-size: var(--fs-body-lg); line-height: var(--lh-body); color: #5c6571; }

/* ══════════════════════════════════════════════════════════
   SERVICE SECTION BACKGROUNDS
   ══════════════════════════════════════════════════════════ */
.svc-section {
  position: relative;
  padding: clamp(64px,9vw,128px) 0;
  overflow: hidden;
}
.svc--paper  { background: #FFFAF0; }
.svc--cream  { background: #FFFFFF; }
.svc--white  { background: #F0F4F1; }
.svc--dark   { background: var(--ew-green-dark); color: var(--ew-ivory); }
.svc--ink    { background: #FFFAF0; color: var(--ew-ivory); }

.svc--dark .showcase-text h3,
.svc--dark .prod-sub-header h4 { color: var(--ew-ivory); }
.svc--dark .showcase-text p    { color: var(--ew-ivory-dim); }
.svc--dark .showcase-feature   { color: var(--ew-ivory-dim); }
.svc--dark .showcase-feature::before { color: var(--ew-gold); }
.svc--dark .eyebrow { color: var(--ew-gold); background: rgba(215,151,39,0.1); border-color: rgba(215,151,39,0.22); }
.svc--dark .eyebrow::before { background: var(--ew-gold); }
.svc--dark .sol-tag { color: var(--ew-gold); background: rgba(215,151,39,0.12); border-color: rgba(215,151,39,0.22); }
.svc--dark .sol-tag::before { background: var(--ew-gold); }
.svc--dark .btn--outline { color: var(--ew-ivory); border-color: rgba(255,250,240,0.4); }
.svc--dark .btn--outline:hover { border-color: var(--ew-ivory); }

.svc--ink .showcase-text h3 { color: var(--ew-ivory); }
.svc--ink .showcase-text p  { color: var(--ew-ivory-dim); }
.svc--ink .showcase-feature { color: var(--ew-ivory-dim); }
.svc--ink .showcase-feature::before { color: var(--ew-gold); }
.svc--ink .eyebrow { color: var(--ew-gold); background: rgba(215,151,39,0.1); border-color: rgba(215,151,39,0.22); }
.svc--ink .eyebrow::before { background: var(--ew-gold); }
.svc--ink .sol-tag { color: var(--ew-gold); background: rgba(215,151,39,0.12); border-color: rgba(215,151,39,0.22); }
.svc--ink .sol-tag::before { background: var(--ew-gold); }
.svc--ink .btn--outline { color: var(--ew-ivory); border-color: rgba(255,250,240,0.4); }

/* Heading and text within svc sections */
.svc-heading--light { font-family: var(--font-display); font-size: var(--fs-h1); font-weight: 700; color: var(--ew-ink); line-height: var(--lh-heading); }
.svc-body--light    { font-size: var(--fs-body-lg); line-height: var(--lh-body); color: #5C6571; }
.svc-floor-head     { margin-bottom: 36px; }

/* Reveal inside svc-sections */
.svc-section .showcase.reveal     { opacity: 0; transform: translateY(36px); transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out); }
.svc-section .showcase.reveal.in  { opacity: 1; transform: none; }
.svc-section .reveal               { opacity: 0; transform: translateY(28px); transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out); }
.svc-section .reveal.in            { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════
   CONTACT — Dark glass form
   ══════════════════════════════════════════════════════════ */
.contact-section {
  position: relative;background: linear-gradient(
        90deg,
        #020808 0%,
        #041411 35%,
        #062018 65%,
        #0b3b2a 100%
    ); 
    color: var(--ew-ivory); overflow: hidden;
}
.contact-grain { 
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("assets/hero-bg.jpg"); 
  background-size: cover; background-position: center;
}
.contact-content { position: relative; z-index: 1; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,96px); align-items: start;
}
.contact-left .eyebrow { color: var(--ew-gold); background: rgba(215,151,39,0.1); border-color: rgba(215,151,39,0.22); }
.contact-left .eyebrow::before { background: var(--ew-gold); }
.contact-left h2 {
  margin-top: 16px; font-family: var(--font-display); font-size: var(--fs-h1);
  font-weight: 700; color: var(--ew-ivory); max-width: 16ch; line-height: var(--lh-heading);
}
.contact-left p {
   margin-top: 20px; 
   /* font-size: var(--fs-body-lg);  */
   line-height: var(--lh-body); color: var(--ew-ivory-dim); max-width: 50ch; }
.contact-benefits {
  margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px;
}
.contact-benefit {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: var(--fs-body-sm); color: var(--ew-ivory-dim); line-height: 1.55;
}
.contact-benefit-icon { color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.contact-details {
  margin-top: 32px; display: flex; flex-direction: column; gap: 0;
}
.contact-detail-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--font-body); font-size: var(--fs-body-sm);
  color: var(--ew-ivory-dim); line-height: 1.6;
  padding: 10px 0; border-bottom: 1px solid rgba(255,250,240,0.07);
}
.contact-detail-item:last-child { border-bottom: none; }
.contact-detail-item svg { flex-shrink: 0; margin-top: 2px; opacity: 0.6; }
.contact-detail-item a { color: var(--ew-ivory-dim); transition: color var(--dur-fast); }
.contact-detail-item a:hover { color: var(--accent); }
.contact-ctas { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.contact-form-card {
  background: rgba(250,248,245,0.06);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-lg); padding: clamp(24px,3vw,44px);
  box-shadow: var(--shadow-glass);
}





.contact-form-card h3 {
  font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 600; color: var(--ew-ivory);
}
.contact-form-card > p { margin-top: 8px; font-size: var(--fs-body-sm); color: var(--ew-ivory-dim); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-dark { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field-dark label {
  font-family: var(--font-ui); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ew-ivory-dim);
}
.field-dark input, .field-dark select, .field-dark textarea {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-sm); padding: 12px 14px;
  color: var(--ew-ivory); font-size: var(--fs-body);
  transition: border-color var(--dur-fast), background var(--dur-fast);
  outline: none; font-family: var(--font-body);
}
.field-dark input::placeholder, .field-dark textarea::placeholder { color: rgba(255,250,240,0.3); }
.field-dark select option { background: var(--ew-green-dark); }
.field-dark input:focus, .field-dark select:focus, .field-dark textarea:focus {
  border-color: var(--accent); background: rgba(255,255,255,0.10);
}
.field-dark textarea { resize: vertical; min-height: 110px; }

/* Phone prefix widget */
.phone-input-wrap {
  display: flex; align-items: stretch;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-sm);
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.phone-input-wrap:focus-within {
  border-color: var(--accent); background: rgba(255,255,255,0.10);
}
.phone-prefix {
  padding: 12px 12px; font-size: var(--fs-body); color: var(--ew-ivory-dim);
  font-family: var(--font-body); border-right: 1px solid rgba(255,255,255,0.16);
  user-select: none; white-space: nowrap;
}
.phone-input-wrap input {
  background: transparent !important; border: none !important;
  border-radius: 0 var(--r-sm) var(--r-sm) 0 !important;
  flex: 1; min-width: 0;
}
.phone-input-wrap input:focus { outline: none; }

/* Field error */
.field-error {
  font-size: 11px; font-family: var(--font-ui); color: #f87171;
  min-height: 14px; display: block;
}

/* Error state on inputs */
.field-dark.has-error input,
.field-dark.has-error select,
.field-dark.has-error textarea {
  border-color: #f87171 !important;
}
.field-dark.has-error .phone-input-wrap {
  border-color: #f87171 !important;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.form-msg {
  padding: 14px 18px; border-radius: var(--r-sm); font-size: var(--fs-body-sm);
  margin-bottom: 16px; font-family: var(--font-ui); font-weight: 500;
}
.form-msg.success { background: rgba(7,72,59,0.25); border: 1px solid rgba(7,72,59,0.5); color: var(--ew-ivory); }
.form-msg.error   { background: rgba(201,88,36,0.2); border: 1px solid rgba(201,88,36,0.4); color: var(--ew-ivory); }
.contact-map {
  margin-top: 56px; height: 380px; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35); border: 1px solid rgba(255,250,240,0.1);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(20%) contrast(1.05); }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.site-footer {
  background: #07483b; border-top: 1px solid rgba(255,250,240,0.08); color: var(--ew-ivory);
}
.footer-inner {
  max-width: var(--wrap-max); margin: 0 auto;
  padding: 64px clamp(20px,4vw,60px) 40px;
}
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 46px; filter: brightness(0) invert(1); }
.footer-brand p {
  margin-top: 20px; font-family: var(--font-serif); font-style: italic;
  font-size: 18px; line-height: 1.5; color: var(--ew-ivory-dim); max-width: 28ch;
}
.footer-social {
  display: flex; gap: 10px; margin-top: 24px;
}
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,250,240,0.18);
  color: var(--ew-ivory-dim);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social a:hover {
  border-color: var(--ew-gold);
  color: var(--ew-gold);
  background: rgba(212,175,55,0.08);
}
.footer-address {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12px; color: var(--ew-ivory-faint); line-height: 1.55; margin-top: 20px;
}
.footer-address svg { flex-shrink: 0; margin-top: 1px; opacity: 0.5; }
.footer-col-head {
  font-family: var(--font-ui); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a {
  font-family: var(--font-body); font-size: 15px; color: var(--ew-ivory-dim);
  transition: color var(--dur-fast);
}
.footer-col ul li a:hover { color: var(--ew-ivory); }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,250,240,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--font-ui); font-size: 12px; color: var(--ew-ivory-faint);
}
.footer-bottom a {
  color: var(--accent); font-weight: 600; text-decoration: none; transition: opacity var(--dur-fast);
}
.footer-bottom a:hover { opacity: 0.8; }

/* ══════════════════════════════════════════════════════════
   WHATSAPP FAB
   ══════════════════════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.15);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), opacity var(--dur-base) var(--ease-out);
  text-decoration: none;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.2);
}
.whatsapp-fab svg { display: block; }

/* Hidden while a contact form field has focus — see index.html JS.
   Prevents the fixed FAB from covering the WhatsApp number / other
   input fields on mobile while the user is typing. */
.whatsapp-fab.fab-hidden {
  opacity: 0;
  pointer-events: none;
}

/* LIGHTBOX */
.ew-lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.94);
  display: none; align-items: center; justify-content: center;
  flex-direction: column;
}
.lb-img-wrap {
  max-width: 90vw; max-height: 80vh;
  display: flex; align-items: center; justify-content: center;
}
.lb-img-wrap img {
  max-width: 100%; max-height: 80vh; object-fit: contain;
  border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lb-caption { margin-top: 20px; text-align: center; color: #FFFAF0; }
.lb-caption-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; }
.lb-caption-desc  { font-size: 14px; color: rgba(255,250,240,0.7); margin-top: 4px; }
.lb-counter       { font-size: 12px; color: rgba(255,250,240,0.36); margin-top: 8px; letter-spacing: 0.1em; }
.lb-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: #FFFAF0; font-size: 36px;
  cursor: pointer; line-height: 1; opacity: 0.7; transition: opacity 120ms;
}
.lb-close:hover { opacity: 1; }
.lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); border: none; color: #FFFAF0;
  width: 48px; height: 48px; border-radius: 50%;
  font-size: 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 120ms;
}
.lb-arrow:hover { background: rgba(255,255,255,0.22); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* FLOORING DARK VARIANT */
.flooring-grid--dark { margin-top: 36px; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.floor-card--dark {
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 14px rgba(17,17,17,0.15);
   background: linear-gradient(to top, rgba(11, 11, 11, 0.82) 0%, rgba(11, 11, 11, 0) 100%);

}
@media (max-width: 480px) {
  .flooring-grid--dark {
    display: block !important; 
  }
  .floor-card{
    margin: 15px 0 !important;
  }
  .svc-section {
    padding: 44px 0 !important;
  }
  .process-section {
    padding: 44px 0 !important;
  }
  .industries-section {
    padding: 44px 0 !important;
  }
  .trust-section {
    padding: 44px 0 !important;
  }
  .contact-section {
    padding: 44px 0 !important;
  }
  .svc-floor-head{
    margin-top: 30px !important;
  }
}

.showcase-index{
color: #07483b;  
} 

.floor-card--dark .floor-card-img { aspect-ratio: 1/1; overflow: hidden; }
.floor-card--dark .floor-card-img img { width:100%; height:100%; object-fit:cover; transition: transform 480ms cubic-bezier(0.22,1,0.36,1); }
.floor-card--dark:hover .floor-card-img img { transform: scale(1.05); }
.floor-card--dark .floor-card-body { padding: 16px; }
.floor-card--dark .floor-card-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: #FFFAF0; }
.floor-card--dark .floor-card-desc  { margin-top: 4px; font-size: 0.9375rem; color: rgba(255,250,240,0.82); }

/* PROD INFO BLOCK */
.prod-info-block { margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.prod-info-pitch { font-size: 1.0625rem; line-height: 1.72; color: var(--text-body); }
.prod-info-why { display: flex; flex-direction: column; gap: 10px; }
.prod-info-why li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9375rem; color: var(--text-body); }
.prod-info-why li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 6px; }

/* SHOWCASE FEATURES LIGHT (on dark bg) */
.showcase-features--light .showcase-feature { color: rgba(255,250,240,0.82); }
.showcase-features--light .showcase-feature::before { color: #D79727; }

/* ABOUT MEDIA */
.ew-about-media { position: relative; }

/* PROD SUB DOT GOLD */
.prod-sub-dot--gold { background: #D79727; }

/* EW-EYEBROW (alias for .eyebrow used inline) */
.ew-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Manrope', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: #D79727;
}

/* ══════════════════════════════════════════════════════════
   MISSING CLASS DEFINITIONS — CONTENT & TYPOGRAPHY
   ══════════════════════════════════════════════════════════ */

/* Gold accent text */
.gold-text {
  color: var(--accent);
  font-weight: inherit;
}

/* Section title system */
.ew-heading { margin-bottom: 4px; }
.ew-title {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
  margin-top: 18px;
  color: inherit;
}

/* Colour overrides per section context */
.about-section    .ew-title                 { color: var(--ew-ivory); }
.process-section  .ew-title                 { color: var(--ew-ink); }
.trust-section    .ew-title                 { color: var(--ew-ivory); }
.svc--dark        .ew-title                 { color: var(--ew-ivory); }
.svc--ink         .ew-title                 { color: var(--ew-ink); }   /* svc--ink bg is cream #FFFAF0 — dark heading */

/* Utility */
.text-white { color: var(--ew-ivory) !important; }

/* Rich text blocks inside prod-info-pitch */
.content-text {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
  color: var(--text-body);
  margin-bottom: 10px;
}
.text-block {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-body);
  margin-top: 10px;
  margin-bottom: 14px;
}

/* Sub-section heading (wallpaper murals / custom wallpapers) */
.paper-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
  color: inherit;
  margin: 10px 0 18px;
}

/* Carousel section heading wrappers */
.prod-caro,
.prod-car { margin: 48px 0 24px; }
.prod-caro h3,
.prod-car  h3 { color: inherit; }

/* prod-info-why / prod-info-pitch h4 headings */
.prod-info-why h4,
.prod-info-pitch h4 {
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  font-weight: 700;
  color: var(--text-strong);
  line-height: 1.25;
  margin-bottom: 14px;
}

/* ══════════════════════════════════════════════════════════
   PROD-SUB-HEADER — two-column layout (text + art)
   ══════════════════════════════════════════════════════════ */
.prod-sub-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-bottom: 40px;
}
/* When hero-art appears inside a sub-section, scale it down */
.prod-sub-header .hero-art {
  height: clamp(280px, 38vw, 460px);
  position: relative;
}

/* ══════════════════════════════════════════════════════════
   PROCESS ACCORDION — smooth open/close animation
   ══════════════════════════════════════════════════════════ */
.process-step-body {
  display: block;
  overflow: hidden;
  max-height: 0;
  padding-bottom: 0;
  transition: max-height 0.45s var(--ease-soft), padding-bottom 0.3s var(--ease-soft);
}
.process-step.open .process-step-body {
  max-height: 200px;
  padding-bottom: 22px;
}
/* Remove the old display:none toggle */
.process-step-body p { opacity: 0; transition: opacity 0.3s var(--ease-out) 0.1s; }
.process-step.open .process-step-body p { opacity: 1; }

/* Step header active colour */
.process-step.open .process-step-title  { color: var(--ew-gold); }
.process-step.open .process-step-index  { color: var(--ew-gold); }

/* ══════════════════════════════════════════════════════════
   ANIMATION & TRANSITION REFINEMENTS
   ══════════════════════════════════════════════════════════ */

/* Smoother reveal — was 480ms */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.65s var(--ease-out),
    transform 0.65s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }

/* Stagger helpers — add data-delay on elements via JS or HTML */
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

/* Smoother buttons — was 120ms */
.btn {
  transition:
    transform 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out),
    background 0.22s var(--ease-out),
    color 0.22s var(--ease-out);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,11,11,0.18);
}
.btn:active { transform: translateY(0); }

/* Smoother card hover */
.prod-slide {
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}
.prod-slide:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

/* Smoother industry cards */
.ind-card img {
  transition: transform 0.55s var(--ease-out);
}
.ind-card:hover img { transform: scale(1.07); }

/* Smoother floor cards */
.floor-card:hover .floor-card-img img,
.floor-card--dark:hover .floor-card-img img {
  transform: scale(1.06);
  transition: transform 0.55s var(--ease-out);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE LAYOUT — all grid breakpoints
   ══════════════════════════════════════════════════════════ */

/* ── Tablet landscape (≤1024px) ───────────────────────── */
@media (max-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 3vw, 32px);
  }
  .trust-reasons {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* ── Tablet portrait (≤768px) ─────────────────────────── */
@media (max-width: 768px) {

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-art { display: none; }
  .hero-text { text-align: center; }
  .hero-actions { justify-content: center; display: flex; gap: 12px; flex-wrap: wrap; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 48px);
  }

  /* Showcase (product sub-sections) */
  .showcase {
    grid-template-columns: 1fr;
  }
  .showcase.flip .showcase-text { order: 0; }
  .showcase.flip .showcase-image { order: 1; }
  .prod-sub-header {
    grid-template-columns: 1fr;
  }
  .showcase-features {
    grid-template-columns: 1fr;
  }

  /* Process */
  .process-layout {
    grid-template-columns: 1fr;
  }
  .process-sticky { position: static; }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-benefits {
    grid-template-columns: 1fr;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  /* Prod-info block */
  .prod-info-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Trust stats bar */
  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Trust reasons */
  .trust-reasons {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Industries */
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }

  /* Section padding reduction */
  .svc-section,
  .process-section,
  .industries-section,
  .trust-section,
  .contact-section,
  .about-section { padding: 60px 0; }
}

/* ── Mobile (≤480px) ──────────────────────────────────── */
@media (max-width: 480px) {

  /* Stack everything to single column */
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .trust-reasons {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Hero heading tighter on small screens */
  .hero-heading { font-size: clamp(2rem, 9vw, 2.8rem); }

  /* Trust stats — single column on small phones */
  .trust-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Floating quote card — keep inside viewport on small phones */
  .about-quote-card {
    right: 0;
    max-width: calc(100% - 24px);
  }

  /* WhatsApp FAB — smaller and closer to the corner on small phones,
     so it overlaps less of the contact form fields as the page scrolls */
  .whatsapp-fab {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }

  /* Section padding */
  .svc-section,
  .process-section,
  .industries-section,
  .trust-section,
  .contact-section,
  .about-section { padding: 44px 0; }

  /* Carousels — show 1 slide at a 
  /* Carousels - show 1 slide at a time on phone */
  .prod-slide { min-width: 85vw; }
}
