:root {
  --ink: #111827;
  --muted: #5b6472;
  --line: #d9dee6;
  --paper: #f7f4ee;
  --white: #ffffff;
  --gold: #2f80ed;
  --gold-dark: #1558b0;
  --steel: #27313f;
  --brick: #a3452b;
  --shadow: 0 18px 55px rgba(17, 24, 39, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  min-height: 108px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(17, 24, 39, 0.09);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-symbol-crop,
.brand-wordmark-crop {
  position: relative;
  display: block;
  overflow: hidden;
}

.brand-symbol-crop {
  width: 125px;
  height: 74px;
}

.brand-symbol-crop img {
  width: 226px;
  max-width: none;
  height: auto;
  transform: translate(-50px, -47px);
}

.brand-wordmark-crop {
  width: 205px;
  height: 64px;
}

.brand-wordmark-crop img {
  width: 301px;
  max-width: none;
  height: auto;
  transform: translate(-49px, -168px);
}

.site-nav {
  display: flex;
  gap: 18px;
  color: var(--steel);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a,
.header-call,
.trust-strip a,
.footer a {
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover,
.trust-strip a:hover {
  color: var(--gold-dark);
}

.header-call {
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
  padding: 10px 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.92), rgba(17, 24, 39, 0.65) 42%, rgba(17, 24, 39, 0.12));
}

.hero-content {
  position: relative;
  max-width: 760px;
  padding: 96px clamp(18px, 6vw, 72px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  max-width: 730px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 500;
  line-height: 1.02;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  margin-bottom: 18px;
}

h3 {
  font-size: 21px;
  line-height: 1.2;
}

.hero-content > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

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

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.contact .button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-proof span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip a,
.trust-strip span {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  font-weight: 900;
  text-align: center;
}

.section {
  padding: 88px clamp(18px, 5vw, 72px);
}

.intro,
.reviews,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.intro-copy,
.section-heading > p,
.reviews > div > p,
.contact-copy > p,
.advice-grid p,
.service-grid p,
.project-card span,
.form-note,
.small {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.services,
.advice {
  background: var(--white);
}

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

.process {
  background: #eef2f7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.process-grid article {
  min-height: 290px;
  padding: 30px 26px;
  background: var(--white);
}

.process-grid span {
  display: inline-block;
  margin-bottom: 52px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
}

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

.service-grid article,
.advice-grid article,
.quote-form,
blockquote,
.hours-panel,
.why-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-grid article,
.advice-grid article {
  padding: 26px;
}

.service-grid span {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--gold-dark);
  font-weight: 900;
}

.why {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
  background: var(--steel);
}

.why-panel,
.hours-panel {
  padding: clamp(26px, 4vw, 42px);
}

.why-panel {
  color: var(--white);
  background: #151d29;
  border-color: rgba(255, 255, 255, 0.12);
}

.why-panel ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.why-panel li {
  padding-left: 28px;
  position: relative;
}

.why-panel li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "✓";
  font-weight: 900;
}

.status {
  margin: 18px 0;
  display: grid;
  gap: 7px;
  padding: 18px;
  border-radius: 6px;
  border: 1px solid;
}

.status.is-open {
  background: #edf7ee;
  border-color: #b8dfbf;
}

.status.is-closed {
  background: #fff4df;
  border-color: #efd093;
}

.status strong {
  font-size: 18px;
}

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

.status-action {
  width: fit-content;
  color: var(--gold-dark);
  font-weight: 900;
}

.project-card {
  overflow: hidden;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.project-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.project-link b {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold-dark);
  font-size: 14px;
}

.project-link:hover img {
  transform: scale(1.025);
}

.project-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  transition: transform 180ms ease;
}

.project-card div {
  padding: 22px;
}

.project-card p {
  margin-bottom: 8px;
  color: var(--brick);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.reviews {
  background: #111827;
  color: var(--white);
}

.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.review-assurance {
  padding: clamp(26px, 4vw, 42px);
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

.review-assurance > span {
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-assurance h3 {
  margin-top: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 500;
}

.review-assurance a {
  color: var(--gold-dark);
  font-weight: 900;
}

.email-dialog {
  width: min(560px, calc(100% - 32px));
  padding: 34px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.email-dialog::backdrop {
  background: rgba(7, 27, 64, 0.72);
}

.email-dialog h2 {
  font-size: 34px;
}

.dialog-close {
  float: right;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.dialog-address {
  color: var(--muted);
}

.email-provider-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.email-provider-grid a,
.email-provider-grid button {
  padding: 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.email-provider-grid a:hover,
.email-provider-grid button:hover {
  color: var(--white);
  background: var(--gold-dark);
}

blockquote {
  margin: 0;
  padding: 28px;
  color: var(--ink);
}

blockquote p {
  font-size: 20px;
}

cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.advice-grid a {
  color: var(--gold-dark);
  font-weight: 900;
  text-decoration: none;
}

.contact {
  background: var(--paper);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

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

textarea {
  resize: vertical;
}

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

.form-note {
  grid-column: 1 / -1;
  margin-bottom: 0;
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(170px, 1fr));
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #0d121b;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-group {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-group h3 {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subpage-hero {
  padding: 110px clamp(18px, 8vw, 120px);
  color: var(--white);
  background: #071b40;
}

.subpage-hero h1 {
  max-width: 820px;
}

.subpage-hero > p:last-child {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.review-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.review-empty {
  margin-top: 28px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.reviews-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.review-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-card blockquote {
  padding: 0;
  border: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.review-card > p {
  margin-bottom: 0;
  color: var(--muted);
}

.review-stars {
  margin-bottom: 18px;
  color: var(--gold-dark);
  letter-spacing: 3px;
}

.independent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.independent-links a {
  padding: 11px 14px;
  color: var(--gold-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
}

.review-form {
  margin-top: 24px;
}

.consent {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
}

.consent input {
  width: auto;
  margin-top: 5px;
}

.thank-you {
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(28px, 10vw, 140px);
  background: var(--paper);
}

.thank-you p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 19px;
}

.case-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #071b40;
}

.case-header a {
  font-weight: 900;
  text-decoration: none;
}

.case-hero {
  position: relative;
  min-height: 600px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.case-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 27, 64, 0.9), rgba(7, 27, 64, 0.12) 70%);
  content: "";
}

.case-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-hero > div {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 70px clamp(18px, 6vw, 88px);
}

.case-hero > div > p:last-child {
  max-width: 680px;
  font-size: 19px;
}

.case-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 80px);
}

.case-facts {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.case-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  background: var(--white);
}

.case-gallery img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.placeholder-note {
  grid-column: 1 / -1;
  padding: 14px 16px;
  color: #6b4d13;
  background: #fff4df;
  border: 1px solid #efd093;
  border-radius: 6px;
  font-weight: 800;
}

.case-scope {
  background: #eef2f7;
}

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

.scope-grid span {
  padding: 24px;
  background: var(--white);
  font-weight: 900;
}

.case-cta {
  padding: 80px clamp(18px, 8vw, 120px);
  color: var(--white);
  background: #071b40;
}

.case-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.case-cta > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-header {
    flex-wrap: wrap;
    gap: 12px;
  }

  .brand-symbol-crop {
    width: 92px;
    height: 55px;
  }

  .brand-symbol-crop img {
    width: 166px;
    transform: translate(-37px, -35px);
  }

  .brand-wordmark-crop {
    width: 150px;
    height: 47px;
  }

  .brand-wordmark-crop img {
    width: 220px;
    transform: translate(-36px, -123px);
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 12px 0;
  }

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

  .header-call {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.93), rgba(17, 24, 39, 0.64));
  }

  .trust-strip,
  .intro,
  .reviews,
  .contact,
  .why,
  .review-page-grid,
  .case-intro,
  .service-grid,
  .project-grid,
  .advice-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

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

  .case-gallery img {
    height: auto;
  }

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

@media (max-width: 620px) {
  h1 {
    font-size: 42px;
  }

  .section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

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

  .quote-form {
    grid-template-columns: 1fr;
  }

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

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

  .email-provider-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip a,
  .trust-strip span {
    text-align: left;
  }
}
