/* ============================================================
   EMPIRE INTERIOR PLASTERING — Contact page rebuild
   Scope: body.eip-contact-rebuild .eip-page
   ============================================================ */

body.eip-contact-rebuild .eip-page {
  /* Design tokens */
  --ink: #0E1A2B;
  --ink-soft: #1F2933;
  --ink-mute: #4A5568;
  --blue: #3278B3;
  --blue-deep: #1E5A8E;
  --blue-soft: #7FB6E5;
  --blue-glow: rgba(50, 120, 179, .3);
  --gold: #E8B14E;
  --gold-soft: #F5D88E;
  --cream: #FAFBFD;
  --cream-warm: #F4F1EC;
  --line: rgba(15, 26, 43, .08);
  --line-strong: rgba(15, 26, 43, .14);
  --shadow-xs: 0 1px 2px rgba(15, 26, 43, .05);
  --shadow-sm: 0 4px 14px -6px rgba(15, 26, 43, .12);
  --shadow-md: 0 14px 36px -14px rgba(15, 26, 43, .22);
  --shadow-lg: 0 28px 80px -24px rgba(15, 26, 43, .35);
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-emph: cubic-bezier(.65, 0, .35, 1);
  --t-fast: .25s var(--ease);
  --t-med:  .55s var(--ease);
  --t-slow: 1s   var(--ease);

  --font-display: 'Cabinet Grotesk', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  font-family: var(--font-body);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Strip the WP container that wraps the page so our hero goes edge-to-edge */
body.eip-contact-rebuild .ast-container,
body.eip-contact-rebuild .site-content > .ast-container,
body.eip-contact-rebuild .entry-content {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
}
body.eip-contact-rebuild .site-main,
body.eip-contact-rebuild .content-area,
body.eip-contact-rebuild article.post-16,
body.eip-contact-rebuild article.post-16 .entry-content {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  width: 100% !important;
  max-width: none !important;
  box-shadow: none !important;
  border: 0 !important;
}
body.eip-contact-rebuild .ast-article-single {
  padding: 0 !important;
}

body.eip-contact-rebuild .eip-page * { box-sizing: border-box; }

body.eip-contact-rebuild .eip-page .eip-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

/* Reusable bits */
body.eip-contact-rebuild .eip-page .eip-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-deep);
  padding: 8px 14px;
  border: 1px solid rgba(50, 120, 179, .2);
  border-radius: 100px;
  background: rgba(50, 120, 179, .06);
}
body.eip-contact-rebuild .eip-page .eip-eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(50, 120, 179, .15);
  animation: eip-pulse 2.4s var(--ease) infinite;
}
@keyframes eip-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(50, 120, 179, .15); }
  50%      { box-shadow: 0 0 0 8px rgba(50, 120, 179, 0); }
}
body.eip-contact-rebuild .eip-page .eip-eyebrow--light {
  color: var(--blue-soft);
  border-color: rgba(127, 182, 229, .25);
  background: rgba(127, 182, 229, .08);
}
body.eip-contact-rebuild .eip-page .eip-eyebrow--light .eip-eyebrow__dot {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(232, 177, 78, .25);
}

body.eip-contact-rebuild .eip-page .eip-section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -.025em;
  color: var(--ink);
  margin: 18px 0 18px;
}
body.eip-contact-rebuild .eip-page .eip-section-title--light { color: #fff; }

body.eip-contact-rebuild .eip-page .eip-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 72px);
}
body.eip-contact-rebuild .eip-page .eip-section-lede {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--ink-mute);
}

/* Buttons */
body.eip-contact-rebuild .eip-page .eip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .02em;
  text-decoration: none !important;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 0;
  cursor: pointer;
}
body.eip-contact-rebuild .eip-page .eip-btn--primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: #fff !important;
  box-shadow:
    0 14px 36px -12px var(--blue-glow),
    inset 0 1px 0 rgba(255, 255, 255, .25);
}
body.eip-contact-rebuild .eip-page .eip-btn--primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, .35) 50%, transparent 65%);
  transform: translateX(-110%);
  transition: transform 0.9s var(--ease);
  z-index: -1;
}
body.eip-contact-rebuild .eip-page .eip-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 50px -16px var(--blue-glow),
    inset 0 1px 0 rgba(255, 255, 255, .35);
}
body.eip-contact-rebuild .eip-page .eip-btn--primary:hover::before { transform: translateX(110%); }

