:root {
  --ink: #221711;
  --muted: #6f625a;
  --paper: #f6f2ec;
  --white: #fffaf4;
  --clay: #6f3218;
  --copper: #d47638;
  --sage: #7b8a69;
  --stone: #d9d0c5;
  --line: rgba(34, 23, 17, .12);
  --shadow: 0 26px 80px rgba(61, 36, 21, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.dust-canvas {
  position: fixed;
  inset: 0;
  z-index: 40;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: .42;
}

.tool-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000000;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #8f8a83;
  font-size: 34px;
  filter: drop-shadow(0 8px 14px rgba(34, 23, 17, .24));
  pointer-events: none;
  transform: translate3d(-100px, -100px, 0) rotate(-24deg);
  transition: opacity .2s ease;
}

.tool-cursor.is-clicking {
  transform: translate3d(var(--cursor-x, -100px), var(--cursor-y, -100px), 0) rotate(-12deg) scale(.92);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1000;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--sage));
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 900;
  width: min(1180px, calc(100% - 28px));
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 10px 12px 10px 16px;
  color: var(--white);
  border: 1px solid rgba(255, 250, 244, .16);
  background: rgba(34, 23, 17, .36);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background .3s ease, color .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 250, 244, .9);
  box-shadow: 0 14px 40px rgba(34, 23, 17, .1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--white);
}

.brand span {
  font-size: 14px;
  letter-spacing: .08em;
}

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

.nav a,
.header-cta {
  border: 1px solid transparent;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 700;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.nav a:hover,
.header-cta:hover {
  border-color: currentColor;
  transform: translateY(-1px);
}

.header-cta {
  color: var(--white);
  background: var(--clay);
}

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

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  transform: scale(1.03);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(22, 14, 10, .86), rgba(34, 23, 17, .52) 46%, rgba(34, 23, 17, .16)),
    linear-gradient(0deg, rgba(22, 14, 10, .64), rgba(22, 14, 10, .04) 58%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(700px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.split-copy h2,
.product-copy h2,
.video-heading h2,
.contact-copy h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: .98;
}

.hero h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(42px, 6.4vw, 78px);
  text-shadow: 0 18px 60px rgba(0, 0, 0, .34);
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 250, 244, .94);
  font-size: 18px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, .3);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid currentColor;
  font-weight: 900;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

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

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

.button.secondary {
  color: var(--white);
  background: rgba(255, 250, 244, .08);
}

.hero-panel {
  position: absolute;
  right: max(22px, calc((100vw - 1180px) / 2));
  bottom: 54px;
  z-index: 2;
  width: min(340px, calc(100% - 44px));
  padding: 22px;
  border: 1px solid rgba(255, 250, 244, .22);
  background: rgba(255, 250, 244, .12);
  backdrop-filter: blur(16px);
}

.hero-panel span {
  color: var(--copper);
  font-weight: 900;
}

.hero-panel strong {
  display: block;
  margin-top: 24px;
  font-size: 22px;
}

.hero-panel p {
  margin: 8px 0 0;
  color: rgba(255, 250, 244, .78);
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--white);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.ticker span {
  padding: 18px 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section,
.split-section,
.product,
.video-gallery,
.contact {
  padding: 110px max(22px, calc((100vw - 1180px) / 2));
}

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

.section-heading h2,
.split-copy h2,
.product-copy h2,
.video-heading h2,
.contact-copy h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 60px;
  margin-top: 54px;
}

.about-copy {
  display: grid;
  gap: 16px;
  color: var(--muted);
  font-size: 18px;
}

.about-copy p {
  margin: 0;
}

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

.stat-grid article,
.process-step,
.texture-card,
.contact-form {
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, .74);
  box-shadow: var(--shadow);
}

.stat-grid article {
  min-height: 132px;
  padding: 22px;
  display: grid;
  align-content: space-between;
}

.stat-grid i {
  color: var(--copper);
  font-size: 22px;
}

.stat-grid strong {
  color: var(--clay);
  font-size: 32px;
  line-height: 1;
}

.stat-grid span {
  color: var(--muted);
  font-weight: 750;
}

.split-section {
  display: grid;
  grid-template-columns: .92fr 1fr;
  gap: 78px;
  align-items: center;
  background: var(--white);
}

