/*
Theme Name: Executive Aluminum Fencing
Theme URI: https://executivealuminum.com
Author: Executive Aluminum Products
Description: Official brand theme for Executive Aluminum Fencing — clean, modern, contemporary.
Version: 2.0.0
License: All Rights Reserved
Text Domain: ea-fencing
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600&display=swap');

/* ── VARIABLES ── */
:root {
  --white:    #ffffff;
  --off:      #f8f8f6;
  --light:    #f0f0ed;
  --border:   #e2e2de;
  --mid:      #9a9a96;
  --dark:     #2c2c2c;
  --charcoal: #1a1a1a;
  --accent:   #2d2d2d;
  --gold:     #8a7355;
  --gold2:    #a8916d;
  --red:      #c0392b;
  --max:      1260px;
  --r:        4px;
  --shadow:   0 2px 20px rgba(0,0,0,.08);
  --shadow2:  0 4px 40px rgba(0,0,0,.12);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ── WP OVERRIDES ── */
.wp-block-post-title, .entry-title, .page-title,
h1.entry-title, h2.entry-title, .site-title,
.site-description { display: none !important; }
#masthead, #colophon { display: none !important; }
.wp-site-blocks, .entry-content, .page-content,
main#main, article, .hentry {
  margin: 0 !important; padding: 0 !important; max-width: none !important;
}

/* ── LAYOUT ── */
.ea-wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}
.ea-wrap-wide {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

/* ── TOP BAR ── */
.ea-topbar {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  letter-spacing: .05em;
  padding: 9px 0;
}
.ea-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ea-topbar a { color: rgba(255,255,255,.7); transition: color .2s; }
.ea-topbar a:hover { color: #fff; }
.ea-topbar-left { display: flex; align-items: center; gap: 24px; }
.ea-topbar-right { display: flex; align-items: center; gap: 20px; }
.ea-topbar-item { display: flex; align-items: center; gap: 6px; }

/* ── NAVIGATION ── */
.ea-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--charcoal);
  box-shadow: var(--shadow);
}
.ea-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 8px;
  flex-wrap: nowrap;
}
.ea-nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  text-decoration: none;
}
.ea-nav-brand img { width: 56px; height: auto; }
.ea-nav-brand-text {}
.ea-nav-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1.2;
}
.ea-nav-brand-sub {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 2px;
}
.ea-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
.ea-nav-links > li > a {
  display: block;
  padding: 8px 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color .2s, background .2s;
  border-radius: var(--r);
  white-space: nowrap;
}
.ea-nav-links > li > a:hover,
.ea-nav-links > li.current-menu-item > a,
.ea-nav-links > li.current_page_item > a {
  color: var(--charcoal);
  background: var(--light);
}
.ea-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--charcoal);
  color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: background .2s;
  white-space: nowrap;
}
.ea-nav-cta:hover { background: var(--gold) !important; color: #fff !important; }
.ea-nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--border) !important;
  border-radius: var(--r);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.ea-nav-toggle span {
  width: 18px; height: 1.5px;
  background: var(--dark);
  display: block;
  transition: transform .25s;
}
.ea-nav-mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 0 18px;
}
.ea-nav-mobile li a {
  display: block;
  padding: 11px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
}
.ea-nav-mobile.is-open { display: block; }

