:root {
  --ink: #050506;
  --charcoal: #15161a;
  --steel: #606877;
  --line: #d9dce4;
  --paper: #f6f5f1;
  --white: #ffffff;
  --navy: #08006b;
  --blue: #1711a6;
  --electric: #2e68ff;
  --sky: #5fc8ff;
  --ice: #dbeeff;
  --shadow: 0 20px 60px rgba(5, 5, 6, 0.16);
  --glow: 0 24px 80px rgba(46, 104, 255, 0.22);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: clamp(96px, 12vh, 132px);
}

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

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

#services,
#project-finder,
#materials,
#gallery,
#quote {
  scroll-margin-top: clamp(96px, 12vh, 132px);
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  padding: 0.7rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: var(--shadow);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 78px;
  padding: 0.9rem clamp(1rem, 4vw, 3rem);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(5, 5, 6, 0.1);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 34px rgba(5, 5, 6, 0.1);
  transition: background 180ms ease, min-height 180ms ease, box-shadow 180ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46, 104, 255, 0.55), rgba(95, 200, 255, 0.72), transparent);
  opacity: 0.72;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 36px rgba(5, 5, 6, 0.13);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 214px;
  min-width: 176px;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
  transition: filter 180ms ease, transform 180ms ease;
}

.brand:hover img,
.brand:focus-visible img {
  filter: drop-shadow(0 8px 18px rgba(46, 104, 255, 0.18));
  transform: translateY(-1px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 750;
  font-size: 0.94rem;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue);
  background: rgba(23, 17, 166, 0.08);
  outline: none;
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  margin-left: 0.25rem;
  color: var(--white);
  background: var(--blue);
  border: 1px solid var(--blue);
  box-shadow: 0 12px 28px rgba(23, 17, 166, 0.22);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--electric);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(5, 5, 6, 0.16);
  border-radius: 6px;
  background: rgba(23, 17, 166, 0.06);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: clamp(720px, 88vh, 980px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8.5rem clamp(1.25rem, 5vw, 4rem) 5rem;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.hero-media,
.hero-overlay,
.hero-laser {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("hero-user-clean.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  filter: saturate(1.08) contrast(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.74) 0%, rgba(5, 5, 6, 0.46) 43%, rgba(5, 5, 6, 0.22) 100%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.2), rgba(5, 5, 6, 0.7));
}

.hero-laser {
  pointer-events: none;
  opacity: 0.8;
}

.hero-laser::before,
.hero-laser::after {
  content: "";
  position: absolute;
  left: -16%;
  width: 132%;
  transform-origin: center;
}

.hero-laser::before {
  top: 31%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(46, 104, 255, 0.1), var(--ice), var(--sky), transparent);
  box-shadow: 0 0 18px rgba(46, 104, 255, 0.75), 0 0 34px rgba(95, 200, 255, 0.38);
  transform: rotate(-10deg);
  animation: laser-drift 6.5s ease-in-out infinite;
}

.hero-laser::after {
  top: 48%;
  height: 1px;
  background: linear-gradient(90deg, transparent 18%, rgba(255, 255, 255, 0.36), transparent 68%);
  transform: rotate(-10deg) translateX(-12%);
  animation: laser-scan 8s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero-mark {
  width: 76px;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1) drop-shadow(0 10px 24px rgba(0, 0, 0, 0.45));
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.85rem;
  color: var(--electric);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.94rem;
  line-height: 1.2;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 5.25rem;
  line-height: 0.95;
  font-weight: 950;
  overflow-wrap: break-word;
  text-shadow: 0 16px 44px rgba(0, 0, 0, 0.46);
}

.hero-copy {
  max-width: 650px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.32rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.1;
  overflow: hidden;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 58%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: skewX(-18deg);
  transition: left 420ms ease;
}

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

.button:hover::before,
.button:focus-visible::before {
  left: 112%;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--electric));
  box-shadow: 0 18px 48px rgba(23, 17, 166, 0.38);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, var(--electric), #120c91);
  box-shadow: 0 22px 58px rgba(46, 104, 255, 0.36);
  outline: none;
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 760px;
  margin: 2.75rem 0 0;
}

