/* Call Bob Plumbing - main stylesheet */

:root {
 --navy: #0b1d2e;
 --navy-mid: #12263a;
 --navy-soft: #1a3348;
 /* Bright orange for buttons / accents on dark backgrounds */
 --orange: #e85d04;
 --orange-bright: #ff6b1a;
 --orange-deep: #c44d03;
 /* Darker orange for text/links on white - better contrast */
 --orange-on-light: #a33a00;
 --cream: #f5f1ea;
 --sand: #ebe4d8;
 --white: #ffffff;
 --ink: #121820;
 --muted: #4a5560;
 --line: rgba(11, 29, 46, 0.12);
 --line-light: rgba(255, 255, 255, 0.12);
 --ok: #1f7a4c;
 --shadow: 0 18px 50px rgba(7, 20, 32, 0.18);
 --radius: 14px;
 --radius-sm: 10px;
 --container: 1180px;
 --font-display: "Outfit", system-ui, sans-serif;
 --font-body: "Source Sans 3", system-ui, sans-serif;
 --header-h: 72px;
}

*,
*::before,
*::after {
 box-sizing: border-box;
}

html {
 scroll-behavior: smooth;
}

body {
 margin: 0;
 font-family: var(--font-body);
 font-size: 1.05rem;
 line-height: 1.6;
 color: var(--ink);
 background: var(--white);
 -webkit-font-smoothing: antialiased;
}

body.nav-open {
 overflow: hidden;
}

img {
 max-width: 100%;
 display: block;
}

a {
 color: inherit;
 text-decoration: none;
}

button,
input,
textarea,
select {
 font: inherit;
}

h1,
h2,
h3,
h4 {
 font-family: var(--font-display);
 line-height: 1.15;
 letter-spacing: -0.02em;
 margin: 0 0 0.6em;
}

p {
 margin: 0 0 1em;
}

ul {
 margin: 0;
 padding: 0;
 list-style: none;
}

.container {
 width: min(100% - 2rem, var(--container));
 margin-inline: auto;
}

.eyebrow {
 display: inline-block;
 font-family: var(--font-display);
 font-size: 0.78rem;
 font-weight: 700;
 letter-spacing: 0.14em;
 text-transform: uppercase;
 color: var(--orange-on-light);
 margin-bottom: 0.75rem;
}

.section--navy .eyebrow,
.tool-panel .eyebrow,
.cta-band .eyebrow {
 color: var(--orange-bright);
}

.section {
 padding: 4.5rem 0;
}

.section--cream {
 background: var(--cream);
}

.section--navy {
 background: var(--navy);
 color: var(--white);
}

.section__head {
 max-width: 40rem;
 margin-bottom: 2.5rem;
}

.section__head h2 {
 font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.section__head p {
 color: var(--muted);
 font-size: 1.1rem;
}

.section--navy .section__head p {
 color: rgba(255, 255, 255, 0.72);
}

/* Buttons */
.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 0.55rem;
 min-height: 3rem;
 padding: 0.75rem 1.35rem;
 border-radius: 999px;
 border: 2px solid transparent;
 font-family: var(--font-display);
 font-weight: 700;
 font-size: 0.95rem;
 letter-spacing: 0.01em;
 cursor: pointer;
 text-decoration: none !important;
 transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
 transform: translateY(-1px);
}

.btn:visited {
 text-decoration: none !important;
}

.btn--primary,
.btn--primary:link,
.btn--primary:visited,
.btn--primary:hover,
.btn--primary:active,
a.btn.btn--primary {
 background: var(--orange);
 color: #ffffff !important;
 border-color: var(--orange);
 text-decoration: none !important;
}

.btn--primary:hover,
a.btn.btn--primary:hover {
 background: var(--orange-deep);
 border-color: var(--orange-deep);
 color: #ffffff !important;
}

.btn--primary span,
.btn--primary strong,
.btn--primary .icon {
 color: inherit !important;
 text-decoration: none !important;
}

.btn--whatsapp {
 background: #25d366;
 border-color: #25d366;
 color: #ffffff;
}

.btn--whatsapp:hover {
 background: #1ebe5a;
 border-color: #1ebe5a;
 color: #ffffff;
}

.btn--whatsapp .icon {
 width: 1.25rem;
 height: 1.25rem;
}

.btn--ghost {
 background: transparent;
 border-color: rgba(255, 255, 255, 0.35);
 color: var(--white);
}

.btn--ghost:hover {
 border-color: var(--white);
 background: rgba(255, 255, 255, 0.06);
}

.btn--ghost-dark {
 background: transparent;
 border-color: var(--line);
 color: var(--ink);
}

.btn--ghost-dark:hover {
 border-color: var(--navy);
}

