/* Pixel-accurate Irish Plumber clone - 980px Wix layout */
:root {
  /* Brand UI chrome — אינסטלטור תל אביב blue palette */
  --green: #0055b8;
  --green-dark: #003d85;
  --green-light: rgba(0, 85, 184, 0.49);
  --green-irish: #0055b8;
  --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;
}

.skip-link {
  position: absolute;
  top: -100%;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--green-dark);
  color: var(--white);
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  font-weight: 700;
}
.skip-link:focus {
  top: 0;
}
  --why-mint: #e8eef7;
  --why-mint-card: #dce8f3;
  --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 {
  position: relative;
  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: static;
  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.nav-dropdown-parent { position: static; }
.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: fixed;
  top: 140px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(960px, calc(100vw - 2 * var(--site-gutter)));
  min-width: 0;
  max-height: min(70vh, 520px);
  overflow-y: auto;
  overflow-x: hidden;
  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: 300;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.irish-nav > ul > li.open .irish-nav-dropdown { display: grid; }
.irish-nav-dropdown a {
  display: block;
  padding: 10px 8px;
  margin-bottom: 8px;
  text-align: center;
  font-size: 14px;
  line-height: 1.35;
  white-space: normal;
  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 8px 0;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.04em;
  color: var(--text);
  max-width: 100%;
  direction: rtl;
  text-align: right;
  white-space: nowrap;
}
.irish-hero-lead {
  margin: 0 0 12px 0;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  line-height: 1.35;
  color: var(--muted);
}
.irish-hero-h1-sep {
  font-weight: 400;
  color: var(--muted);
  margin-inline: 0.35em;
}
.irish-hero-sub {
  margin: 0 0 12px 0;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 700;
  line-height: 1.55;
  color: var(--text);
  max-width: 820px;
}
.irish-hero-sub:last-of-type {
  margin-bottom: 20px;
}
.home-intro {
  width: 100%;
  padding: 48px 0 40px;
  background-color: var(--why-mint);
  margin-top: 0;
}
.home-intro-inner.content-block {
  width: 100%;
  max-width: 780px;
  margin-inline: auto;
  padding: 0 24px;
  margin-bottom: 0;
  direction: rtl;
  text-align: right;
}
.home-intro-inner.content-block h3 {
  margin: 28px 0 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.3;
}
.home-intro-inner.content-block h3:first-of-type {
  margin-top: 20px;
}
.home-intro-inner.content-block h2 {
  margin: 0 0 14px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: var(--text);
}
.home-intro-inner.content-block p {
  margin: 0 0 15px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--text-muted);
}
.home-intro-inner.content-block p strong {
  color: var(--text);
}
.home-services-section {
  padding: 48px 0 24px;
}
.home-services-section .home-services-header {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 28px;
  padding: 0 24px;
  direction: rtl;
  text-align: center;
}
.home-services-section .home-services-header h2 {
  margin: 0 0 14px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: var(--text);
}
.home-services-section .home-services-header p {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  color: var(--text-muted);
}
.home-services-section .home-services-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  direction: ltr;
  align-items: center;
  justify-content: flex-start;
  gap: 12px 15px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.home-services-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.home-services-ctas .btn-irish-outline,
.home-services-ctas .btn-irish-wa {
  min-height: 48px;
}
.home-how-to.content-block {
  max-width: var(--content-max);
  margin-inline: auto;
  padding: 48px 24px;
}
.home-how-to .irish-hero-buttons {
  margin-top: 24px;
  justify-content: center;
}

/* ── Money page: experience band ── */
.home-experience-band {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
  padding: 36px 20px 28px;
  text-align: center;
}
.home-experience-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 28px;
  max-width: 820px;
  margin: 0 auto;
}
.home-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 120px;
}
.home-stat-value {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}
.home-stat-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  opacity: 0.95;
}
.home-stat-divider {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, 0.35);
}
.home-experience-leadership {
  margin: 20px 0 0;
  font-size: 15px;
  font-weight: 600;
  opacity: 0.92;
}

.home-leadership-note {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 15px;
}
.home-updated-note {
  margin-top: 8px;
  font-size: 14px;
  color: var(--irish-muted, #5a6a5e);
}
.home-intro-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 28px;
}
.home-intro-cta .btn-irish-outline,
.home-intro-cta .btn-irish-wa {
  min-height: 48px;
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 700;
}