body.eip-contact-rebuild .eip-page .eip-btn--ghost {
  background: rgba(15, 26, 43, .04);
  color: var(--ink) !important;
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
}
body.eip-contact-rebuild .eip-page .eip-btn--ghost:hover {
  background: var(--ink);
  color: #fff !important;
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* ============================================================
   1. HERO
   ============================================================ */
body.eip-contact-rebuild .eip-page .eip-hero {
  position: relative;
  min-height: clamp(680px, 92vh, 920px);
  padding: clamp(120px, 14vw, 180px) 0 clamp(80px, 10vw, 120px);
  background: linear-gradient(180deg, #FAFBFD 0%, #EEF3F8 100%);
  overflow: hidden;
}
body.eip-contact-rebuild .eip-page .eip-hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
body.eip-contact-rebuild .eip-page .eip-hero__mesh {
  position: absolute; inset: -10%;
  background:
    radial-gradient(60% 40% at 20% 20%, rgba(50, 120, 179, .18), transparent 70%),
    radial-gradient(50% 50% at 80% 30%, rgba(232, 177, 78, .14), transparent 70%),
    radial-gradient(50% 50% at 60% 90%, rgba(50, 120, 179, .12), transparent 70%);
  filter: blur(20px);
}
body.eip-contact-rebuild .eip-page .eip-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15, 26, 43, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 26, 43, .04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 75%);
}
body.eip-contact-rebuild .eip-page .eip-hero__shape {
  position: absolute;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(50, 120, 179, .12), rgba(50, 120, 179, .04));
  border: 1px solid rgba(50, 120, 179, .14);
  backdrop-filter: blur(10px);
}
body.eip-contact-rebuild .eip-page .eip-hero__shape--1 {
  width: 280px; height: 280px;
  top: 8%; right: -60px;
  transform: rotate(18deg);
}
body.eip-contact-rebuild .eip-page .eip-hero__shape--2 {
  width: 160px; height: 160px;
  bottom: 12%; left: -40px;
  transform: rotate(-22deg);
  background: linear-gradient(135deg, rgba(232, 177, 78, .18), rgba(232, 177, 78, .04));
  border-color: rgba(232, 177, 78, .22);
}
body.eip-contact-rebuild .eip-page .eip-hero__shape--3 {
  width: 90px; height: 90px;
  top: 50%; right: 36%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  border: 0;
  box-shadow: 0 30px 60px -20px var(--blue-glow);
  opacity: .85;
}

body.eip-contact-rebuild .eip-page .eip-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 960px) {
  body.eip-contact-rebuild .eip-page .eip-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

body.eip-contact-rebuild .eip-page .eip-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -.028em;
  color: var(--ink);
  margin: 22px 0 24px;
  max-width: 14ch;
  word-spacing: -0.02em;
}
body.eip-contact-rebuild .eip-page .eip-hero__title-accent {
  display: inline-block;
  background-image: linear-gradient(120deg, var(--blue), var(--blue-deep) 60%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--blue-deep);
  font-style: italic;
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  body.eip-contact-rebuild .eip-page .eip-hero__title-accent {
    -webkit-text-fill-color: currentColor;
    color: var(--blue-deep);
  }
}
body.eip-contact-rebuild .eip-page .eip-hero__lede {
  max-width: 560px;
  font-size: clamp(16px, 1.3vw, 18.5px);
  line-height: 1.65;
  color: var(--ink-mute);
  margin: 0 0 32px;
}
body.eip-contact-rebuild .eip-page .eip-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
body.eip-contact-rebuild .eip-page .eip-hero__trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
body.eip-contact-rebuild .eip-page .eip-hero__trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1;
}
body.eip-contact-rebuild .eip-page .eip-hero__trust-item span {
  font-size: 12.5px;
  color: var(--ink-mute);
  letter-spacing: .02em;
}
body.eip-contact-rebuild .eip-page .eip-hero__trust-divider {
  width: 1px; height: 36px;
  background: var(--line-strong);
}
@media (max-width: 540px) {
  body.eip-contact-rebuild .eip-page .eip-hero__trust-divider { display: none; }
}