.btn--block {
 width: 100%;
}

.btn-row {
 display: flex;
 flex-wrap: wrap;
 gap: 0.75rem;
}

/* Icons */
.icon {
 width: 1.15rem;
 height: 1.15rem;
 flex-shrink: 0;
}

/* Holiday / away banner */
.holiday-banner {
 position: sticky;
 top: 0;
 z-index: 110;
 background: #7a2e0f;
 color: #fff8f3;
 border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.holiday-banner__inner {
 padding: 0.75rem 0;
}

.holiday-banner__title {
 margin: 0 0 0.2rem;
 font-family: var(--font-display);
 font-size: 0.78rem;
 font-weight: 800;
 letter-spacing: 0.08em;
 text-transform: uppercase;
 color: #ffd7b8;
}

.holiday-banner__text {
 margin: 0;
 font-size: 0.95rem;
 line-height: 1.45;
 color: #fff8f3;
 max-width: 52rem;
}

body.has-holiday-banner .site-header {
 top: var(--holiday-banner-h, 0px);
}

body.has-holiday-banner .subnav {
 top: calc(var(--header-h) + var(--holiday-banner-h, 0px));
}

/* Header */
.site-header {
 position: sticky;
 top: 0;
 z-index: 100;
 background: rgba(11, 29, 46, 0.96);
 backdrop-filter: blur(10px);
 border-bottom: 1px solid var(--line-light);
}

.site-header__inner {
 display: grid;
 grid-template-columns: 170px minmax(0, 1fr) 200px;
 align-items: center;
 gap: 1rem;
 min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  flex-shrink: 0;
  width: fit-content;
  max-width: 100%;
  background: #ffffff;
  border-radius: 10px;
  padding: 0.3rem 0.55rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  overflow: visible;
  line-height: 0;
}

.brand__logo {
  height: 40px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.site-nav {
 display: flex;
 align-items: center;
 justify-content: space-evenly;
 flex-wrap: nowrap;
 gap: 0.35rem;
 width: 100%;
 min-width: 0;
}

.site-nav a {
 color: rgba(255, 255, 255, 0.82);
 font-family: var(--font-display);
 font-size: 0.7rem;
 font-weight: 600;
 letter-spacing: 0.03em;
 text-transform: uppercase;
 padding: 0.5rem 0.55rem;
 border-radius: 0;
 white-space: nowrap;
 line-height: 1.1;
 border: none;
 border-bottom: 2px solid transparent;
 box-sizing: border-box;
 background: transparent;
 transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav a:hover {
 color: var(--white);
 background: transparent;
 border-bottom-color: rgba(255, 255, 255, 0.35);
}

.site-nav a.is-active {
 color: var(--white);
 background: transparent;
 border-bottom-color: var(--orange);
}

.header-cta {
 display: none;
 flex-shrink: 0;
 min-height: 2.55rem;
 width: 200px;
 justify-content: center;
 padding: 0.55rem 0.85rem;
 font-size: 0.82rem;
}

.nav-toggle {
 display: none;
 width: 44px;
 height: 44px;
 border: 1px solid var(--line-light);
 border-radius: 10px;
 background: transparent;
 color: var(--white);
 cursor: pointer;
 align-items: center;
 justify-content: center;
}

.nav-toggle span {
 display: block;
 width: 18px;
 height: 2px;
 background: currentColor;
 position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
 content: "";
 position: absolute;
 left: 0;
 width: 18px;
 height: 2px;
 background: currentColor;
}

.nav-toggle span::before {
 top: -6px;
}

.nav-toggle span::after {
 top: 6px;
}

/* Hero */
.hero {
 position: relative;
 background:
 radial-gradient(ellipse 80% 60% at 85% 20%, rgba(232, 93, 4, 0.18), transparent 55%),
 linear-gradient(160deg, #0b1d2e 0%, #12263a 55%, #0a1826 100%);
 color: var(--white);
 padding: 3.5rem 0 0;
 overflow: hidden;
}

.hero__grid {
 display: grid;
 grid-template-columns: 1.05fr 0.95fr;
 gap: 2.5rem;
 align-items: end;
 padding-bottom: 3rem;
}

.hero h1 {
 font-size: clamp(2.4rem, 5vw, 3.8rem);
 margin-bottom: 0.4em;
}

.hero h1 em {
 font-style: normal;
 color: var(--orange-bright);
 display: block;
}

.hero__lead {
 font-size: 1.15rem;
 color: rgba(255, 255, 255, 0.78);
 max-width: 34rem;
 margin-bottom: 1.6rem;
}

.hero__trust {
 display: flex;
 flex-wrap: wrap;
 gap: 0.75rem 1.25rem;
 margin-top: 1.4rem;
 color: rgba(255, 255, 255, 0.85);
 font-size: 0.95rem;
}

.hero__trust span {
 display: inline-flex;
 align-items: center;
 gap: 0.4rem;
}

.hero__trust svg {
 color: var(--orange-bright);
}

.hero__visual {
 position: relative;
}

.hero__frame {
 position: relative;
 border-radius: 22px;
 overflow: hidden;
 aspect-ratio: 4 / 5;
 background: #1a3348;
 box-shadow: var(--shadow);
 border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__frame img {
 position: absolute;
 inset: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
 display: block;
 z-index: 1;
}

.hero__badges {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 0.65rem;
 position: absolute;
 left: 0.85rem;
 right: 0.85rem;
 bottom: 0.85rem;
 z-index: 2;
}

.hero__placeholder {
  display: none;
}

.media-frame img,
.gallery-item img,
.case-card__media img,
.failures-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-badge {
 background: rgba(255, 255, 255, 0.96);
 color: var(--ink);
 border-radius: 12px;
 padding: 0.7rem 0.55rem;
 text-align: center;
 box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: flex-start;
 min-height: 4.4rem;
}

.hero-badge strong {
 display: block;
 font-family: var(--font-display);
 font-size: 0.68rem;
 letter-spacing: 0.04em;
 line-height: 1.25;
 margin-top: auto;
}

.hero-badge > svg {
 width: 1.15rem;
 height: 1.15rem;
 color: var(--orange);
 margin: 0 0 0.35rem;
 flex-shrink: 0;
}

.hero-badge__stars {
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 0.12rem;
 margin: 0 0 0.35rem;
 color: var(--orange);
 height: 1.15rem;
 flex-shrink: 0;
}

.hero-badge__stars svg {
 width: 0.85rem;
 height: 0.85rem;
 margin: 0;
}

.trust-bar {
 background: var(--cream);
 border-top: 1px solid rgba(255, 255, 255, 0.06);
 padding: 1.4rem 0;
}

.trust-bar__grid {
 display: grid;
 grid-template-columns: repeat(5, 1fr);
 gap: 1rem;
}

.trust-item {
 display: flex;
 align-items: flex-start;
 gap: 0.7rem;
}

.trust-item__icon {
 width: 2.4rem;
 height: 2.4rem;
 border-radius: 10px;
 background: var(--white);
 color: var(--orange);
 display: grid;
 place-items: center;
 flex-shrink: 0;
 box-shadow: 0 4px 14px rgba(11, 29, 46, 0.08);
}

.trust-item strong {
 display: block;
 font-family: var(--font-display);
 font-size: 0.78rem;
 letter-spacing: 0.04em;
 text-transform: uppercase;
 color: #0b1d2e;
}

.trust-item span {
 display: block;
 font-size: 0.88rem;
 color: #334155;
 font-weight: 600;
}

/* Service cards / home grids */
.services-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 1.1rem;
}

.service-card {
 background: var(--white);
 border: 1px solid var(--line);
 border-radius: var(--radius);
 padding: 1.4rem 1.35rem 1.5rem;
 transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
 border-color: rgba(232, 93, 4, 0.45);
 transform: translateY(-3px);
 box-shadow: 0 14px 34px rgba(11, 29, 46, 0.08);
}

.service-card__icon {
 width: 2.6rem;
 height: 2.6rem;
 border-radius: 12px;
 background: rgba(232, 93, 4, 0.1);
 color: var(--orange);
 display: grid;
 place-items: center;
 margin-bottom: 1rem;
}

.service-card h3 {
 font-size: 1.2rem;
 margin-bottom: 0.45rem;
}

.service-card p {
 color: var(--muted);
 font-size: 0.98rem;
 margin-bottom: 1rem;
}

.service-card__link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--orange-on-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-grid,
.howto-grid,
.areas-grid,
.why-grid,
.gallery-grid,
.faq-grid,
.split-2 {
 display: grid;
 gap: 2rem;
}

.about-grid,
.split-2 {
 grid-template-columns: 1.05fr 0.95fr;
 align-items: center;
}

.howto-grid {
 grid-template-columns: repeat(4, 1fr);
}

.step {
 position: relative;
 padding: 1.4rem 1.2rem;
 background: var(--white);
 border-radius: var(--radius);
 border: 1px solid var(--line);
}

.step__num {
 font-family: var(--font-display);
 font-weight: 800;
 font-size: 2rem;
 color: var(--orange);
 line-height: 1;
 margin-bottom: 0.7rem;
}

.step h3 {
 font-size: 1.1rem;
}

.step p {
 color: var(--muted);
 margin: 0;
 font-size: 0.98rem;
}

.media-frame {
 border-radius: 20px;
 overflow: hidden;
 aspect-ratio: 3 / 4;
 background: linear-gradient(145deg, #d9d2c6, #c8bfb0);
 position: relative;
 max-width: 28rem;
}

.media-frame--tall {
 aspect-ratio: 3 / 4;
}

.media-placeholder {
 position: absolute;
 inset: 0;
 display: grid;
 place-items: center;
 padding: 1.5rem;
 text-align: center;
 color: rgba(11, 29, 46, 0.45);
 font-size: 0.85rem;
 letter-spacing: 0.04em;
 border: 2px dashed rgba(11, 29, 46, 0.18);
 border-radius: inherit;
 margin: 0.75rem;
}

.check-list li {
 display: flex;
 gap: 0.7rem;
 align-items: flex-start;
 margin-bottom: 0.7rem;
}

.check-list svg {
 width: 1.15rem;
 height: 1.15rem;
 color: var(--ok);
 flex-shrink: 0;
 margin-top: 0.2rem;
}

.areas-grid {
 grid-template-columns: 1fr 1fr;
}

.area-list {
 columns: 2;
 gap: 2rem;
}

.area-list li {
 break-inside: avoid;
 padding: 0.35rem 0;
 color: var(--muted);
}

.area-list li::before {
 content: "";
 display: inline-block;
 width: 0.45rem;
 height: 0.45rem;
 border-radius: 50%;
 background: var(--orange);
 margin-right: 0.6rem;
 vertical-align: middle;
}

.why-grid {
 grid-template-columns: repeat(3, 1fr);
}

.why-item {
 padding: 1.5rem 1.3rem;
 border-top: 3px solid var(--orange);
}

.why-item h3 {
 font-size: 1.15rem;
}

.why-item p {
 color: rgba(255, 255, 255, 0.72);
 margin: 0;
}

.reviews-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 1.1rem;
}

.review {
 background: var(--white);
 border: 1px solid var(--line);
 border-radius: var(--radius);
 padding: 1.4rem;
}

.review__stars {
 color: var(--orange);
 letter-spacing: 0.08em;
 margin-bottom: 0.7rem;
 font-size: 0.95rem;
}

.review p {
 color: var(--ink);
 font-size: 1.02rem;
}

.review footer {
 margin-top: 1rem;
 color: var(--muted);
 font-size: 0.9rem;
}

.gallery-grid {
 grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
 border-radius: 14px;
 overflow: hidden;
 aspect-ratio: 3 / 4;
 background: linear-gradient(145deg, #d9d2c6, #bdb3a3);
 position: relative;
}

.faq-list {
 max-width: 48rem;
}

.faq-item {
 border-bottom: 1px solid var(--line);
}

.faq-item__q {
 width: 100%;
 text-align: left;
 background: none;
 border: 0;
 padding: 1.15rem 2rem 1.15rem 0;
 font-family: var(--font-display);
 font-size: 1.05rem;
 font-weight: 700;
 color: var(--ink);
 cursor: pointer;
 position: relative;
}

.faq-item__q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange-on-light);
  font-size: 1.4rem;
  font-weight: 500;
}

.faq-item.is-open .faq-item__q::after {
 content: "-";
}

.faq-item__a {
 display: none;
 padding: 0 0 1.2rem;
 color: var(--muted);
}

.faq-item.is-open .faq-item__a {
 display: block;
}

.cta-band {
 background:
 radial-gradient(ellipse at 20% 0%, rgba(232, 93, 4, 0.22), transparent 50%),
 var(--navy);
 color: var(--white);
 padding: 3.5rem 0;
}

.cta-band__inner {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 1.5rem;
 flex-wrap: wrap;
}

.cta-band h2 {
 font-size: clamp(1.6rem, 3vw, 2.2rem);
 margin-bottom: 0.35rem;
}

.cta-band p {
 color: rgba(255, 255, 255, 0.72);
 margin: 0;
}

/* Footer */
.site-footer {
 background: var(--navy-mid);
 color: rgba(255, 255, 255, 0.78);
 padding-top: 3.5rem;
}

.footer-cta {
 padding-bottom: 2.5rem;
 border-bottom: 1px solid var(--line-light);
 margin-bottom: 2.5rem;
}

.footer-cta__inner {
 display: flex;
 justify-content: space-between;
 gap: 1.5rem;
 align-items: center;
 flex-wrap: wrap;
}

.footer-cta h2 {
 color: var(--white);
 font-size: clamp(1.5rem, 3vw, 2rem);
 margin-bottom: 0.35rem;
}

.footer-grid {
 display: grid;
 grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
 gap: 2rem;
 padding-bottom: 2.5rem;
}

.footer-brand p {
 margin: 1rem 0;
 max-width: 22rem;
}

.footer-col h4 {
  color: #ffb070;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col a {
 display: block;
 padding: 0.28rem 0;
 color: rgba(255, 255, 255, 0.72);
 transition: color 0.2s ease;
}

.footer-col a:hover {
 color: var(--white);
}

.footer-contact li {
 display: flex;
 gap: 0.65rem;
 align-items: flex-start;
 margin-bottom: 0.75rem;
}

.footer-contact svg {
 width: 1.05rem;
 height: 1.05rem;
 color: var(--orange-bright);
 margin-top: 0.25rem;
 flex-shrink: 0;
}

.footer-bottom {
 border-top: 1px solid var(--line-light);
 padding: 1.1rem 0;
 display: flex;
 justify-content: space-between;
 gap: 1rem;
 flex-wrap: wrap;
 font-size: 0.9rem;
 color: rgba(255, 255, 255, 0.55);
}

/* Page shell (inner pages) */
.page-hero {
 background: var(--cream);
 padding: 2.5rem 0 1.5rem;
 border-bottom: 1px solid var(--line);
}

.page-hero h1 {
 font-size: clamp(2rem, 4vw, 3rem);
 margin-bottom: 0.4em;
}

.page-hero p {
 color: var(--muted);
 max-width: 40rem;
 font-size: 1.1rem;
}

.subnav {
 background: var(--white);
 border-bottom: 1px solid var(--line);
 position: sticky;
 top: var(--header-h);
 z-index: 50;
}

.subnav__list {
 display: flex;
 gap: 0.35rem;
 overflow-x: auto;
 padding: 0.65rem 0;
 -webkit-overflow-scrolling: touch;
}

.subnav a {
 white-space: nowrap;
 padding: 0.65rem 0.95rem;
 border-radius: 10px 10px 0 0;
 font-family: var(--font-display);
 font-weight: 600;
 font-size: 0.9rem;
 color: var(--muted);
 border-top: 3px solid transparent;
}

.subnav a.is-active {
 color: var(--ink);
 background: var(--cream);
 border-top-color: var(--orange);
}

.service-layout {
 display: grid;
 grid-template-columns: 1.2fr 0.8fr;
 gap: 2rem;
 align-items: start;
}

.trust-pills {
 display: flex;
 flex-wrap: wrap;
 gap: 0.6rem;
 margin: 1.2rem 0 0;
}

.trust-pill {
  border: 1.5px solid var(--orange-on-light);
  color: var(--navy);
  background: rgba(163, 58, 0, 0.06);
  border-radius: 8px;
  padding: 0.55rem 0.8rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.side-card {
 background: var(--white);
 border: 1px solid var(--line);
 border-radius: var(--radius);
 padding: 1.4rem;
}

.side-card h3 {
 font-size: 1.15rem;
}

.side-card p {
 color: var(--muted);
}

.side-card .hours {
 margin-top: 0.85rem;
 font-size: 0.9rem;
 color: var(--muted);
 text-align: center;
}

.guide-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 1rem;
}

.guide-card {
 display: block;
 padding: 1.5rem 1.3rem;
 border: 1px solid var(--line);
 border-radius: var(--radius);
 background: var(--white);
 transition: border-color 0.2s ease, transform 0.2s ease;
}

.guide-card:hover {
 border-color: rgba(232, 93, 4, 0.5);
 transform: translateY(-2px);
}

.guide-card h3 {
 margin: 0;
 font-size: 1.2rem;
}

.guide-section {
 margin: 2rem 0;
}

.guide-section h2 {
 font-size: 1.35rem;
 margin-bottom: 0.8rem;
}

.guide-section ol {
 margin: 0;
 padding-left: 1.2rem;
 color: var(--muted);
}

.guide-section ol li {
 margin-bottom: 0.55rem;
}

.guide-section a:not(.btn) {
  color: var(--orange-on-light);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.guide-section a.btn.btn--primary,
.guide-section a.btn.btn--whatsapp,
.content-block a.btn.btn--primary,
.content-block a.btn.btn--whatsapp {
  color: #ffffff !important;
  text-decoration: none !important;
}

.content-block a.btn.btn--ghost-dark {
  color: var(--ink) !important;
  text-decoration: none !important;
}

/* Stop tap tool */
.tool-panel {
 background: var(--navy);
 color: var(--white);
 border-radius: 20px;
 padding: 2rem;
}

.tool-panel p {
 color: rgba(255, 255, 255, 0.72);
}

.property-pills {
 display: flex;
 flex-wrap: wrap;
 gap: 0.55rem;
 margin: 1.4rem 0 1.6rem;
}

.property-pills button {
 border: 1px solid rgba(255, 255, 255, 0.25);
 background: transparent;
 color: var(--white);
 border-radius: 999px;
 padding: 0.6rem 1rem;
 cursor: pointer;
 font-family: var(--font-display);
 font-weight: 600;
 font-size: 0.9rem;
}

.property-pills button.is-active {
 background: var(--orange);
 border-color: var(--orange);
}

.property-detail {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 1.5rem;
}

.property-detail h3 {
 color: var(--orange-bright);
 font-size: 0.8rem;
 letter-spacing: 0.1em;
 text-transform: uppercase;
}

.property-detail p,
.property-detail li {
 color: rgba(255, 255, 255, 0.78);
}

/* Content pages */
.content-block {
 max-width: 44rem;
}

.content-block h2 {
 font-size: 1.45rem;
 margin-top: 2rem;
}

.content-block p,
.content-block li {
 color: var(--muted);
}

.price-lead {
 max-width: 48rem;
 margin-bottom: 0.85rem;
}

.price-table {
 width: 100%;
 border-collapse: collapse;
 margin: 1.25rem 0 2.4rem;
}

.price-table th,
.price-table td {
 text-align: left;
 padding: 0.9rem 0.75rem;
 border-bottom: 1px solid var(--line);
 vertical-align: top;
}

.price-table th {
 font-family: var(--font-display);
 font-size: 0.8rem;
 letter-spacing: 0.08em;
 text-transform: uppercase;
 color: var(--muted);
}

.price-table td:last-child,
.price-table th:last-child {
 text-align: right;
 font-weight: 700;
 color: var(--ink);
 white-space: nowrap;
}

.price-table--emergency {
 border: 1px solid rgba(232, 93, 4, 0.28);
 border-radius: 12px;
 overflow: hidden;
 background: rgba(232, 93, 4, 0.04);
}

.price-table--emergency th,
.price-table--emergency td {
 border-bottom-color: rgba(232, 93, 4, 0.14);
 padding-left: 1rem;
 padding-right: 1rem;
}

.price-table--emergency tr:last-child td {
 border-bottom: none;
}

.price-cta {
 display: flex;
 flex-wrap: wrap;
 gap: 0.75rem;
 align-items: center;
 margin-top: 1.75rem;
}

.note {
 background: var(--cream);
 border-left: 3px solid var(--orange);
 padding: 1rem 1.1rem;
 border-radius: 0 10px 10px 0;
 color: var(--muted);
}

.contact-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 2rem;
 align-items: start;
}

.form-field {
 margin-bottom: 1rem;
}

.form-field label {
 display: block;
 font-family: var(--font-display);
 font-weight: 600;
 font-size: 0.9rem;
 margin-bottom: 0.35rem;
}

.form-field input,
.form-field textarea {
 width: 100%;
 border: 1px solid var(--line);
 border-radius: 10px;
 padding: 0.8rem 0.9rem;
 background: var(--white);
}

.form-field input:focus,
.form-field textarea:focus {
 outline: 2px solid rgba(232, 93, 4, 0.35);
 border-color: var(--orange);
}

.form-field textarea {
 min-height: 140px;
 resize: vertical;
}

.form-consent {
 display: flex;
 gap: 0.65rem;
 align-items: flex-start;
 margin: 0.35rem 0 1rem;
 color: var(--muted);
 font-size: 0.92rem;
 line-height: 1.45;
 cursor: pointer;
}

.form-consent input {
 margin-top: 0.2rem;
 flex-shrink: 0;
 width: 1.05rem;
 height: 1.05rem;
 accent-color: var(--orange);
}

.form-consent a {
 color: var(--orange-on-light);
 font-weight: 700;
 text-decoration: underline;
 text-underline-offset: 2px;
}

.form-status {
 margin: 0 0 0.85rem;
 padding: 0.75rem 0.9rem;
 border-radius: 10px;
 font-size: 0.95rem;
}

.form-status--ok {
 background: rgba(31, 122, 76, 0.12);
 color: var(--ok);
}

.form-status--error {
 background: rgba(196, 77, 3, 0.12);
 color: var(--orange-deep);
}

/* Scope cards for first/second fix page */
.scope-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.scope-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem;
  background: var(--cream);
}

.scope-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
  color: var(--navy);
}

.scope-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.scope-card__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-on-light);
  margin-bottom: 0.45rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
 transition-delay: 0.08s;
}
.reveal-delay-2 {
 transition-delay: 0.16s;
}
.reveal-delay-3 {
 transition-delay: 0.24s;
}