/* ── Money page: emergency block ── */
.home-emergency-block {
  background: var(--orange-dark);
  color: var(--white);
  padding: 40px 20px;
}
.home-emergency-inner {
  width: var(--site-width);
  max-width: calc(100% - 32px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.home-emergency-copy h2 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}
.home-emergency-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  max-width: 520px;
  opacity: 0.95;
}
.home-emergency-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-emergency-phone,
.btn-emergency-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 5px 15px 5px 15px;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.9);
  transition: transform 0.2s, background 0.2s;
}
.btn-emergency-phone svg,
.btn-emergency-wa svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}
.btn-emergency-phone {
  background: var(--green-dark);
}
.btn-emergency-wa {
  background: rgba(0, 0, 0, 0.2);
}
.btn-emergency-phone:hover,
.btn-emergency-wa:hover {
  transform: translateY(-2px);
  background: var(--white);
  color: var(--orange-dark);
}

/* ── Money page: local issues ── */
.home-local-issues {
  background: var(--cream);
  padding: 56px 0;
}
.home-local-issues-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: 24px;
}
.home-local-issues-intro {
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.6;
}
.home-local-issues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.home-local-issue {
  background: var(--white);
  border-radius: 8px;
  padding: 24px 22px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-inline-start: 4px solid var(--green);
}
.home-local-issue h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dark);
}
.home-local-issue p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}
.home-local-issue p:last-child {
  margin-bottom: 0;
}

/* ── Money page: neighborhoods ── */
.home-neighborhoods {
  padding: 48px 0;
}
.home-neighborhoods-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: 24px;
}
.home-neighborhood-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
.home-neighborhood-tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--green);
  color: var(--white);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}
.home-neighborhood-note {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ── Money page: price guide ── */
.home-price-guide {
  background: var(--cream);
  padding: 56px 0;
  scroll-margin-top: 24px;
}
.home-price-guide-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: 24px;
}
.home-price-guide-inner h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 16px;
}
.home-price-guide-brand {
  font-weight: 800;
  font-style: italic;
}
.home-price-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 24px 0 16px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  background: var(--white);
}
.home-price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px 20px;
  align-items: center;
  direction: rtl;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-inline-start: 4px solid transparent;
  transition:
    background-color 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  -webkit-tap-highlight-color: transparent;
}
.home-price-row:last-child {
  border-bottom: none;
}
.home-price-row:nth-child(even) {
  background: rgba(0, 0, 0, 0.02);
}
@media (hover: hover) {
  .home-price-row:hover {
    background: rgba(0, 122, 13, 0.07);
    border-inline-start-color: var(--green);
    box-shadow: inset 0 0 0 1px rgba(0, 122, 13, 0.14);
  }
  .home-price-row:nth-child(even):hover {
    background: rgba(0, 122, 13, 0.09);
  }
  .home-price-row:hover .home-price-row-title {
    color: var(--green);
  }
  .home-price-row:hover .home-price-amount {
    color: var(--green);
    transform: scale(1.06);
  }
}
.home-price-row:active {
  background: rgba(0, 122, 13, 0.11);
  border-inline-start-color: var(--green-dark);
}
.home-price-row:focus-within {
  background: rgba(0, 122, 13, 0.07);
  border-inline-start-color: var(--green);
  box-shadow: inset 0 0 0 1px rgba(0, 122, 13, 0.14);
}
.home-price-row-service {
  min-width: 0;
  text-align: right;
}
.home-price-row-title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.35;
  transition: color 0.28s ease;
}
.home-price-row-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}
.home-price-row-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
  flex-shrink: 0;
}
.home-price-amount-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35em;
  direction: rtl;
}
.home-price-amount {
  display: inline-flex;
  align-items: baseline;
  gap: 0.08em;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--green-dark);
  transition: color 0.28s ease, transform 0.28s cubic-bezier(0.25, 0.9, 0.35, 1);
}
.home-price-number {
  font-size: 1em;
}
.home-price-currency {
  font-size: 0.42em;
  font-weight: 700;
  line-height: 1;
  opacity: 0.88;
}
.home-price-suffix {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.home-price-estimate {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  line-height: 1.3;
}
.home-price-accurate {
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.35;
  color: var(--text-muted);
  max-width: 140px;
}
.home-price-row-ctas {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  min-width: 148px;
  flex-shrink: 0;
}
.home-price-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  direction: rtl;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.home-price-cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.home-price-cta--phone {
  background: var(--green);
  color: var(--white);
  border: 1px solid var(--green-dark);
}
.home-price-cta--phone svg {
  fill: currentColor;
}
.home-price-cta--phone:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 95, 11, 0.25);
}
.home-price-cta--wa {
  background: var(--white);
  color: #128c7e;
  border: 2px solid #25d366;
}
.home-price-cta--wa svg {
  fill: #25d366;
}
.home-price-cta--wa:hover {
  color: #0e6b5f;
  background: rgba(37, 211, 102, 0.08);
  border-color: #1da851;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}
.home-price-cta--wa:hover svg {
  fill: #1da851;
}
.home-price-note {
  font-size: 14px;
  color: var(--text-muted, #555);
  margin: 16px 0 0;
  font-style: italic;
}
.home-price-area-disclaimer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  direction: rtl;
  margin-top: 20px;
  padding: 16px 22px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1e2a3a 0%, #243447 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}
.home-price-area-disclaimer-main {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}
.home-price-area-disclaimer-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}
.home-price-area-disclaimer-main p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}
.home-price-area-disclaimer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 800;
  color: #60a5fa;
  white-space: nowrap;
}
.home-price-area-disclaimer-check {
  width: 18px;
  height: 18px;
  color: #60a5fa;
}

