:root {
  color-scheme: light;
  --ink: #151515;
  --muted: #5f646b;
  --line: #dfe4e8;
  --paper: #f7f8f5;
  --white: #ffffff;
  --charcoal: #23272b;
  --teal: #0f8b8d;
  --green: #74a57f;
  --red: #d85c45;
  --amber: #f0b35a;
  --shadow: 0 24px 70px rgba(18, 24, 28, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

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

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

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 8px 10px 8px 14px;
  color: var(--white);
  background: rgba(16, 18, 20, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 36px rgba(25, 31, 35, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  color: var(--white);
  background:
    linear-gradient(135deg, var(--teal) 0 48%, var(--charcoal) 48% 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.18),
    4px 4px 0 var(--amber);
  font-size: 0.76rem;
  font-weight: 950;
  line-height: 1;
  overflow: hidden;
}

.brand-mark::before {
  position: absolute;
  inset: 7px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 5px;
}

.brand-mark span {
  position: relative;
  z-index: 1;
  transform: translateY(1px);
}

.brand-name {
  font-size: 1.02rem;
  line-height: 1;
}

.site-header.scrolled .brand-mark {
  color: var(--white);
  border-color: rgba(21, 21, 21, 0.16);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.nav-links a,
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  border-radius: var(--radius);
  font-weight: 750;
}

.nav-links a {
  padding: 0 13px;
  color: currentColor;
  opacity: 0.88;
}

.nav-links a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.14);
}

.site-header.scrolled .nav-links a:hover {
  background: rgba(15, 139, 141, 0.08);
}

.nav-cta {
  padding: 0 16px;
  color: var(--ink);
  background: var(--white);
}

.site-header.scrolled .nav-cta {
  color: var(--white);
  background: var(--ink);
}

.nav-cta svg,
.button svg,
.service-card svg,
.check-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 136px max(24px, calc((100vw - 1180px) / 2)) 36px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 9, 10, 0.92) 0%, rgba(8, 16, 18, 0.74) 38%, rgba(8, 16, 18, 0.2) 100%),
    linear-gradient(0deg, rgba(4, 9, 10, 0.74) 0%, rgba(4, 9, 10, 0.08) 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  min-width: 0;
  padding-bottom: 68px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 13px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #90e0d9;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(3.5rem, 8.4vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 630px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 14px 30px rgba(15, 139, 141, 0.32);
}

.button.primary:hover {
  background: #0c7779;
}

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

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button.full {
  width: 100%;
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(760px, 100%);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: 18px;
}

.hero-panel div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.metric,
.label {
  display: block;
}

.metric {
  margin-bottom: 3px;
  font-weight: 850;
}

.label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.intro-band,
.workflow,
.search-services,
.showcase,
.materials,
.quote-section,
.footer {
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 56px;
  padding-top: 86px;
  padding-bottom: 76px;
  background: var(--paper);
}

.intro-copy h2 {
  max-width: 540px;
}

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

.service-card {
  min-height: 240px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(25, 31, 35, 0.06);
}

.service-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 30px;
  padding: 7px;
  color: var(--white);
  background: var(--ink);
  border-radius: 7px;
}

.service-card:nth-child(2) svg {
  background: var(--teal);
}

.service-card:nth-child(3) svg {
  background: var(--red);
}

.service-card p,
.section-heading p,
.config-copy p,
.quote-copy p,
.project-card span,
.footer p,
.footer-links,
.form-note,
.file-help,
.estimate-note,
.printer-note {
  color: var(--muted);
}

.workflow {
  padding-top: 80px;
  padding-bottom: 92px;
  color: var(--white);
  background: var(--charcoal);
}

.workflow .section-kicker {
  color: var(--amber);
}

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

.section-heading.wide {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.65fr);
  gap: 40px;
  max-width: none;
  align-items: end;
}

.section-heading.wide .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -22px;
}

.section-heading.wide h2 {
  margin-bottom: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.timeline article {
  min-height: 250px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
}

.timeline span {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--amber);
  font-weight: 850;
}

.timeline p {
  color: rgba(255, 255, 255, 0.72);
}

.search-services {
  padding-top: 86px;
  padding-bottom: 86px;
  background: var(--paper);
}

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

.search-grid article {
  min-height: 210px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(25, 31, 35, 0.05);
}

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

.search-grid a,
.text-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(15, 139, 141, 0.35);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--teal);
  font-weight: 850;
}

.content-page {
  background: var(--paper);
}

.content-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px max(24px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.content-header .brand-mark {
  border-color: rgba(21, 21, 21, 0.14);
}

.content-nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 800;
}

.content-main {
  padding: 86px max(24px, calc((100vw - 980px) / 2));
}

.content-hero {
  margin-bottom: 44px;
}

.content-hero h1 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2.7rem, 6.6vw, 6rem);
}

.content-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.14rem;
}

.content-section {
  display: grid;
  gap: 22px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.content-section p,
.content-section li {
  color: var(--muted);
}

.content-list {
  display: grid;
  gap: 12px;
  padding-left: 20px;
}

.content-cta {
  display: grid;
  gap: 18px;
  margin-top: 42px;
  padding: 28px;
  color: var(--white);
  background: var(--charcoal);
  border-radius: var(--radius);
}

.content-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.showcase {
  padding-top: 86px;
  padding-bottom: 86px;
  background: #ffffff;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: 16px;
}

.project-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.project-card.large {
  grid-row: span 2;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 500ms ease;
}

.project-card:hover img {
  transform: scale(1.04);
}

.project-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.74), transparent 58%);
}

