:root {
  --ink: #171715;
  --muted: #676961;
  --paper: #f8f6f0;
  --white: #ffffff;
  --line: rgba(23, 23, 21, 0.13);
  --line-dark: rgba(255, 255, 255, 0.16);
  --gold: #d39a35;
  --gold-light: #f1c56f;
  --blue: #244a73;
  --blue-dark: #13283e;
  --sage: #708276;
  --clay: #91644f;
  --shadow: 0 24px 70px rgba(31, 29, 22, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::selection {
  background: var(--gold-light);
  color: var(--ink);
}

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

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

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

.container {
  margin: 0 auto;
  max-width: 1180px;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}

.site-header {
  background: rgba(248, 246, 240, 0.92);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

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

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
}

.brand-logo-shell {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(23, 23, 21, 0.12);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(23, 23, 21, 0.08);
  display: inline-flex;
  flex: 0 0 auto;
  height: 58px;
  justify-content: center;
  overflow: hidden;
  padding: 5px;
  width: 58px;
}

.brand-logo-shell img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-links a {
  color: #42443f;
}

.nav-links a:hover {
  color: var(--blue);
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

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

.button-primary:hover {
  background: var(--gold-light);
}

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

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

.button-outline {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--line-dark);
  color: #fff;
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.18);
}

.button-outline-dark {
  background: transparent;
  border-color: rgba(23, 23, 21, 0.22);
  color: var(--ink);
}

.button-outline-dark:hover {
  background: rgba(23, 23, 21, 0.06);
}

.hero {
  background:
    linear-gradient(110deg, rgba(19, 40, 62, 0.96), rgba(19, 40, 62, 0.74) 44%, rgba(145, 100, 79, 0.86)),
    var(--blue-dark);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.hero::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  inset: 0;
  opacity: 0.7;
  position: absolute;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.82fr);
  min-height: calc(100vh - 82px);
  padding-bottom: 76px;
  padding-top: 76px;
  position: relative;
  z-index: 1;
}

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

.eyebrow,
.label {
  color: var(--gold-light);
  display: inline-flex;
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
}

.eyebrow {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 9px 12px;
}

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

h1 {
  font-size: clamp(3rem, 7.8vw, 5.75rem);
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 0;
  margin-top: 22px;
}

.lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.8;
  margin: 24px 0 0;
  max-width: 690px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.service-strip span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 9px 12px;
}

.hero-visual {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

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

.hero-card {
  background: rgba(248, 246, 240, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  bottom: 20px;
  color: var(--ink);
  left: 20px;
  max-width: 310px;
  padding: 18px;
  position: absolute;
}

.hero-card img {
  height: 54px;
  margin-bottom: 12px;
  object-fit: contain;
  object-position: left center;
  width: 120px;
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  font-size: 1.08rem;
  margin-bottom: 5px;
}

.hero-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

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

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

.summary-grid div {
  border-left: 1px solid var(--line);
  padding: 24px 28px;
}

.summary-grid div:last-child {
  border-right: 1px solid var(--line);
}

.summary-grid strong,
.summary-grid span {
  display: block;
}

.summary-grid strong {
  font-size: 1.08rem;
}

.summary-grid span {
  color: var(--muted);
  font-size: 0.94rem;
  margin-top: 4px;
}

.section {
  padding: 94px 0;
}

.section-head {
  max-width: 790px;
}

.section-head h2,
.process h2,
.work h2,
.quote h2,
.service-area h2 {
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  letter-spacing: 0;
  line-height: 1.04;
  margin: 12px 0 0;
}

.section-head p:last-child,
.quote-copy > p,
.area-box p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
  margin: 20px 0 0;
}

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

.service-layout {
  align-items: start;
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  margin-top: 44px;
}

.feature-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(31, 29, 22, 0.1);
  margin: 0;
  overflow: hidden;
}

.feature-panel img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.feature-panel div {
  padding: 24px;
}

.feature-panel p {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.feature-panel h3 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.13;
  margin: 0;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-list article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 48px 1fr;
  padding: 22px;
}

.service-list span {
  align-items: center;
  background: #ede2cf;
  border-radius: 8px;
  color: #8b6126;
  display: inline-flex;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.service-list h3 {
  font-size: 1.18rem;
  line-height: 1.2;
  margin: 0;
}

.service-list p {
  color: var(--muted);
  grid-column: 2;
  line-height: 1.65;
  margin: -4px 0 0;
}

.process {
  background: var(--blue-dark);
  color: #fff;
}

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

.steps {
  display: grid;
  gap: 16px;
}

.steps article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 24px;
}

