:root {
  --paper: #fafaf8;
  --mist: #efeeea;
  --ink: #141414;
  --red: #c8102e;
  --white: #ffffff;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 32px 90px rgba(20, 20, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
}

body,
button,
input,
textarea {
  font: 400 16px/1.5 "Inter", Arial, sans-serif;
}

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

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 18px;
  left: 24px;
  right: 24px;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.brand,
.nav-pill a,
.header-cta,
.button,
.eyebrow,
.section-kicker,
.service-copy span,
.steps span,
.quote-form label,
.footer-links,
.fine-print {
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  width: 138px;
  height: 68px;
  overflow: hidden;
  border-radius: 1.4rem;
  border: 1px solid rgba(20, 20, 20, 0.1);
  background: var(--white);
  box-shadow: 0 12px 35px rgba(20, 20, 20, 0.07);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 999px;
  background: rgba(250, 250, 248, 0.62);
  backdrop-filter: blur(20px);
  box-shadow: 0 12px 35px rgba(20, 20, 20, 0.07);
}

.nav-pill a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.8s var(--ease), color 0.8s var(--ease);
}

.nav-pill a:hover {
  background: var(--ink);
  color: var(--paper);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 22px;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 35px rgba(200, 16, 46, 0.28);
  transition: transform 0.8s var(--ease);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  padding: 118px 24px 56px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  right: 4vw;
  bottom: 8vh;
  z-index: 1;
  width: min(56vw, 880px);
  border-radius: 3rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img {
  min-height: 420px;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100vh - 174px);
  align-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 24px;
  color: rgba(20, 20, 20, 0.62);
}

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

h1,
h2,
.footer-quote h2 {
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.16em;
  max-width: 920px;
  margin: 0;
  font-size: clamp(8rem, 12.2vw, 11rem);
  line-height: 0.82;
}

h2,
.footer-quote h2 {
  line-height: 0.96;
}

h1 span {
  display: inline-block;
  animation: letterLift 1.2s var(--ease) both;
}

h1 span:nth-child(2) {
  animation-delay: 0.05s;
}

h1 span:nth-child(3) {
  animation-delay: 0.1s;
}

.accent,
.section-heading h2 span {
  color: var(--red);
}

.hero-bottom {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(260px, 430px) auto;
  align-items: end;
  gap: 32px;
}

.hero-bottom p,
.intro p,
.process-left p,
.quote-copy p {
  color: rgba(20, 20, 20, 0.72);
  font-size: 1.05rem;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  cursor: pointer;
  transition: transform 0.8s var(--ease), background 0.8s var(--ease), color 0.8s var(--ease);
}

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

.button-primary {
  background: var(--red);
  color: var(--white);
}

.hero-stats {
  position: absolute;
  right: 32px;
  top: 118px;
  z-index: 3;
  display: grid;
  gap: 10px;
  width: min(300px, 33vw);
}

.hero-stats div {
  padding: 18px 20px;
  border-radius: 2.2rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 45px rgba(20, 20, 20, 0.08);
  backdrop-filter: blur(18px);
}

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

.hero-stats strong {
  font-size: 1.05rem;
}

.hero-stats span {
  color: rgba(20, 20, 20, 0.58);
}

.band-paper,
.band-mist,
.process,
.area {
  padding: 110px 24px;
}

section[id] {
  scroll-margin-top: 124px;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
}

.intro h2,
.process h2,
.quote-section h2,
.area h2 {
  margin-bottom: 24px;
  font-size: 5rem;
}

.intro p {
  max-width: 620px;
}

.band-mist {
  border-radius: 5rem 5rem 0 0;
  background: var(--mist);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto 64px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-heading h2 {
  margin: 0;
  font-size: 9rem;
}

.circle-cta {
  display: grid;
  width: 142px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: transform 0.9s var(--ease);
}

.circle-cta:hover {
  transform: rotate(-8deg) scale(1.04);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto;
}

.service-card {
  display: grid;
  gap: 24px;
}

.service-card figure {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2.5rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.service-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(20, 20, 20, 0.3);
  backdrop-filter: blur(2px);
  transition: opacity 0.8s var(--ease);
}

.service-card figcaption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  z-index: 2;
  display: grid;
  min-height: 54px;
  place-items: center;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: translateY(88px);
  transition: transform 0.8s var(--ease), color 0.8s var(--ease);
}

.service-card:hover img {
  transform: scale(1.08);
}

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

.service-card:hover figcaption {
  color: var(--red);
  transform: translateY(-28px);
}

.service-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 18px;
}

.service-copy span {
  color: var(--red);
  grid-row: span 2;
}

.service-copy h3 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.service-copy p,
.steps p {
  margin: 0;
  color: rgba(20, 20, 20, 0.62);
}

.process {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1.15fr;
  gap: 70px;
  max-width: 1280px;
  margin: 0 auto;
}

.steps {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 22px;
  padding: 28px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 2.5rem;
  background: var(--white);
}

.steps span {
  grid-row: span 2;
  color: var(--red);
}

.steps strong {
  font-size: 1.3rem;
}

.quote-section {
  display: grid;
  gap: 28px;
}

.quote-copy,
.load-price-panel,
.quote-workspace {
  width: min(100%, 1280px);
  justify-self: center;
}

