:root {
  --ink: #101820;
  --ink-2: #182632;
  --muted: #5d6b76;
  --soft: #f5f7f8;
  --paper: #fbfaf7;
  --white: #ffffff;
  --navy: #082f49;
  --blue: #0e6388;
  --blue-2: #dff2f8;
  --copper: #b9683a;
  --copper-2: #f3dac7;
  --gold: #e1b55d;
  --green: #128c7e;
  --line: rgba(16, 24, 32, 0.12);
  --line-strong: rgba(16, 24, 32, 0.2);
  --shadow-sm: 0 10px 24px rgba(16, 24, 32, 0.08);
  --shadow: 0 24px 70px rgba(16, 24, 32, 0.15);
  --shadow-dark: 0 28px 80px rgba(0, 12, 24, 0.32);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 42%, #f7f9fa 100%);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  color: inherit;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 890px;
  margin-bottom: 1.1rem;
  font-size: clamp(2.65rem, 7vw, 5.9rem);
  font-weight: 850;
}

h2 {
  margin-bottom: 0.95rem;
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 820;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.16rem, 1.6vw, 1.36rem);
  font-weight: 800;
}

::selection {
  color: var(--white);
  background: var(--blue);
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: -72px;
  z-index: 200;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 18px;
}

:focus-visible {
  outline: 3px solid rgba(14, 99, 136, 0.35);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(16, 24, 32, 0.08);
  backdrop-filter: blur(18px) saturate(1.25);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  color: var(--white);
  overflow: hidden;
  background: url("public/avatar.jpg") 50% 44% / cover no-repeat;
  border: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(8, 47, 73, 0.28);
}

.brand-mark::before {
  content: none;
}

.brand-mark::after {
  content: none;
}

.brand strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.05;
  font-weight: 900;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.93rem;
  font-weight: 800;
}

.nav-menu a {
  position: relative;
  padding: 0.78rem 0.82rem;
  color: var(--ink-2);
  border-radius: var(--radius);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: var(--blue);
  background: rgba(14, 99, 136, 0.08);
}

.nav-call {
  margin-left: 0.35rem;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--ink), var(--navy)) !important;
  box-shadow: 0 14px 32px rgba(8, 47, 73, 0.2);
}

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

.nav-social,
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-social {
  margin-left: 0.35rem;
}

.social-icon {
  width: auto;
  min-width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.34rem;
  padding: 0 0.58rem !important;
  border-radius: 999px !important;
  color: var(--ink) !important;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 24, 32, 0.12);
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(8, 47, 73, 0.14);
}

.social-icon::before {
  display: inline-grid;
  place-items: center;
  width: 1.08rem;
  height: 1.08rem;
  flex: 0 0 1.08rem;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 950;
  line-height: 1;
}

.social-icon::after {
  display: inline-block;
}

.social-google {
  color: #202124 !important;
  border-color: rgba(66, 133, 244, 0.24);
}

.social-google::before {
  content: "\2605";
  color: #fbbc04;
  background:
    linear-gradient(#fff, #fff) padding-box,
    conic-gradient(#4285f4 0 25%, #34a853 0 50%, #fbbc04 0 75%, #ea4335 0) border-box;
  border: 2px solid transparent;
}

.social-google::after {
  content: "Google";
}

.social-checkatrade {
  color: #103b73 !important;
  border-color: rgba(227, 6, 19, 0.24);
}

.social-checkatrade::before {
  content: "\2713";
  background: linear-gradient(135deg, #e30613 0 50%, #0057b8 50% 100%);
  border-radius: 0.28rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.social-checkatrade::after {
  content: "Checkatrade";
}

.social-facebook {
  color: #1877f2 !important;
  border-color: rgba(24, 119, 242, 0.22);
}

.social-facebook::before {
  content: "f";
  background: #1877f2;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
}

.social-facebook::after {
  content: "Facebook";
}

.social-instagram {
  color: #c13584 !important;
  border-color: rgba(193, 53, 132, 0.22);
}

.social-instagram::before {
  content: "";
  background:
    radial-gradient(circle at 68% 30%, #fff 0 0.09rem, transparent 0.1rem),
    radial-gradient(circle, transparent 0 0.26rem, #fff 0.27rem 0.34rem, transparent 0.35rem),
    linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 72%, #515bd4);
  border-radius: 0.32rem;
}

.social-instagram::after {
  content: "Instagram";
}

.social-nextdoor {
  color: #00a862 !important;
  border-color: rgba(0, 168, 98, 0.22);
}

.social-nextdoor::before {
  content: "N";
  background: #00a862;
  font-size: 0.62rem;
}

.social-nextdoor::after {
  content: "Nextdoor";
}

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

.nav .social-icon {
  width: auto;
  min-width: 2.35rem;
  padding: 0 0.6rem !important;
  border-color: rgba(16, 24, 32, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 22px rgba(16, 24, 32, 0.08);
  color: var(--ink) !important;
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.nav .social-icon::before {
  width: 1.08rem;
  height: 1.08rem;
  border-radius: 999px;
}

.nav .social-google::after {
  content: "Google Reviews";
}

.nav .social-checkatrade::after {
  content: "Checkatrade";
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow-sm);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 40px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 112px;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.98));
  pointer-events: none;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 22, 34, 0.78) 0%, rgba(5, 22, 34, 0.6) 38%, rgba(5, 22, 34, 0.2) 68%, rgba(5, 22, 34, 0.04) 100%),
    linear-gradient(0deg, rgba(5, 22, 34, 0.25), rgba(5, 22, 34, 0));
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 7rem 0 8.5rem;
}

.hero-text {
  max-width: 710px;
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.62;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.95rem;
  color: var(--copper);
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.hero .eyebrow,
.dark .eyebrow,
.cta .eyebrow,
.page-hero .eyebrow {
  color: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
  align-items: center;
}

.btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0.92rem 1.22rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--copper), #965126);
  box-shadow: 0 16px 32px rgba(185, 104, 58, 0.34);
}

.btn.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.58);
}