.steps span {
  align-items: center;
  background: var(--gold);
  border-radius: 8px;
  color: var(--ink);
  display: inline-flex;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  margin-bottom: 18px;
  width: 36px;
}

.steps h3 {
  font-size: 1.28rem;
  margin-bottom: 8px;
}

.steps p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  margin: 0;
}

.work {
  background: #fff;
}

.work-top {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 34px;
}

.gallery-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter-button {
  background: #f0ece3;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #444740;
  cursor: pointer;
  font-weight: 900;
  min-height: 40px;
  padding: 8px 13px;
}

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

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

.project-photo {
  background: var(--paper);
  border-radius: 8px;
  margin: 0;
  min-height: 260px;
  overflow: hidden;
  position: relative;
}

.project-photo.is-hidden {
  display: none;
}

.project-photo img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.project-photo figcaption {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.74));
  bottom: 0;
  color: #fff;
  font-weight: 900;
  left: 0;
  padding: 54px 16px 16px;
  position: absolute;
  right: 0;
}

.project-photo-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 534px;
}

.project-photo-wide {
  grid-column: span 2;
}

.is-hidden {
  display: none !important;
}

.fallback-note {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
  margin: 0;
  padding: 18px;
}

.reviews {
  background:
    linear-gradient(135deg, rgba(36, 74, 115, 0.08), transparent 34%),
    var(--paper);
}

.reviews-top {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 34px;
}

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

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(31, 29, 22, 0.08);
  display: grid;
  gap: 18px;
  padding: 26px;
}

.stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}

.review-card p {
  color: #3f413b;
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0;
}

.review-card footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
  padding-top: 16px;
}

.photo-note {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 60px 0;
}

.photo-note-grid {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
}

.photo-note h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  letter-spacing: 0;
  line-height: 1.04;
  margin: 12px 0 0;
}

.photo-note-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.photo-note-card p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0;
}

.photo-note-card strong {
  color: var(--ink);
}

.quote {
  background:
    linear-gradient(135deg, rgba(112, 130, 118, 0.16), transparent 30%),
    var(--paper);
}

.quote-grid {
  align-items: start;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.86fr) minmax(390px, 0.88fr);
}

.quote-copy {
  position: sticky;
  top: 112px;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-lines a,
.contact-lines span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: block;
  font-weight: 800;
  padding: 14px 16px;
  overflow-wrap: anywhere;
}

.contact-lines a:hover {
  border-color: rgba(36, 74, 115, 0.4);
  color: var(--blue);
}

.quote-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(31, 29, 22, 0.11);
  display: grid;
  gap: 16px;
  padding: 28px;
}

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

label {
  color: #383a35;
  display: grid;
  font-size: 0.88rem;
  font-weight: 900;
  gap: 8px;
}

input,
select,
textarea {
  background: #fbfaf6;
  border: 1px solid rgba(23, 23, 21, 0.18);
  border-radius: 8px;
  color: var(--ink);
  min-height: 48px;
  padding: 12px 13px;
  width: 100%;
}

fieldset {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 20px;
}

legend {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0 8px;
  text-transform: uppercase;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36, 74, 115, 0.15);
  outline: none;
}

.form-submit {
  width: 100%;
}

.form-status {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.5;
  margin: 0;
  min-height: 22px;
}

.hidden-field {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.careers {
  background:
    linear-gradient(135deg, rgba(36, 74, 115, 0.1), transparent 34%),
    #fff;
}

.careers-grid {
  align-items: start;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.86fr) minmax(390px, 0.88fr);
}

.careers-copy {
  position: sticky;
  top: 112px;
}

.careers h2 {
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  letter-spacing: 0;
  line-height: 1.04;
  margin: 12px 0 0;
}

.careers-copy > p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
  margin: 20px 0 0;
}

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

.privacy-note {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.95rem !important;
  font-weight: 800;
  line-height: 1.65 !important;
  padding: 16px;
}

.employment-form input[type="file"] {
  align-items: center;
  display: flex;
  padding: 10px;
}

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

.check-field {
  align-items: start;
  background: #fbfaf6;
  border: 1px solid rgba(23, 23, 21, 0.12);
  border-radius: 8px;
  color: #3f413b;
  display: grid;
  font-size: 0.92rem;
  gap: 10px;
  grid-template-columns: 18px 1fr;
  line-height: 1.45;
  padding: 12px;
}

.check-field input {
  height: 18px;
  margin: 2px 0 0;
  min-height: 0;
  padding: 0;
  width: 18px;
}

.work-history {
  display: grid;
  gap: 16px;
}