.project-card div {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  color: var(--white);
}

.project-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: #aae7e2;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-card h3 {
  max-width: 460px;
  margin-bottom: 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.materials {
  padding-top: 86px;
  padding-bottom: 86px;
  background: var(--paper);
}

.material-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.material-heading h2 {
  margin-bottom: 16px;
}

.material-heading p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.material-grid article {
  min-height: 128px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.material-grid span {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.material-grid strong {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.05;
}

.material-note {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.92fr);
  gap: 72px;
  align-items: start;
  padding-top: 92px;
  padding-bottom: 92px;
  background: var(--ink);
  color: var(--white);
}

.quote-section .section-kicker {
  color: #90e0d9;
}

.quote-copy p,
.quote-copy .check-list {
  color: rgba(255, 255, 255, 0.74);
}

.printer-note {
  max-width: 420px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

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

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-list svg {
  margin-top: 3px;
  color: var(--green);
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-row.compact {
  grid-template-columns: 1fr 0.8fr;
}

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

label {
  display: grid;
  gap: 8px;
  color: #3c4146;
  font-size: 0.92rem;
  font-weight: 800;
}

.bot-field {
  display: none;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #f5f7f6;
  border: 1px solid #d9dfdc;
  border-radius: var(--radius);
  outline: 0;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 139, 141, 0.12);
}

input[type="file"] {
  padding: 10px;
  background: #ffffff;
}

input[type="file"]::file-selector-button {
  min-height: 34px;
  margin-right: 12px;
  padding: 0 12px;
  color: var(--white);
  background: var(--charcoal);
  border: 0;
  border-radius: 7px;
  font-weight: 800;
  cursor: pointer;
}

.file-field {
  gap: 9px;
}

.file-help,
.estimate-note {
  font-size: 0.85rem;
  font-weight: 650;
}

.file-help.error {
  color: var(--red);
}

.estimate {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  padding: 0;
  background: #eef3f0;
  border-radius: var(--radius);
}

.estimate div {
  display: grid;
  gap: 8px;
  padding: 15px 16px;
  background: #eef3f0;
}

.estimate-total {
  color: var(--white);
  background: var(--charcoal) !important;
}

.estimate span {
  color: var(--muted);
  font-weight: 800;
}

.estimate-total span {
  color: rgba(255, 255, 255, 0.72);
}

.estimate strong {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1;
}

.estimate-note {
  margin: -7px 0 0;
}

.form-note {
  min-height: 24px;
  margin: 0;
  font-size: 0.9rem;
}

.form-note.success {
  color: var(--teal);
  font-weight: 800;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding-top: 38px;
  padding-bottom: 38px;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  gap: 8px;
  justify-items: end;
  font-size: 0.94rem;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    linear-gradient(90deg, rgba(4, 9, 10, 0.9), rgba(8, 16, 18, 0.62)),
    url("https://images.pexels.com/photos/31121842/pexels-photo-31121842.jpeg?auto=compress&cs=tinysrgb&w=1800") center / cover;
}

.thanks-panel {
  width: min(720px, 100%);
  padding: 34px;
  color: var(--white);
  background: rgba(16, 18, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
}

.thanks-panel .brand {
  margin-bottom: 42px;
}

.thanks-panel .section-kicker {
  color: #90e0d9;
}

.thanks-panel h1 {
  font-size: clamp(2.6rem, 6vw, 5.3rem);
}

.thanks-panel p:not(.section-kicker) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links,
  .content-nav {
    display: none;
  }

  .intro-band,
  .quote-section,
  .section-heading.wide,
  .footer {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .search-grid,
  .timeline,
  .material-grid {
    grid-template-columns: 1fr;
  }

  .timeline article {
    min-height: auto;
  }

  .timeline span {
    margin-bottom: 26px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .project-card.large {
    grid-row: auto;
  }

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 54px;
    gap: 10px;
  }

  .brand {
    font-size: 0.94rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    box-shadow:
      0 8px 18px rgba(0, 0, 0, 0.18),
      3px 3px 0 var(--amber);
    font-size: 0.66rem;
  }

  .brand-mark::before {
    inset: 6px;
  }

  .nav-cta {
    width: 42px;
    padding: 0;
  }

  .nav-cta span {
    font-size: 0;
  }

  .hero {
    min-height: 94vh;
    padding: 112px 16px 22px;
    overflow-x: clip;
    padding-bottom: 22px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 9, 10, 0.93) 0%, rgba(8, 16, 18, 0.76) 100%),
      linear-gradient(0deg, rgba(4, 9, 10, 0.74) 0%, rgba(4, 9, 10, 0.1) 55%);
  }

  .hero-content {
    width: 100%;
    max-width: calc(100vw - 32px);
    padding-bottom: 28px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 15vw, 4.35rem);
    line-height: 0.95;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 1rem;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    padding: 14px;
  }

  .hero-panel div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .intro-band,
  .workflow,
  .search-services,
  .showcase,
  .materials,
  .quote-section,
  .content-main {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .service-card {
    min-height: auto;
  }

  .form-row,
  .form-row.compact,
  .estimate {
    grid-template-columns: 1fr;
  }
}
