:root {
  --ink: #303238;
  --muted: #6b7280;
  --brand: #204098;
  --brand-dark: #183878;
  --accent: #505050;
  --accent-soft: #f4f6f9;
  --surface: #ffffff;
  --surface-soft: #f4f6f9;
  --surface-alt: #e8edf8;
  --line: #d9dce2;
  --shadow: 0 20px 45px rgba(24, 56, 120, 0.16);
  --radius: 20px;
  --radius-small: 12px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5.25rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  transition: top 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217, 220, 226, 0.78);
}

.nav-wrap {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 750;
  letter-spacing: -0.03em;
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand strong {
  color: var(--brand);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 650;
}

.primary-nav a {
  padding: 10px 12px;
  border-radius: 999px;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--brand-dark);
  background: var(--surface-alt);
}

.primary-nav .nav-cta {
  margin-left: 6px;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 12px 24px rgba(32, 64, 152, 0.22);
}

.primary-nav .nav-cta:hover,
.primary-nav .nav-cta.active {
  color: #fff;
  background: var(--brand-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(80, 80, 80, 0.12), transparent 34%),
    linear-gradient(140deg, #f8fafc 0%, #e8edf8 100%);
  padding: 86px 0 58px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(32, 64, 152, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  color: var(--brand-dark);
  background: rgba(32, 64, 152, 0.10);
  border: 1px solid rgba(32, 64, 152, 0.15);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-copy p {
  margin-top: 22px;
  max-width: 680px;
  font-size: 1.12rem;
  color: var(--muted);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 16px 30px rgba(32, 64, 152, 0.25);
}

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

.button-secondary {
  color: var(--brand-dark);
  background: #fff;
  border: 1px solid var(--line);
}

.button-secondary:hover {
  box-shadow: 0 14px 30px rgba(48, 50, 56, 0.08);
}

.button-light {
  color: var(--brand-dark);
  background: #fff;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.trust-item {
  padding: 15px;
  border: 1px solid rgba(32, 64, 152, 0.14);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.6);
}

.trust-item strong {
  display: block;
  color: var(--ink);
}

.trust-item span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card {
  position: relative;
  padding: 16px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  border-radius: 24px;
  background: var(--surface-soft);
}

.hero-badge {
  position: absolute;
  left: -18px;
  bottom: 28px;
  width: min(250px, 80%);
  padding: 18px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--brand-dark);
  box-shadow: 0 16px 34px rgba(24, 56, 120, 0.24);
}

.hero-badge strong {
  display: block;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.hero-badge span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.section {
  padding: 86px 0;
}

.section-soft {
  background: var(--surface-soft);
}

.section-alt {
  background: var(--surface-alt);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

.section-head p {
  max-width: 540px;
  color: var(--muted);
}

.centered {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

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

.kicker {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(48, 50, 56, 0.05);
}

.card h3 {
  margin: 16px 0 10px;
}

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

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  color: var(--brand-dark);
  background: var(--accent-soft);
  font-size: 1.4rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: var(--brand);
  font-weight: 850;
}

.link-arrow::after {
  content: "→";
  transition: transform 150ms ease;
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.split img {
  border-radius: 28px;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
}

.process-grid {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-card {
  counter-increment: step;
  position: relative;
  padding: 28px 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.process-card::before {
  content: counter(step, decimal-leading-zero);
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.process-card h3 {
  margin-bottom: 10px;
}

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

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

.project-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(48, 50, 56, 0.05);
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface-soft);
}

.project-body {
  padding: 22px;
}

.project-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  color: var(--brand-dark);
  background: var(--surface-alt);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.project-body p {
  color: var(--muted);
}

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

.quote-card {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.quote-card blockquote {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.06rem;
}

.quote-card cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 750;
}

.cta-band {
  overflow: hidden;
  position: relative;
  padding: 58px;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(80, 80, 80, 0.34), transparent 32%),
    linear-gradient(135deg, var(--brand-dark), var(--brand));
}

.cta-band p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-band .button-secondary {
  color: var(--brand-dark);
  background: #fff;
}

.page-hero {
  padding: 72px 0;
  background:
    radial-gradient(circle at top right, rgba(80, 80, 80, 0.12), transparent 35%),
    linear-gradient(140deg, #f8fafc 0%, #e8edf8 100%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 42px;
  align-items: center;
}

.page-hero p {
  max-width: 660px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.breadcrumbs {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--brand);
  font-weight: 750;
}

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

.service-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

.service-detail .card-icon {
  margin-top: 2px;
}

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

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.feature-strip li {
  padding: 20px;
  border-radius: var(--radius-small);
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 750;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 0 34px;
}

.filter-button {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.about-panel {
  padding: 36px;
  border-radius: 30px;
  background: var(--brand-dark);
  color: #fff;
}

.about-panel p {
  color: rgba(255, 255, 255, 0.76);
}

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

.value-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

.value-card span {
  color: var(--accent);
  font-weight: 900;
}

.value-card h3 {
  margin: 10px 0;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: start;
}

.contact-card,
.form-card {
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 26px rgba(48, 50, 56, 0.05);
}

.contact-methods {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.contact-methods a,
.contact-methods div {
  display: grid;
  gap: 2px;
  padding: 16px;
  border-radius: var(--radius-small);
  background: var(--surface-soft);
}

.contact-methods strong {
  color: var(--brand-dark);
}

.contact-methods span {
  color: var(--muted);
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

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

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(32, 64, 152, 0.24);
  border-color: var(--accent);
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status {
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius-small);
  color: var(--brand-dark);
  background: var(--surface-alt);
  border: 1px solid rgba(32, 64, 152, 0.15);
}

.hidden {
  display: none !important;
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 280px;
  margin-top: 24px;
  border-radius: var(--radius);
  color: var(--muted);
  background:
    linear-gradient(45deg, rgba(32, 64, 152, 0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(32, 64, 152, 0.08) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(32, 64, 152, 0.08) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(32, 64, 152, 0.08) 75%);
  background-size: 28px 28px;
  background-position: 0 0, 0 14px, 14px -14px, -14px 0px;
  border: 1px solid var(--line);
  text-align: center;
}

.site-footer {
  padding: 56px 0 30px;
  background: var(--ink);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 36px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 850;
}

.footer-brand img {
  width: 42px;
  height: 42px;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid h3 {
  margin-bottom: 14px;
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-grid ul {
  display: grid;
  gap: 8px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .page-hero-grid,
  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .project-grid,
  .testimonials,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero,
  .page-hero {
    padding: 52px 0 44px;
  }

  .section {
    padding: 62px 0;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }

  .trust-list,
  .card-grid,
  .project-grid,
  .testimonials,
  .values-grid,
  .service-list,
  .process-grid,
  .feature-strip,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .cta-band {
    padding: 34px 24px;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}




/* Logo-matched palette + single visible homepage logo - cache-busted release */
.site-header {
  background: rgba(255, 255, 255, 0.98);
}

.nav-wrap {
  min-height: 228px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand.brand-logo {
  flex: 0 0 auto;
  gap: 0;
  max-width: 45vw;
}

.brand.brand-logo img {
  display: block;
  width: clamp(330px, 30vw, 430px);
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: left center;
}

.footer-brand.footer-logo {
  align-items: flex-start;
  gap: 0;
}

.footer-brand.footer-logo img {
  display: block;
  width: min(420px, 100%);
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: left center;
}

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

  .primary-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 210px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    min-height: 150px;
  }

  .primary-nav {
    top: 140px;
  }

  .brand.brand-logo {
    max-width: 70vw;
  }

  .brand.brand-logo img {
    width: min(245px, 70vw);
  }

  .hero-logo {
    width: min(420px, 100%);
  }
}

@media (max-width: 420px) {
  .nav-wrap {
    min-height: 135px;
  }

  .primary-nav {
    top: 126px;
  }

  .brand.brand-logo img {
    width: min(215px, 68vw);
  }
}


/* Logo color palette refinements */
.hero {
  background:
    radial-gradient(circle at top left, rgba(32, 64, 152, 0.14), transparent 34%),
    linear-gradient(140deg, #ffffff 0%, #e8edf8 100%);
}

.page-hero {
  background:
    radial-gradient(circle at top right, rgba(80, 80, 80, 0.12), transparent 35%),
    linear-gradient(140deg, #ffffff 0%, #e8edf8 100%);
}

.kicker,
.link-arrow,
.breadcrumbs a {
  color: #204098;
}

.eyebrow {
  color: #183878;
  background: rgba(32, 64, 152, 0.10);
  border-color: rgba(32, 64, 152, 0.16);
}

.eyebrow::before {
  background: #505050;
}

.card-icon {
  color: #204098;
  background: #e8edf8;
}

.site-footer {
  background: #303238;
}


/* Deck service update */
.service-detail {
  scroll-margin-top: 260px;
}

.service-detail:target {
  border-color: rgba(32, 64, 152, 0.45);
  box-shadow: 0 18px 38px rgba(32, 64, 152, 0.16);
}


/* Homepage top showcase image */
.top-showcase {
  padding: 22px 0 0;
  background: linear-gradient(180deg, #ffffff 0%, #f2f5f9 100%);
}

.top-showcase-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(19, 44, 84, 0.12);
  border: 1px solid rgba(101, 113, 133, 0.16);
}

.top-showcase-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (max-width: 700px) {
  .top-showcase {
    padding-top: 12px;
  }

  .top-showcase-frame {
    border-radius: 16px;
  }
}

/* Bathroom service card photo */
.service-card-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(101, 113, 133, 0.18);
  box-shadow: 0 12px 28px rgba(19, 44, 84, 0.10);
}

.card.has-photo {
  padding-top: 18px;
}

.card.has-photo .card-icon {
  display: none;
}

/* Phone contact update */
.phone-link,
.contact-methods .phone-contact {
  color: inherit;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.phone-inline-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.contact-methods .phone-contact {
  grid-template-columns: 44px 1fr;
  column-gap: 14px;
  row-gap: 2px;
  align-items: center;
  text-decoration: none;
}

.contact-methods .phone-contact .phone-icon-large {
  width: 44px;
  height: 44px;
  grid-row: 1 / span 2;
}

.contact-methods .phone-contact strong,
.contact-methods .phone-contact span {
  grid-column: 2;
}

.contact-methods .phone-contact span {
  font-size: 1.08rem;
  font-weight: 750;
  color: var(--brand-dark);
}

/* Click-to-open bathroom before/after modal */
.project-card-clickable {
  cursor: pointer;
  position: relative;
}

.project-card-clickable:focus {
  outline: 3px solid rgba(18, 60, 124, 0.35);
  outline-offset: 4px;
}

.project-card-clickable .click-note {
  display: inline-flex;
  margin-top: 10px;
  font-weight: 800;
  color: var(--brand);
}

.photo-modal[hidden] {
  display: none;
}

.photo-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.photo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 32, 0.72);
}

.photo-modal-panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: 92vh;
  overflow: auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(101, 113, 133, 0.18);
}

.photo-modal-close {
  position: sticky;
  top: 0;
  float: right;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--brand);
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.photo-modal-panel h2 {
  margin-top: 0;
  color: var(--brand-dark);
}

.before-after-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-top: 22px;
}

.before-after-stack figure {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface-soft);
  border: 1px solid rgba(101, 113, 133, 0.18);
}

.before-after-stack img {
  display: block;
  width: 100%;
  height: auto;
}

.photo-label {
  display: inline-flex;
  margin: 16px 16px 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.before-after-stack figcaption {
  padding: 12px 16px 18px;
  color: var(--muted);
  font-weight: 650;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .photo-modal {
    padding: 12px;
  }

  .photo-modal-panel {
    padding: 20px;
    border-radius: 18px;
  }
}


/* Elegant / sophisticated visual refresh */
:root {
  --ink: #1f2937;
  --muted: #667085;
  --brand: #123C7C;
  --brand-dark: #0B1F3F;
  --brand-light: #2C5AA0;
  --accent: #5C6470;
  --accent-soft: #eef2f7;
  --surface: #ffffff;
  --surface-soft: #f6f8fb;
  --surface-alt: #edf2f8;
  --line: #d7dde7;
  --shadow: 0 24px 70px rgba(11, 31, 63, 0.13);
  --shadow-soft: 0 12px 34px rgba(11, 31, 63, 0.09);
  --radius: 24px;
  --radius-small: 14px;
}

body {
  background:
    radial-gradient(circle at 10% 0%, rgba(18, 60, 124, 0.06), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 38%, #ffffff 100%);
}

h1, h2 {
  letter-spacing: -0.045em;
}

h1 {
  color: var(--brand-dark);
}

h2, h3 {
  color: var(--brand-dark);
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(215, 221, 231, 0.85);
  box-shadow: 0 8px 28px rgba(11, 31, 63, 0.06);
}

.primary-nav a {
  border-radius: 999px;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--brand);
  background: rgba(18, 60, 124, 0.07);
}

.nav-cta {
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--brand), var(--brand-light)) !important;
  box-shadow: 0 12px 26px rgba(18, 60, 124, 0.22);
}

.top-showcase {
  padding: 28px 0 0;
  background: linear-gradient(180deg, #ffffff 0%, #f3f6fa 100%);
}

.top-showcase-frame {
  position: relative;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 28px 80px rgba(11, 31, 63, 0.16);
}

.top-showcase-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(11, 31, 63, 0.06), rgba(11, 31, 63, 0.12));
}

.top-showcase-frame img {
  aspect-ratio: 16 / 8.2;
  object-fit: cover;
}

.hero {
  padding: 78px 0 64px;
  background:
    radial-gradient(circle at 92% 15%, rgba(18, 60, 124, 0.10), transparent 28%),
    linear-gradient(140deg, #ffffff 0%, #f4f7fb 60%, #edf2f8 100%);
}

.hero-copy p {
  font-size: 1.12rem;
}

.eyebrow {
  color: var(--brand);
  background: rgba(18, 60, 124, 0.08);
  border-color: rgba(18, 60, 124, 0.16);
}

.eyebrow::before {
  background: var(--brand);
}

.button {
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: 0.01em;
}

.button-primary,
.button-light {
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  box-shadow: 0 16px 34px rgba(18, 60, 124, 0.22);
}

.button-secondary {
  background: #ffffff;
  border-color: rgba(18, 60, 124, 0.20);
  color: var(--brand);
}

.hero-card,
.card,
.project-card,
.service-detail,
.contact-card,
.form-card,
.quote-card,
.process-card,
.about-panel,
.feature-strip li {
  box-shadow: var(--shadow-soft);
}

.hero-card {
  padding: 12px;
  border-radius: 34px;
  background: #ffffff;
}

.hero-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
}

.hero-badge {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  box-shadow: 0 18px 40px rgba(11, 31, 63, 0.27);
}

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

.card,
.project-card,
.service-detail {
  border: 1px solid rgba(215, 221, 231, 0.88);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover,
.project-card:hover,
.service-detail:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 60, 124, 0.22);
  box-shadow: 0 22px 56px rgba(11, 31, 63, 0.14);
}

.card.has-photo {
  padding: 16px;
}

.card.has-photo h3,
.card.has-photo p,
.card.has-photo .link-arrow {
  margin-left: 6px;
  margin-right: 6px;
}

.service-card-photo,
.project-card img,
.split img,
.service-detail-photo {
  filter: saturate(0.96) contrast(1.02);
}

.service-card-photo {
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  box-shadow: none;
  margin-bottom: 18px;
}

.section {
  padding: 92px 0;
}

.section-soft {
  background:
    radial-gradient(circle at 8% 15%, rgba(18, 60, 124, 0.06), transparent 26%),
    #f7f9fc;
}

.section-alt {
  background:
    linear-gradient(180deg, #eef3f8 0%, #f8fafc 100%);
}

.kicker {
  color: var(--brand);
  letter-spacing: 0.18em;
}

.project-grid {
  gap: 26px;
}

.project-card {
  border-radius: 26px;
  background: #ffffff;
}

.project-card img {
  aspect-ratio: 4 / 3;
}

.project-body {
  padding: 24px;
}

.project-label {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  box-shadow: 0 8px 18px rgba(18, 60, 124, 0.16);
}

.click-note {
  color: var(--brand);
}

.split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 32px;
  border: 1px solid rgba(215, 221, 231, 0.75);
}

.page-hero {
  background:
    radial-gradient(circle at 90% 5%, rgba(18, 60, 124, 0.14), transparent 30%),
    linear-gradient(140deg, #ffffff 0%, #f3f6fa 100%);
}

.service-photo-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 14px;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid rgba(215, 221, 231, 0.8);
  box-shadow: var(--shadow);
}

.service-photo-collage img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
}

.service-photo-collage img:nth-child(1),
.service-photo-collage img:nth-child(4) {
  transform: translateY(10px);
}

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

.service-detail-with-photo {
  grid-template-columns: 156px 1fr;
  align-items: center;
}

.service-detail-photo {
  width: 156px;
  height: 128px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(215, 221, 231, 0.9);
}

.cta-band {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(135deg, var(--brand-dark), var(--brand));
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(11, 31, 63, 0.22);
}

.site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(44, 90, 160, 0.28), transparent 28%),
    linear-gradient(135deg, #07172d 0%, #0b1f3f 55%, #111827 100%);
}

.footer-grid a:hover {
  color: #ffffff;
}

.photo-modal-backdrop {
  background: rgba(7, 23, 45, 0.78);
  backdrop-filter: blur(8px);
}

.photo-modal-panel {
  border-radius: 30px;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.36);
}

.photo-label {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
}

@media (max-width: 1100px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .service-detail-with-photo {
    grid-template-columns: 140px 1fr;
  }

  .service-detail-photo {
    width: 140px;
    height: 120px;
  }
}

@media (max-width: 700px) {
  .top-showcase-frame {
    border-radius: 20px;
  }

  .top-showcase-frame img {
    aspect-ratio: 16 / 11;
  }

  .card-grid,
  .service-list {
    grid-template-columns: 1fr;
  }

  .service-photo-collage {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 8px;
    border-radius: 22px;
  }

  .service-photo-collage img {
    border-radius: 16px;
  }

  .service-detail-with-photo {
    grid-template-columns: 1fr;
  }

  .service-detail-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }
}