/* Hero side card */
body.eip-contact-rebuild .eip-page .eip-hero__card {
  position: relative;
  border-radius: 28px;
  padding: 2px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, .4));
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
body.eip-contact-rebuild .eip-page .eip-hero__card-glow {
  position: absolute; inset: -1px;
  background: conic-gradient(from 180deg at 50% 50%, var(--blue) 0deg, var(--gold) 120deg, var(--blue) 240deg, var(--blue-deep) 360deg);
  border-radius: 28px;
  opacity: .35;
  filter: blur(28px);
  z-index: -1;
}
body.eip-contact-rebuild .eip-page .eip-hero__card-inner {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(20px) saturate(180%);
  border-radius: 26px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .6);
}
body.eip-contact-rebuild .eip-page .eip-hero__card-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: rgba(50, 120, 179, .08);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 22px;
}
body.eip-contact-rebuild .eip-page .eip-hero__card-pulse {
  position: relative;
  width: 8px; height: 8px;
  display: inline-flex; align-items: center; justify-content: center;
}
body.eip-contact-rebuild .eip-page .eip-hero__card-pulse-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;
}
body.eip-contact-rebuild .eip-page .eip-hero__card-pulse-dot::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%;
  background: #22c55e;
  animation: eip-card-pulse 1.6s ease-out infinite;
}
@keyframes eip-card-pulse {
  0%   { transform: scale(1);   opacity: .6; }
  100% { transform: scale(2.6); opacity: 0; }
}
body.eip-contact-rebuild .eip-page .eip-hero__card-quote {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -.015em;
  color: var(--ink);
  margin-bottom: 24px;
}
body.eip-contact-rebuild .eip-page .eip-hero__card-quote span {
  color: var(--blue);
  font-size: 32px;
  vertical-align: -8px;
  line-height: 0;
}
body.eip-contact-rebuild .eip-page .eip-hero__card-author {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--line-strong);
}
body.eip-contact-rebuild .eip-page .eip-hero__card-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px -4px var(--blue-glow);
}
body.eip-contact-rebuild .eip-page .eip-hero__card-author strong {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
body.eip-contact-rebuild .eip-page .eip-hero__card-author span {
  font-size: 12.5px;
  color: var(--ink-mute);
}
body.eip-contact-rebuild .eip-page .eip-hero__card-meta {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 10px;
}
body.eip-contact-rebuild .eip-page .eip-hero__card-meta li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
body.eip-contact-rebuild .eip-page .eip-hero__card-meta svg {
  color: var(--blue);
  flex-shrink: 0;
}

/* Scroll indicator */
body.eip-contact-rebuild .eip-page .eip-hero__scroll {
  position: absolute;
  left: 50%; bottom: 32px;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid var(--line-strong);
  border-radius: 100px;
  z-index: 3;
}
body.eip-contact-rebuild .eip-page .eip-hero__scroll span {
  position: absolute;
  left: 50%; top: 8px;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--blue);
  border-radius: 100px;
  animation: eip-scroll-bob 1.6s ease-in-out infinite;
}
@keyframes eip-scroll-bob {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  50%      { transform: translate(-50%, 14px); opacity: .2; }
}

/* ============================================================
   2. METHODS
   ============================================================ */
body.eip-contact-rebuild .eip-page .eip-methods {
  padding: clamp(80px, 10vw, 120px) 0;
  background: #fff;
}
body.eip-contact-rebuild .eip-page .eip-methods__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 920px) {
  body.eip-contact-rebuild .eip-page .eip-methods__grid {
    grid-template-columns: 1fr;
  }
}