.history-card {
  background: #fbfaf6;
  border: 1px solid rgba(23, 23, 21, 0.12);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 16px;
}

.history-card h3 {
  font-size: 1.08rem;
  margin: 0;
}

.service-area {
  background: var(--gold);
  color: var(--ink);
  padding: 76px 0;
}

.service-area-grid {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
}

.service-area .label {
  color: #5d3c11;
}

.area-box {
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(23, 23, 21, 0.16);
  border-radius: 8px;
  padding: 26px;
}

.area-box p {
  color: rgba(23, 23, 21, 0.75);
  margin-top: 0;
}

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.service-area-list li {
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(23, 23, 21, 0.16);
  border-radius: 8px;
  color: rgba(23, 23, 21, 0.84);
  font-size: 0.9rem;
  font-weight: 900;
  padding: 8px 11px;
}

.area-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
  padding: 28px 0;
}

.footer-grid {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.footer p {
  margin: 0;
}

.mobile-cta {
  display: none;
}

.simple-page {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(36, 74, 115, 0.14), transparent 32%),
    var(--paper);
  display: flex;
  min-height: 100vh;
  padding: 24px;
}

.simple-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 720px;
  padding: 36px;
}

.simple-card img {
  height: 96px;
  margin-bottom: 22px;
  object-fit: contain;
  object-position: left center;
  width: 140px;
}

.simple-card h1 {
  color: var(--ink);
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.05;
  margin-top: 12px;
}

.simple-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.simple-card p a {
  color: var(--blue);
  font-weight: 900;
}

.simple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hero-grid,
  .service-layout,
  .process-grid,
  .quote-grid,
  .careers-grid,
  .service-area-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-visual {
    min-height: 520px;
  }

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

  .summary-grid div,
  .summary-grid div:last-child {
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .process-grid {
    gap: 30px;
  }

  .work-top {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .reviews-top,
  .photo-note-grid {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .gallery-controls {
    justify-content: flex-start;
  }

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

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

  .quote-copy {
    position: static;
  }

  .careers-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-header {
    position: static;
  }

  .nav {
    min-height: 74px;
  }

  .brand {
    align-items: flex-start;
  }

  .brand-logo-shell {
    height: 44px;
    width: 54px;
  }

  .brand small {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }

  .hero-grid {
    gap: 36px;
    padding-bottom: 52px;
    padding-top: 54px;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4.25rem);
  }

  .hero-actions,
  .application-actions,
  .area-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-strip span {
    flex: 1 1 46%;
    text-align: center;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-card {
    bottom: 14px;
    left: 14px;
    right: 14px;
  }

  .section {
    padding: 68px 0;
  }

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

  .service-list p {
    grid-column: auto;
  }

  .field-grid,
  .gallery,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .project-photo,
  .project-photo-large,
  .project-photo-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 360px;
  }

  .quote-form {
    padding: 20px;
  }

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

  .mobile-cta {
    background: #fff;
    border-top: 1px solid var(--line);
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    left: 0;
    position: fixed;
    right: 0;
    z-index: 30;
  }

  .mobile-cta a {
    color: var(--ink);
    font-weight: 900;
    padding: 14px;
    text-align: center;
  }

  .mobile-cta a:first-child {
    background: var(--blue);
    color: #fff;
  }

  body {
    padding-bottom: 51px;
  }
}

@media (max-width: 430px) {
  .brand small {
    max-width: 230px;
  }

  .lead,
  .section-head p:last-child,
  .quote-copy > p,
  .area-box p {
    font-size: 1rem;
  }

  .hero-visual {
    min-height: 410px;
  }

  .project-photo,
  .project-photo-large,
  .project-photo-wide {
    min-height: 320px;
  }
}


.trust {
  background: #fff;
}

.trust-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 0.9fr 1.1fr;
}

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

.trust-cards article,
.service-page-grid a {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(23, 23, 21, 0.08);
  padding: 22px;
}

.trust-cards strong,
.trust-cards span,
.service-page-grid strong,
.service-page-grid span {
  display: block;
}

.trust-cards strong,
.service-page-grid strong {
  color: var(--blue-dark);
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.trust-cards span,
.service-page-grid span {
  color: var(--muted);
}

.service-pages {
  background: linear-gradient(180deg, #f8f6f0, #fff);
}

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

.service-page-grid a:hover {
  border-color: rgba(211, 154, 53, 0.7);
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .trust-grid,
  .service-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .trust-cards {
    grid-template-columns: 1fr;
  }
  .mobile-cta {
    grid-template-columns: repeat(3, 1fr);
  }
}
