@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Source+Serif+4:wght@600;700&display=swap");

:root {
  --white: #ffffff;
  --paper: #f7f8fa;
  --paper-2: #eef1f5;
  --ink: #1f242b;
  --muted: #66717f;
  --navy: #0b1b34;
  --navy-2: #102844;
  --red: #c91f2d;
  --red-dark: #a91824;
  --line: #dde3ea;
  --shadow: 0 18px 48px rgba(11, 27, 52, 0.12);
  --shadow-soft: 0 10px 28px rgba(11, 27, 52, 0.08);
  --radius: 8px;
  --container: 1180px;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Source Serif 4", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(221, 227, 234, 0.92);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(var(--container), calc(100% - 40px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 184px;
  min-width: 184px;
}

.brand img {
  width: 178px;
  height: 56px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-cta,
.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 22px rgba(201, 31, 45, 0.2);
}

.nav-cta:hover,
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-outline {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-1px);
}

.menu-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--navy);
}

@media (min-width: 1181px) {
  .menu-toggle {
    display: none;
  }
}

.section {
  padding: 88px 0;
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--red);
}

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

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading.center .eyebrow::after {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--red);
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--font-serif);
}

h1 {
  max-width: 760px;
  font-size: 58px;
  line-height: 1.02;
  overflow-wrap: break-word;
}

h1 span {
  display: block;
}

h2 {
  font-size: 40px;
  line-height: 1.1;
}

h3 {
  font-size: 24px;
  line-height: 1.16;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.lead {
  max-width: 660px;
  color: #dbe4ef;
  font-size: 18px;
  overflow-wrap: break-word;
}

.lead span {
  display: block;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(11, 27, 52, 0.92) 0%, rgba(11, 27, 52, 0.76) 42%, rgba(11, 27, 52, 0.22) 100%),
    url("../images/site/hero-renovation.jpg");
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0 72px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin-top: 48px;
}

.proof-item {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.proof-item strong {
  display: block;
  color: var(--white);
  font-size: 22px;
}

.proof-item span {
  display: block;
  margin-top: 4px;
  color: #dbe4ef;
  font-size: 13px;
  line-height: 1.45;
}

.trust-bar {
  position: relative;
  z-index: 2;
  margin-top: -38px;
}

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

.trust-card {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  background: var(--white);
}

.trust-icon,
.service-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  border-radius: var(--radius);
  background: #fff0f2;
}

.trust-card strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.25;
}

.muted-bg {
  background: var(--paper);
}

.navy-bg {
  background: var(--navy);
}

.navy-bg h2,
.navy-bg h3,
.navy-bg p {
  color: var(--white);
}

.navy-bg p {
  color: #cbd6e3;
}

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

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

.service-card,
.review-card,
.value-card,
.area-card,
.project-card,
.process-card,
.faq-card,
.contact-card,
.service-detail-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.service-card-body {
  padding: 24px;
}

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

.service-card p {
  min-height: 82px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 54px;
  align-items: center;
}

.image-stack {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 16px;
}

.image-stack img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.image-stack img:nth-child(2) {
  margin-top: 46px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 18px;
  border-radius: 50%;
  background:
    linear-gradient(var(--red), var(--red)) center / 10px 2px no-repeat,
    linear-gradient(var(--red), var(--red)) center / 2px 10px no-repeat;
  transform: rotate(45deg);
}

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

.value-card {
  padding: 24px;
}

.value-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--red);
  border-radius: var(--radius);
  background: #fff0f2;
  font-weight: 900;
}

.value-card h3 {
  margin-bottom: 10px;
  font-family: var(--font-sans);
  font-size: 18px;
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-btn {
  min-height: 42px;
  padding: 0 16px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

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

.project-card {
  overflow: hidden;
  box-shadow: none;
}

.project-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.project-card-body {
  padding: 18px;
}

.tag {
  display: inline-flex;
  padding: 5px 8px;
  color: var(--red);
  border-radius: 6px;
  background: #fff0f2;
  font-size: 12px;
  font-weight: 900;
}

.project-card h3 {
  margin: 12px 0 6px;
  font-family: var(--font-sans);
  font-size: 18px;
}

.before-after-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.ba-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.ba-pane {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: var(--paper-2);
}

.ba-pane img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.ba-pane.before img {
  object-position: left center;
}

.ba-pane.after img {
  object-position: right center;
}

.ba-label {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 6px 10px;
  color: var(--white);
  border-radius: 6px;
  background: rgba(11, 27, 52, 0.82);
  font-size: 12px;
  font-weight: 900;
}

.ba-body {
  padding: 24px;
}

.ba-body h3 {
  margin-bottom: 8px;
}

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

.review-card {
  padding: 24px;
  box-shadow: none;
}

.stars {
  color: #d6a311;
  font-size: 18px;
  letter-spacing: 0;
}

.review-card blockquote {
  margin: 16px 0;
  color: var(--ink);
  line-height: 1.65;
}

.review-card footer {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 14px;
}

.sample-note {
  display: inline-flex;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
}

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

.area-card {
  padding: 18px;
  color: var(--navy);
  font-weight: 900;
  box-shadow: none;
}

.cta-section {
  padding: 78px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 27, 52, 0.96), rgba(11, 27, 52, 0.9)),
    url("../images/site/project-kitchen.jpg") center / cover;
}

.cta-section h2 {
  max-width: 720px;
  color: var(--white);
}

.cta-section p {
  max-width: 620px;
  margin-top: 14px;
  color: #dbe4ef;
}

