/* Pixel-accurate Irish Plumber clone - 980px Wix layout */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800&display=swap");

:root {
  /* Irish Plumber UI chrome (logo keeps its own colors) */
  --green: #007a0d;
  --green-dark: #005f0b;
  --green-light: rgba(0, 122, 13, 0.49);
  --green-irish: #007a0d;
  --orange: #e8650a;
  --orange-dark: #c45208;
  --cream: #f7f3ea;
  --gold: #d4a017;
  --text: #303030;
  --text-muted: #717070;
  --white: #ffffff;
  --footer-bg: #303030;
  --footer-text: #efefef;
  --menu-hover-border: #0d63d1;
  --dropdown-border: #c9c8fb;
  --site-width: 980px;
  --site-gutter: 48px;
  --why-mint: #e8f3ee;
  --why-mint-card: #dceee4;
  --font: "Open Sans", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.4;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.irish-container {
  width: var(--site-width);
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

/* ── Header ── */
.irish-header { position: relative; z-index: 100; }

.irish-marquee {
  background: var(--green);
  color: var(--white);
  height: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  direction: ltr;
}
.irish-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
}
.irish-marquee-track span { padding-inline: 2rem; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.irish-header-bar {
  background: var(--white);
  border-bottom: none;
}
.irish-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  direction: rtl;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  min-height: 132px;
  padding: 6px var(--site-gutter) 19px;
  gap: 8px;
}
.irish-logo {
  flex: 0 0 299px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.irish-logo img {
  width: auto;
  max-width: 299px;
  height: auto;
  max-height: 134px;
  object-fit: contain;
  background: transparent;
}

/* Nav - centered 478px band like Irish Plumber */
.irish-nav {
  position: relative;
  flex: 1 1 478px;
  max-width: 478px;
  min-height: 50px;
  margin-top: 35px;
  margin-bottom: 47px;
}
.irish-nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  min-height: 50px;
}
.irish-nav > ul > li { position: relative; }
.irish-nav > ul > li > a,
.irish-nav > ul > li > button.nav-parent {
  display: block;
  padding: 10px 6px;
  margin: 4px;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  background: transparent;
  border: 0 solid transparent;
  border-radius: 15px 5px 15px 5px;
  cursor: pointer;
  font-family: var(--font);
  white-space: nowrap;
  line-height: 1.2;
}
.irish-nav > ul > li > a:hover,
.irish-nav > ul > li > button.nav-parent:hover,
.irish-nav > ul > li.open > button.nav-parent {
  background: var(--green);
  border: 1px solid var(--menu-hover-border);
  color: var(--white);
}
.irish-nav > ul > li > a.active {
  background: var(--green);
  border: 1px solid var(--menu-hover-border);
  color: var(--white);
}
.irish-nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-start: 0;
  min-width: 980px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--dropdown-border);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 200;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.irish-nav > ul > li.open .irish-nav-dropdown { display: grid; }
.irish-nav-dropdown a {
  display: block;
  padding: 10px;
  margin-bottom: 8px;
  text-align: center;
  font-size: 15px;
  color: #000;
  border-radius: 15px 5px 15px 5px;
  background: var(--white);
}
.irish-nav-dropdown a:hover {
  background: var(--green);
  color: var(--white);
}

.irish-header-cta {
  flex: 0 0 199px;
  width: 199px;
  text-align: left;
  margin-top: 33px;
  margin-bottom: 25px;
}
.irish-cta-label {
  margin: 0 0 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.irish-header-cta .irish-phone-link {
  display: block;
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: var(--green);
  color: var(--white);
  border: 0;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-family: var(--font);
  cursor: pointer;
}

/* ── Buttons ── */
.btn-irish-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 152px;
  height: 50px;
  padding: 3px 16px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  background: linear-gradient(245deg, var(--green-light) 0%, var(--green-dark) 100%);
  border: 0;
  border-radius: 15px 5px 15px 5px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.btn-irish-primary:hover {
  background: linear-gradient(61deg, var(--green-light) 0%, var(--green-dark) 100%);
}

.btn-irish-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  direction: rtl;
  gap: 8px;
  min-width: 146px;
  height: 50px;
  padding: 3px 12px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--green-dark);
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--green);
  border-radius: 0;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}
