:root {
  --teal: #0b5f5a;
  --teal-dark: #073f3c;
  --red: #c82333;
  --red-dark: #9f1825;
  --ink: #17212b;
  --sand: #f4efe6;
  --white: #ffffff;
  --mist: #e6ecea;
  --line: rgba(23, 33, 43, .16);
  --display: "Arial Narrow", "Franklin Gothic Medium", "Roboto Condensed", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1240px;
  --shadow: 0 24px 70px rgba(7, 63, 60, .14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #f0ad29;
  outline-offset: 4px;
}

.concept-flag {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 20;
  padding: 9px 12px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.35);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  box-shadow: 0 8px 30px rgba(0,0,0,.22);
}

.site-header {
  min-height: 102px;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(300px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 18px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
  position: relative;
  z-index: 5;
}

.temp-brand {
  display: inline-grid;
  width: max-content;
  color: var(--ink);
  text-decoration: none;
  line-height: .92;
  text-transform: uppercase;
}

.temp-brand__city {
  color: var(--teal);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .26em;
}

.temp-brand__trade {
  margin-top: 7px;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.temp-brand__note {
  margin-top: 8px;
  color: #68747f;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .15em;
}

.main-nav { display: flex; gap: 28px; }
.main-nav a,
.phone-link {
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
}
.main-nav a { position: relative; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--red);
  transition: right .2s ease;
}
.main-nav a:hover::after { right: 0; }

.header-actions { justify-self: end; display: flex; align-items: center; gap: 18px; }

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: 0;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .09em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--red { color: var(--white); background: var(--red); box-shadow: 5px 5px 0 var(--ink); }
.button--red:hover { background: var(--red-dark); }
.button--large { min-height: 56px; padding-inline: 30px; }

.hero {
  max-width: 1500px;
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  background: var(--sand);
}

.hero__copy {
  padding: clamp(70px, 9vw, 130px) clamp(34px, 7vw, 110px);
  position: relative;
}
.hero__copy::after {
  content: "";
  position: absolute;
  right: -48px;
  top: 96px;
  z-index: 2;
  width: 96px;
  height: 9px;
  background: var(--red);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow--light { color: #9fd7d2; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--display); text-transform: uppercase; }
h3 { font-family: var(--body); font-weight: 820; }
h1 {
  max-width: 710px;
  margin-bottom: 28px;
  font-size: clamp(56px, 6.7vw, 100px);
  line-height: .88;
  letter-spacing: -.055em;
}
h2 { margin-bottom: 20px; font-size: clamp(40px, 5vw, 70px); line-height: .94; letter-spacing: -.045em; }
h3 { margin-bottom: 9px; font-size: 24px; line-height: 1; letter-spacing: -.025em; }

.lede { max-width: 590px; color: #4b5964; font-size: 18px; }
.hero__actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.text-link { color: var(--ink); font-size: 13px; font-weight: 900; letter-spacing: .02em; text-decoration-thickness: 1px; text-underline-offset: 6px; }
.text-link span { color: var(--red); margin-left: 5px; }

.hero__signals { display: grid; grid-template-columns: repeat(3, 1fr); margin: 68px 0 0; border-top: 1px solid var(--line); }
.hero__signals div { padding: 18px 12px 0 0; border-right: 1px solid var(--line); }
.hero__signals div + div { padding-left: 18px; }
.hero__signals dt { color: var(--red); font-family: var(--display); font-weight: 900; }
.hero__signals dd { margin: 4px 0 0; color: #63707a; font-size: 12px; font-weight: 750; text-transform: uppercase; }

.hero__visual {
  min-height: 720px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(145deg, transparent 38%, rgba(244,239,230,.22) 38.2%, transparent 38.8%),
    linear-gradient(180deg, #3b7774, var(--teal-dark));
}
.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px);
  background-size: 54px 54px;
}
.visual-label {
  position: absolute;
  top: 30px;
  right: 32px;
  z-index: 2;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.5);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.roof-plane { position: absolute; transform: skewY(-18deg) rotate(-2deg); box-shadow: var(--shadow); }
.roof-plane--one { left: -8%; right: 22%; bottom: -17%; height: 55%; background: var(--ink); border-top: 12px solid var(--red); }
.roof-plane--two { left: 48%; right: -16%; bottom: 0; height: 37%; background: #246d68; border-top: 1px solid rgba(255,255,255,.48); }
.sun-disc { width: 120px; height: 120px; position: absolute; top: 17%; left: 16%; border-radius: 50%; background: #e7c57e; opacity: .9; }
.visual-caption {
  position: absolute;
  right: 30px;
  bottom: 28px;
  z-index: 2;
  display: grid;
  width: min(300px, 70%);
  padding: 18px;
  background: rgba(7,63,60,.88);
  border-left: 4px solid var(--red);
}
.visual-caption strong { font-family: var(--display); font-size: 17px; text-transform: uppercase; }
.visual-caption span { margin-top: 3px; color: #cee5e2; font-size: 12px; }

.ticker {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3.5vw, 48px);
  padding: 14px 24px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.ticker i { width: 5px; height: 5px; background: var(--red); transform: rotate(45deg); }

.section { max-width: var(--max); margin: 0 auto; padding: clamp(80px, 10vw, 140px) 24px; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(250px, .55fr); align-items: end; gap: 60px; margin-bottom: 54px; }
.section-heading h2 { max-width: 780px; margin-bottom: 0; }
.section-intro { color: #65727c; }

.service-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.service-card {
  grid-column: span 4;
  min-height: 230px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 16px;
  padding: 25px;
  color: var(--ink);
  background: var(--sand);
  border-top: 7px solid var(--teal);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card--lead { grid-column: span 8; color: var(--white); background: var(--teal); border-top-color: var(--red); }
.service-card--dark { color: var(--white); background: var(--ink); border-top-color: var(--red); }
.service-card__number { align-self: start; color: var(--red); font-family: var(--display); font-weight: 900; }
.service-card--lead .service-card__number { color: #a8dad7; }
.service-card p { margin: 0; opacity: .7; font-size: 13px; }
.service-card__arrow { color: var(--red); font-size: 24px; }
.service-card__roof {
  position: absolute;
  top: 34px;
  right: 26px;
  width: 76px;
  height: 34px;
  opacity: .38;
  border-bottom: 1px solid currentColor;
  transform: skewY(-18deg);
}
.service-card__roof::before,
.service-card__roof::after {
  content: "";
  position: absolute;
  bottom: 7px;
  height: 1px;
  background: currentColor;
  transform-origin: right center;
}
.service-card__roof::before { right: 35px; width: 40px; transform: rotate(-33deg); }
.service-card__roof::after { right: 0; width: 42px; transform: rotate(33deg); }
.service-card:nth-child(2) .service-card__roof { width: 64px; transform: skewY(-10deg); }
.service-card:nth-child(3) .service-card__roof::after { transform: rotate(12deg); }
.service-card:nth-child(4) .service-card__roof { width: 90px; transform: skewY(0); }

.approach { max-width: 1500px; margin: 0 auto; display: grid; grid-template-columns: minmax(140px, .18fr) minmax(0, 1fr); color: var(--white); background: var(--teal-dark); }
.approach__rail { display: flex; flex-direction: column; justify-content: space-around; align-items: center; border-right: 1px solid rgba(255,255,255,.17); font-family: var(--display); font-size: 12px; font-weight: 900; }
.approach__rail span { writing-mode: vertical-rl; color: #8fc2be; }
.approach__body { padding: clamp(78px, 9vw, 130px) clamp(30px, 7vw, 100px); }
.approach__body h2 { max-width: 770px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 54px; background: rgba(255,255,255,.22); }
.steps article { min-height: 220px; padding: 30px; background: var(--teal-dark); }
.steps article > span { display: inline-grid; place-items: center; width: 38px; height: 38px; margin-bottom: 45px; color: var(--white); background: var(--red); font-size: 12px; font-weight: 900; }
.steps p { max-width: 240px; color: #acd0cd; font-size: 14px; }

.area { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(44px, 8vw, 110px); align-items: center; }
.area__map { min-height: 520px; position: relative; overflow: hidden; background: var(--sand); border: 1px solid var(--line); }
.area__map::after { content: ""; position: absolute; left: -12%; right: -12%; top: 50%; height: 1px; background: var(--red); transform: rotate(-12deg); }
.map-ring { position: absolute; border: 1px solid rgba(11,95,90,.38); border-radius: 50%; }
.map-ring--one { width: 130px; height: 130px; left: 44%; top: 38%; }
.map-ring--two { width: 270px; height: 270px; left: calc(44% - 70px); top: calc(38% - 70px); }
.map-ring--three { width: 460px; height: 460px; left: calc(44% - 165px); top: calc(38% - 165px); }
.map-pin { position: absolute; left: calc(44% - 17px); top: calc(38% - 8px); z-index: 2; display: grid; justify-items: center; gap: 8px; color: var(--ink); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.map-pin i { width: 34px; height: 34px; display: block; background: var(--red); border: 8px solid var(--white); border-radius: 50%; box-shadow: 0 4px 20px rgba(23,33,43,.24); }
.map-note { position: absolute; left: 20px; bottom: 18px; color: #68747f; font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.area__copy > p:not(.eyebrow) { max-width: 520px; color: #66727d; font-size: 17px; }
.area-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 30px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.area-list li { padding: 13px 6px; border-bottom: 1px solid var(--line); font-size: 13px; font-weight: 800; }

.contact { max-width: 1500px; margin: 0 auto; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(45px, 8vw, 120px); padding: clamp(78px, 9vw, 125px) max(24px, calc((100vw - var(--max)) / 2)); color: var(--white); background: var(--ink); position: relative; }
.contact::before { content: ""; position: absolute; left: 0; top: 0; width: 34%; height: 8px; background: var(--red); }
.contact__copy p:not(.eyebrow) { max-width: 600px; color: #aab4bc; }
.contact__phone { display: inline-block; margin-top: 20px; color: var(--white); font-family: var(--display); font-size: clamp(30px, 4vw, 54px); font-weight: 900; letter-spacing: -.03em; text-decoration: none; }
.concept-form { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; padding: 30px; color: var(--ink); background: var(--white); box-shadow: 11px 11px 0 var(--teal); }
.concept-form label { display: grid; gap: 6px; color: #56636d; font-size: 11px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.concept-form label:nth-child(3), .concept-form .button, .concept-form small { grid-column: 1 / -1; }
.concept-form input, .concept-form select { width: 100%; min-height: 49px; padding: 0 13px; border: 1px solid #cdd4d7; background: #f7f8f7; font: inherit; }
.concept-form small { color: #74808a; }

.site-footer { max-width: 1500px; min-height: 150px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 40px; padding: 35px max(24px, calc((100vw - var(--max)) / 2)); color: #8b959d; background: #101820; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }
.temp-brand--footer .temp-brand__trade { color: var(--white); }
.site-footer a { color: var(--white); font-weight: 850; text-decoration: none; }

@media (max-width: 1040px) {
  .site-header { grid-template-columns: 1fr auto; }
  .main-nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero__visual { min-height: 520px; }
  .hero__copy::after { display: none; }
  .service-card, .service-card--lead { grid-column: span 6; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 740px) {
  .concept-flag { left: 10px; right: 10px; bottom: 10px; text-align: center; }
  .site-header { min-height: 88px; padding: 15px 18px; }
  .temp-brand__trade { font-size: 18px; }
  .temp-brand__city { font-size: 11px; }
  .phone-link {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 11px;
    color: var(--teal-dark);
    border: 1px solid var(--teal);
    font-size: 0;
    text-transform: uppercase;
  }
  .phone-link::after { content: "Call"; font-size: 10px; letter-spacing: .08em; }
  .header-actions { gap: 7px; }
  .header-actions .button { display: none; }
  .hero { min-height: 0; }
  .hero__copy { padding: 70px 22px 62px; }
  h1 { font-size: clamp(50px, 16vw, 72px); }
  h2 { font-size: clamp(40px, 13vw, 58px); }
  .hero__actions { align-items: flex-start; flex-direction: column; }
  .hero__signals { margin-top: 48px; }
  .hero__signals dd { font-size: 9px; }
  .hero__visual { min-height: 430px; }
  .ticker { justify-content: flex-start; overflow-x: auto; scroll-snap-type: x proximity; scrollbar-width: thin; }
  .ticker span { flex: 0 0 auto; scroll-snap-align: start; }
  .ticker::after { content: "Swipe →"; flex: 0 0 auto; color: #9fd7d2; font-size: 9px; }
  .section { padding: 80px 20px; }
  .service-card, .service-card--lead { grid-column: 1 / -1; min-height: 190px; }
  .service-card__roof { width: 62px; top: 24px; right: 18px; }
  .eyebrow { font-size: 12px; }
  .approach { grid-template-columns: 44px 1fr; }
  .approach__body { padding: 72px 22px; }
  .steps { grid-template-columns: 1fr; }
  .steps article { min-height: 180px; }
  .steps article > span { margin-bottom: 30px; }
  .area { grid-template-columns: 1fr; }
  .area__map { min-height: 380px; }
  .contact { padding: 80px 20px 110px; }
  .concept-form { grid-template-columns: 1fr; padding: 22px; }
  .concept-form label { grid-column: 1 / -1; }
  .site-footer { grid-template-columns: 1fr; gap: 18px; padding: 44px 20px 100px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