body.eip-contact-rebuild .eip-page .eip-method {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 36px 28px 32px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  text-decoration: none !important;
  color: var(--ink);
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast), background var(--t-fast);
  overflow: hidden;
  isolation: isolate;
}
body.eip-contact-rebuild .eip-page .eip-method::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(50, 120, 179, .12), transparent 50%);
  opacity: 0;
  transition: opacity var(--t-med);
  z-index: -1;
}
body.eip-contact-rebuild .eip-page .eip-method__corner {
  position: absolute;
  top: 24px; right: 24px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(.6);
  transition: opacity var(--t-fast), transform var(--t-fast);
}
body.eip-contact-rebuild .eip-page .eip-method__corner::after {
  content: "↗";
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
body.eip-contact-rebuild .eip-page .eip-method:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(50, 120, 179, .25);
  background: #fff;
}
body.eip-contact-rebuild .eip-page .eip-method:hover::before { opacity: 1; }
body.eip-contact-rebuild .eip-page .eip-method:hover .eip-method__corner {
  opacity: 1; transform: scale(1);
}

body.eip-contact-rebuild .eip-page .eip-method__icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(50, 120, 179, .12), rgba(50, 120, 179, .04));
  color: var(--blue-deep);
  margin-bottom: 18px;
  border: 1px solid rgba(50, 120, 179, .12);
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast);
}
body.eip-contact-rebuild .eip-page .eip-method:hover .eip-method__icon {
  transform: rotate(-6deg) scale(1.05);
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
}
body.eip-contact-rebuild .eip-page .eip-method__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-deep);
}
body.eip-contact-rebuild .eip-page .eip-method__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 4px 0 4px;
  word-break: break-word;
}
body.eip-contact-rebuild .eip-page .eip-method__hint {
  font-size: 13.5px;
  color: var(--ink-mute);
  margin-bottom: 22px;
}
body.eip-contact-rebuild .eip-page .eip-method__cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
  padding-top: 18px;
  border-top: 1px dashed var(--line-strong);
}
body.eip-contact-rebuild .eip-page .eip-method__cta svg {
  transition: transform var(--t-fast);
}
body.eip-contact-rebuild .eip-page .eip-method:hover .eip-method__cta svg {
  transform: translateX(4px);
}

/* ============================================================
   3. FORM SECTION (DARK)
   ============================================================ */
body.eip-contact-rebuild .eip-page .eip-form {
  position: relative;
  padding: clamp(80px, 10vw, 130px) 0;
  background: linear-gradient(180deg, #0B1626 0%, #0F1E33 50%, #0B1626 100%);
  color: #fff;
  overflow: hidden;
}
body.eip-contact-rebuild .eip-page .eip-form::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 20% 30%, rgba(50, 120, 179, .25), transparent 60%),
    radial-gradient(40% 40% at 90% 70%, rgba(232, 177, 78, .14), transparent 60%);
  pointer-events: none;
}
body.eip-contact-rebuild .eip-page .eip-form::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000, transparent 80%);
  pointer-events: none;
}
body.eip-contact-rebuild .eip-page .eip-form__inner {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  z-index: 2;
}
@media (max-width: 960px) {
  body.eip-contact-rebuild .eip-page .eip-form__inner {
    grid-template-columns: 1fr;
  }
}

body.eip-contact-rebuild .eip-page .eip-form__copy { padding-top: 8px; }
body.eip-contact-rebuild .eip-page .eip-form__lede {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .72);
  margin: 0 0 28px;
}
body.eip-contact-rebuild .eip-page .eip-form__bullets {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 14px;
}
body.eip-contact-rebuild .eip-page .eip-form__bullets li {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255, 255, 255, .85);
  font-size: 15px;
}
body.eip-contact-rebuild .eip-page .eip-form__bullet-icon {
  width: 26px; height: 26px;
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
}

/* Form glass card */
body.eip-contact-rebuild .eip-page .eip-form__card {
  position: relative;
  border-radius: 28px;
  padding: 2px;
  isolation: isolate;
}
body.eip-contact-rebuild .eip-page .eip-form__card-glow {
  display: none;
}
body.eip-contact-rebuild .eip-page .eip-form__card-inner {
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(24px) saturate(180%);
  border-radius: 26px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, .5),
    inset 0 1px 0 rgba(255, 255, 255, .12);
}
body.eip-contact-rebuild .eip-page .eip-form__card-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  flex-wrap: wrap; gap: 8px;
}
body.eip-contact-rebuild .eip-page .eip-form__card-header h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -.015em;
  color: #fff;
  margin: 0;
}
body.eip-contact-rebuild .eip-page .eip-form__card-header span {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
}