.btn-irish-outline:hover {
  color: var(--white);
  background: linear-gradient(245deg, var(--green-light) 0%, var(--green-dark) 100%);
  border-bottom-color: var(--green-dark);
  border-radius: 15px 5px;
  box-shadow: 0 10px 28px rgba(0, 95, 11, 0.45);
  transform: translateY(-3px);
}
.btn-irish-outline svg {
  width: 25px;
  height: 25px;
  fill: var(--green);
  flex-shrink: 0;
  transition: fill 0.25s ease, transform 0.2s ease;
}
.btn-irish-outline:hover svg {
  fill: var(--white);
  transform: scale(1.08);
}

.btn-irish-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 157px;
  height: 50px;
  padding: 0 20px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--white);
  background: var(--green);
  border: 0;
  border-radius: 5px 15px 5px 15px;
  box-shadow: 0 0 25px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: background 0.4s ease;
}
.btn-irish-green:hover { background: var(--green-dark); }
.btn-irish-green.has-scroll-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  direction: rtl;
  gap: 10px;
}
.btn-irish-green .btn-scroll-arrow {
  width: 18px;
  height: 22px;
  flex-shrink: 0;
}

.btn-irish-outline.btn-irish-stroke,
.btn-irish-wa.btn-irish-stroke {
  background: transparent;
  box-shadow: none;
  border: 2px solid var(--green);
  border-radius: 5px 15px 5px 15px;
}
.btn-irish-outline.btn-irish-stroke {
  color: var(--green-dark);
  border-bottom: 2px solid var(--green);
}
.btn-irish-outline.btn-irish-stroke svg {
  fill: var(--green);
}
.btn-irish-outline.btn-irish-stroke:hover {
  color: var(--green-dark);
  background: transparent;
  border-color: var(--green-dark);
  border-radius: 5px 15px 5px 15px;
  box-shadow: none;
  transform: none;
}
.btn-irish-outline.btn-irish-stroke:hover svg {
  fill: var(--green-dark);
  transform: none;
}
.btn-irish-wa.btn-irish-stroke {
  color: #128c7e;
  border-color: #25d366;
  font-weight: 700;
}
.btn-irish-wa.btn-irish-stroke svg {
  fill: #25d366;
}
.btn-irish-wa.btn-irish-stroke:hover {
  color: #0e6b5f;
  background: transparent;
  border-color: #1da851;
  box-shadow: none;
}

.btn-irish-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  direction: rtl;
  gap: 8px;
  min-width: 158px;
  height: 50px;
  padding: 3px 16px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  background: #25d366;
  border: 0;
  border-radius: 15px 5px 15px 5px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.btn-irish-wa:hover {
  background: #1da851;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}
.btn-irish-wa svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ── Hero - 62.5% image, horizontal edge fade ── */
.irish-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1024 / 315;
  height: auto;
  min-height: 220px;
  background-size: 62.5% auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--white);
  overflow: hidden;
}
.irish-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.38);
}
.irish-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to right, #fff 0%, #fff 16%, rgba(255, 255, 255, 0.98) 20%, rgba(255, 255, 255, 0.9) 24%, rgba(255, 255, 255, 0.65) 28%, rgba(255, 255, 255, 0.35) 32%, rgba(255, 255, 255, 0.12) 36%, transparent 40%),
    linear-gradient(to left, #fff 0%, #fff 16%, rgba(255, 255, 255, 0.98) 20%, rgba(255, 255, 255, 0.9) 24%, rgba(255, 255, 255, 0.65) 28%, rgba(255, 255, 255, 0.35) 32%, rgba(255, 255, 255, 0.12) 36%, transparent 40%);
}
.irish-hero-content {
  position: relative;
  z-index: 3;
  direction: rtl;
  width: var(--site-width);
  max-width: calc(100% - var(--site-gutter) * 2);
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 var(--site-gutter) 24px;
}

