:root {
  color-scheme: light;
  --paper: #f8f3ef;
  --surface: #fffaf6;
  --ink: #1e1917;
  --muted: #70645d;
  --line: #ded1c8;
  --petal: #d7a0a7;
  --rose: #8d3f4f;
  --wine: #552936;
  --soil: #3a302b;
  --leaf: #69725c;
  --gold: #b68d5b;
  --shadow: 0 28px 90px rgba(37, 24, 19, 0.2);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 16px clamp(18px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(248, 243, 239, 0.9), rgba(248, 243, 239, 0.48));
  border-bottom: 1px solid rgba(222, 209, 200, 0.58);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: inline-grid;
  gap: 1px;
  color: var(--wine);
  text-decoration: none;
}

.wordmark span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.wordmark small {
  padding-left: 4px;
  color: var(--soil);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
}

.site-header nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2.4vw, 28px);
}

.site-header nav a,
.footer-links a,
.footer-links span {
  color: var(--soil);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 124px clamp(18px, 5vw, 72px) 34px;
  background: #130f0e;
}

.hero__media,
.hero__scene,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__scene {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  animation: heroScene 24s infinite;
  animation-delay: calc(var(--scene-index) * 6s);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(14, 10, 9, 0.9) 0%, rgba(14, 10, 9, 0.7) 38%, rgba(14, 10, 9, 0.12) 74%),
    linear-gradient(0deg, rgba(14, 10, 9, 0.78), rgba(14, 10, 9, 0.1) 58%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  color: var(--surface);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--petal);
  font-size: 0.74rem;
  font-weight: 860;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(5rem, 14vw, 13rem);
  line-height: 0.78;
}

h2 {
  max-width: 860px;
  margin-bottom: 20px;
  color: var(--wine);
  font-size: clamp(2.65rem, 6.2vw, 6.6rem);
  line-height: 0.92;
}

h3 {
  margin-bottom: 10px;
  color: var(--wine);
  font-size: 1.05rem;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.hero__line {
  max-width: 720px;
  color: rgba(255, 250, 246, 0.88);
  font-size: clamp(1.18rem, 2.1vw, 1.7rem);
  line-height: 1.42;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--wine);
  border-radius: 999px;
  padding: 0 22px;
  color: var(--surface);
  background: var(--wine);
  font: inherit;
  font-weight: 860;
  text-decoration: none;
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #6d3141;
}

.hero .button {
  border-color: rgba(255, 250, 246, 0.76);
  background: var(--surface);
  color: var(--wine);
}

.text-link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  color: inherit;
  font-weight: 850;
  text-decoration-color: currentColor;
  text-underline-offset: 6px;
}

.hero__ticker {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 54px;
}

.hero__ticker span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 250, 246, 0.36);
  border-radius: 999px;
  padding: 6px 12px;
  color: rgba(255, 250, 246, 0.85);
  background: rgba(255, 250, 246, 0.08);
  font-size: 0.76rem;
  font-weight: 790;
  backdrop-filter: blur(12px);
}

.section {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(74px, 11vw, 150px) 0;
  border-top: 1px solid var(--line);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 6vw, 90px);
  align-items: start;
  margin-bottom: 44px;
}

.section-intro p:not(.eyebrow) {
  max-width: 610px;
  padding-top: 12px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(20px, 3vw, 32px);
  background: rgba(255, 250, 246, 0.55);
}

.service-card span,
.step-card span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(30px, 7vw, 100px);
  align-items: center;
}

.split__media img,
.work-tile img,
.motion-strip img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split__media img {
  aspect-ratio: 4 / 5;
}

.split__copy p {
  max-width: 670px;
}

.sourcing-stats {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 6px 18px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.sourcing-stats strong {
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 0.9;
}

.sourcing-stats span {
  align-self: end;
  color: var(--muted);
  padding-bottom: 4px;
}

.motion-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

.motion-strip img {
  height: clamp(220px, 30vw, 390px);
  animation: floatFrame 7s ease-in-out infinite;
}

.motion-strip img:nth-child(2),
.motion-strip img:nth-child(4) {
  animation-delay: -2.2s;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.step-card {
  min-height: 250px;
  display: grid;
  align-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--surface);
}

.work-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 14px;
}

.work-tile {
  margin: 0;
}

.work-tile img {
  height: clamp(360px, 48vw, 620px);
}

.tile-1 {
  margin-top: 72px;
}

.tile-2 {
  margin-top: 24px;
}

figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

.inquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(30px, 7vw, 96px);
  align-items: start;
}

.inquiry__copy {
  position: sticky;
  top: 102px;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 36px);
  background: var(--surface);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 860;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  letter-spacing: 0;
}

textarea {
  resize: vertical;
}

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

.form-note {
  margin: -2px 0 0;
  font-size: 0.88rem;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 34px clamp(18px, 4vw, 48px);
  background: var(--surface);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 760ms ease, transform 760ms ease;
}

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

@keyframes heroScene {
  0%,
  19% {
    opacity: 0;
    transform: scale(1.08);
  }
  4%,
  22% {
    opacity: 1;
  }
  30%,
  100% {
    opacity: 0;
    transform: scale(1.01);
  }
}

@keyframes floatFrame {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.015);
  }
}

@media (max-width: 980px) {
  .section-intro,
  .split,
  .inquiry {
    grid-template-columns: 1fr;
  }

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

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

  .work-grid {
    grid-template-columns: 1fr;
  }

  .tile-1,
  .tile-2 {
    margin-top: 0;
  }

  .inquiry__copy {
    position: static;
  }
}

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    min-height: 82px;
  }

  .site-header nav {
    gap: 8px 14px;
    max-width: 210px;
  }

  .site-header nav a {
    font-size: 0.66rem;
  }

  .hero {
    min-height: 940px;
    padding: 116px 18px 28px;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(14, 10, 9, 0.88), rgba(14, 10, 9, 0.42)),
      linear-gradient(0deg, rgba(14, 10, 9, 0.84), rgba(14, 10, 9, 0.14) 64%);
  }

  h1 {
    font-size: clamp(4.8rem, 22vw, 6.4rem);
  }

  h2 {
    font-size: clamp(2.55rem, 14vw, 4.1rem);
  }

  .hero__line {
    font-size: 1.12rem;
  }

  .hero__actions,
  .hero__actions .button,
  .hero__actions .text-link,
  .inquiry-form .button {
    width: 100%;
  }

  .hero__actions .text-link {
    justify-content: center;
  }

  .section {
    width: min(100% - 28px, 1220px);
    padding: 76px 0;
  }

  .service-grid,
  .step-grid,
  .motion-strip,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .service-card,
  .step-card {
    min-height: 210px;
  }

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

  .work-tile img,
  .motion-strip img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