/* Responsive */
@media (max-width: 980px) {
 .hero__grid,
 .about-grid,
 .areas-grid,
 .split-2,
 .service-layout,
 .contact-grid,
 .property-detail {
 grid-template-columns: 1fr;
 }

 .services-grid,
 .why-grid,
 .reviews-grid {
 grid-template-columns: 1fr 1fr;
 }

 .howto-grid,
 .trust-bar__grid,
 .footer-grid,
 .gallery-grid {
 grid-template-columns: 1fr 1fr;
 }

 .hero__badges {
 position: static;
 margin-top: 0.85rem;
 }

 .hero__frame {
 aspect-ratio: 16 / 11;
 }
}

@media (max-width: 1100px) {
 .site-header__inner {
 grid-template-columns: auto minmax(0, 1fr) auto;
 gap: 0.4rem;
 align-items: center;
 }

 .brand {
 width: fit-content;
 max-width: none;
 flex-shrink: 0;
 padding: 0.25rem 0.4rem;
 justify-self: start;
 }

 .brand__logo {
 height: 34px;
 width: auto;
 max-width: none;
 }

 .nav-toggle {
 display: inline-flex;
 order: 3;
 flex-shrink: 0;
 }

 .header-cta {
 display: inline-flex !important;
 order: 2;
 width: auto;
 min-width: 0;
 max-width: none;
 flex-shrink: 1;
 padding: 0.4rem 0.55rem;
 font-size: 0.68rem;
 white-space: nowrap;
 justify-self: end;
 }

 .site-nav {
 position: fixed;
 inset: var(--header-h) 0 auto 0;
 background: var(--navy);
 flex-direction: column;
 align-items: stretch;
 padding: 1rem;
 gap: 0.25rem;
 border-bottom: 1px solid var(--line-light);
 transform: translateY(-120%);
 opacity: 0;
 pointer-events: none;
 transition: transform 0.25s ease, opacity 0.25s ease;
 order: 4;
 grid-column: 1 / -1;
 }

 body.has-holiday-banner .site-nav {
 inset: calc(var(--header-h) + var(--holiday-banner-h, 0px)) 0 auto 0;
 }

 .site-nav.is-open {
 transform: none;
 opacity: 1;
 pointer-events: auto;
 }

 .site-nav a {
 padding: 0.9rem 1rem;
 font-size: 0.9rem;
 border-bottom: none;
 border-left: 3px solid transparent;
 }

 .site-nav a:hover,
 .site-nav a.is-active {
 border-bottom-color: transparent;
 }

 .site-nav a.is-active {
 border-left-color: var(--orange);
 }
}