/* ── BUTTONS ── */
.ea-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 2px solid var(--charcoal);
  color: var(--charcoal);
  border-radius: var(--r);
  transition: all .2s;
  cursor: pointer;
}
.ea-btn:hover { background: var(--charcoal); color: #fff; }
.ea-btn-dark { background: var(--charcoal); color: #fff; }
.ea-btn-dark:hover { background: var(--gold); border-color: var(--gold); }
.ea-btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.ea-btn-gold:hover { background: var(--gold2); border-color: var(--gold2); }

/* ── SECTION CHROME ── */
.ea-section { padding: 80px 0; }
.ea-section-sm { padding: 56px 0; }
.ea-section-lg { padding: 110px 0; }
.ea-section-dark { background: var(--charcoal); }
.ea-section-off { background: var(--off); }
.ea-section-light { background: var(--light); }

.ea-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.ea-eyebrow-dark { color: rgba(255,255,255,.5); }

.ea-h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--charcoal);
}
.ea-h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--charcoal);
}
.ea-h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--charcoal);
}
.ea-h2-white, .ea-h1-white { color: #fff; }
.ea-lead {
  font-size: 1.05rem;
  color: #5a5a5a;
  line-height: 1.8;
  max-width: 62ch;
}
.ea-lead-white { color: rgba(255,255,255,.75); }

.ea-divider {
  width: 48px; height: 3px;
  background: var(--gold);
  margin: 16px 0 24px;
  border-radius: 2px;
}
.ea-divider-center { margin: 16px auto 24px; }

/* ── TAGS / BADGES ── */
.ea-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.ea-badge-pool { background: #e8f4fd; color: #1a6fa0; }
.ea-badge-new  { background: #fff3cd; color: #856404; }
.ea-badge-bronze { background: #f5ede0; color: var(--gold); }
.ea-badge-made  { background: #e8f5e9; color: #2e7d32; }
.ea-badge-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }

/* ── FOOTER ── */
.ea-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
  margin-top: 0;
}
.ea-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ea-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ea-footer-brand img { width: 110px; margin-bottom: 16px; }
.ea-footer-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
}
.ea-footer-brand p { font-size: .85rem; line-height: 1.75; }
.ea-footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ea-footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.ea-footer-col ul a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.ea-footer-col ul a:hover { color: #fff; }
.ea-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  gap: 20px;
  flex-wrap: wrap;
}
.ea-footer-bottom a { color: rgba(255,255,255,.5); }
.ea-footer-bottom a:hover { color: #fff; }

/* ── REVEAL ── */
.ea-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.ea-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── HOME HERO ── */
.ea-hero {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.ea-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
}
.ea-hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: center;
  padding: 80px 0;
}
.ea-hero-logo-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ea-hero-logo {
  width: 100%;
  max-width: 320px;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,.4));
}
.ea-hero-text-col {}
.ea-hero-text-col .ea-h1 { color: #fff; margin-bottom: 20px; }
.ea-hero-text-col .ea-lead { color: rgba(255,255,255,.8); margin-bottom: 16px; }
.ea-hero-line {
  width: 56px; height: 3px;
  background: var(--gold);
  margin-bottom: 24px;
  border-radius: 2px;
}

/* ── BRAND BAR ── */
.ea-brand-bar {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.ea-brand-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.ea-brand-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 180px;
}
.ea-brand-item-icon {
  width: 40px; height: 40px;
  background: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ea-brand-item-icon svg { width: 18px; height: 18px; fill: #fff; }
.ea-brand-item-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--charcoal);
}
.ea-brand-item-text span {
  font-size: .72rem;
  color: var(--mid);
}

/* ── PRODUCT CARDS (HOME) ── */
.ea-product-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.ea-product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.ea-product-card:hover { box-shadow: var(--shadow2); transform: translateY(-4px); }
.ea-product-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.ea-product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.ea-product-card:hover .ea-product-card-img img { transform: scale(1.04); }
.ea-product-card-body { padding: 28px; }
.ea-product-card-body .ea-h3 { margin-bottom: 12px; }
.ea-product-card-body p { font-size: .9rem; color: #5a5a5a; line-height: 1.7; margin-bottom: 20px; }

/* ── WHY SECTION ── */
.ea-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.ea-why-item {
  background: var(--white);
  padding: 36px 28px;
  transition: background .2s;
}
.ea-why-item:hover { background: var(--off); }
.ea-why-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
}
.ea-why-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.ea-why-item p { font-size: .85rem; color: #5a5a5a; line-height: 1.7; }

/* ── CTA BANNER ── */
.ea-cta-banner {
  background: var(--charcoal);
  padding: 64px 0;
}
.ea-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.ea-cta-inner h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}
.ea-cta-inner p { color: rgba(255,255,255,.65); font-size: .95rem; margin-top: 8px; }

/* ── PAGE HEADER ── */
.ea-page-header {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
}
.ea-page-header-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .2;
}
.ea-page-header-content { position: relative; z-index: 1; }
.ea-page-header-content .ea-h1 { color: #fff; margin-top: 10px; }
.ea-page-header-content p { color: rgba(255,255,255,.7); margin-top: 16px; font-size: .95rem; max-width: 56ch; }
.ea-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 8px;
}
.ea-breadcrumb a { color: rgba(255,255,255,.5); transition: color .2s; }
.ea-breadcrumb a:hover { color: #fff; }
.ea-breadcrumb span { color: rgba(255,255,255,.4); }

/* ── SPEC BAR ── */
.ea-spec-bar {
  background: var(--off);
  border-bottom: 2px solid var(--charcoal);
  padding: 20px 0;
}
.ea-spec-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}
.ea-spec-item dt {
  font-family: 'Montserrat', sans-serif;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 3px;
}
.ea-spec-item dd {
  font-size: .88rem;
  font-weight: 500;
  color: var(--charcoal);
}