/* v11 layout refinements for updated service set */
.card-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.service-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }


/* Additions/service layout refinement update */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}


/* Services page text-size refinement */
.service-detail {
  padding: 20px;
  gap: 14px;
  align-items: start;
}

.service-detail h2 {
  font-size: clamp(1.05rem, 1.35vw, 1.32rem);
  line-height: 1.16;
  letter-spacing: -0.025em;
  margin-bottom: 6px;
}

.service-detail p {
  font-size: 0.94rem;
  line-height: 1.48;
  margin-bottom: 0;
}

.service-detail-with-photo {
  grid-template-columns: 128px 1fr;
}

.service-detail-photo {
  width: 128px;
  height: 104px;
  border-radius: 15px;
}

.service-list {
  gap: 18px;
}

@media (max-width: 700px) {
  .service-detail {
    padding: 18px;
  }

  .service-detail h2 {
    font-size: 1.15rem;
  }

  .service-detail p {
    font-size: 0.93rem;
  }

  .service-detail-with-photo {
    grid-template-columns: 1fr;
  }

  .service-detail-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }
}


/* Page title size refinement */
h1 {
  font-size: clamp(2rem, 4.2vw, 3.95rem);
  line-height: 1.08;
}

.page-hero h1 {
  font-size: clamp(2rem, 3.8vw, 3.45rem);
  max-width: 980px;
}