@media (max-width: 420px) {
 .brand__logo {
 height: 30px;
 }

 .header-cta {
 font-size: 0.62rem;
 padding: 0.35rem 0.45rem;
 max-width: 9.8rem;
 overflow: hidden;
 text-overflow: ellipsis;
 }
}

@media (min-width: 1101px) {
 .header-cta {
 display: inline-flex;
 }

 .nav-toggle {
 display: none;
 }
}

@media (max-width: 640px) {
 .services-grid,
 .why-grid,
 .reviews-grid,
 .howto-grid,
 .trust-bar__grid,
 .footer-grid,
 .gallery-grid,
 .guide-grid,
 .area-list {
 grid-template-columns: 1fr;
 columns: 1;
 }

 .price-table td:last-child,
 .price-table th:last-child {
 white-space: normal;
 }

 .hero {
 padding-top: 2rem;
 }

 .hero__badges {
 grid-template-columns: 1fr;
 }

 .section {
 padding: 3.25rem 0;
 }

 .cta-band__inner,
 .footer-cta__inner {
 flex-direction: column;
 align-items: flex-start;
 }
}

/* Real Jobs / failures page */
.cost-strip {
 display: grid;
 grid-template-columns: 1fr auto 1fr;
 gap: 1rem;
 align-items: stretch;
}