/* Certification badge - left side of hero */
.irish-hero-cert {
  position: absolute;
  left: max(var(--site-gutter), 2vw);
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  pointer-events: none;
}
.irish-hero-cert-badge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 168px;
  padding: 22px 18px 20px;
  text-align: center;
  direction: rtl;
  color: var(--white);
  background: linear-gradient(165deg, var(--green) 0%, var(--green-dark) 100%);
  border: 3px solid var(--gold);
  border-radius: 20px;
  box-shadow:
    0 10px 28px rgba(0, 95, 11, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform-origin: center center;
  contain: layout style paint;
  animation: cert-badge-sway 2.8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.irish-hero-cert-badge::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: 26px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.55) 0%, transparent 72%);
  opacity: 0;
  transform: scale(0.96);
  animation: cert-badge-glow 2.8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}
.irish-hero-cert-icon {
  width: 52px;
  height: 52px;
  color: var(--cream);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transform-origin: center center;
  animation: cert-icon-seal 2.8s cubic-bezier(0.34, 1.25, 0.64, 1) infinite;
}
.irish-hero-cert-text {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
@keyframes cert-badge-sway {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate3d(0, -9px, 0) rotate(-2.5deg) scale(1.02);
  }
  50% {
    transform: translate3d(0, -4px, 0) rotate(2deg) scale(1);
  }
  75% {
    transform: translate3d(0, -10px, 0) rotate(-1.5deg) scale(1.02);
  }
}
@keyframes cert-badge-glow {
  0%, 100% {
    opacity: 0;
    transform: scale(0.96);
  }
  25%, 75% {
    opacity: 0.8;
    transform: scale(1.06);
  }
  50% {
    opacity: 0.35;
    transform: scale(1);
  }
}
@keyframes cert-icon-seal {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  15% {
    transform: scale(1.18) rotate(-8deg);
  }
  30% {
    transform: scale(1) rotate(0deg);
  }
  45% {
    transform: scale(1.12) rotate(-6deg);
  }
  60%, 100% {
    transform: scale(1) rotate(0deg);
  }
}
.irish-hero.hero-anim-paused .irish-hero-cert-badge,
.irish-hero.hero-anim-paused .irish-hero-cert-badge::before,
.irish-hero.hero-anim-paused .irish-hero-cert-icon,
.irish-hero.hero-anim-paused .irish-hero-tag::after {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .irish-hero-cert-badge,
  .irish-hero-cert-badge::before,
  .irish-hero-cert-icon,
  .irish-hero-tag::after {
    animation: none;
  }
}
.irish-hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px 0;
  max-width: 620px;
  direction: rtl;
}
.irish-hero-tag {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--white);
  direction: rtl;
  background: linear-gradient(180deg, #ff8a2a 0%, var(--orange) 45%, var(--orange-dark) 100%);
  border: 2px solid var(--white);
  border-radius: 999px;
  box-shadow:
    0 0 0 1px rgba(196, 82, 8, 0.35),
    0 6px 18px rgba(232, 101, 10, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  text-shadow: 0 1px 1px rgba(120, 40, 0, 0.25);
  white-space: nowrap;
}
.irish-hero-tag::after {
  content: "";
  position: absolute;
  top: -35%;
  right: -75%;
  width: 32%;
  height: 170%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 18%,
    rgba(255, 255, 255, 0.95) 48%,
    rgba(255, 244, 170, 1) 52%,
    rgba(255, 255, 255, 0.95) 56%,
    rgba(255, 255, 255, 0.15) 82%,
    transparent 100%
  );
  transform: rotate(16deg);
  filter: blur(0.4px);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation: irish-tag-lightning-wave 4.5s ease-in-out infinite;
}
.irish-hero-tag:nth-child(1)::after { animation-delay: 0s; }
.irish-hero-tag:nth-child(2)::after { animation-delay: 1.5s; }
.irish-hero-tag:nth-child(3)::after { animation-delay: 3s; }
@keyframes irish-tag-lightning-wave {
  0%, 62%, 100% {
    right: -75%;
    opacity: 0;
  }
  66% {
    opacity: 1;
  }
  74% {
    right: 115%;
    opacity: 1;
  }
  76% {
    right: 100%;
    opacity: 0.75;
  }
  78% {
    right: 115%;
    opacity: 0.95;
  }
  84% {
    right: 115%;
    opacity: 0;
  }
}
.irish-hero-tag::before {
  content: "✓";
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
}
.irish-hero-tag-label {
  position: relative;
  z-index: 1;
}
.irish-hero h1 {
  margin: 0 0 12px 0;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.04em;
  color: var(--text);
  max-width: 620px;
  direction: rtl;
  text-align: right;
}
.irish-hero-brand {
  color: var(--green);
  font-weight: 800;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.95);
  paint-order: stroke fill;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.6),
    0 2px 10px rgba(0, 0, 0, 0.12);
}
.irish-hero-buttons {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 15px;
  margin-inline-start: 0;
}