/* ── PRODUCT SECTION TITLE ── */
.ea-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 56px 0 36px;
  border-bottom: 2px solid var(--charcoal);
  margin-bottom: 40px;
}
.ea-section-head h2 { margin: 0; }

/* ── PRODUCT GRID (CLASSIC PAGE) ── */
.ea-prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 64px;
}
.ea-prod-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: background .2s;
}
.ea-prod-card:hover { background: var(--off); }
.ea-prod-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.ea-prod-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.ea-prod-card:hover .ea-prod-img img { transform: scale(1.04); }
.ea-prod-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.ea-prod-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
}
.ea-prod-sub {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mid);
}
.ea-prod-specs { margin-top: 6px; display: flex; flex-direction: column; gap: 4px; }
.ea-prod-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  gap: 8px;
}
.ea-prod-spec-row:last-child { border: none; }
.ea-prod-spec-row .sk {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mid);
  flex-shrink: 0;
}
.ea-prod-spec-row .sv {
  font-size: .82rem;
  color: var(--dark);
  text-align: right;
}

/* ── PREMIUM FEATURE BLOCK ── */
.ea-premium-block {
  grid-column: span 3;
  background: var(--charcoal);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.ea-premium-copy { padding: 48px 44px; }
.ea-premium-copy .ea-new-pill {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.ea-premium-copy h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.ea-premium-copy p { color: rgba(255,255,255,.65); font-size: .88rem; line-height: 1.75; }
.ea-premium-specs-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}
.ea-mini-spec {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: 12px 14px;
}
.ea-mini-spec strong { display: block; font-size: .85rem; color: #fff; margin-bottom: 2px; }
.ea-mini-spec span { font-size: .72rem; color: rgba(255,255,255,.5); }
.ea-premium-img { overflow: hidden; }
.ea-premium-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── GATES ── */
.ea-gates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 64px 0;
  padding: 48px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.ea-gates-img { border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3; }
.ea-gates-img img { width: 100%; height: 100%; object-fit: cover; }
.ea-gates-copy h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.ea-gates-copy p { color: #5a5a5a; font-size: .9rem; line-height: 1.8; margin-bottom: 20px; }
.ea-tag-row { display: flex; flex-wrap: wrap; gap: 6px; }
.ea-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--mid);
}

/* ── MATERIALS TABLE ── */
.ea-materials {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 64px;
}
.ea-materials-head {
  background: var(--charcoal);
  padding: 20px 28px;
}
.ea-materials-head h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
}
.ea-mat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.ea-mat-item {
  padding: 20px 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ea-mat-item:nth-child(3n) { border-right: none; }
.ea-mat-item:nth-last-child(-n+3) { border-bottom: none; }
.ea-mat-item dt {
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 5px;
}
.ea-mat-item dd { font-size: .88rem; color: var(--dark); }

/* ── SYNERGY PAGE ── */
.ea-syn-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.ea-syn-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  animation: ea-zoom 20s ease-in-out infinite alternate;
}
@keyframes ea-zoom { from{transform:scale(1)} to{transform:scale(1.06)} }
.ea-syn-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(26,26,26,.95) 0%, rgba(26,26,26,.5) 50%, rgba(26,26,26,.15) 100%);
}
.ea-syn-hero-content {
  position: relative; z-index: 1;
  padding: 80px 0;
}
.ea-syn-hero-content .ea-h1 { color: #fff; font-size: clamp(3rem, 8vw, 7rem); margin: 8px 0 20px; }
.ea-syn-hero-content .ea-lead { color: rgba(255,255,255,.75); max-width: 60ch; margin-bottom: 28px; }

.ea-syn-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.ea-syn-stat {
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.ea-syn-stat:last-child { border-right: none; }
.ea-syn-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 6px;
}
.ea-syn-stat-lbl {
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 4px;
}
.ea-syn-stat-desc { font-size: .78rem; color: #8a8a8a; }

.ea-syn-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  border-bottom: 1px solid var(--border);
}
.ea-syn-split-img { overflow: hidden; position: relative; }
.ea-syn-split-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s;
}
.ea-syn-split:hover .ea-syn-split-img img { transform: scale(1.03); }
.ea-syn-split-copy {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--off);
}
.ea-syn-split-copy h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.15;
}
.ea-syn-split-copy p { color: #5a5a5a; line-height: 1.8; font-size: .92rem; margin-bottom: 24px; }
.ea-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.ea-pill {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--mid);
}
.ea-pill-dark { border-color: var(--charcoal); color: var(--charcoal); }