.hero-points div {
  position: relative;
  min-height: 96px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(5, 5, 6, 0.58));
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hero-points div::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--electric), var(--sky), transparent);
  opacity: 0.82;
}

.hero-points div:hover {
  border-color: rgba(95, 200, 255, 0.45);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.hero-points dt {
  margin: 0 0 0.35rem;
  font-weight: 900;
}

.hero-points dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.4;
}

.section {
  padding: 6.5rem clamp(1.25rem, 5vw, 4rem);
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto 2.4rem;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.75fr);
  gap: 2rem;
  align-items: end;
}

.section-heading h2 {
  text-wrap: balance;
}

.section-heading.compact {
  display: block;
  max-width: 780px;
  text-align: center;
}

.section h2,
.quote-section h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.05;
  font-weight: 950;
  overflow-wrap: break-word;
}

.section-heading p:last-child,
.material-copy > p,
.quote-intro p {
  margin: 0;
  color: var(--steel);
  font-size: 1.04rem;
  line-height: 1.7;
}

.services-section {
  background: var(--white);
}

.service-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  position: relative;
  min-height: 278px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(5, 5, 6, 0.06);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--electric), var(--sky));
  transform: scaleX(0.36);
  transform-origin: left;
  transition: transform 220ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46, 104, 255, 0.08), transparent 52%, rgba(95, 200, 255, 0.1));
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover {
  border-color: rgba(46, 104, 255, 0.36);
  box-shadow: var(--glow);
  transform: translateY(-6px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-index {
  margin: 0 0 3rem;
  color: var(--blue);
  font-weight: 950;
}

.service-card h3,
.proof-item h3,
.process-list h3,
.material-panel h3,
.quote-result h3 {
  margin: 0 0 0.65rem;
  font-size: 1.22rem;
  line-height: 1.2;
}

.service-card p:last-child,
.proof-item p,
.process-list p,
.material-panel p,
.material-panel li {
  color: var(--steel);
  line-height: 1.62;
}

.service-card p:last-child {
  margin: 0;
}

.finder-section {
  background: var(--paper);
}

.finder-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(20rem, 0.34fr);
  gap: 1rem;
  align-items: stretch;
}

.finder-form,
.finder-result {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(5, 5, 6, 0.07);
}

.finder-form {
  position: relative;
  padding: 1.25rem;
  background: var(--white);
  overflow: hidden;
}

.finder-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--electric), var(--sky));
}

.finder-form > * {
  position: relative;
  z-index: 1;
}

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

.finder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.finder-form .button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper);
}

.finder-form .button-secondary:hover,
.finder-form .button-secondary:focus-visible {
  background: #ecebe5;
}

.finder-result {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 310px;
  padding: 1.4rem;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(46, 104, 255, 0.2), rgba(95, 200, 255, 0.16)),
    var(--ink);
  overflow: hidden;
}

.finder-result::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(95, 200, 255, 0.28);
  border-radius: inherit;
  pointer-events: none;
}

.finder-result::after {
  content: "";
  position: absolute;
  inset: -28% -48%;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.13), transparent 62%);
  transform: translateX(-34%) rotate(8deg);
  animation: panel-glint 9s ease-in-out infinite;
}

.finder-result > * {
  position: relative;
  z-index: 1;
}

.finder-label {
  margin: 0 0 0.8rem;
  color: #8faeff;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.finder-result h3 {
  margin: 0 0 0.75rem;
  font-size: 1.55rem;
  line-height: 1.12;
}

.finder-result p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.62;
}

.finder-result ul {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.finder-result li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.45;
}

.finder-result li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--electric);
}

.material-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 0.78fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  width: min(100%, 1320px);
  margin: 0 auto;
  background: var(--paper);
}