.hero h1 {
  font-size: clamp(2.15rem, 4.4vw, 4.25rem);
  max-width: 880px;
}

.page-hero {
  padding: 58px 0;
}

.hero {
  padding: 66px 0 54px;
}

.hero-copy p,
.page-hero p {
  font-size: 1.02rem;
}

@media (max-width: 700px) {
  h1,
  .page-hero h1,
  .hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
    line-height: 1.1;
  }

  .page-hero {
    padding: 44px 0;
  }

  .hero {
    padding: 50px 0 44px;
  }
}


/* Instagram QR website section */
.instagram-qr-section {
  background:
    radial-gradient(circle at 85% 15%, rgba(18, 60, 124, 0.09), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f4f7fb 100%);
}

.instagram-qr-card {
  display: grid;
  grid-template-columns: 1fr 230px;
  gap: 34px;
  align-items: center;
  padding: 34px;
  border-radius: 30px;
  border: 1px solid rgba(215, 221, 231, 0.9);
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(11, 31, 63, 0.12);
}

.instagram-qr-card h2 {
  margin-bottom: 12px;
}

.instagram-qr-card p {
  color: var(--muted);
  max-width: 680px;
}

.instagram-qr-box {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(215, 221, 231, 0.95);
  box-shadow: 0 14px 34px rgba(11, 31, 63, 0.10);
}