/* Restyle the embedded WPForms */
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-container {
  margin: 0;
}
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-form .wpforms-field {
  padding: 0 !important;
  margin-bottom: 16px !important;
}
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-form .wpforms-field-label,
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-form label {
  color: rgba(255, 255, 255, .8) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: .02em !important;
  margin-bottom: 6px !important;
}
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-form input[type="text"],
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-form input[type="email"],
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-form input[type="tel"],
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-form input[type="url"],
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-form input[type="number"],
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-form select,
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-form textarea {
  background: rgba(255, 255, 255, .06) !important;
  border: 1px solid rgba(255, 255, 255, .14) !important;
  border-radius: 12px !important;
  padding: 14px 16px !important;
  color: #fff !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  width: 100% !important;
  transition: all var(--t-fast) !important;
  box-shadow: none !important;
  outline: none !important;
}
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-form textarea {
  min-height: 120px;
  resize: vertical;
}
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-form input::placeholder,
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-form textarea::placeholder {
  color: rgba(255, 255, 255, .35) !important;
}
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-form input:focus,
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-form select:focus,
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-form textarea:focus {
  background: rgba(255, 255, 255, .1) !important;
  border-color: var(--blue-soft) !important;
  box-shadow: 0 0 0 4px rgba(127, 182, 229, .2) !important;
}
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-form .wpforms-field-checkbox label,
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-form .wpforms-field-radio label {
  color: rgba(255, 255, 255, .82) !important;
  font-size: 14.5px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px;
}
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-form input[type="checkbox"],
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-form input[type="radio"] {
  accent-color: var(--blue);
  width: 16px; height: 16px;
}
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-submit-container { padding: 0 !important; margin-top: 8px !important; }
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-form button[type="submit"],
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-form .wpforms-submit {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 100px !important;
  padding: 16px 36px !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size: 14.5px !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: transform var(--t-fast), box-shadow var(--t-fast) !important;
  box-shadow:
    0 14px 36px -12px var(--blue-glow),
    inset 0 1px 0 rgba(255, 255, 255, .25) !important;
  width: 100% !important;
}
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-form button[type="submit"]:hover,
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-form .wpforms-submit:hover {
  transform: translateY(-2px) !important;
  box-shadow:
    0 24px 50px -16px var(--blue-glow),
    inset 0 1px 0 rgba(255, 255, 255, .35) !important;
}
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-form .wpforms-error,
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-form em.wpforms-error {
  color: #FCA5A5 !important;
  font-size: 13px !important;
  font-style: normal !important;
  margin-top: 6px !important;
}
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-confirmation-container-full {
  background: rgba(34, 197, 94, .08) !important;
  border: 1px solid rgba(34, 197, 94, .25) !important;
  border-radius: 16px !important;
  padding: 20px !important;
  color: #BBF7D0 !important;
}
/* reCAPTCHA in dark form */
body.eip-contact-rebuild .eip-page .eip-form__card-inner .g-recaptcha,
body.eip-contact-rebuild .eip-page .eip-form__card-inner .wpforms-recaptcha-container {
  margin-top: 8px;
  filter: invert(.92) hue-rotate(180deg);
}

/* ============================================================
   4. SERVICE AREA
   ============================================================ */