.material-visual {
  position: relative;
  min-height: 560px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.material-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(46, 104, 255, 0.12), inset 0 -80px 120px rgba(5, 5, 6, 0.16);
  pointer-events: none;
}

.material-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 65% center;
}

.material-copy {
  max-width: 620px;
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 1.7rem 0 1rem;
}

.tab {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--charcoal);
  cursor: pointer;
  font-weight: 850;
  transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.tab:hover,
.tab:focus-visible {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 10px 24px rgba(23, 17, 166, 0.12);
  transform: translateY(-1px);
}

.tab.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--electric));
  border-color: var(--blue);
  box-shadow: 0 14px 32px rgba(23, 17, 166, 0.22);
}

.material-panel {
  position: relative;
  min-height: 252px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(5, 5, 6, 0.06);
}

.material-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--electric), var(--sky));
}

.material-panel p {
  margin: 0 0 1rem;
}

.material-panel ul {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding-left: 1.1rem;
}

.proof-section {
  background: var(--ink);
  color: var(--white);
}

.proof-section .section-kicker {
  color: #8faeff;
}

.proof-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.proof-item {
  isolation: isolate;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--charcoal);
  background-size: 185%;
  border: 0;
  position: relative;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  transition: box-shadow 180ms ease, transform 180ms ease, background-size 420ms ease;
}

.proof-item::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.74)),
    rgba(0, 0, 0, 0.24);
}

.proof-item::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 28%, rgba(255, 255, 255, 0.18), transparent 48%);
  opacity: 0;
  transform: translateX(-40%);
  transition: opacity 180ms ease, transform 520ms ease;
}

.proof-item:hover {
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  transform: translateY(-6px);
  background-size: 196%;
}

.proof-item:hover::after {
  opacity: 1;
  transform: translateX(34%);
}

.proof-item h3,
.proof-item p {
  position: relative;
  z-index: 1;
}

.proof-item p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.proof-item-dark {
  background-image: url("hats-and-tumblers.png");
  background-position: 50% 44%;
}

.proof-item-wood {
  background-image: url("personal-keepsakes.png");
  background-position: 52% 55%;
}

.proof-item-metal {
  background-image: url("functional-marking-custom.png");
  background-position: 50% 48%;
}

.facebook-callout {
  position: relative;
  width: min(100%, var(--max));
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(46, 104, 255, 0.18), rgba(255, 255, 255, 0.08) 43%, rgba(95, 200, 255, 0.13)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.facebook-callout::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--electric), var(--sky), transparent);
}

.facebook-callout::after {
  content: "";
  position: absolute;
  inset: -40% -30%;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.12), transparent 58%);
  transform: translateX(-42%);
  animation: panel-glint 10s ease-in-out infinite;
}

.facebook-callout > * {
  position: relative;
  z-index: 1;
}

.facebook-callout h2 {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.08;
}

.facebook-callout p:last-child {
  max-width: 720px;
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.62;
}

.facebook-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.process-section {
  background: var(--white);
}

.process-list {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  position: relative;
  min-height: 255px;
  padding: 1.25rem;
  border-top: 3px solid var(--blue);
  background: var(--paper);
  overflow: hidden;
  transition: box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.process-list li::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--electric), var(--sky));
  opacity: 0;
  transition: opacity 180ms ease;
}

.process-list li:hover {
  background: var(--white);
  box-shadow: 0 16px 42px rgba(5, 5, 6, 0.09);
  transform: translateY(-4px);
}

.process-list li:hover::before {
  opacity: 1;
}

.process-list span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.25rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  font-size: 0.82rem;
  box-shadow: 0 10px 24px rgba(5, 5, 6, 0.18);
}

.process-list p {
  margin: 0;
}

.quote-section {
  padding: 6.5rem clamp(1.25rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(18rem, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(2rem, 5vw, 4rem);
  width: min(100%, var(--max));
  margin: 0 auto;
}

.quote-intro {
  align-self: start;
  position: sticky;
  top: 110px;
}

.quote-form,
.quote-result {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(5, 5, 6, 0.07);
  overflow: hidden;
}

.quote-form::before,
.quote-result::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--electric), var(--sky));
}