.media-stack {
  position: relative;
  min-height: 620px;
}

.media-stack img {
  width: 88%;
  height: 560px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.texture-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(310px, 78%);
  padding: 24px;
}

.texture-card span {
  color: var(--clay);
  font-weight: 900;
}

.texture-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.split-copy p,
.product-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

.service-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.service-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.service-list span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--sage);
  border: 1px solid var(--line);
  background: rgba(123, 138, 105, .08);
  font-weight: 900;
}

.service-list h3,
.process-step h3 {
  margin: 0;
  font-size: 22px;
}

.service-list p,
.process-step p {
  margin: 7px 0 0;
  color: var(--muted);
}

.process {
  background:
    linear-gradient(135deg, rgba(123, 138, 105, .12), transparent 44%),
    var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 54px;
}

.process-step {
  min-height: 270px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .3s ease, background .3s ease;
}

.process-step > i {
  margin-bottom: 22px;
  color: var(--copper);
  font-size: 28px;
}

.process-step:hover {
  background: var(--white);
  transform: translateY(-8px);
}

.process-step span {
  margin-bottom: auto;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product {
  display: grid;
  grid-template-columns: .86fr 1fr;
  gap: 70px;
  align-items: center;
  color: var(--white);
  background: var(--ink);
}

.product-copy p {
  color: rgba(255, 250, 244, .74);
}

.benefits {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.benefits li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 250, 244, .86);
}

.benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 12px;
  height: 12px;
  background: var(--copper);
}

.product-visual img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  border: 1px solid rgba(255, 250, 244, .18);
}

.video-gallery {
  background: var(--white);
}

.video-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

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

.video-grid video {
  width: 100%;
  aspect-ratio: 9 / 14;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--ink);
}

.contact {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 66px;
  align-items: start;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-lines a,
.contact-lines span {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, .72);
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 4px rgba(212, 118, 56, .15);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.form-status.is-ok {
  color: #23724f;
}

.form-status.is-error {
  color: #a63622;
}

.site-footer {
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 40px 22px 96px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer p {
  margin: 0;
}

.site-footer span {
  font-size: 13px;
  font-weight: 800;
}

.made-by {
  color: var(--clay);
  font-size: 14px;
  font-weight: 900;
}

.made-by:hover {
  color: var(--copper);
}

.egwa-floating-btn {
  width: 58px !important;
  height: 58px !important;
}

.egwa-floating-btn .egwa-icon {
  width: 34px !important;
  height: 34px !important;
}

.egwa-notification {
  top: 5px !important;
  right: 6px !important;
  width: 11px !important;
  height: 11px !important;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.hero .reveal {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.09) translate3d(-1.5%, 1%, 0);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  body,
  body * {
    cursor: none;
  }
}

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

  .nav {
    display: none;
  }

  .header-cta {
    justify-self: end;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 44px;
  }

  .about-grid,
  .split-section,
  .product,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .media-stack {
    min-height: auto;
  }
}

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

  .brand span {
    display: none;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 13px;
  }

  .hero,
  .section,
  .split-section,
  .product,
  .video-gallery,
  .contact {
    padding-inline: 18px;
  }

  .hero {
    padding-top: 116px;
    padding-bottom: 48px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section,
  .split-section,
  .product,
  .video-gallery,
  .contact {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .section-heading h2,
  .split-copy h2,
  .product-copy h2,
  .video-heading h2,
  .contact-copy h2 {
    font-size: 31px;
  }

  .about-grid,
  .split-section,
  .product,
  .contact {
    gap: 38px;
  }

  .media-stack img {
    width: 100%;
    height: 430px;
  }

  .texture-card {
    position: relative;
    width: 100%;
    margin-top: 12px;
  }

  .process-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    min-height: 210px;
  }

  .contact-form {
    padding: 20px;
  }

  .tool-cursor {
    display: none;
  }

  .dust-canvas {
    opacity: .28;
  }

  .egwa-floating-btn {
    width: 54px !important;
    height: 54px !important;
  }

  .egwa-floating-btn .egwa-icon {
    width: 31px !important;
    height: 31px !important;
  }
}