.page-hero {
  padding: 82px 0;
  background:
    linear-gradient(90deg, rgba(11, 27, 52, 0.94), rgba(11, 27, 52, 0.68)),
    url("../images/site/hero-renovation.jpg") center / cover;
}

.page-hero h1,
.page-hero p {
  color: var(--white);
}

.page-hero p {
  max-width: 680px;
  margin-top: 18px;
  color: #dbe4ef;
  font-size: 18px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: start;
}

.service-detail-card {
  overflow: hidden;
}

.service-detail-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.service-detail-card .content {
  padding: 26px;
}

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

.info-box {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.info-box h3 {
  margin-bottom: 14px;
  font-family: var(--font-sans);
  font-size: 18px;
}

.info-box ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

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

.process-card {
  padding: 20px;
  box-shadow: none;
}

.process-card span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--white);
  border-radius: 50%;
  background: var(--red);
  font-weight: 900;
}

.process-card h3 {
  margin-bottom: 8px;
  font-family: var(--font-sans);
  font-size: 17px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-card {
  padding: 20px;
  box-shadow: none;
}

.faq-card h3 {
  margin-bottom: 8px;
  font-family: var(--font-sans);
  font-size: 17px;
}

.about-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 32px;
}

.contact-card {
  padding: 28px;
}

.contact-card h2 {
  margin-bottom: 16px;
  font-family: var(--font-sans);
  font-size: 24px;
}

.phone-large {
  display: inline-flex;
  margin: 18px 0 8px;
  color: var(--red);
  font-size: 30px;
  font-weight: 900;
}

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

.contact-list div {
  padding: 16px;
  border-radius: var(--radius);
  background: var(--paper);
}

.estimate-form {
  display: grid;
  gap: 14px;
}

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

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

.field label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  outline: none;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11, 27, 52, 0.1);
}

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

.form-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.form-status {
  min-height: 22px;
  color: var(--navy);
  font-weight: 800;
}

.form-status.is-success {
  color: #176a3a;
}

.form-status.is-error {
  color: var(--red);
}

.map-panel {
  min-height: 320px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(247, 248, 250, 0.92), rgba(247, 248, 250, 0.92)),
    repeating-linear-gradient(45deg, transparent 0, transparent 18px, rgba(11, 27, 52, 0.06) 18px, rgba(11, 27, 52, 0.06) 20px);
}

.map-panel strong {
  color: var(--navy);
  font-size: 24px;
}

.thank-you-hero {
  padding: 138px 0 78px;
  background:
    linear-gradient(115deg, rgba(11, 27, 52, 0.94), rgba(11, 27, 52, 0.74)),
    url("/images/site/hero-renovation.jpg") center / cover;
}

.thank-you-panel {
  max-width: 760px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.success-mark {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  border-radius: 50%;
  background: #176a3a;
}

.thank-you-panel .eyebrow {
  color: #dbe4ef;
}

.thank-you-panel h1 {
  max-width: 680px;
  margin: 12px 0 14px;
  color: var(--white);
  font-size: clamp(38px, 6vw, 68px);
}

.thank-you-panel p {
  max-width: 620px;
  color: #e6edf5;
  font-size: 18px;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.next-steps-grid article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.next-steps-grid strong {
  color: var(--navy);
  font-size: 16px;
}

.next-steps-grid p {
  margin-top: 8px;
  color: var(--muted);
}

.site-footer {
  color: #dbe4ef;
  background: var(--navy);
}

.footer-grid {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 60px 0 38px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-logo {
  display: inline-flex;
  padding: 6px;
  border-radius: var(--radius);
  background: var(--white);
}

.footer-logo img {
  width: 170px;
  height: 80px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 320px;
  margin: 18px 0;
  color: #cbd6e3;
}

.footer-phone {
  color: var(--white);
  font-weight: 900;
}

.site-footer h2 {
  margin: 0 0 15px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 15px;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 10px;
  color: #cbd6e3;
  font-size: 14px;
  line-height: 1.45;
}

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

.footer-bottom {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: #aebccc;
  font-size: 13px;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .main-nav {
    gap: 14px;
  }

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

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

  .split-layout,
  .service-detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .next-steps-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 1180px) {
  .header-inner {
    height: 70px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 14px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero {
    min-height: 650px;
  }

  .hero::before {
    background-image:
      linear-gradient(90deg, rgba(11, 27, 52, 0.94), rgba(11, 27, 52, 0.72)),
      url("../images/site/hero-renovation.jpg");
  }

  .hero-proof,
  .trust-grid,
  .value-grid,
  .areas-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    margin-top: 0;
  }
}

@media (max-width: 680px) {
  .container,
  .header-inner,
  .hero-content,
  .footer-grid,
  .footer-bottom {
    width: calc(100% - 28px);
    max-width: var(--container);
  }

  .section {
    padding: 62px 0;
  }

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

  h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  h2 {
    font-size: 30px;
  }

  .lead,
  .page-hero p {
    font-size: 16px;
  }

  .hero-actions,
  .cta-row,
  .thank-you-actions {
    display: grid;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }

  .grid-2,
  .grid-3,
  .gallery-grid,
  .review-grid,
  .info-columns,
  .form-row {
    grid-template-columns: 1fr;
  }

  .image-stack {
    grid-template-columns: 1fr;
  }

  .image-stack img,
  .image-stack img:nth-child(2) {
    height: 260px;
    margin-top: 0;
  }

  .ba-images {
    grid-template-columns: 1fr;
  }

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

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

  .thank-you-hero {
    padding: 106px 0 56px;
  }

  .thank-you-panel {
    padding: 26px;
  }

  .thank-you-panel h1 {
    font-size: 34px;
    line-height: 1.08;
  }
}