.quote-form > *,
.quote-result > * {
  position: relative;
  z-index: 1;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.25rem;
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.form-row.full {
  grid-column: 1 / -1;
}

.form-row label {
  font-weight: 850;
  color: var(--charcoal);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.72rem 0.8rem;
  background: #fbfbf8;
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-row textarea {
  resize: vertical;
  min-height: 142px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(46, 104, 255, 0.16);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(46, 104, 255, 0.1);
}

.form-row input.is-invalid,
.form-row select.is-invalid,
.form-row textarea.is-invalid {
  border-color: #a91b1b;
  outline: 3px solid rgba(169, 27, 27, 0.12);
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.quote-form .button-secondary,
.quote-result .button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper);
}

.quote-form .button-secondary:hover,
.quote-form .button-secondary:focus-visible,
.quote-result .button-secondary:hover,
.quote-result .button-secondary:focus-visible {
  background: #ecebe5;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.45rem;
  margin: 0;
  color: var(--blue);
  font-weight: 800;
}

.quote-result {
  grid-column: 2;
  padding: 1.25rem;
}

.quote-result pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  margin: 0 0 1rem;
  padding: 1rem;
  border-radius: 6px;
  background: var(--paper);
  color: var(--charcoal);
  line-height: 1.55;
}

.site-footer {
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
  padding: 3rem 1.25rem;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.footer-logo {
  width: min(260px, 80vw);
}

.site-footer p {
  margin: 0;
}

.footer-social {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: var(--white);
  text-decoration: none;
  font-weight: 850;
}

.footer-social:hover,
.footer-social:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes laser-drift {
  0%,
  100% {
    opacity: 0.2;
    transform: rotate(-10deg) translateX(-18%);
  }

  45%,
  58% {
    opacity: 0.9;
    transform: rotate(-10deg) translateX(9%);
  }
}

@keyframes laser-scan {
  0%,
  35%,
  100% {
    opacity: 0;
    transform: rotate(-10deg) translateX(-28%);
  }

  52% {
    opacity: 0.55;
    transform: rotate(-10deg) translateX(18%);
  }
}

@keyframes panel-glint {
  0%,
  45%,
  100% {
    opacity: 0;
    transform: translateX(-44%) rotate(8deg);
  }

  60% {
    opacity: 1;
    transform: translateX(36%) rotate(8deg);
  }
}

@media (max-width: 1080px) {
  .service-grid,
  .finder-shell,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading,
  .material-section,
  .facebook-callout,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .quote-intro {
    position: static;
  }

  .quote-result {
    grid-column: auto;
  }

  .facebook-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  .site-header {
    min-height: 62px;
    padding: 0.45rem 1rem;
  }

  .brand {
    width: 148px;
    min-width: 148px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 62px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(5, 5, 6, 0.1);
    box-shadow: 0 18px 34px rgba(5, 5, 6, 0.12);
  }

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

  .site-nav a {
    justify-content: flex-start;
    width: 100%;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero {
    min-height: clamp(840px, 84vh, 960px);
    padding: 7.5rem 1.15rem 3.5rem;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero h1 {
    font-size: 3rem;
    line-height: 1;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

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

  .section,
  .quote-section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .section h2,
  .quote-section h2 {
    font-size: 2rem;
    line-height: 1.12;
  }

  .section-heading {
    gap: 1rem;
  }

  .service-grid,
  .finder-shell,
  .finder-grid,
  .proof-grid,
  .process-list,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-list li {
    min-height: auto;
  }

  .service-index,
  .process-list span {
    margin-bottom: 1.4rem;
  }

  .material-visual,
  .material-visual img {
    min-height: 350px;
  }

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

@media (max-width: 460px) {
  .brand {
    width: 126px;
    min-width: 126px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero-actions,
  .form-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

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