.cost-strip__item {
 background: var(--white);
 border: 1px solid var(--line);
 border-radius: var(--radius);
 padding: 1.4rem 1.35rem;
}

.cost-strip__item--warn {
 border-color: rgba(232, 93, 4, 0.45);
 background: rgba(232, 93, 4, 0.06);
}

.cost-strip__label {
 display: block;
 font-family: var(--font-display);
 font-size: 0.75rem;
 font-weight: 700;
 letter-spacing: 0.1em;
 text-transform: uppercase;
 color: var(--orange-on-light);
 margin-bottom: 0.45rem;
}

.cost-strip__item strong {
 display: block;
 font-family: var(--font-display);
 font-size: clamp(1.6rem, 3vw, 2.2rem);
 color: var(--navy);
 margin-bottom: 0.45rem;
}

.cost-strip__item p {
 margin: 0;
 color: var(--muted);
}

.cost-strip__vs {
 align-self: center;
 font-family: var(--font-display);
 font-weight: 800;
 color: var(--orange);
 font-size: 1.1rem;
}

.cost-strip__note {
 margin: 1.2rem 0 0;
 color: var(--muted);
 max-width: 46rem;
}

.case-card {
 display: grid;
 grid-template-columns: 1fr 1.05fr;
 gap: 1.5rem;
 align-items: center;
 margin-bottom: 2rem;
 background: var(--white);
 border: 1px solid var(--line);
 border-radius: 18px;
 overflow: hidden;
}