/* ── Money page: compare ── */
.home-compare {
  padding: 48px 0;
}
.home-compare-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: 24px;
}
.home-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}
.home-compare-col {
  padding: 24px 22px;
  border-radius: 8px;
}
.home-compare-col h3 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
}
.home-compare-us {
  background: rgba(45, 106, 79, 0.08);
  border: 1px solid rgba(45, 106, 79, 0.2);
}
.home-compare-us h3 {
  color: var(--green-dark);
}
.home-compare-them {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.home-warn-list {
  padding-inline-start: 1.25rem;
  margin: 0;
}
.home-warn-list li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* ── Money page: trust cards (before CTA) ── */
.home-trust-cards {
  padding: 52px 0 56px;
  background: var(--white);
}
.home-trust-cards-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: 24px;
  text-align: center;
}
.home-trust-cards-heading {
  margin: 0 0 14px;
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--green-dark);
}
.home-trust-cards-accent {
  color: var(--orange);
}
.home-trust-cards-intro {
  max-width: 720px;
  margin: 0 auto 36px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
}
.home-trust-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  text-align: center;
}
.home-trust-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 20px 26px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition:
    transform 0.38s cubic-bezier(0.25, 0.9, 0.35, 1),
    box-shadow 0.38s ease,
    border-color 0.38s ease,
    background-color 0.38s ease;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.home-trust-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transform-origin: center center;
  transition:
    transform 0.38s cubic-bezier(0.34, 1.25, 0.64, 1),
    box-shadow 0.38s ease;
}
.home-trust-card:not(.is-visible) .home-trust-card-icon {
  opacity: 0;
  transform: rotate(-210deg) scale(0.15);
}
.home-trust-card.is-visible .home-trust-card-icon {
  animation: home-trust-icon-roll 0.82s cubic-bezier(0.34, 1.45, 0.64, 1) forwards;
  animation-delay: calc(var(--reveal-delay, 0ms) + 160ms);
}
@media (hover: hover) {
  .home-trust-card:hover,
  .home-trust-card:focus-visible {
    transform: translateY(-10px) scale(1.025);
    box-shadow: 0 18px 44px rgba(0, 95, 11, 0.2);
    border-color: rgba(0, 122, 13, 0.32);
    background: linear-gradient(180deg, #ffffff 0%, #f8fcf9 100%);
  }
  .home-trust-card:has(.home-trust-card-icon--orange):hover,
  .home-trust-card:has(.home-trust-card-icon--orange):focus-visible {
    box-shadow: 0 18px 44px rgba(232, 101, 10, 0.22);
    border-color: rgba(232, 101, 10, 0.38);
    background: linear-gradient(180deg, #ffffff 0%, #fffaf6 100%);
  }
  .home-trust-card:has(.home-trust-card-icon--gold):hover,
  .home-trust-card:has(.home-trust-card-icon--gold):focus-visible {
    box-shadow: 0 18px 44px rgba(212, 160, 23, 0.22);
    border-color: rgba(212, 160, 23, 0.38);
    background: linear-gradient(180deg, #ffffff 0%, #fffdf6 100%);
  }
  .home-trust-card:hover .home-trust-card-icon,
  .home-trust-card:focus-visible .home-trust-card-icon {
    transform: scale(1.14) rotate(-8deg);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  }
  .home-trust-card:hover .home-trust-card-stat,
  .home-trust-card:focus-visible .home-trust-card-stat {
    color: var(--green);
    transform: scale(1.04);
  }
}
.home-trust-card:active {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 32px rgba(0, 95, 11, 0.16);
  border-color: rgba(0, 122, 13, 0.4);
}
.home-trust-card:active .home-trust-card-icon {
  transform: scale(1.08) rotate(-4deg);
}
.home-trust-card-icon--green { background: var(--green); }
.home-trust-card-icon--orange { background: var(--orange); }
.home-trust-card-icon--green-dark { background: var(--green-dark); }
.home-trust-card-icon--gold { background: var(--gold); }
.home-trust-card-stat {
  margin: 0 0 6px;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--green-dark);
  transition: color 0.3s ease, transform 0.38s cubic-bezier(0.25, 0.9, 0.35, 1);
}
.home-trust-card-stat--small {
  font-size: 28px;
  line-height: 1.2;
}
.home-trust-card-stat-mixed {
  display: inline-flex;
  direction: rtl;
  align-items: baseline;
  justify-content: center;
  gap: 0.2em;
}
.home-trust-card-stat-unit {
  font-size: 0.72em;
  font-weight: 800;
  line-height: 1;
}
.home-trust-card-label {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--orange);
}
.home-trust-card-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

@keyframes home-trust-card-roll {
  0% {
    opacity: 0;
    transform: perspective(900px) rotateX(32deg) translate3d(0, 52px, 0) scale(0.86);
  }
  55% {
    opacity: 1;
    transform: perspective(900px) rotateX(-6deg) translate3d(0, -8px, 0) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: perspective(900px) rotateX(0) translate3d(0, 0, 0) scale(1);
  }
}
@keyframes home-trust-icon-roll {
  0% {
    opacity: 0;
    transform: rotate(-210deg) scale(0.15);
  }
  65% {
    opacity: 1;
    transform: rotate(14deg) scale(1.12);
  }
  100% {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}
.home-trust-card.irish-reveal-child.irish-reveal--trust-roll {
  transform: perspective(900px) rotateX(32deg) translate3d(0, 52px, 0) scale(0.86);
  transform-origin: center bottom;
}
.home-trust-card.irish-reveal--trust-roll.is-visible {
  animation: home-trust-card-roll 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--reveal-delay, 0ms);
}
@media (prefers-reduced-motion: reduce) {
  .home-trust-card:not(.is-visible) .home-trust-card-icon {
    opacity: 1;
    transform: none;
  }
  .home-trust-card.is-visible .home-trust-card-icon {
    animation: none;
  }
  .home-trust-card.irish-reveal--trust-roll.is-visible {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .home-trust-card:hover,
  .home-trust-card:focus-visible,
  .home-trust-card:active {
    transform: none;
  }
}

.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;
}
.irish-hero-mobile-bg { display: none; }

/* ── 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%;
  max-width: var(--site-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  padding: 24px 20px 28px;
  gap: 0;
}
.irish-trust-inner--wide {
  max-width: min(var(--site-width), 1120px);
}
.irish-trust-inner--wide .irish-trust-item {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  padding: 0 8px;
}
.irish-trust-inner--wide .irish-trust-item h3 {
  font-size: 18px;
}
@media (min-width: 1021px) {
  .irish-trust-inner--wide .irish-trust-item h3 {
    font-size: 20px;
  }
}
.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: 48px 0;
  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: 48px 0;
  background-color: var(--why-mint);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flow-root;
}
.irish-why-inner {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  padding: 0 24px;
  display: flow-root;
}
.irish-why-block {
  --why-card-gap: 16px;
  width: 100%;
  margin: 0;
  direction: rtl;
  text-align: center;
  display: flow-root;
}
.irish-why-block h2 {
  margin: 0 0 14px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
  max-width: 100%;
  color: var(--text);
}
.irish-why-block > p {
  margin: 0 0 15px;
  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;
  justify-content: center;
  gap: 15px;
  margin-bottom: 26px;
  direction: rtl;
}
.irish-why-cards {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: var(--why-card-gap);
  width: 100%;
}
.irish-why-card {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  text-align: center;
  background: var(--why-mint-card);
  border: 1px solid rgba(0, 122, 13, 0.35);
  border-radius: 30px 10px 30px 10px;
  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;
  padding: 0 8px 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;
}
.irish-services-more {
  width: var(--site-width);
  max-width: calc(100% - 32px);
  margin: 28px auto 0;
  text-align: center;
}
.irish-services-more a {
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.irish-services-more a:hover {
  color: var(--green-dark);
}

/* ── Pro gallery strip ── */
.irish-gallery {
  padding: 61px 25px 49px;
  background: var(--white);
}
.home-services-section + .irish-gallery {
  padding-top: 32px;
}
.irish-gallery-grid {
  width: var(--site-width);
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 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--home {
  min-height: 300px;
  background-color: var(--why-mint);
}
.irish-trusted-band--service h2,
.irish-trusted-band--service .irish-trusted-item h3,
.irish-trusted-band--home h2,
.irish-trusted-band--home .irish-trusted-item h3 {
  color: var(--text);
}
.irish-trusted-band--service .irish-trust-divider,
.irish-trusted-band--home .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: 260px 160px 1fr 220px;
  gap: 24px 32px;
  padding: 70px 0 57px;
}
.irish-footer-services-col {
  column-count: 2;
  column-gap: 24px;
}
.irish-footer-services-col a {
  break-inside: avoid;
}
.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 {
  margin-top: 20px;
}
.irish-footer-social-label {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}
.irish-footer-social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.irish-footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.irish-footer-social-links img,
.irish-footer-social-links .irish-footer-social-icon {
  width: 20px;
  height: 20px;
  color: var(--footer-text);
}
.irish-footer-social-links a:hover .irish-footer-social-icon {
  color: var(--white);
}
.irish-footer-social-b144 {
  min-width: 40px;
  height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--footer-text);
  line-height: 26px;
  text-align: center;
}
.irish-footer-social-b144:hover {
  color: var(--white);
  border-color: var(--white);
}
.irish-footer-bar {
  background: var(--orange-dark);
  text-align: center;
  padding: 14px 47px 15px;
  font-size: 13px;
  color: var(--cream);
}
.irish-footer-home-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.irish-footer-home-link:hover {
  color: var(--white);
}