.btn.whatsapp {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #0f7469);
  box-shadow: 0 16px 32px rgba(18, 140, 126, 0.28);
}

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

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  padding: 0;
  margin: 1.8rem 0 0;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.68rem 0.86rem;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  font-size: 0.92rem;
  font-weight: 800;
}

.trust-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.section {
  position: relative;
  padding: 6.4rem 0;
}

.section-head {
  max-width: 800px;
  margin-bottom: 2.35rem;
}

.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
}

.services-grid,
.service-detail-grid,
.gallery,
.values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.service-card,
.detail-card,
.content-card,
.contact-panel,
.quote-form,
.credential-panel,
.reviews article,
.values article {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.service-card,
.detail-card,
.contact-panel,
.quote-form,
.credential-panel,
.values article {
  padding: 1.45rem;
}

.service-card,
.detail-card,
.content-card,
.gallery figure,
.review-widget-card,
.values article {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.is-clickable-card {
  cursor: pointer;
}

.is-clickable-card:focus,
.is-clickable-card:focus-within {
  border-color: rgba(14, 99, 136, 0.28);
  box-shadow: var(--shadow);
}

.service-card h3 {
  font-size: clamp(0.92rem, 1.18vw, 1.02rem);
  line-height: 1.18;
}

.content-card h2,
.detail-card h2,
.contact-panel h2,
.quote-form h2,
.credential-panel h2 {
  font-size: clamp(1.24rem, 2vw, 1.62rem);
  line-height: 1.18;
}

.service-card:hover,
.detail-card:hover,
.content-card:hover,
.review-widget-card:hover,
.values article:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 99, 136, 0.22);
  box-shadow: var(--shadow);
}

.service-card::before,
.detail-card::before,
.values article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue), var(--copper));
  border-radius: var(--radius) 0 0 var(--radius);
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover::before,
.detail-card:hover::before,
.content-card:hover::before,
.values article:hover::before {
  opacity: 1;
}

.service-card p,
.detail-card p,
.values p {
  color: var(--muted);
}

.service-card a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.service-card a::after,
.text-link::after {
  content: ">";
  text-decoration: none;
}

.service-card > a,
.content-card > a,
.detail-card > a.text-link {
  position: absolute;
  inset: 0;
  z-index: 5;
  overflow: hidden;
  border-radius: inherit;
  color: transparent;
  text-decoration: none;
  text-indent: -9999px;
  white-space: nowrap;
}

.service-card > a::after,
.content-card > a::after,
.detail-card > a.text-link::after {
  content: none;
}

.service-card > a:focus-visible,
.content-card > a:focus-visible,
.detail-card > a.text-link:focus-visible,
.gallery figcaption a:focus-visible::after {
  outline: 3px solid rgba(14, 99, 136, 0.35);
  outline-offset: 4px;
}

.split-band {
  background:
    linear-gradient(135deg, rgba(14, 99, 136, 0.08), transparent 38%),
    var(--paper);
}