body.eip-contact-rebuild .eip-page .eip-area {
  padding: clamp(70px, 9vw, 110px) 0 clamp(90px, 11vw, 140px);
  background: #fff;
}
body.eip-contact-rebuild .eip-page .eip-area__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(36px, 5vw, 60px);
  position: relative;
  overflow: hidden;
}
body.eip-contact-rebuild .eip-page .eip-area__inner::before {
  content: ""; position: absolute;
  top: -40%; right: -10%;
  width: 380px; height: 380px;
  background: radial-gradient(closest-side, rgba(50, 120, 179, .14), transparent 70%);
  pointer-events: none;
}
@media (max-width: 880px) {
  body.eip-contact-rebuild .eip-page .eip-area__inner { grid-template-columns: 1fr; }
}
body.eip-contact-rebuild .eip-page .eip-area__lede {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mute);
  max-width: 420px;
  margin: 0;
}
body.eip-contact-rebuild .eip-page .eip-area__suburbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
}
body.eip-contact-rebuild .eip-page .eip-area__suburbs span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all var(--t-fast);
  cursor: default;
}
body.eip-contact-rebuild .eip-page .eip-area__suburbs span:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(-2px);
}
body.eip-contact-rebuild .eip-page .eip-area__suburbs span:last-child {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  border-color: transparent;
}

/* ============================================================
   REVEAL ENTRANCE STATES (set by JS once observed)
   ============================================================ */
body.eip-contact-rebuild .eip-page [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
body.eip-contact-rebuild .eip-page [data-reveal="card"] {
  transform: translateY(34px) scale(.98);
}
body.eip-contact-rebuild .eip-page [data-reveal].is-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Per-section stagger for area suburb chips */
body.eip-contact-rebuild .eip-page .eip-area__suburbs.is-in span {
  animation: eip-chip-in .55s var(--ease) backwards;
}
body.eip-contact-rebuild .eip-page .eip-area__suburbs.is-in span:nth-child(1)  { animation-delay: .04s; }
body.eip-contact-rebuild .eip-page .eip-area__suburbs.is-in span:nth-child(2)  { animation-delay: .08s; }
body.eip-contact-rebuild .eip-page .eip-area__suburbs.is-in span:nth-child(3)  { animation-delay: .12s; }
body.eip-contact-rebuild .eip-page .eip-area__suburbs.is-in span:nth-child(4)  { animation-delay: .16s; }
body.eip-contact-rebuild .eip-page .eip-area__suburbs.is-in span:nth-child(5)  { animation-delay: .20s; }
body.eip-contact-rebuild .eip-page .eip-area__suburbs.is-in span:nth-child(6)  { animation-delay: .24s; }
body.eip-contact-rebuild .eip-page .eip-area__suburbs.is-in span:nth-child(7)  { animation-delay: .28s; }
body.eip-contact-rebuild .eip-page .eip-area__suburbs.is-in span:nth-child(8)  { animation-delay: .32s; }
body.eip-contact-rebuild .eip-page .eip-area__suburbs.is-in span:nth-child(9)  { animation-delay: .36s; }
body.eip-contact-rebuild .eip-page .eip-area__suburbs.is-in span:nth-child(10) { animation-delay: .40s; }
body.eip-contact-rebuild .eip-page .eip-area__suburbs.is-in span:nth-child(11) { animation-delay: .44s; }
body.eip-contact-rebuild .eip-page .eip-area__suburbs.is-in span:nth-child(12) { animation-delay: .48s; }
@keyframes eip-chip-in {
  from { opacity: 0; transform: translateY(14px) scale(.94); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
body.eip-contact-rebuild .eip-page a:focus-visible,
body.eip-contact-rebuild .eip-page button:focus-visible,
body.eip-contact-rebuild .eip-page input:focus-visible,
body.eip-contact-rebuild .eip-page textarea:focus-visible {
  outline: 2px solid var(--blue) !important;
  outline-offset: 3px;
  border-radius: 8px;
}

@media (prefers-reduced-motion: reduce) {
  body.eip-contact-rebuild .eip-page *,
  body.eip-contact-rebuild .eip-page *::before,
  body.eip-contact-rebuild .eip-page *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  body.eip-contact-rebuild .eip-page [data-reveal] { opacity: 1; transform: none; }
}

/* Mobile touches */
@media (max-width: 540px) {
  body.eip-contact-rebuild .eip-page .eip-hero {
    min-height: auto;
    padding: 100px 0 70px;
  }
  body.eip-contact-rebuild .eip-page .eip-hero__shape--3 { display: none; }
  body.eip-contact-rebuild .eip-page .eip-hero__card-inner { padding: 24px; }
  body.eip-contact-rebuild .eip-page .eip-method { padding: 28px 22px 24px; }
}