/* ── Trust strip - full width, flush below hero ── */
.irish-trust-strip {
  position: relative;
  width: 100%;
  margin-top: 0;
  padding: 0;
  z-index: 2;
}
.irish-trust-bar {
  width: 100%;
  max-width: 100%;
  margin: 0;
  min-height: 132px;
  background-color: var(--green);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0;
  overflow: hidden;
}
.irish-trust-inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  padding: 24px 20px 28px;
  gap: 0;
}
.irish-trust-item {
  flex: 1 1 0;
  max-width: 318px;
  text-align: center;
  position: relative;
  padding: 0 12px;
}
.irish-trust-item img {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.irish-trust-item h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
}
.irish-trust-divider {
  width: 1px;
  height: 72px;
  background: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}

/* ── Local section ── */
.irish-local {
  position: relative;
  padding: 54px 0 40px;
  overflow: hidden;
}
.irish-local-grid {
  width: var(--site-width);
  max-width: calc(100% - 24px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 28px;
  align-items: center;
}
.irish-local-photo-wrap {
  position: relative;
  width: 500px;
  max-width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}
.irish-local-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.32);
  pointer-events: none;
}
.irish-local-photo {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1024 / 682;
}
.irish-local-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  direction: rtl;
  text-align: right;
  padding-inline-start: 8px;
  min-width: 0;
}
.irish-local-text h2 {
  margin: 0 0 14px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: var(--text);
}
.irish-local-text p {
  margin: 0 0 15px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--text-muted);
}
.irish-local-text p strong {
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}
.irish-local-text .irish-hero-buttons {
  margin-top: 4px;
}

