:root {
  color-scheme: light;
  --ink: #101722;
  --ink-soft: #192331;
  --ink-muted: #3f4a57;
  --paper: #f1eee7;
  --paper-bright: #fbfaf7;
  --line: #d6d0c6;
  --copper: #b76f49;
  --copper-dark: #743d29;
  --white: #ffffff;
  --shadow-soft: 0 24px 70px rgba(16, 23, 34, .12);
  --shadow-card: 0 14px 38px rgba(16, 23, 34, .08);
  --radius-large: 32px 10px 32px 10px;
  --radius-medium: 22px 8px 22px 8px;
  --container: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.85rem, 12vw, 4.4rem);
  line-height: .99;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 8vw, 3.65rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
  line-height: 1.25;
}

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(7, 11, 17, .14);
}

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

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-primary {
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.brand-secondary {
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-style: italic;
  letter-spacing: .03em;
  text-transform: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav a {
  min-height: 44px;
  padding: 11px 10px;
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:not(.nav-contact) {
  display: none;
}

.site-nav a:hover {
  color: #e7ae8d;
}

.site-nav .nav-contact {
  padding-inline: 16px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 88px;
  background:
    radial-gradient(circle at 92% 18%, rgba(183, 111, 73, .18), transparent 33%),
    linear-gradient(152deg, var(--ink) 0%, #111c29 62%, #182331 100%);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 85%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 42px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #ead4c5;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
}

.eyebrow-dark {
  color: var(--copper-dark);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: #d9dee5;
  font-size: clamp(1.05rem, 4.5vw, 1.25rem);
  line-height: 1.55;
}

.hero-lead strong {
  color: var(--white);
  font-weight: 760;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

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

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

.button-primary:hover {
  background: #d18a62;
}

.button-secondary {
  border-color: rgba(255, 255, 255, .35);
  color: var(--white);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, .75);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  color: #c4cbd3;
  font-size: .82rem;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-points li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper);
  content: "";
}

.hero-visual {
  position: relative;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-large);
  box-shadow: 0 36px 90px rgba(0, 0, 0, .36);
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: -10px 22px 18px -10px;
  z-index: -1;
  border: 1px solid rgba(183, 111, 73, .42);
  border-radius: var(--radius-large);
  content: "";
}

.hero-visual picture,
.hero-visual img {
  width: 100%;
  border-radius: inherit;
}

.hero-visual img {
  aspect-ratio: 1.6;
  object-fit: cover;
}

.hero-visual figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(10, 15, 23, .78);
  color: #e7e2da;
  font-size: .7rem;
  line-height: 1.3;
  text-align: center;
  backdrop-filter: blur(8px);
}

.hero-seam {
  position: absolute;
  right: -3%;
  bottom: -42px;
  left: 38%;
  height: 78px;
  border-radius: 55% 0 0 0;
  background: var(--paper);
  transform: rotate(-2deg);
  transform-origin: right bottom;
}

.statement {
  padding: 36px 0 54px;
}

.statement-grid {
  display: grid;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 36px;
}

.statement-kicker {
  margin-bottom: 0;
  color: var(--copper-dark);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.statement-text {
  max-width: 850px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 6.5vw, 2.55rem);
  line-height: 1.2;
}

.section {
  padding: 76px 0;
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 36px;
}

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

.section-heading > p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: 1.02rem;
}

.scope-locality {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: -16px 0 28px;
  color: var(--copper-dark);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.scope-grid {
  display: grid;
  gap: 14px;
}

.scope-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: rgba(251, 250, 247, .68);
  box-shadow: var(--shadow-card);
}

.scope-card-featured {
  background: var(--ink);
  color: var(--white);
}

.scope-card > p:not(.card-number) {
  margin-bottom: 26px;
  color: var(--ink-muted);
}

.scope-card-featured > p:not(.card-number) {
  color: #cbd2da;
}

.card-number {
  margin-bottom: 54px;
  color: var(--copper-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-style: italic;
}

.scope-card-featured .card-number {
  color: #e6b294;
}

.scope-card-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(16, 23, 34, .14);
  color: var(--copper-dark);
  font-size: .73rem;
  font-weight: 850;
  letter-spacing: .035em;
  line-height: 1.3;
  text-decoration: none;
  text-transform: uppercase;
}