.split,
.faq-layout,
.contact-layout,
.cta-inline {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.split > div:first-child,
.faq-layout > div:first-child,
.cta-inline > div:first-child {
  position: sticky;
  top: 110px;
}

.feature-list {
  display: grid;
  gap: 0.85rem;
}

.feature-list div {
  display: grid;
  grid-template-columns: 122px 1fr;
  gap: 1rem;
  padding: 1.08rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(16, 24, 32, 0.06);
}

.feature-list strong {
  color: var(--navy);
}

.feature-list span {
  color: var(--muted);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.72rem;
}

.area-grid span {
  padding: 0.92rem;
  color: var(--ink-2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(223, 242, 248, 0.55));
  border: 1px solid rgba(14, 99, 136, 0.12);
  border-left: 4px solid var(--copper);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.05);
  font-weight: 900;
}

.dark {
  color: var(--white);
  background:
    radial-gradient(circle at 12% 0%, rgba(225, 181, 93, 0.2), transparent 26%),
    linear-gradient(135deg, #061f31, var(--navy));
}

.dark p {
  color: rgba(255, 255, 255, 0.78);
}

.reviews {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}

.reviews article {
  padding: 1.45rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.review-widget-card {
  grid-column: span 2;
}

.elfsight-panel,
.elfsight-preview {
  overflow: hidden;
}

.elfsight-panel {
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.elfsight-preview {
  max-height: 430px;
  margin-bottom: 1rem;
  border-radius: var(--radius);
}

.reviews strong {
  color: var(--gold);
}

.gallery {
  display: block;
  column-count: 3;
  column-gap: 1.1rem;
}

.gallery figure {
  position: relative;
  margin: 0;
  margin-bottom: 1.1rem;
  break-inside: avoid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.gallery img {
  width: 100%;
  height: clamp(250px, 24vw, 360px);
  object-fit: contain;
  display: block;
  background: #f3f7f9;
  transition: transform 360ms ease;
}

.gallery figure:hover img {
  transform: scale(1.04);
}

.content-card img,
.detail-card img {
  width: 100%;
  height: clamp(220px, 20vw, 300px);
  object-fit: contain;
  display: block;
  background: #f3f7f9;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.content-card img.avatar-image {
  width: min(220px, 72%);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin-inline: auto;
  background: transparent;
  image-rendering: auto;
}

.gallery figcaption {
  padding: 1rem 1.1rem;
  color: var(--ink);
  font-weight: 900;
}

.gallery figcaption a {
  color: inherit;
  text-decoration: none;
}

.gallery figcaption a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
}

.faq-list {
  display: grid;
  gap: 0.78rem;
}

details {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(16, 24, 32, 0.05);
}

summary {
  position: relative;
  cursor: pointer;
  padding: 1.08rem 3rem 1.08rem 1.15rem;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "-";
  background: var(--copper);
}

details p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
}

.cta {
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(225, 181, 93, 0.24), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--blue));
}

.cta .wrap {
  max-width: 900px;
}

.cta .hero-actions {
  justify-content: center;
}

.page-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(820px, calc(100vh - 40px));
  overflow: hidden;
  padding: 0;
  color: var(--white);
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(5, 22, 34, 0.78) 0%, rgba(5, 22, 34, 0.6) 38%, rgba(5, 22, 34, 0.2) 68%, rgba(5, 22, 34, 0.04) 100%),
    linear-gradient(0deg, rgba(5, 22, 34, 0.25), rgba(5, 22, 34, 0)),
    url("public/hero.jpg") center 38% / cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 112px;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.98));
  pointer-events: none;
}

.page-hero.compact {
  min-height: min(820px, calc(100vh - 40px));
}

.page-hero .wrap {
  position: relative;
  z-index: 3;
  padding: 7rem 0 8.5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 9.5vw, 2.75rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 710px;
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.62;
}

@media (min-width: 461px) {
  .page-hero h1 {
    font-size: clamp(2.15rem, 5.2vw, 3.4rem);
  }
}

@media (min-width: 901px) {
  .page-hero h1 {
    font-size: clamp(1.85rem, 4.9vw, 4.15rem);
  }
}

.service-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-card ul,
.check-list {
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.detail-card li,
.check-list li {
  margin: 0.36rem 0;
}

.service-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.service-kicker li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.62rem 0.78rem;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 850;
}

.service-kicker li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

.service-crosslinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.service-crosslinks a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.68rem 0.82rem;
  color: var(--navy);
  background: var(--blue-2);
  border: 1px solid rgba(14, 99, 136, 0.16);
  border-radius: var(--radius);
  font-weight: 900;
}