/* ── Why choose ── */
.irish-why {
  width: 100%;
  padding: 52px 0 44px;
  background-color: var(--why-mint);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.irish-why-inner {
  width: var(--site-width);
  max-width: calc(100% - var(--site-gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--site-gutter);
}
.irish-why-block {
  --why-card-w: 261px;
  --why-card-gap: 16px;
  width: min(calc(var(--why-card-w) * 3 + var(--why-card-gap) * 2), 100%);
  margin: 0 auto;
  direction: rtl;
  text-align: right;
}
.irish-why-block h2 {
  margin: 0 0 13px;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.04em;
  max-width: 100%;
  color: var(--text);
}
.irish-why-block > p {
  margin: 0 0 26px;
  font-size: 15px;
  max-width: 100%;
  line-height: 1.4;
  color: var(--text-muted);
}
.irish-why-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-bottom: 26px;
  direction: rtl;
}
.irish-why-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--why-card-gap);
  width: 100%;
}
.irish-why-card {
  width: 261px;
  text-align: center;
  background: var(--why-mint-card);
  border: 1px solid rgba(0, 122, 13, 0.35);
  border-radius: 30px 10px 30px 10px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease-in-out;
}
.irish-why-card:hover { transform: scale(1.04); }
.irish-why-card-icon {
  width: 50px;
  height: 50px;
  margin: 28px auto 14px;
  border: 1px solid var(--green);
  border-radius: 5px;
  padding: 7px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.irish-why-card-icon svg,
.irish-why-card-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.irish-why-card h3 {
  margin: 0 0 28px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

/* ── Services section ── */
.irish-services {
  position: relative;
  width: 100%;
  min-height: 620px;
  background-size: cover;
  background-position: center;
  padding: 55px 0 66px;
}
.irish-services h2 {
  margin: 0 auto 33px;
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.04em;
  max-width: 693px;
  color: var(--text);
}
.irish-services-grid {
  width: var(--site-width);
  max-width: calc(100% - 32px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 347px);
  justify-content: center;
  gap: 16px;
}
.irish-service-card {
  background: var(--white);
  border: 1px solid rgba(0, 122, 13, 0.28);
  border-radius: 5px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease-in-out;
}
.irish-service-card:hover { transform: scale(1.04); }
.irish-service-card-body {
  padding: 27px 22px 28px;
  direction: rtl;
  text-align: right;
}
.irish-service-card-icon {
  width: 50px;
  height: 50px;
  margin: 0 0 12px;
  border: 1px solid var(--green);
  border-radius: 5px;
  padding: 7px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.irish-service-card-icon svg,
.irish-service-card-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.irish-service-card h3 {
  margin: 0 0 11px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.irish-service-card p {
  margin: 0 0 17px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── Pro gallery strip ── */
.irish-gallery {
  padding: 61px 25px 49px;
  background: var(--white);
}
.irish-gallery-grid {
  width: var(--site-width);
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  height: 371px;
}
.irish-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.irish-gallery hr {
  width: calc(100% - 50px);
  margin: 0 auto;
  border: 0;
  border-top: 1px solid rgba(232, 101, 10, 0.45);
  height: 5px;
}

/* ── Trusted band (980×364) ── */
.irish-trusted-band {
  position: relative;
  width: 100%;
  min-height: 364px;
  background-size: cover;
  background-position: center;
}
.irish-trusted-band h2 {
  margin: 0 auto;
  padding-top: 60px;
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.04em;
  max-width: 740px;
}
.irish-trusted-inner {
  width: var(--site-width);
  max-width: calc(100% - 32px);
  margin: 27px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-bottom: 40px;
}
.irish-trusted-item {
  width: 318px;
  text-align: center;
}
.irish-trusted-item img {
  width: 46px;
  height: 46px;
  margin: 12px auto 7px;
}
.irish-trusted-item h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}
.irish-trusted-band--service {
  min-height: 300px;
  background-color: var(--why-mint);
}
.irish-trusted-band--service h2,
.irish-trusted-band--service .irish-trusted-item h3 {
  color: var(--text);
}
.irish-trusted-band--service .irish-trust-divider {
  background: rgba(0, 0, 0, 0.12);
}

/* ── Footer ── */
.irish-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
}
.irish-footer-main {
  width: var(--site-width);
  max-width: calc(100% - 32px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 294px 147px 304px 235px;
  gap: 0;
  padding: 70px 0 57px;
}
.irish-footer-main h3 {
  margin: 0 0 19px;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.irish-footer-main a,
.irish-footer-main p {
  display: block;
  margin: 0 0 18px;
  font-size: 13px;
  color: var(--footer-text);
  line-height: 1.4;
}
.irish-footer-main a:hover { color: var(--white); }
.irish-footer-logo img {
  width: 272px;
  height: 129px;
  object-fit: contain;
  margin-bottom: 37px;
}
.irish-footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.irish-footer-social img { width: 20px; height: 20px; }
.irish-footer-bar {
  background: var(--orange-dark);
  text-align: center;
  padding: 14px 47px 15px;
  font-size: 13px;
  color: var(--cream);
}

/* ── Scroll reveal (Irish Plumber roll-out) ── */
@keyframes irish-reveal-roll {
  from {
    opacity: 0;
    transform: scale(0.94) translate3d(0, 36px, 0);
  }
  to {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0);
  }
}
.irish-reveal,
.irish-reveal-child {
  opacity: 0;
  transform: scale(0.94) translate3d(0, 36px, 0);
  transform-origin: center center;
  will-change: transform, opacity;
}
.irish-reveal-child {
  transform: scale(0.92) translate3d(0, 28px, 0);
}
.irish-reveal.is-visible,
.irish-reveal-child.is-visible {
  animation: irish-reveal-roll 1.15s cubic-bezier(0.645, 0.045, 0.355, 1) forwards;
}
.irish-reveal-child.is-visible {
  animation-duration: 1s;
  animation-delay: var(--reveal-delay, 0ms);
}
@media (prefers-reduced-motion: reduce) {
  .irish-reveal,
  .irish-reveal-child {
    opacity: 1;
    transform: none;
    animation: none !important;
    will-change: auto;
  }
}

/* ── Service pages (Irish Plumber layout) ── */
.service-page-hero {
  position: relative;
  min-height: 220px;
  background-color: var(--white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  isolation: isolate;
}
.service-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  bottom: -4px;
  background: rgba(255, 255, 255, 0.92);
  z-index: 0;
}
.service-page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: var(--white);
  z-index: 1;
  pointer-events: none;
}
.service-page-hero-inner {
  position: relative;
  z-index: 2;
  width: var(--site-width);
  max-width: calc(100% - 32px);
  margin: 0 auto;
  padding: 52px 16px 44px;
  text-align: center;
}
.service-page-hero h1 {
  margin: 0 0 10px;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
}
.service-breadcrumbs {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.service-breadcrumbs a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}
.service-breadcrumbs a:hover { text-decoration: underline; }
.service-breadcrumb-sep { color: #aaa; }

.service-page-main {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  padding: 56px 0 52px;
  background: var(--white);
}
.service-page-grid {
  width: var(--site-width);
  max-width: calc(100% - 32px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr min(480px, 42%);
  gap: 44px;
  align-items: start;
  direction: rtl;
}
.service-page-copy h2 {
  margin: 0 0 18px;
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}
.service-page-copy p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
}
.service-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.service-bullet-list li {
  position: relative;
  padding-inline-start: 22px;
  margin-bottom: 11px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--text-muted);
}
.service-bullet-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
}
.btn-service-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  direction: rtl;
  gap: 10px;
  font-weight: 700;
  min-width: 220px;
}
.btn-service-call svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}
.service-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  direction: rtl;
}
.btn-service-wa {
  min-width: 220px;
  height: 50px;
}
.service-page-media {
  position: relative;
}
.service-page-media::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  inset-inline-start: -18px;
  bottom: -18px;
  background: radial-gradient(circle, rgba(0, 122, 13, 0.12) 2px, transparent 2px);
  background-size: 14px 14px;
  pointer-events: none;
  z-index: 0;
}
.service-page-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.12);
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.service-page-extra {
  padding-top: 8px;
  padding-bottom: 20px;
}