.scope-card-link span {
  font-size: 1.15rem;
  line-height: 1;
  transition: transform .2s ease;
}

.scope-card-link:hover span {
  transform: translateX(4px);
}

.scope-card-featured .scope-card-link {
  border-top-color: rgba(255, 255, 255, .16);
  color: #f0b794;
}

.scope-scenes {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.scope-scene {
  --scene-accent: var(--copper-dark);
  overflow: hidden;
  border: 1px solid rgba(16, 23, 34, .14);
  border-radius: 8px 22px 8px 22px;
  background: #d8d4cc;
  color: var(--ink);
  box-shadow: var(--shadow-card);
}

.scope-scene-inspection {
  background: #d2d7d5;
}

.scope-scene-arrangement {
  --scene-accent: #6b4938;
  background: #e2d5c7;
}

.scope-scene-finishing {
  --scene-accent: #70442f;
  background: #cad3dc;
}

.scope-scene-coordination {
  --scene-accent: #485364;
  background: #d9d2ca;
}

.scope-scene-art {
  display: block;
  width: 100%;
  height: auto;
  color: #25313d;
}

.scene-line,
.scene-accent {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.scene-line-soft {
  opacity: .54;
  stroke-width: 2;
}

.scene-line-thin {
  stroke-width: 2;
}

.scene-accent {
  stroke: var(--scene-accent);
  stroke-width: 4;
}

.scene-paper {
  fill: rgba(251, 250, 247, .9);
  stroke: rgba(16, 23, 34, .16);
  stroke-width: 1;
}

.scene-fill {
  fill: var(--scene-accent);
}

.scene-fill-soft {
  fill: rgba(116, 61, 41, .18);
  stroke: rgba(16, 23, 34, .22);
  stroke-width: 1;
}

.scope-scene-caption {
  min-height: 104px;
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(16, 23, 34, .12);
  background: rgba(251, 250, 247, .86);
}

.scope-scene-caption span {
  display: block;
  margin-bottom: 6px;
  color: var(--copper-dark);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.scope-scene-caption strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.2;
}

.delivery-band {
  margin-top: 34px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, .42);
}

.delivery-band-kicker {
  margin-bottom: 10px;
  color: var(--copper-dark);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.delivery-heading {
  max-width: 900px;
}

.delivery-heading h3 {
  max-width: 820px;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 400;
  line-height: 1.08;
}

.delivery-heading > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-muted);
  line-height: 1.65;
}

.work-catalog {
  display: grid;
  gap: 12px;
  margin: 26px 0 22px;
}

.work-group {
  padding: 18px;
  border: 1px solid rgba(16, 23, 34, .11);
  border-radius: 8px 18px 8px 18px;
  background: rgba(251, 250, 247, .72);
}

.work-number {
  margin-bottom: 22px;
  color: var(--copper-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .9rem;
  font-style: italic;
}

.work-group h4 {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.25;
}

.work-group ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-group li {
  position: relative;
  padding-left: 16px;
  color: var(--ink-muted);
  font-size: .88rem;
  line-height: 1.5;
}

.work-group li::before {
  position: absolute;
  top: .68em;
  left: 0;
  width: 6px;
  height: 1px;
  background: var(--copper-dark);
  content: "";
}

.delivery-note {
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: .9rem;
  line-height: 1.6;
}

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

.scope-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 54px;
  margin-top: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(16, 23, 34, .14);
  border-radius: 8px 18px 8px 18px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.scope-cta-copy {
  line-height: 1.45;
}

.scope-cta strong,
.scope-cta-arrow {
  color: #f0b794;
}

.scope-cta-arrow {
  font-size: 1.35rem;
  line-height: 1;
}

.scope-cta:hover {
  border-color: rgba(240, 183, 148, .72);
  background: #172231;
  transform: translateY(-1px);
}

.inspection {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(116, 61, 41, .14);
  background:
    radial-gradient(circle at 12% 15%, rgba(183, 111, 73, .16), transparent 30%),
    #e8e2d8;
}

.inspection::after {
  position: absolute;
  right: -160px;
  bottom: -220px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(116, 61, 41, .16);
  border-radius: 50%;
  content: "";
}

.inspection-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 42px;
}