.case-card--flip {
 grid-template-columns: 1.05fr 1fr;
}

.case-card--flip .case-card__media {
 order: 2;
}

.case-card--flip .case-card__body {
 order: 1;
}

.case-card__media {
 min-height: 320px;
 aspect-ratio: 3 / 4;
 background: linear-gradient(145deg, #d9d2c6, #c8bfb0);
}

.case-card__media img {
 width: 100%;
 height: 100%;
 min-height: 320px;
 object-fit: cover;
 object-position: center center;
}

.case-card__body {
 padding: 1.5rem 1.5rem 1.6rem;
}

.case-card__tag {
 display: inline-block;
 font-family: var(--font-display);
 font-size: 0.72rem;
 font-weight: 700;
 letter-spacing: 0.12em;
 text-transform: uppercase;
 color: var(--orange-on-light);
 margin-bottom: 0.55rem;
}

.case-card__body h3 {
 font-size: 1.45rem;
 margin-bottom: 0.55rem;
}

.case-card__body p {
 color: var(--muted);
}

.prevent-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 1.2rem;
}

.prevent-card {
 background: var(--cream);
 border: 1px solid var(--line);
 border-radius: var(--radius);
 padding: 1.4rem 1.35rem;
}

.prevent-card h3 {
 font-size: 1.2rem;
}