/* ── Inner pages ── */
.page-hero {
  background: linear-gradient(245deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--cream);
  padding: 48px 16px;
  text-align: center;
}
.page-hero h1 {
  margin: 0 0 12px;
  font-size: 42px;
  font-weight: 700;
}
.page-hero p {
  margin: 0 auto 20px;
  max-width: 640px;
  font-size: 15px;
  opacity: 0.95;
}
.page-content {
  width: var(--site-width);
  max-width: calc(100% - 32px);
  margin: 0 auto;
  padding: 40px 0 60px;
}
.content-block { margin-bottom: 32px; }
.content-block h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 16px;
}
.content-block h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--text);
}
.content-block h3:first-of-type {
  margin-top: 0;
}
.check-list, .numbered { padding-inline-start: 1.25rem; }
.check-list li, .numbered li { margin-bottom: 8px; }

.snippet-answer {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.faq-section {
  width: var(--site-width);
  max-width: calc(100% - 32px);
  margin: 0 auto 0;
  padding: 0 0 24px;
}
.service-page-extra + .faq-section,
.page-content + .faq-section {
  padding-top: 8px;
}
.faq-section + .cta-strip {
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 0;
}
.faq-section h2 { font-size: 30px; margin-bottom: 16px; }
.faq-item {
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  margin-bottom: 8px;
  padding: 0 16px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 12px 0;
}
.faq-item p { margin: 0 0 12px; color: var(--text-muted); }

.cta-strip {
  background: linear-gradient(135deg, var(--green-dark) 0%, #003d07 100%);
  color: var(--white);
  padding: 36px 28px;
  margin: 40px 0 36px;
  border-top: 4px solid var(--orange);
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}
.cta-strip-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  direction: rtl;
}
.cta-strip-copy {
  flex: 1 1 280px;
  min-width: 0;
}
.cta-strip-copy strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
  color: var(--white);
}
.cta-strip-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}
.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.btn-cta-phone,
.btn-cta-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  direction: rtl;
  gap: 10px;
  min-width: 168px;
  height: 52px;
  padding: 0 20px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-cta-phone {
  color: var(--green-dark);
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
}
.btn-cta-phone svg {
  width: 22px;
  height: 22px;
  fill: var(--green);
  flex-shrink: 0;
}
.btn-cta-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}
.btn-cta-wa {
  color: var(--white);
  background: #25d366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}
.btn-cta-wa svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}
.btn-cta-wa:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
}

