:root {
  --ink: #25272c;
  --ink-soft: #3a3c42;
  --paper: #f3f5f6;
  --white: #ffffff;
  --muted: #62656c;
  --line: #d7dadd;
  --red: #e31e31;
  --red-dark: #b81324;
  --sand: #e8ebed;
  --glass: rgba(255, 255, 255, 0.76);
  --glass-strong: rgba(255, 255, 255, 0.9);
  --shell: min(1180px, calc(100% - 40px));
  --shadow: 0 24px 70px rgba(35, 39, 45, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #ff6b78;
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

.section-tight {
  padding: 72px 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.utility-bar {
  background: var(--red);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-inner p {
  margin: 0;
}

.utility-inner a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  border-bottom: 1px solid rgba(37, 39, 44, 0.12);
  box-shadow: 0 10px 30px rgba(35, 39, 45, 0.08);
  backdrop-filter: blur(18px) saturate(1.15);
}

.header-inner {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  width: 116px;
  display: block;
  line-height: 0;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.site-nav a {
  position: relative;
  color: #51545b;
  font-size: 0.92rem;
  font-weight: 750;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-toggle,
.menu-toggle {
  border: 1px solid rgba(37, 39, 44, 0.24);
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
  cursor: pointer;
}

.language-toggle {
  width: 42px;
  height: 42px;
  font-size: 0.78rem;
  font-weight: 850;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  padding: 11px;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 850;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.82rem;
}

.button-red {
  background: var(--red);
  color: var(--white);
}

.button-red:hover {
  background: var(--red-dark);
}

.button-dark {
  background: #3a3c42;
  color: var(--white);
}

.button-dark:hover {
  background: var(--red-dark);
}

.button-light {
  border-color: rgba(37, 39, 44, 0.26);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.button-light:hover {
  border-color: var(--red);
  background: var(--white);
  color: var(--red-dark);
}

.button-outline {
  border-color: var(--ink);
  color: var(--ink);
}

.button-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--red);
}

.home-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #e9ecee;
  color: var(--ink);
}

.home-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 247, 248, 0.98) 0%, rgba(246, 247, 248, 0.88) 48%, rgba(246, 247, 248, 0.55) 100%),
    url("assets/violex-kitchen-hero.webp") center / cover no-repeat;
  filter: saturate(0.78) contrast(0.96);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  padding-top: 82px;
  padding-bottom: 88px;
}

.hero-copy {
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(1.08);
}

.hero-copy h1,
.page-hero h1 {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3.4rem, 7vw, 6.7rem);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.hero-copy h1 .hero-accent,
.page-hero h1 .hero-accent {
  color: var(--red);
}

.hero-copy h1.motto-heading {
  max-width: 760px;
  font-size: clamp(3rem, 5.3vw, 5.5rem);
}