.instagram-qr-box img {
  width: 190px;
  height: 190px;
  object-fit: contain;
}

.instagram-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 850;
  color: var(--brand);
}

.instagram-icon-dot {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  color: #ffffff;
  background: linear-gradient(135deg, #123C7C, #2C5AA0);
  font-size: 0.92rem;
}

.contact-instagram-card {
  margin-top: 20px;
  padding: 18px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(215, 221, 231, 0.92);
  box-shadow: 0 12px 30px rgba(11, 31, 63, 0.08);
}

.contact-instagram-card img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin: 12px auto 0;
}

.contact-instagram-card p {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .instagram-qr-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }

  .instagram-qr-card p {
    margin-left: auto;
    margin-right: auto;
  }
}


/* Contact page real map embed */
.map-embed {
  width: 100%;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(215, 221, 231, 0.95);
  box-shadow: 0 14px 34px rgba(11, 31, 63, 0.10);
  background: #ffffff;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.map-link {
  margin-top: 12px;
  margin-bottom: 0;
}

.map-link a {
  color: var(--brand);
  font-weight: 850;
}

.map-link a:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .map-embed iframe {
    height: 260px;
  }
}


/* Town-only location card */
.town-location-card {
  display: grid;
  gap: 6px;
  padding: 26px;
  border-radius: 22px;
  border: 1px solid rgba(215, 221, 231, 0.95);
  background:
    radial-gradient(circle at top right, rgba(18, 60, 124, 0.10), transparent 34%),
    #ffffff;
  box-shadow: 0 14px 34px rgba(11, 31, 63, 0.10);
}