.irish-no-reveal,
.irish-no-reveal * {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.big-link { font-size: 24px; font-weight: 700; color: var(--green); }

.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  inset-inline: 0;
  z-index: 999;
  grid-template-columns: 1fr 1fr;
}
.mobile-cta a {
  text-align: center;
  padding: 14px;
  font-weight: 700;
  color: var(--white);
}
.m-phone { background: var(--green-dark); }
.m-wa { background: var(--orange); }

/* ── Responsive ── */
@media (max-width: 1020px) {
  .irish-header-inner {
    flex-wrap: wrap;
    justify-content: center;
    min-height: auto;
    padding-bottom: 12px;
  }
  .irish-logo { flex: 0 0 auto; }
  .irish-nav {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 0;
    order: 3;
  }
  .irish-header-cta {
    flex: 0 0 auto;
    width: auto;
    margin: 0;
    text-align: center;
  }
  .irish-nav-dropdown { min-width: 100%; }
  .irish-hero-cert-badge {
    width: 148px;
    padding: 18px 14px;
  }
  .irish-hero-cert-text { font-size: 18px; }
  .irish-hero-cert-icon { width: 44px; height: 44px; }
  .irish-hero h1 { font-size: 30px; }
  .irish-local-grid { grid-template-columns: 1fr; }
  .irish-local-photo-wrap { width: 100%; }
  .irish-services-grid { grid-template-columns: 1fr; }
  .irish-why { padding: 36px 0 32px; }
  .irish-why-inner { max-width: calc(100% - 32px); padding: 0 16px; }
  .irish-why-actions { margin-bottom: 22px; }
  .irish-footer-main { grid-template-columns: 1fr 1fr; gap: 24px; }
  .irish-gallery-grid { grid-template-columns: repeat(2, 1fr); height: auto; }
  .irish-trusted-inner { flex-direction: column; gap: 24px; }
  .irish-trust-bar { border-radius: 0; }
  .irish-trust-inner { flex-direction: column; gap: 18px; padding: 22px 16px; }
  .irish-trust-divider { width: 72%; height: 1px; }
  .irish-trust-item h3 { font-size: 20px; }
  .cta-strip { padding: 28px 20px; }
  .cta-strip-copy strong { font-size: 22px; }
  .cta-buttons { width: 100%; justify-content: center; }
  .service-page-grid { grid-template-columns: 1fr; gap: 28px; }
  .service-page-media { order: -1; max-width: 480px; margin: 0 auto; width: 100%; }
  .service-page-hero h1 { font-size: 32px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; margin-inline-start: auto; }
  .irish-nav > ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    inset-inline: 0;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .irish-nav.open > ul { display: flex; }
  .irish-nav-dropdown {
    position: static;
    min-width: 0;
    box-shadow: none;
    border: 0;
    grid-template-columns: 1fr;
  }
  .irish-hero {
    aspect-ratio: 1024 / 350;
    min-height: 200px;
    background-size: 95% auto;
    background-position: center center;
  }
  .irish-hero-cert { display: none; }
  .irish-hero h1 { font-size: 25px; max-width: 90%; }
  .irish-hero-tags { gap: 8px; margin-bottom: 10px; max-width: 100%; }
  .irish-hero-tag { font-size: 12px; padding: 7px 12px; }
  .irish-hero-buttons { flex-wrap: wrap; }
  .irish-trust-strip { margin-top: 0; }
  .irish-trust-item h3, .irish-trusted-item h3 { font-size: 18px; }
  .irish-footer-main { grid-template-columns: 1fr; }
  .mobile-cta { display: grid; }
  body { padding-bottom: 52px; }
}