.quote-copy {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: 48px;
  align-items: end;
}

.quote-copy .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.quote-copy h2,
.quote-copy p {
  margin-bottom: 0;
}

.load-price-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px 28px;
  width: min(100%, 1280px);
  padding: 24px 28px;
  border-radius: 2.5rem;
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.load-price-panel span {
  color: rgba(250, 250, 248, 0.58);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.load-price-panel strong {
  order: -1;
  color: var(--red);
  font-family: "Anton", Impact, sans-serif;
  font-size: 4.6rem;
  font-weight: 400;
  line-height: 0.9;
}

.load-price-panel p {
  margin: 0;
  color: rgba(250, 250, 248, 0.76);
}

.quote-workspace {
  display: grid;
  grid-template-columns: minmax(420px, 0.94fr) minmax(420px, 1.06fr);
  gap: 22px;
  align-items: start;
}

.price-guide {
  display: grid;
  gap: 20px;
  width: 100%;
  padding: 28px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 2.5rem;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 18px 55px rgba(20, 20, 20, 0.08);
}

.guide-head .eyebrow {
  margin-bottom: 10px;
}

.guide-head h3 {
  margin: 0;
  font-size: 1.35rem;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.72);
}

.price-list span,
.price-list b {
  font-size: 0.78rem;
  line-height: 1.2;
}

.price-list span {
  min-width: 0;
  font-weight: 800;
}

.price-list b {
  color: var(--red);
  font-weight: 800;
  white-space: nowrap;
}

.guide-note {
  margin: 0;
  color: rgba(20, 20, 20, 0.62);
  font-size: 0.88rem;
}

.quote-form {
  display: grid;
  width: 100%;
  gap: 18px;
  padding: 34px;
  border-radius: 2.5rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(20, 20, 20, 0.22);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  outline: none;
  padding: 10px 0 14px;
  resize: vertical;
  transition: border-color 0.8s var(--ease);
}

.quote-form select {
  cursor: pointer;
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
  border-color: var(--red);
}

.hidden {
  display: none;
}

.area {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) 1.2fr;
  gap: 50px;
  max-width: 1280px;
  margin: 0 auto;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.area-list li {
  min-height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(20, 20, 20, 0.15);
  font-size: 1.2rem;
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  padding: 92px 24px 34px;
  border-radius: 5rem 5rem 0 0;
  background: var(--ink);
  color: var(--paper);
}

.footer-quote,
.footer-links,
.fine-print {
  width: min(100%, 1280px);
}

.footer-quote h2 {
  margin: 0 0 28px;
  font-size: 7rem;
}

.footer-logo {
  display: block;
  width: min(520px, 100%);
  height: clamp(160px, 22vw, 245px);
  margin: 0 0 34px;
  object-fit: cover;
  object-position: center 50%;
  border-radius: 1.5rem;
}

.footer-quote a {
  display: inline-block;
  border-bottom: 2px solid var(--red);
  font-size: 1.2rem;
  font-weight: 800;
}

.site-footer .eyebrow,
.fine-print {
  color: rgba(250, 250, 248, 0.58);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 18px;
}

.fine-print {
  grid-column: 1 / -1;
  margin: 40px 0 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}

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

.float-card {
  animation: float 7s var(--ease) infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(3deg);
  }
}

@keyframes letterLift {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1050px) {
  .hero-media {
    right: 24px;
    width: min(76vw, 720px);
    opacity: 0.82;
  }

  .hero-stats {
    position: relative;
    right: auto;
    top: auto;
    width: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 32px;
  }

  .service-grid,
  .process,
  .quote-section,
  .quote-copy,
  .quote-workspace,
  .area,
  .intro,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 6.5rem;
  }

  .quote-copy .eyebrow {
    grid-column: auto;
  }
}

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

  .brand {
    width: 112px;
    height: 58px;
  }

  .nav-pill {
    order: 3;
    grid-column: 1 / -1;
    justify-content: center;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 176px;
  }

  .hero-copy {
    min-height: auto;
    gap: 38px;
  }

  h1 {
    font-size: 5.15rem;
  }

  .hero-media {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    border-radius: 2rem;
    opacity: 1;
  }

  .hero-media img {
    min-height: 360px;
  }

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

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

  .band-paper,
  .band-mist,
  .process,
  .area {
    padding: 76px 18px;
  }

  section[id] {
    scroll-margin-top: 148px;
  }

  .band-mist,
  .site-footer {
    border-radius: 3rem 3rem 0 0;
  }

  .intro h2,
  .process h2,
  .quote-section h2,
  .area h2 {
    font-size: 3rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 5rem;
  }

  .circle-cta {
    width: 112px;
  }

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

  .quote-form {
    padding: 24px;
    border-radius: 2rem;
  }

  .price-guide {
    padding: 22px;
    border-radius: 2rem;
  }

  .load-price-panel {
    grid-template-columns: 1fr;
    padding: 22px;
    border-radius: 2rem;
  }

  .load-price-panel strong {
    font-size: 3.6rem;
  }

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

  .footer-quote h2 {
    font-size: 4.2rem;
  }

  .footer-logo {
    width: min(300px, 100%);
    height: 142px;
  }
}

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