.hero-lede {
  max-width: 660px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.78;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.hero-services a {
  padding: 8px 11px;
  border: 1px solid rgba(37, 39, 44, 0.2);
  background: rgba(255, 255, 255, 0.52);
  color: #45484f;
  font-size: 0.76rem;
  font-weight: 800;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.hero-services a:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.hero-actions,
.card-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
}

.trust-row span {
  padding: 8px 11px;
  border: 1px solid rgba(37, 39, 44, 0.18);
  background: rgba(255, 255, 255, 0.48);
  color: #4d5057;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-media::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -18px;
  right: -18px;
  bottom: 44px;
  width: 35%;
  background: var(--red);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: contain;
  background: rgba(240, 242, 244, 0.78);
}

.hero-media figcaption {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 20px;
  background: var(--glass-strong);
  color: var(--ink);
}

.hero-media figcaption span {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-media figcaption strong {
  color: var(--muted);
  font-size: 0.78rem;
  text-align: right;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.72fr);
  align-items: end;
  gap: clamp(42px, 8vw, 110px);
  margin-bottom: 52px;
}

.section-heading h2,
.split-copy h2,
.review-panel h2,
.quote-intro h2 {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.section-heading > p,
.split-copy > p,
.quote-intro > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-link {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  background: var(--white);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-link:hover {
  z-index: 1;
  background: rgba(235, 238, 240, 0.96);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(35, 39, 45, 0.12);
  transform: translateY(-4px);
}

.service-label {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-link h3,
.service-card-large h2 {
  margin: 52px 0 14px;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.85rem;
  letter-spacing: -0.045em;
  line-height: 1;
}

.service-link p,
.service-card-large p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.service-link:hover p {
  color: var(--muted);
}

.service-link .text-link {
  margin-top: auto;
  padding-top: 28px;
  font-size: 0.8rem;
  font-weight: 850;
}

.featured-work {
  background:
    linear-gradient(120deg, rgba(246, 247, 248, 0.96), rgba(235, 238, 240, 0.86)),
    url("assets/portfolio/google/screened-porch-interior.webp") center / cover no-repeat;
  color: var(--ink);
}

.featured-work .section-heading > p {
  color: var(--muted);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
}

.featured-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: #dfe2e4;
  box-shadow: 0 18px 46px rgba(35, 39, 45, 0.15);
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.featured-card:hover img {
  transform: scale(1.035);
}

.featured-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(35, 37, 42, 0.9));
}

.featured-card div {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.featured-card span {
  color: #ff7481;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.featured-card h3 {
  margin: 8px 0 0;
  font-size: 1.45rem;
  line-height: 1.1;
  color: var(--white);
}

.review-invite {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(227, 30, 49, 0.12)),
    url("assets/violex-kitchen-hero.webp") center / cover no-repeat;
  color: var(--ink);
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}

.split-copy > p {
  max-width: 650px;
  margin-top: 26px;
  color: var(--muted);
}

.trust-card {
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.trust-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
}

.area-band {
  background: var(--white);
}

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.area-card {
  padding: 42px;
  border: 1px solid var(--line);
}

.area-card h3 {
  margin: 0 0 14px;
  font-size: 1.55rem;
}

.area-card p {
  margin: 0;
  color: var(--muted);
}

.page-hero {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(246, 247, 248, 0.94), rgba(246, 247, 248, 0.68)),
    url("assets/violex-kitchen-hero.webp") center / cover no-repeat;
  color: var(--ink);
}

.page-hero-inner {
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 70px;
  margin-top: 62px;
  margin-bottom: 62px;
  padding: 52px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero-copy {
  padding-bottom: 8px;
  color: var(--muted);
  line-height: 1.8;
}

.page-hero-copy p {
  margin: 0 0 28px;
}

.service-details {
  background: var(--white);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card-large {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.service-card-large h2 {
  margin-top: 54px;
}

.service-card-large ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-card-large li {
  padding: 7px 9px;
  border: 1px solid var(--line);
  color: #55555b;
  font-size: 0.72rem;
  font-weight: 750;
}

.service-card-large .card-actions {
  margin-top: auto;
  padding-top: 30px;
}

.process-band {
  background: var(--sand);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.process-card {
  padding: 34px;
  background: var(--white);
  border-top: 4px solid var(--red);
}

.process-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.process-card h3 {
  margin: 30px 0 12px;
  font-size: 1.35rem;
}

.process-card p {
  margin: 0;
  color: var(--muted);
}

.filter-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-button {
  padding: 11px 15px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.gallery-section {
  background: var(--paper);
}

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

.gallery-item {
  border: 0;
  padding: 0;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  cursor: zoom-in;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
}

.gallery-item figure {
  margin: 0;
}

.gallery-image {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #e2e5e7;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 400ms ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.02);
}

.gallery-item figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 19px;
  font-size: 0.82rem;
  font-weight: 850;
}

.gallery-item figcaption span {
  color: var(--red);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-empty {
  margin-top: 26px;
  padding: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  text-align: center;
}

.gallery-empty h2 {
  margin: 0 0 12px;
  font-size: 2rem;
}

.gallery-empty p {
  max-width: 650px;
  margin: 0 auto 24px;
  color: var(--muted);
}

.gallery-note {
  margin-top: 32px;
  padding: 26px;
  border-left: 4px solid var(--red);
  background: var(--white);
  color: var(--muted);
}

.lightbox {
  width: min(1100px, calc(100% - 30px));
  max-height: calc(100vh - 30px);
  padding: 0;
  border: 0;
  background: #24262b;
  color: var(--white);
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.86);
}

.lightbox-inner {
  position: relative;
  padding: 18px;
}

.lightbox img {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  margin: 0 auto;
  object-fit: contain;
}

.lightbox p {
  margin: 14px 50px 0 0;
  color: #c8c8cc;
  font-size: 0.86rem;
}

.lightbox-close {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

.reviews-layout,
.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
  gap: clamp(56px, 9vw, 130px);
  align-items: start;
}

.review-panel,
.quote-intro {
  position: sticky;
  top: 132px;
}

.review-panel > p,
.quote-intro > p {
  margin-top: 25px;
}

.verified-note {
  margin-top: 34px;
  padding: 24px;
  border-left: 4px solid var(--red);
  background: var(--white);
}

.verified-note strong {
  display: block;
  margin-bottom: 6px;
}

.verified-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.expectation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.expectation-card {
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--white);
}

.expectation-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

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

.form-card {
  padding: 46px;
  background: var(--white);
  border-top: 6px solid var(--red);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
}

.form-card h2 {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 2.4rem;
  letter-spacing: -0.04em;
}

.form-card > p {
  margin: 12px 0 28px;
  color: var(--muted);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-card label {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.form-card label > span,
.checkbox-label > span {
  font-size: 0.82rem;
  font-weight: 850;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  border: 1px solid #cfcfca;
  border-radius: 0;
  background: #fafaf8;
  color: var(--ink);
}

.form-card input,
.form-card select {
  min-height: 50px;
  padding: 0 14px;
}

.form-card textarea {
  min-height: 150px;
  padding: 13px 14px;
  resize: vertical;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: var(--red);
  outline: 2px solid rgba(227, 30, 49, 0.16);
}

.checkbox-label {
  grid-template-columns: 22px 1fr !important;
  align-items: start;
}

.checkbox-label input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.form-card .button {
  width: 100%;
  justify-content: space-between;
  margin-top: 26px;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-options {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.contact-option {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.contact-option span {
  color: var(--red);
}

.cta-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, #eef0f2, #ffffff);
  color: var(--ink);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-band h2 {
  max-width: 760px;
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.site-footer {
  padding: 72px 0 28px;
  background: #e8ebed;
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) 0.72fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
}

.brand-footer {
  width: 220px;
  margin-bottom: 20px;
}

.footer-grid > div:first-child > p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 11px;
  color: #55585f;
  font-size: 0.88rem;
}

.footer-links strong,
.footer-contact strong {
  margin-bottom: 7px;
  color: var(--ink);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--red);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(37, 39, 44, 0.14);
  color: #6a6d74;
  font-size: 0.74rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: 126px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.98);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(37, 39, 44, 0.12);
    font-size: 1.25rem;
  }

  .site-nav a::after {
    display: none;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .header-actions .button {
    display: none;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-media {
    width: calc(100% - 20px);
  }

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

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

  .featured-card:first-child {
    grid-column: 1 / -1;
  }

  .page-hero-inner,
  .reviews-layout,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .review-panel,
  .quote-intro {
    position: static;
  }

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

  .footer-contact {
    grid-column: 2;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: 62px;
  }

  .section {
    padding: 76px 0;
  }

  .section-tight {
    padding: 56px 0;
  }

  .utility-inner {
    justify-content: center;
  }

  .utility-inner p {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .utility-inner a {
    display: none;
  }

  .header-inner {
    min-height: 72px;
    gap: 10px;
  }

  .brand {
    width: 88px;
  }

  .brand-footer {
    width: 205px;
  }

  .site-nav {
    top: 106px;
  }

  .hero-grid {
    gap: 48px;
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(3.05rem, 15vw, 4.7rem);
  }

  .hero-copy h1.motto-heading {
    font-size: clamp(2.9rem, 13vw, 4.15rem);
  }

  .hero-actions,
  .card-actions,
  .cta-actions {
    display: grid;
  }

  .hero-actions .button,
  .card-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .hero-media::before {
    top: -10px;
    right: -10px;
  }

  .hero-media figcaption {
    display: grid;
    gap: 5px;
  }

  .hero-media figcaption strong {
    text-align: left;
  }

  .section-heading,
  .split-panel,
  .area-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading h2,
  .split-copy h2,
  .review-panel h2,
  .quote-intro h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .service-grid,
  .service-detail-grid,
  .gallery-grid,
  .featured-grid,
  .process-grid,
  .expectation-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .service-link {
    min-height: 270px;
  }

  .featured-card,
  .featured-card:first-child {
    grid-column: auto;
    min-height: 350px;
  }

  .page-hero-inner {
    min-height: 0;
    gap: 28px;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 44px 24px;
  }

  .service-card-large {
    min-height: 0;
    padding: 30px;
  }

  .service-card-large h2 {
    margin-top: 38px;
  }

  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .form-card {
    padding: 30px 22px;
  }

  .cta-band-inner {
    display: grid;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-cta {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 62px;
    display: grid;
    grid-template-columns: 0.8fr 0.8fr 1.4fr;
    background: var(--red);
    color: var(--white);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.78rem;
    font-weight: 850;
  }

  .mobile-cta a:last-child {
    border-right: 0;
    background: var(--red-dark);
  }
}

/* Keep the home-page branding and navigation in front of the hero photo. */
.site-header {
  z-index: 10000;
  isolation: isolate;
}

.site-header-overlay {
  position: absolute;
  top: 34px;
  right: 0;
  left: 0;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header-overlay .brand,
.site-header-overlay .brand img {
  position: relative;
  z-index: 10002;
  background: transparent;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
}

.site-header-overlay .site-nav a {
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.7);
}

[data-site-header][data-active="home"] + main .home-hero .hero-grid {
  padding-top: 0;
}

@media (max-width: 1080px) {
  .site-header.site-header-overlay {
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header-overlay .header-inner > .brand {
    position: relative;
    z-index: 10002;
    background: transparent;
    filter: none;
  }

  .site-header-overlay .menu-toggle,
  .site-header-overlay .header-actions {
    position: relative;
    z-index: 10002;
  }

  .site-nav {
    z-index: 10001;
    box-shadow: 0 24px 60px rgba(20, 22, 25, 0.34);
  }

  .site-nav.is-open {
    background: rgba(73, 75, 78, 0.97);
  }
}

@media (max-width: 700px) {
  .site-header-overlay {
    top: 0;
  }

  [data-site-header][data-active="home"] + main .home-hero .hero-grid {
    padding-top: 0;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Reference-inspired arched home design */
.nav-mobile-actions {
  display: none;
}

.menu-toggle {
  width: auto;
  min-width: 116px;
  height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  border-radius: 16px;
}

.menu-glyph {
  width: 22px;
  display: grid;
  gap: 4px;
}

.menu-toggle > span.menu-glyph,
.menu-toggle > span.menu-label {
  display: block;
  height: auto;
  margin: 0;
  background: transparent;
}

.menu-toggle > span.menu-glyph {
  display: grid;
}

.menu-glyph i {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-label {
  font-size: 0.95rem;
  font-weight: 850;
}

.home-hero {
  background: #626466;
  color: var(--white);
}

.home-hero::before {
  display: none;
}

.home-hero .hero-grid {
  min-height: 0;
  display: block;
  padding-top: 46px;
  padding-bottom: 50px;
}

.home-hero .hero-media {
  width: 100%;
  height: 680px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 12px solid rgba(255, 255, 255, 0.2);
  border-radius: 50% 50% 24px 24px / 34% 34% 24px 24px;
  background: #747679;
  box-shadow: 0 28px 80px rgba(28, 30, 33, 0.28);
}

.home-hero .hero-media::before {
  display: none;
}

.home-hero .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35, 37, 40, 0.04) 18%, rgba(35, 37, 40, 0.44) 60%, rgba(35, 37, 40, 0.84) 100%);
  pointer-events: none;
}

.home-hero .hero-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

.home-hero .hero-copy {
  position: absolute;
  z-index: 2;
  top: 235px;
  left: clamp(34px, 6vw, 84px);
  max-width: 680px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(42, 44, 47, 0.16);
  color: var(--white);
  box-shadow: none;
  backdrop-filter: blur(4px);
}

.home-hero .hero-copy h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(4rem, 7vw, 6.7rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.hero-motto {
  margin: 25px 0 0;
  padding-left: 16px;
  border-left: 5px solid var(--red);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 850;
  line-height: 1.45;
}

.home-hero .hero-lede {
  max-width: 610px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.04rem;
  line-height: 1.65;
}

.home-hero .hero-actions {
  margin-top: 28px;
}

.home-hero .hero-actions .button {
  min-width: 190px;
  border-radius: 16px;
}

.hero-call-button {
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.hero-call-button:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.hero-assurance {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 30px;
  margin: 38px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-assurance strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.05rem;
}

.assurance-shield {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50% 50% 46% 46%;
  background: rgba(255, 255, 255, 0.1);
}

.home-about {
  padding: 72px 0 150px;
  overflow: hidden;
  border-radius: 0 0 50% 50% / 0 0 7% 7%;
  background: #626466;
  color: var(--white);
}

.home-about-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(46px, 8vw, 110px);
}

.about-arch {
  height: 570px;
  margin: 0;
  overflow: hidden;
  border: 12px solid #a7a9ac;
  border-radius: 50% 50% 26px 26px / 30% 30% 26px 26px;
  box-shadow: 0 24px 65px rgba(28, 30, 33, 0.25);
}

.about-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-card {
  padding: clamp(36px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 60px rgba(28, 30, 33, 0.16);
  backdrop-filter: blur(14px);
}

.about-card h2 {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: -0.055em;
  line-height: 0.97;
}

.about-card > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
}

.about-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 32px;
}

.about-social {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.service-explorer {
  background: var(--white);
}

.service-feature-image {
  position: relative;
  width: min(860px, 100%);
  height: 410px;
  display: block;
  margin: 0 auto 48px;
  overflow: hidden;
  border: 12px solid var(--sand);
  border-radius: 50% 50% 24px 24px / 55% 55% 24px 24px;
  background: var(--sand);
  box-shadow: var(--shadow);
}

.service-feature-image::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgba(35, 37, 42, 0.78));
}

.service-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-feature-image span {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 24px;
  left: 28px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 850;
}

.service-grid {
  gap: 18px;
  border: 0;
  background: transparent;
}

.service-link {
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(35, 39, 45, 0.07);
}

@media (max-width: 1080px) {
  .site-header {
    background: rgba(101, 103, 105, 0.96);
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.14);
  }

  .header-inner > .brand {
    width: 122px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.8)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
  }

  .language-toggle,
  .menu-toggle {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.13);
    color: var(--white);
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    top: 126px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 44px clamp(28px, 7vw, 74px) 34px;
    overflow-y: auto;
    background: rgba(73, 75, 78, 0.9);
    color: var(--white);
    backdrop-filter: blur(20px) saturate(0.82);
  }

  .site-nav > .nav-link {
    padding: 4px 0;
    border: 0;
    color: var(--white);
    font-size: clamp(2.2rem, 7vw, 3.4rem);
    font-weight: 450;
    letter-spacing: -0.035em;
    line-height: 1.18;
  }

  .site-nav > .nav-link[aria-current="page"] {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 7px;
  }

  .site-nav > .nav-link:hover {
    color: var(--white);
  }

  .nav-mobile-actions {
    display: grid;
    gap: 28px;
    margin-top: 44px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .site-nav .nav-social-link {
    width: fit-content;
    padding: 0;
    border: 0;
    color: var(--white);
    font-size: 1rem;
    font-weight: 800;
  }

  .nav-contact-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .site-nav .nav-contact-buttons a {
    min-height: 62px;
    display: grid;
    place-items: center;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 18px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 850;
    text-align: center;
  }

  .site-nav .nav-contact-buttons a:last-child {
    border-color: var(--red);
    background: var(--red);
  }

  body.menu-open .mobile-cta {
    display: none;
  }

  .menu-toggle[aria-expanded="true"] .menu-glyph i:first-child {
    transform: translateY(6px) rotate(45deg);
  }

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

  .menu-toggle[aria-expanded="true"] .menu-glyph i:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .menu-toggle[aria-expanded="true"] > .menu-glyph,
  .menu-toggle[aria-expanded="true"] > .menu-label {
    opacity: 1;
    transform: none;
  }

  .home-hero .hero-copy {
    max-width: 640px;
  }

  .home-about-grid {
    grid-template-columns: 1fr;
    max-width: 780px;
  }

  .about-arch {
    height: 540px;
  }
}

@media (max-width: 700px) {
  .utility-bar {
    display: none;
  }

  .site-nav {
    top: 72px;
    padding: 42px 28px 88px;
  }

  .site-nav > .nav-link {
    font-size: clamp(2.25rem, 12vw, 3.15rem);
  }

  .nav-contact-buttons {
    gap: 12px;
  }

  .site-nav .nav-contact-buttons a {
    min-height: 58px;
    font-size: 0.92rem;
  }

  .header-inner > .brand {
    width: 112px;
  }

  .menu-toggle {
    min-width: 104px;
    height: 46px;
    padding: 0 13px;
  }

  .home-hero .hero-grid {
    width: 100%;
    padding: 20px 0 42px;
  }

  .home-hero .hero-media {
    width: 100%;
    height: 760px;
    border: 0;
    border-radius: 50% 50% 0 0 / 26% 26% 0 0;
  }

  .home-hero .hero-media img {
    object-position: 52% center;
  }

  .home-hero .hero-copy {
    top: 276px;
    right: 18px;
    left: 18px;
    max-width: none;
    padding: 18px;
    border-radius: 18px;
  }

  .home-hero .hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.15rem);
    line-height: 0.98;
  }

  .hero-motto {
    margin-top: 18px;
    font-size: 1.02rem;
  }

  .home-hero .hero-lede {
    margin-top: 14px;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .home-hero .hero-actions {
    width: min(100%, 330px);
    gap: 10px;
    margin-top: 20px;
  }

  .home-hero .hero-actions .button {
    min-height: 56px;
    border-radius: 16px;
  }

  .hero-assurance {
    gap: 12px 20px;
    margin: 28px 18px 0;
    font-size: 0.68rem;
  }

  .hero-assurance strong {
    flex-basis: 100%;
    justify-content: center;
    font-size: 1rem;
  }

  .home-about {
    padding: 44px 0 118px;
    border-radius: 0 0 50% 50% / 0 0 4% 4%;
  }

  .home-about-grid {
    gap: 0;
  }

  .about-arch {
    width: calc(100% - 28px);
    height: 440px;
    margin: 0 auto;
    border-width: 10px;
    border-radius: 50% 50% 22px 22px / 38% 38% 22px 22px;
  }

  .about-card {
    position: relative;
    z-index: 1;
    margin: -58px 14px 0;
    padding: 86px 24px 30px;
    border-radius: 20px;
  }

  .about-card h2 {
    font-size: clamp(2.55rem, 12vw, 3.75rem);
  }

  .about-actions {
    display: grid;
  }

  .about-actions .button {
    width: 100%;
  }

  .service-explorer .section-heading {
    text-align: center;
  }

  .service-feature-image {
    height: 315px;
    margin-bottom: 34px;
    border-width: 9px;
    border-radius: 50% 50% 20px 20px / 45% 45% 20px 20px;
  }

  .service-feature-image span {
    right: 20px;
    bottom: 18px;
    left: 20px;
  }

  .service-link {
    border-radius: 20px;
  }
}

/* Customer reviews */
.customer-review-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.4rem;align-items:start}.customer-review{background:#fff;border:1px solid #d9dce0;border-top:4px solid #b5232d;padding:1.5rem;border-radius:12px;color:#222;overflow-wrap:anywhere}.customer-review h3{font-size:1.3rem;margin:.7rem 0}.review-source{font-size:.9rem;font-weight:700;color:#754c13}.customer-review blockquote{margin:1rem 0;white-space:pre-line;font-size:1rem;line-height:1.7}.customer-review p{margin:0 0 1rem}.customer-review summary{cursor:pointer;font-weight:700;color:#9e1c28}.customer-review a{font-weight:700;font-size:.9rem}.website-reviews{margin-top:3rem}.review-form-section{background:#f3f5f6}.review-form-layout{display:grid;grid-template-columns:1fr 1.2fr;gap:3rem;align-items:start}.review-form-layout p{font-size:1rem;line-height:1.7}.review-form-layout select{width:100%;min-height:48px;padding:.7rem;border:1px solid #aeb4bb;border-radius:6px;background:#fff;font:inherit;color:#222}.review-honeypot{position:absolute;left:-10000px;width:1px;height:1px;overflow:hidden}button:disabled{opacity:.65;cursor:wait}.review-admin{max-width:850px;margin:3rem auto;padding:1rem}.review-admin article{margin:1rem 0}.review-admin .card-actions{flex-wrap:wrap}.review-admin input{width:100%;padding:.8rem;font:inherit}.review-admin button{margin:.5rem .5rem .5rem 0}.review-admin [hidden]{display:none}.review-admin blockquote{white-space:pre-wrap;overflow-wrap:anywhere}@media(max-width:900px){.customer-review-grid{grid-template-columns:1fr}.review-form-layout{grid-template-columns:1fr;gap:1.5rem}}

/* Keep the shared menu above every public page. A backdrop filter on its
   header would make the fixed mobile panel relative to that short header. */
[data-site-header] { position: relative; z-index: 10000; }
@media (max-width: 1080px) {
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .site-nav {
    top: var(--mobile-menu-top, 126px);
    max-height: calc(100dvh - var(--mobile-menu-top, 126px));
    overscroll-behavior: contain;
    background: #494b4e;
  }
}