.service-crosslinks a:hover {
  color: var(--white);
  background: var(--blue);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.content-card {
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

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

.content-card a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.content-card > a {
  position: absolute;
  inset: 0;
  z-index: 5;
  overflow: hidden;
  border-radius: inherit;
  color: transparent;
  text-decoration: none;
  text-indent: -9999px;
  white-space: nowrap;
}

.meta-list {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.meta-list li {
  padding: 0.78rem 0.9rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 850;
}

.notice {
  background: linear-gradient(135deg, #fff8ef, #fff);
  border-color: rgba(185, 104, 58, 0.26);
}

.credential-panel {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 0%, rgba(225, 181, 93, 0.22), transparent 32%),
    linear-gradient(135deg, var(--navy), #061f31);
  box-shadow: var(--shadow-dark);
}

.credential-panel h2 {
  color: var(--white);
}

.credential-panel li {
  margin-bottom: 0.55rem;
}

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

.contact-layout {
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
}

.contact-panel {
  background:
    linear-gradient(135deg, rgba(223, 242, 248, 0.8), rgba(255, 255, 255, 0.96));
}

.contact-panel a {
  color: var(--blue);
  font-weight: 950;
}

.small-note,
.form-status {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.form-status.is-success {
  color: var(--green);
}

.form-status.is-error {
  color: #9a3412;
}

.quote-form .btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

@media (min-width: 761px) {
  :root {
    --max: 1240px;
  }

  .section {
    padding: 5.15rem 0;
  }

  .section-head {
    max-width: 920px;
    margin-bottom: 1.75rem;
  }

  .page-hero {
    min-height: min(820px, calc(100vh - 40px));
  }

  .services-grid,
  .service-detail-grid,
  .content-grid,
  .values {
    gap: 0.95rem;
  }

  .service-card,
  .detail-card,
  .contact-panel,
  .quote-form,
  .credential-panel,
  .values article {
    padding: 1.28rem;
  }

  .content-card {
    padding: 1.18rem;
  }

  .split,
  .faq-layout,
  .contact-layout,
  .cta-inline {
    gap: clamp(1.7rem, 3.4vw, 3rem);
  }

  .feature-list {
    gap: 0.7rem;
  }

  .feature-list div {
    padding: 0.95rem;
  }

  .area-grid {
    gap: 0.58rem;
  }

  .area-grid span {
    padding: 0.78rem 0.82rem;
  }

  .gallery {
    column-gap: 0.95rem;
  }

  .gallery figure {
    margin-bottom: 0.95rem;
  }

  .gallery img {
    height: clamp(210px, 18vw, 285px);
  }

  .content-card img,
  .detail-card img {
    height: clamp(188px, 15.5vw, 248px);
  }

  .recent-work-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .recent-work-grid .content-card {
    display: grid;
    grid-template-rows: auto auto 1fr;
    min-height: 100%;
  }

  .recent-work-grid .content-card img {
    height: clamp(190px, 15vw, 235px);
  }
}

@media (min-width: 901px) {
  .article-page main > .section > .wrap:not(.gallery):not(.content-grid):not(.services-grid):not(.footer-grid) {
    max-width: 1100px;
  }

  .article-page main > .section > .wrap.split,
  .article-page main > .section > .wrap.faq-layout {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.32fr);
  }

  .article-page main > .section > .wrap.split > div:first-child,
  .article-page main > .section > .wrap.split > article:first-child,
  .article-page main > .section > .wrap.faq-layout > div:first-child {
    max-width: 950px;
  }

  .article-page main > .section > .wrap.split > div:first-child p,
  .article-page main > .section > .wrap.split > article:first-child p,
  .article-page .section-head p,
  .article-page .page-hero p,
  .article-page .emergency-plain p,
  .article-page .emergency-box p {
    max-width: 920px;
  }

  .article-page .page-hero p:not(.eyebrow) {
    max-width: 710px;
  }

  .article-page main > .section > .wrap.split > div:first-child ul,
  .article-page main > .section > .wrap.split > article:first-child ul,
  .article-page .emergency-plain ul,
  .article-page .emergency-plain ol,
  .article-page .emergency-box ul {
    max-width: 920px;
  }
}

@media (min-width: 1180px) {
  :root {
    --max: 1280px;
  }

  .section {
    padding: 4.85rem 0;
  }

  .gallery {
    column-count: 4;
  }

  .hero-content {
    padding: 6.35rem 0 7.3rem;
  }

  .reviews {
    gap: 0.95rem;
  }
}

.quote-form {
  display: grid;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.quote-form h2,
.contact-panel h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.quote-form label {
  display: grid;
  gap: 0.42rem;
  color: var(--ink);
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(16, 24, 32, 0.14);
  border-radius: var(--radius);
  padding: 0.9rem 0.95rem;
  color: var(--ink);
  background: #fbfcfd;
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

textarea {
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(14, 99, 136, 0.34);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(14, 99, 136, 0.13);
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.legal h2 {
  margin-top: 2.1rem;
  font-size: 1.38rem;
}

.site-footer {
  color: var(--white);
  background:
    radial-gradient(circle at 8% 0%, rgba(225, 181, 93, 0.16), transparent 24%),
    linear-gradient(135deg, #071620, var(--ink));
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 1.25rem;
  padding-bottom: 2.35rem;
}

.site-footer strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--white);
  font-size: 1rem;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-social .social-icon {
  width: auto;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.52rem !important;
  font-size: 0.62rem;
  box-shadow: none;
}

.mobile-action-bar {
  display: none !important;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

[data-reveal].is-visible {
  animation: reveal-polish 520ms ease both;
}

@keyframes reveal-polish {
  from {
    filter: saturate(0.94);
    box-shadow: 0 8px 18px rgba(16, 24, 32, 0.04);
  }

  to {
    filter: saturate(1);
  }
}

@media (max-width: 1020px) {
  .services-grid,
  .service-detail-grid,
  .footer-grid,
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews,
  .split,
  .faq-layout,
  .contact-layout,
  .cta-inline {
    grid-template-columns: 1fr;
  }

  .split > div:first-child,
  .faq-layout > div:first-child,
  .cta-inline > div:first-child {
    position: static;
  }

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

  .review-widget-card {
    grid-column: auto;
  }
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .nav-call {
    margin: 0;
    text-align: center;
  }

  .nav-social {
    margin: 0;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-social .social-icon {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }

  .nav {
    min-height: 74px;
  }

  .nav-menu {
    left: 14px;
    right: 14px;
    top: 74px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    object-position: 58% 42%;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(5, 22, 34, 0.76), rgba(5, 22, 34, 0.34)),
      linear-gradient(90deg, rgba(5, 22, 34, 0.78), rgba(5, 22, 34, 0.18));
  }

  .hero-content {
    padding: 5rem 0 8rem;
  }

  .section {
    padding: 4.2rem 0;
  }

  .services-grid,
  .service-detail-grid,
  .gallery,
  .values,
  .footer-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    column-count: 2;
  }

  .gallery img {
    height: min(62vw, 320px);
  }

  .content-card img,
  .detail-card img {
    height: min(58vw, 280px);
  }

  .area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-list div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .page-hero {
    min-height: 760px;
    background:
      linear-gradient(0deg, rgba(5, 22, 34, 0.76), rgba(5, 22, 34, 0.34)),
      linear-gradient(90deg, rgba(5, 22, 34, 0.78), rgba(5, 22, 34, 0.18)),
      url("public/hero.jpg") 58% 42% / cover no-repeat;
  }

  .page-hero .wrap {
    padding: 5rem 0 8rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .site-footer .footer-links {
    min-width: 0;
    max-width: 100%;
    justify-content: flex-start;
  }

  .site-footer .footer-social {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    min-width: 0;
    gap: 0.35rem;
  }

  .site-footer .footer-social .social-icon {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
  }

  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(16, 24, 32, 0.12);
    box-shadow: 0 -16px 38px rgba(16, 24, 32, 0.16);
    backdrop-filter: blur(16px);
  }

  .mobile-action-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    min-height: 48px;
    padding: 0.65rem 0.35rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 950;
    line-height: 1.1;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .mobile-action-bar a:first-child {
    background: linear-gradient(135deg, var(--copper), #965126);
  }

  .mobile-action-bar a:nth-child(2) {
    background: linear-gradient(135deg, var(--green), #0f7469);
  }
}

@media (min-width: 641px) {
  .mobile-action-bar {
    display: none !important;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: clamp(2.15rem, 11vw, 3.05rem);
  }

  .section {
    padding: 3.6rem 0;
  }

  .brand small {
    display: none;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .gallery {
    column-count: 1;
  }

  .gallery img,
  .content-card img,
  .detail-card img {
    height: auto;
  }

  .service-card,
  .detail-card,
  .contact-panel,
  .quote-form,
  .credential-panel,
  .values article {
    padding: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

@media print {
  body {
    padding-bottom: 0 !important;
  }

  .mobile-action-bar,
  .nav-toggle {
    display: none !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}