.failures-gallery {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 0.9rem;
}

.failures-gallery__item {
 border-radius: 14px;
 overflow: hidden;
 aspect-ratio: 3 / 4;
 background: linear-gradient(145deg, #d9d2c6, #bdb3a3);
}

.failures-gallery__item img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}

@media (max-width: 980px) {
 .cost-strip,
 .case-card,
 .case-card--flip,
 .prevent-grid {
 grid-template-columns: 1fr;
 }

 .case-card--flip .case-card__media,
 .case-card--flip .case-card__body {
 order: initial;
 }

 .failures-gallery {
 grid-template-columns: 1fr 1fr;
 }

 .cost-strip__vs {
 justify-self: center;
 }
}

@media (max-width: 640px) {
 .failures-gallery {
 grid-template-columns: 1fr;
 }
}

/* Before / After gallery */
.ba-list {
 display: flex;
 flex-direction: column;
 gap: 2.5rem;
}

.ba-card {
 display: grid;
 grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
 gap: 1.5rem 2rem;
 align-items: start;
 padding-bottom: 2.5rem;
 border-bottom: 1px solid var(--line);
}

.ba-card:last-child {
 border-bottom: none;
 padding-bottom: 0;
}

.ba-card__meta {
 margin: 0 0 0.35rem;
 font-family: var(--font-display);
 font-size: 0.72rem;
 font-weight: 700;
 letter-spacing: 0.08em;
 text-transform: uppercase;
 color: var(--orange-on-light);
}