.inspection-intro > p:not(.eyebrow):not(.inspection-note) {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--ink-muted);
  font-size: 1.03rem;
}

.inspection-note {
  max-width: 680px;
  margin-bottom: 0;
  padding: 18px 20px;
  border-left: 3px solid var(--copper-dark);
  background: rgba(251, 250, 247, .62);
  color: var(--ink-muted);
  font-size: .9rem;
}

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

.inspection-map {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.inspection-map::before {
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 25px;
  width: 1px;
  background: linear-gradient(var(--copper-dark), rgba(116, 61, 41, .12));
  content: "";
}

.inspection-map li {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 0 0 30px;
}

.inspection-map li:last-child {
  padding-bottom: 0;
}

.inspection-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(116, 61, 41, .28);
  border-radius: 50%;
  background: var(--paper-bright);
  color: var(--copper-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.inspection-map h3 {
  margin-bottom: 7px;
}

.inspection-map p {
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: .92rem;
}

.reasons {
  border-bottom: 1px solid rgba(116, 61, 41, .12);
  background:
    linear-gradient(145deg, rgba(183, 111, 73, .09), transparent 46%),
    var(--paper-bright);
}

.reasons-shell {
  display: grid;
  gap: 36px;
}

.reasons-intro {
  max-width: 940px;
}

.reasons-intro h2 {
  max-width: 860px;
}

.reasons-intro > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: 1.03rem;
}

.reasons-grid {
  display: grid;
  gap: 12px;
}

.reason-card {
  position: relative;
  min-height: 230px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(16, 23, 34, .12);
  border-radius: 8px 22px 8px 22px;
  background: rgba(255, 255, 255, .68);
}

.reason-card::after {
  position: absolute;
  right: -32px;
  bottom: -42px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(183, 111, 73, .16);
  border-radius: 50%;
  content: "";
}

.reason-number {
  margin-bottom: 40px;
  color: var(--copper-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .95rem;
  font-style: italic;
}

.reason-card h3 {
  max-width: 250px;
}

.reason-card > p:last-child {
  position: relative;
  z-index: 1;
  max-width: 310px;
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: .9rem;
}

.reasons-cta {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  border-radius: 8px 24px 8px 24px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: background-color .2s ease, transform .2s ease;
}

.reasons-cta small,
.reasons-cta strong {
  display: block;
}

.reasons-cta small {
  margin-bottom: 3px;
  color: #c6ced7;
  font-size: .75rem;
  line-height: 1.4;
}

.reasons-cta strong {
  color: #f0b794;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.22rem, 5vw, 1.7rem);
  font-weight: 400;
  line-height: 1.15;
}

.reasons-cta > span:last-child {
  flex: 0 0 auto;
  color: #f0b794;
  font-size: 1.7rem;
  transition: transform .2s ease;
}

.reasons-cta:hover {
  background: #172231;
  transform: translateY(-2px);
}

.reasons-cta:hover > span:last-child {
  transform: translateX(5px);
}

.process {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.process::after {
  position: absolute;
  top: -28%;
  right: -14%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(183, 111, 73, .22);
  border-radius: 46% 12% 46% 12%;
  content: "";
  transform: rotate(18deg);
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 46px;
}

.process-intro p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  color: #c5ccd5;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.process-list > li > span {
  color: #e6b294;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

.process-list h3 {
  margin-bottom: 6px;
}

.process-list p {
  margin-bottom: 0;
  color: #bfc7d0;
  font-size: .92rem;
}

.contact {
  background:
    linear-gradient(130deg, rgba(183, 111, 73, .12), transparent 44%),
    var(--paper-bright);
}

.contact-shell {
  display: grid;
  gap: 34px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 670px;
  margin-bottom: 0;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.contact-fit {
  display: grid;
  gap: 9px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.contact-fit li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-muted);
  font-weight: 700;
}

.contact-fit li::before {
  position: absolute;
  top: .68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--copper);
  content: "";
}

.contact-card {
  padding: 28px;
  border-radius: var(--radius-large);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.contact-label {
  margin-bottom: 36px;
  color: #e6b294;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.contact-name {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
}

.contact-role {
  margin-bottom: 28px;
  color: #c8cfd7;
  font-size: .9rem;
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.contact-action {
  display: grid;
  min-height: 66px;
  align-content: center;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px 4px 12px 4px;
  color: var(--white);
  text-decoration: none;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.contact-action:hover {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .05);
  transform: translateX(3px);
}

.contact-action-meta {
  color: #c8cfd7;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.contact-action strong {
  margin-top: 3px;
  overflow-wrap: anywhere;
  font-size: 1rem;
  line-height: 1.35;
}

.contact-action-whatsapp {
  border-color: var(--copper);
  background: var(--copper);
  color: var(--ink);
}

.contact-action-whatsapp .contact-action-meta {
  color: #2d1b14;
}

.contact-action-whatsapp:hover {
  border-color: #d18a62;
  background: #d18a62;
}

.site-footer {
  padding: 44px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: #0b1119;
  color: #bbc3cc;
}

.footer-grid {
  display: grid;
  gap: 26px;
}

.brand-footer {
  color: var(--white);
}

.footer-grid p {
  margin: 10px 0 0;
  font-size: .82rem;
}

.footer-grid .company-data {
  margin-top: 14px;
  color: #8f99a4;
  font-size: .74rem;
  line-height: 1.6;
}

.footer-status {
  max-width: 330px;
}

.privacy-note {
  font-size: .8rem;
}

.privacy-note summary {
  min-height: 44px;
  padding-block: 10px;
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
}

.privacy-note p {
  max-width: 360px;
  margin: 8px 0 0;
}

@media (min-width: 560px) {
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .button {
    padding-inline: 24px;
  }

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

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

  .delivery-band {
    padding: 26px;
  }

  .work-group {
    padding: 20px;
  }

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

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

@media (max-width: 359px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .header-inner {
    gap: 10px;
  }

  .brand {
    gap: 4px;
  }

  .brand-primary {
    font-size: .78rem;
    letter-spacing: .08em;
  }

  .brand-secondary {
    font-size: .94rem;
  }

  .site-nav .nav-contact {
    padding-inline: 10px;
    font-size: .67rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero-visual::before {
    left: 0;
  }
}

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

  .site-nav a:not(.nav-contact) {
    display: inline-flex;
  }

  .statement-grid,
  .section-heading,
  .footer-grid {
    grid-template-columns: minmax(190px, .65fr) minmax(0, 1.55fr);
    align-items: start;
  }

  .section-heading > p {
    justify-self: end;
    padding-top: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr auto auto;
    align-items: start;
  }
}

@media (min-width: 900px) {
  .hero {
    min-height: 760px;
    padding: 84px 0 118px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr);
    align-items: center;
    gap: clamp(40px, 5vw, 78px);
  }

  .hero-visual {
    margin-right: -8vw;
  }

  .hero-visual img {
    min-height: 540px;
  }

  .statement {
    padding-top: 48px;
  }

  .section {
    padding-block: 116px;
  }

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

  .scope-card {
    min-height: 330px;
    padding: 30px;
  }

  .scope-card:nth-child(2),
  .scope-card:nth-child(4) {
    transform: translateY(22px);
  }

  .scope-scenes {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 54px;
  }

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

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

  .reason-card:nth-child(2),
  .reason-card:nth-child(4) {
    transform: translateY(18px);
  }

  .reasons-cta {
    margin-top: 18px;
    padding-inline: 34px;
  }

  .process-grid {
    grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
    align-items: start;
    gap: clamp(60px, 9vw, 130px);
  }

  .process-intro {
    position: sticky;
    top: 112px;
  }

  .inspection-shell {
    grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr);
    align-items: center;
    gap: clamp(60px, 9vw, 130px);
  }

  .contact-shell {
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
    align-items: center;
    gap: clamp(60px, 9vw, 130px);
  }

  .contact-card {
    padding: 38px;
  }
}

@media (min-width: 1500px) {
  :root {
    --container: 1420px;
  }

  .hero-grid {
    grid-template-columns: minmax(520px, .82fr) minmax(680px, 1.18fr);
  }

  .hero-visual {
    margin-right: -5vw;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media print {
  .site-header {
    position: static;
    box-shadow: none;
  }

  .site-nav,
  .hero-actions,
  .skip-link {
    display: none;
  }

  .hero,
  .process,
  .site-footer,
  .scope-card-featured,
  .contact-card {
    background: #fff;
    color: #000;
  }
}