.town-location-card span {
  font-size: 1.15rem;
  font-weight: 850;
  color: var(--brand-dark);
}

.town-location-card small {
  color: var(--muted);
  font-weight: 650;
}


/* Town map embed */
.map-embed {
  width: 100%;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(215, 221, 231, 0.95);
  box-shadow: 0 14px 34px rgba(11, 31, 63, 0.10);
  background: #ffffff;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.map-link {
  margin-top: 12px;
  margin-bottom: 0;
}

.map-link a {
  color: var(--brand);
  font-weight: 850;
}

.map-link a:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .map-embed iframe {
    height: 260px;
  }
}


/* Deck before/after project gallery modal */
.deck-modal-panel {
  width: min(1120px, 100%);
}

.deck-photo-section {
  margin-top: 28px;
}

.deck-photo-section h3 {
  margin-bottom: 14px;
  color: var(--brand-dark);
}

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

.deck-photo-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(215, 221, 231, 0.92);
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(11, 31, 63, 0.08);
}

.deck-photo-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 900px) {
  .deck-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .deck-photo-grid {
    grid-template-columns: 1fr;
  }
}


/* Strong deck click/gallery fix */
.deck-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.deck-card-link:hover {
  color: inherit;
}

.deck-card-link .click-note {
  color: var(--brand);
}