.ea-colors-section { padding: 72px 0; background: var(--white); }
.ea-color-swatches {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 20px;
  text-align: center;
}
.ea-colors-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.ea-color-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 12px;
}
.ea-color-sw { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.ea-cs-block {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--r);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.ea-cs-lbl { font-size: .6rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--mid); text-align: center; line-height: 1.3; }
.ea-vert-only {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(138,115,85,.9);
  color: #fff;
  font-size: .48rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  padding: 3px 2px;
}

.ea-orient-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 64px 0;
}
.ea-orient-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 36px 32px;
}
.ea-orient-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.ea-orient-card p { font-size: .88rem; color: #5a5a5a; line-height: 1.75; }

.ea-syn-specs-wrap {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 80px;
}
.ea-syn-specs-head {
  background: var(--charcoal);
  padding: 20px 28px;
}
.ea-syn-specs-head h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
}
.ea-specs-table { display: grid; grid-template-columns: repeat(3, 1fr); }
.ea-st { padding: 20px 28px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ea-st:nth-child(3n) { border-right: none; }
.ea-st:nth-last-child(-n+3) { border-bottom: none; }
.ea-st dt { font-family: 'Montserrat', sans-serif; font-size: .64rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--mid); margin-bottom: 6px; }
.ea-st dd { font-size: .9rem; color: var(--dark); }