.irish-footer-map {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 0 56px;
}
.irish-footer-map-inner {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 28px 40px;
  align-items: center;
}
.irish-footer-map-copy h3 {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}
.irish-footer-map-address {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--footer-text);
}
.irish-footer-map-hours {
  margin: 0 0 20px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--footer-text);
}
.irish-footer-map-hours a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.irish-footer-map-hours a:hover {
  color: var(--white);
}
.irish-footer-map-link {
  display: inline-flex;
}
.irish-footer-map-frame {
  position: relative;
  min-height: 280px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  background: rgb(229, 227, 223);
}
.irish-footer-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Scroll reveal (roll + lift, alternating) ── */
@keyframes irish-reveal-roll {
  from {
    opacity: 0;
    transform: scale(0.96) translate3d(0, 22px, 0);
  }
  to {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0);
  }
}
@keyframes irish-reveal-lift {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.irish-reveal,
.irish-reveal-child {
  opacity: 1;
  will-change: auto;
}
.js .irish-reveal:not(.is-visible),
.js .irish-reveal-child:not(.is-visible) {
  opacity: 0;
  will-change: transform, opacity;
}
.irish-reveal--roll,
.irish-reveal-child.irish-reveal--roll {
  transform: scale(0.96) translate3d(0, 22px, 0);
  transform-origin: center center;
}
.irish-reveal--lift,
.irish-reveal-child.irish-reveal--lift {
  transform: translate3d(0, 16px, 0);
}
.irish-reveal--roll.is-visible,
.irish-reveal-child.irish-reveal--roll.is-visible {
  animation: irish-reveal-roll 0.78s cubic-bezier(0.25, 0.9, 0.35, 1) forwards;
}
.irish-reveal--lift.is-visible,
.irish-reveal-child.irish-reveal--lift.is-visible {
  animation: irish-reveal-lift 0.72s cubic-bezier(0.25, 0.9, 0.35, 1) forwards;
}
.irish-reveal-child.is-visible {
  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-hero .page-hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}
.page-hero .btn-page-hero-phone,
.page-hero .btn-irish-outline,
.page-hero .btn-irish-outline.btn-irish-stroke {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-bottom: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 5px 15px 5px 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.page-hero .btn-page-hero-phone svg,
.page-hero .btn-irish-outline svg,
.page-hero .btn-irish-outline.btn-irish-stroke svg {
  fill: var(--white);
}
.page-hero .btn-page-hero-phone:hover,
.page-hero .btn-irish-outline:hover,
.page-hero .btn-irish-outline.btn-irish-stroke:hover {
  color: var(--green-dark);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}
.page-hero .btn-page-hero-phone:hover svg,
.page-hero .btn-irish-outline:hover svg,
.page-hero .btn-irish-outline.btn-irish-stroke:hover svg {
  fill: var(--green-dark);
  transform: none;
}
.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 + .cta-strip,
.page-content + .cta-strip {
  margin-top: 0;
}
.cta-strip + .faq-section {
  padding-top: 8px;
}
.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); }
.faq-more-link {
  display: inline-block;
  margin-top: 4px;
  font-weight: 700;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-more-link:hover { color: var(--green-dark); }

.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-home-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta-strip-home-link:hover {
  color: rgba(255, 255, 255, 0.88);
}
.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); }