#deck-project-gallery {
  scroll-margin-top: 110px;
}

.deck-photo-grid-visible {
  margin-bottom: 28px;
}

.deck-gallery-item {
  margin: 0;
}


/* Kitchen gallery click/fallback section */
.kitchen-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.kitchen-card-link:hover {
  color: inherit;
}

#kitchen-project-gallery {
  scroll-margin-top: 110px;
}

#kitchen-project-gallery .deck-photo-grid-visible {
  margin-bottom: 28px;
}


/* Bathroom gallery click/fallback section */
.bathroom-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.bathroom-card-link:hover {
  color: inherit;
}

#bathroom-project-gallery {
  scroll-margin-top: 110px;
}

#bathroom-project-gallery .deck-photo-grid-visible {
  margin-bottom: 28px;
}


/* Interior finish gallery click/fallback section */
.interior-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.interior-card-link:hover {
  color: inherit;
}

#interior-finish-gallery {
  scroll-margin-top: 110px;
}

#interior-finish-gallery .deck-photo-grid-visible {
  margin-bottom: 28px;
}


/* Exterior and whole-home finish gallery */
.exterior-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.exterior-card-link:hover {
  color: inherit;
}

#exterior-whole-home-gallery {
  scroll-margin-top: 110px;
}

#exterior-whole-home-gallery .deck-photo-grid-visible {
  margin-bottom: 28px;
}


/* Basement living space gallery */
.basement-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.basement-card-link:hover {
  color: inherit;
}

#basement-living-gallery {
  scroll-margin-top: 110px;
}

#basement-living-gallery .deck-photo-grid-visible {
  margin-bottom: 28px;
}