/* ── RESOURCES PAGE ── */
.ea-resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.ea-resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s, transform .2s;
}
.ea-resource-card:hover { box-shadow: var(--shadow2); transform: translateY(-3px); }
.ea-resource-icon {
  width: 48px; height: 48px;
  background: var(--charcoal);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.ea-resource-icon svg { width: 22px; height: 22px; fill: #fff; }
.ea-resource-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--charcoal);
}
.ea-resource-card p { font-size: .85rem; color: #5a5a5a; line-height: 1.7; flex: 1; }

/* ── ABOUT PAGE ── */
.ea-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ea-about-img { border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3; }
.ea-about-img img { width: 100%; height: 100%; object-fit: cover; }
.ea-about-copy p { color: #5a5a5a; line-height: 1.85; font-size: .95rem; margin-bottom: 16px; }
.ea-about-copy p strong { color: var(--charcoal); font-weight: 600; }

.ea-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 64px;
}
.ea-value-item {
  background: var(--white);
  padding: 32px 28px;
  transition: background .2s;
}
.ea-value-item:hover { background: var(--off); }
.ea-value-num {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.ea-value-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.ea-value-item p { font-size: .85rem; color: #5a5a5a; line-height: 1.7; }

/* ── CONTACT PAGE ── */
.ea-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.ea-contact-info { display: flex; flex-direction: column; gap: 24px; }
.ea-contact-block {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ea-contact-block-icon {
  width: 40px; height: 40px;
  background: var(--charcoal);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ea-contact-block-icon svg { width: 18px; height: 18px; fill: #fff; }
.ea-contact-block h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.ea-contact-block p { font-size: .88rem; color: #5a5a5a; line-height: 1.6; }
.ea-contact-block a { color: var(--gold); }

.ea-form { display: flex; flex-direction: column; gap: 16px; }
.ea-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ea-field { display: flex; flex-direction: column; gap: 6px; }
.ea-field label {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.ea-field input,
.ea-field select,
.ea-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-family: 'Open Sans', sans-serif;
  font-size: .88rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s;
  -webkit-appearance: none;
}
.ea-field input:focus,
.ea-field select:focus,
.ea-field textarea:focus {
  outline: none;
  border-color: var(--charcoal);
}
.ea-field textarea { min-height: 140px; resize: vertical; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .ea-color-grid { grid-template-columns: repeat(5, 1fr); }
  .ea-why-grid { grid-template-columns: 1fr 1fr; }
  .ea-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .ea-wrap { width: calc(100% - 32px); }
  .ea-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .ea-hero-logo { max-width: 220px; margin: 0 auto; }
  .ea-product-cards { grid-template-columns: 1fr; }
  .ea-prod-grid { grid-template-columns: 1fr 1fr; }
  .ea-premium-block { grid-column: span 2; grid-template-columns: 1fr; }
  .ea-premium-img { min-height: 280px; position: relative; }
  .ea-premium-img img { position: absolute; inset: 0; }
  .ea-gates { grid-template-columns: 1fr; }
  .ea-mat-grid { grid-template-columns: 1fr 1fr; }
  .ea-syn-split { grid-template-columns: 1fr; }
  .ea-syn-split-img { min-height: 320px; position: relative; }
  .ea-syn-split-copy { padding: 40px 28px; }
  .ea-colors-header { grid-template-columns: 1fr; }
  .ea-color-swatches { grid-template-columns: repeat(5, 1fr); gap: 16px; }
  .ea-orient-grid { grid-template-columns: 1fr; }
  .ea-specs-table { grid-template-columns: 1fr 1fr; }
  .ea-about-grid { grid-template-columns: 1fr; }
  .ea-contact-grid { grid-template-columns: 1fr; }
  .ea-resources-grid { grid-template-columns: 1fr 1fr; }
  .ea-syn-stats { grid-template-columns: 1fr 1fr; }
  .ea-cta-inner { flex-direction: column; align-items: flex-start; }
  .ea-topbar { display: none; }
}
@media (max-width: 600px) {
  .ea-nav-links { display: none; }
  .ea-nav-cta { display: none; }
  .ea-nav-toggle { display: flex; }
  .ea-prod-grid { grid-template-columns: 1fr; background: none; border: none; gap: 12px; }
  .ea-prod-card { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
  .ea-premium-block { grid-column: auto; }
  .ea-mat-grid { grid-template-columns: 1fr; }
  .ea-specs-table { grid-template-columns: 1fr; }
  .ea-st { border-right: none !important; }
  .ea-color-grid { grid-template-columns: repeat(4, 1fr); }
  .ea-resources-grid { grid-template-columns: 1fr; }
  .ea-form-row { grid-template-columns: 1fr; }
  .ea-why-grid { grid-template-columns: 1fr; }
  .ea-syn-stats { grid-template-columns: 1fr; }
  .ea-values-grid { grid-template-columns: 1fr; }
  .ea-footer-grid { grid-template-columns: 1fr; }
  .ea-brand-bar-inner { gap: 16px; }
}

/* ── GALLERY ─────────────────────────────────────── */
.ea-gallery-section { padding: 72px 0 80px; background: var(--off); }
.ea-gallery-header { text-align: center; margin-bottom: 40px; }
.ea-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.ea-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  aspect-ratio: 4/3;
  cursor: pointer;
  background: #111;
}
.ea-gallery-item:nth-child(5),
.ea-gallery-item:nth-child(6) {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.ea-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.ea-gallery-item:hover img { transform: scale(1.05); }
.ea-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
}
.ea-gallery-item:hover .ea-gallery-overlay { opacity: 1; }

/* ── LIGHTBOX ────────────────────────────────────── */
.ea-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.ea-lightbox.is-open { display: flex; }
.ea-lightbox-inner {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ea-lightbox-inner img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 60px rgba(0,0,0,.6);
}
.ea-lightbox-close {
  position: absolute;
  top: 20px; right: 28px;
  background: none; border: none;
  color: #fff; font-size: 2.4rem;
  cursor: pointer; line-height: 1;
  opacity: .8; transition: opacity .2s;
}
.ea-lightbox-close:hover { opacity: 1; }
.ea-lightbox-prev,
.ea-lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: 2.2rem;
  width: 52px; height: 52px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; line-height: 1;
}
.ea-lightbox-prev { left: 20px; }
.ea-lightbox-next { right: 20px; }
.ea-lightbox-prev:hover,
.ea-lightbox-next:hover { background: rgba(255,255,255,.25); }

@media (max-width: 900px) {
  .ea-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .ea-gallery-item:nth-child(5),
  .ea-gallery-item:nth-child(6) { grid-column: span 1; aspect-ratio: 4/3; }
}
@media (max-width: 480px) {
  .ea-gallery-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
}