main .page-content strong,
main .service-page-copy strong,
main .irish-local-text strong,
main .irish-why strong,
main .irish-services strong,
main .snippet-answer strong,
main .faq-section strong,
main .page-hero strong,
main .service-page-hero strong {
  font-weight: 800;
}

.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  inset-inline: 0;
  z-index: 999;
  grid-template-columns: 1fr 1fr;
}
.mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  direction: rtl;
  gap: 8px;
  padding: 14px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}
.mobile-cta a svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: currentColor;
}
.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 {
    width: min(640px, calc(100vw - 2 * var(--site-gutter)));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-height: min(60vh, 420px);
  }
  .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; }
  .home-local-issues-grid { grid-template-columns: 1fr; }
  .home-compare-grid { grid-template-columns: 1fr; }
  .home-trust-cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .home-emergency-inner { flex-direction: column; text-align: center; }
  .home-emergency-copy p { max-width: none; }
  .home-emergency-actions { justify-content: center; width: 100%; }
  .home-stat-divider { display: none; }
  .irish-footer-main { grid-template-columns: 1fr 1fr; gap: 24px; }
  .irish-footer-services-col { column-count: 1; }
  .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:not(.irish-trust-inner--wide) {
    flex-direction: column;
    gap: 18px;
    padding: 22px 16px;
  }
  .irish-trust-inner--wide {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 16px;
    padding: 22px 16px;
    min-height: 0;
  }
  .irish-trust-inner--wide .irish-trust-divider {
    display: none;
  }
  .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) {
  :root {
    --site-gutter: 16px;
  }

  /* ── Header & nav ── */
  .irish-marquee-track { font-size: 13px; }
  .irish-header-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    min-height: 0;
    padding: 10px var(--site-gutter) 12px;
    gap: 10px;
  }
  .irish-logo {
    flex: 1 1 auto;
    min-width: 0;
  }
  .irish-logo img {
    max-width: min(336px, 92vw);
    max-height: 116px;
  }
  .irish-header-cta { display: none; }
  .irish-nav {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    margin: 0;
    min-height: 0;
    position: static;
    order: 0;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    min-width: 72px;
    height: 42px;
    padding: 0 14px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
  }
  .irish-nav.open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 140;
  }
  .irish-nav > ul {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    inset-inline-end: 0;
    width: min(320px, 88vw);
    height: 100dvh;
    margin: 0;
    padding: 72px 14px 88px;
    background: var(--white);
    border: 0;
    border-radius: 0;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.18);
    overflow-y: auto;
    z-index: 160;
    gap: 2px;
  }
  .irish-nav.open > ul { display: flex; }
  .irish-nav > ul > li > a,
  .irish-nav > ul > li > button.nav-parent {
    width: 100%;
    text-align: start;
    padding: 12px 14px;
    margin: 0;
    font-size: 16px;
    border-radius: 10px;
  }
  .irish-nav-dropdown {
    position: static;
    top: auto !important;
    left: auto;
    transform: none;
    width: auto;
    min-width: 0;
    max-height: none;
    margin: 4px 0 8px;
    padding: 6px;
    box-shadow: none;
    border: 1px solid #eee;
    border-radius: 10px;
    grid-template-columns: 1fr;
    overflow: visible;
  }
  .irish-nav-dropdown a {
    text-align: start;
    padding: 10px 12px;
    margin-bottom: 4px;
    font-size: 14px;
  }

  /* ── Hero ── */
  .irish-hero {
    --mobile-hero-image-h: clamp(280px, 72vw, 400px);
    aspect-ratio: auto;
    min-height: 0;
    display: block;
    padding-top: 0;
    background-image: none !important;
    background-color: var(--white);
  }
  .irish-hero::before,
  .irish-hero::after {
    display: none;
  }
  .irish-hero-mobile-bg {
    display: block;
    position: relative;
    width: 100%;
    height: var(--mobile-hero-image-h);
    overflow: hidden;
    background-color: #dfe8df;
    background-size: auto 100%;
    background-position: center center;
    background-repeat: no-repeat;
  }
  .irish-hero-mobile-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.05) 62%,
      rgba(255, 255, 255, 0.55) 88%,
      rgba(255, 255, 255, 1) 100%
    );
    pointer-events: none;
  }
  .irish-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: var(--white);
    justify-content: flex-start;
    align-items: stretch;
    padding: 14px var(--site-gutter) 28px;
  }
  .irish-hero-cert {
    display: block;
    left: auto;
    right: max(var(--site-gutter), 2vw);
    top: max(12px, 2vw);
    transform: none;
    z-index: 4;
  }
  .irish-hero-cert-badge {
    width: 120px;
    padding: 14px 12px 12px;
    gap: 6px;
    border-radius: 16px;
    border-width: 2px;
  }
  .irish-hero-cert-text { font-size: 14px; }
  .irish-hero-cert-icon { width: 36px; height: 36px; }
  .irish-hero-tags {
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    max-width: 100%;
  }
  .irish-hero-tag {
    font-size: 11px;
    padding: 6px 11px;
  }
  .irish-hero h1 {
    font-size: 24px;
    line-height: 1.3;
    max-width: 100%;
    text-align: center;
    margin-bottom: 16px;
    white-space: normal;
  }
  .irish-hero-sub {
    max-width: 100%;
    text-align: center;
  }
  .irish-hero-brand {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.95);
  }
  .irish-hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .irish-hero-buttons .btn-irish-outline,
  .irish-hero-buttons .btn-irish-wa {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  /* ── Trust strip ── */
  .irish-trust-strip { margin-top: 0; }
  .irish-trust-bar { min-height: 0; }
  .irish-trust-inner:not(.irish-trust-inner--wide) {
    flex-direction: column;
    gap: 16px;
    padding: 24px var(--site-gutter) 28px;
    min-height: 0;
  }
  .irish-trust-inner--wide {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px var(--site-gutter) 28px;
  }
  .irish-trust-item {
    flex: none;
    max-width: 100%;
    width: 100%;
    padding: 0;
  }
  .irish-trust-item h3,
  .irish-trusted-item h3 { font-size: 18px; }
  .irish-trust-divider {
    width: 64%;
    height: 1px;
  }

  /* ── Local / why / services ── */
  .home-intro {
    padding: 36px 0 32px;
  }
  .home-intro-inner.content-block {
    max-width: calc(100% - 40px);
    padding: 0 20px;
  }
  .home-intro-inner.content-block h2,
  .irish-local-text h2,
  .irish-why-block h2,
  .irish-services h2,
  .irish-trusted-band h2 {
    font-size: 28px;
    line-height: 1.25;
  }
  .home-intro-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .home-intro-cta .btn-irish-outline,
  .home-intro-cta .btn-irish-wa {
    width: 100%;
    justify-content: center;
  }
  .irish-local {
    padding: 36px 0;
  }
  .irish-local-grid {
    max-width: calc(100% - 2 * var(--site-gutter));
    gap: 20px;
  }
  .irish-local-text {
    padding-inline-start: 0;
    text-align: center;
  }
  .irish-local-text .irish-hero-buttons {
    justify-content: center;
  }
  .irish-why {
    padding: 36px 0;
  }
  .irish-why-inner {
    max-width: calc(100% - 40px);
    padding: 0 20px;
  }
  .irish-why-block {
    width: 100%;
    text-align: center;
  }
  .irish-why-block > p { text-align: center; }
  .irish-why-cards {
    flex-direction: column;
  }
  .irish-why-actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 20px;
  }
  .irish-why-actions .btn-irish-green,
  .irish-why-actions .btn-irish-outline,
  .irish-why-actions .btn-irish-wa {
    width: 100%;
    justify-content: center;
  }
  .irish-why-card {
    width: 100%;
    max-width: 100%;
  }
  .irish-services {
    min-height: 0;
    padding: 36px 0 40px;
  }
  .irish-services h2 {
    margin-bottom: 22px;
    padding-inline: var(--site-gutter);
  }
  .irish-services-grid {
    max-width: calc(100% - 2 * var(--site-gutter));
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .irish-service-card-body { padding: 22px 18px 24px; }
  .home-services-section .home-services-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .home-services-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  .home-services-ctas .btn-irish-outline,
  .home-services-ctas .btn-irish-wa {
    width: 100%;
    justify-content: center;
  }
  .home-services-actions .btn-irish-green {
    width: 100%;
    justify-content: center;
  }

  /* ── Gallery & trust band ── */
  .irish-gallery {
    padding: 36px var(--site-gutter) 32px;
  }
  .home-services-section + .irish-gallery {
    padding-top: 24px;
  }
  .irish-gallery-grid {
    grid-template-columns: 1fr 1fr;
    height: auto;
    gap: 8px;
  }
  .irish-gallery-grid img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .irish-trusted-band {
    min-height: 0;
    padding-bottom: 8px;
  }
  .irish-trusted-band h2 {
    padding-top: 36px;
    font-size: 28px;
    padding-inline: var(--site-gutter);
  }
  .irish-trusted-inner {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 28px;
  }

  /* ── Service pages ── */
  .service-page-hero { min-height: 0; }
  .service-page-hero-inner {
    padding: 36px var(--site-gutter) 28px;
  }
  .service-page-hero h1 { font-size: 28px; }
  .service-page-main { padding: 32px 0 28px; }
  .service-page-grid {
    max-width: calc(100% - 2 * var(--site-gutter));
    gap: 24px;
  }
  .service-page-copy h2 { font-size: 24px; }
  .service-page-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .service-page-actions .btn-service-call,
  .service-page-actions .btn-service-wa,
  .service-page-actions .btn-irish-outline,
  .service-page-actions .btn-irish-wa {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  /* ── Inner pages ── */
  .page-hero {
    padding: 36px var(--site-gutter) 32px;
  }
  .page-hero h1 { font-size: 28px; }
  .page-hero p {
    font-size: 14px;
    line-height: 1.5;
  }
  .page-hero .page-hero-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
  }
  .page-hero .page-hero-buttons .btn-irish-outline,
  .page-hero .page-hero-buttons .btn-irish-wa {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }
  .page-content {
    max-width: calc(100% - 2 * var(--site-gutter));
    padding: 28px 0 40px;
  }
  .content-block h2 { font-size: 24px; }

  /* ── FAQ & CTA ── */
  .faq-section {
    max-width: calc(100% - 2 * var(--site-gutter));
  }
  .faq-section h2 { font-size: 24px; }
  .faq-item summary {
    font-size: 15px;
    line-height: 1.4;
    padding: 14px 0;
  }
  .cta-strip {
    margin: 28px 0;
    padding: 24px var(--site-gutter);
    border-radius: 0;
  }
  .cta-strip-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 12px;
  }
  .cta-strip-copy {
    flex: 0 0 auto;
  }
  .cta-strip-copy strong {
    font-size: 22px;
    margin-bottom: 6px;
  }
  .cta-strip-copy p {
    font-size: 15px;
  }
  .cta-buttons {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .btn-cta-phone,
  .btn-cta-wa {
    width: 100%;
    min-width: 0;
  }

  /* ── Footer & sticky bar ── */
  .home-trust-cards-grid { grid-template-columns: 1fr; }
  .home-price-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }
  .home-price-row-price {
    align-items: flex-start;
    text-align: right;
    min-width: 0;
  }
  .home-price-amount-wrap {
    justify-content: flex-start;
  }
  .home-price-accurate {
    max-width: none;
  }
  .home-price-row-ctas {
    flex-direction: row;
    min-width: 0;
  }
  .home-price-cta {
    flex: 1 1 0;
    white-space: normal;
    min-height: 40px;
  }
  .home-price-area-disclaimer {
    flex-direction: column;
    align-items: stretch;
    text-align: right;
  }
  .home-price-area-disclaimer-badge {
    justify-content: flex-start;
    white-space: normal;
  }
  .irish-footer-main { grid-template-columns: 1fr; }
  .irish-footer-map-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .irish-footer-map-frame {
    min-height: 240px;
  }
  .mobile-cta { display: grid; }
  .mobile-cta a {
    padding: 16px 12px;
    font-size: 16px;
  }
  body { padding-bottom: 56px; }
  body.nav-open { overflow: hidden; }
}