.ba-card__copy h2 {
 margin-bottom: 0.55rem;
 font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.ba-card__copy p {
 color: var(--muted);
 margin: 0;
 max-width: 36rem;
}

.ba-card__pair {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 0.75rem;
}

.ba-shot {
 margin: 0;
 position: relative;
 border-radius: var(--radius-sm);
 overflow: hidden;
 background: var(--sand);
 aspect-ratio: 3 / 4;
}

.ba-shot img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: center;
}

.case-card__media img,
.gallery-item img,
.media-frame img,
.hero__frame img {
 object-position: center center;
}

.ba-shot__label {
 position: absolute;
 left: 0.65rem;
 top: 0.65rem;
 z-index: 1;
 font-family: var(--font-display);
 font-size: 0.68rem;
 font-weight: 700;
 letter-spacing: 0.06em;
 text-transform: uppercase;
 color: var(--white);
 background: rgba(11, 29, 46, 0.78);
 padding: 0.3rem 0.55rem;
 border-radius: 6px;
}

.ba-shot__label--after {
 background: rgba(163, 58, 0, 0.9);
}

.ba-empty {
 text-align: center;
 padding: 2rem 1rem;
 color: var(--muted);
}

.ba-empty .btn {
 margin-top: 1rem;
}

@media (max-width: 980px) {
 .ba-card {
 grid-template-columns: 1fr;
 }
}

@media (max-width: 640px) {
 .ba-card__pair {
 grid-template-columns: 1fr;
 }
}
