:root {
  --ink: #161616;
  --muted: #5d6463;
  --paper: #f7f4ee;
  --canvas: #fffdf8;
  --line: #ded8cd;
  --green: #315c4c;
  --rust: #a84632;
  --blue: #2f5f7f;
  --gold: #c28b2c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

main {
  min-height: 100vh;
  overflow-x: hidden;
}

.site-nav {
  align-items: center;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(222, 216, 205, 0.86);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
}

.brand {
  align-items: center;
  display: flex;
  gap: 10px;
  min-width: 0;
}

.brand img {
  height: 42px;
  object-fit: contain;
  width: 42px;
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-size: 16px;
  font-weight: 760;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2.6vw, 30px);
  font-size: 14px;
  font-weight: 650;
}

.nav-cta {
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 6px;
  color: white;
  padding: 11px 15px;
}

.hero {
  align-items: end;
  display: grid;
  isolation: isolate;
  min-height: 92vh;
  padding: 122px clamp(18px, 5vw, 74px) 56px;
  position: relative;
}

.hero-image,
.hero-shade {
  inset: 0;
  position: absolute;
  z-index: -2;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.72), rgba(10, 10, 10, 0.34) 52%, rgba(10, 10, 10, 0.12)),
    linear-gradient(0deg, rgba(10, 10, 10, 0.6), transparent 45%);
  z-index: -1;
}

.hero-content {
  color: white;
  max-width: 820px;
}

.eyebrow {
  color: var(--rust);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0bf6b;
}

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

h1 {
  font-size: clamp(42px, 7vw, 86px);
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 24px;
  max-width: 980px;
}

h2 {
  font-size: clamp(30px, 4vw, 54px);
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 18px;
}

h3 {
  font-size: 20px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.hero-lead {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  margin-bottom: 28px;
  max-width: 710px;
}

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

.button {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
}

.button.primary {
  background: var(--rust);
  border: 1px solid var(--rust);
  color: white;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: white;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span,
.category-tags span {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: white;
  font-size: 13px;
  font-weight: 750;
  padding: 9px 12px;
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 74px);
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
}

.intro-band {
  background: var(--green);
  color: white;
  padding-bottom: clamp(42px, 6vw, 72px);
  padding-top: clamp(42px, 6vw, 72px);
}

.intro-grid,
.capability-grid,
.support-grid,
.contact-grid {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 62px);
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.intro-grid h2 {
  margin-bottom: 0;
}

.intro-grid p:last-child,
.section-heading p,
.founder-support p,
.contact p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.intro-grid p:last-child {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.intro-band .eyebrow {
  color: #f0bf6b;
}

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

.products {
  background: var(--paper);
}

.product-moodboard {
  min-height: 730px;
  position: relative;
}

.moodboard-note {
  background: var(--green);
  border-radius: 8px;
  color: white;
  left: 42%;
  max-width: 310px;
  padding: 22px;
  position: absolute;
  top: 44%;
  transform: rotate(-2deg);
  z-index: 6;
}

.moodboard-note span {
  color: #f0bf6b;
  display: block;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.moodboard-note strong {
  display: block;
  font-size: 22px;
  line-height: 1.12;
}

.mood-card {
  background: white;
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(28, 30, 30, 0.16);
  margin: 0;
  overflow: hidden;
  padding: 10px 10px 14px;
  position: absolute;
  width: min(34vw, 405px);
}

.mood-card img {
  aspect-ratio: 4 / 5;
  border-radius: 5px;
  object-fit: cover;
  width: 100%;
}

.mood-card figcaption {
  display: grid;
  gap: 4px;
  padding: 12px 4px 0;
}

.mood-card strong {
  font-size: 18px;
  line-height: 1.1;
}

.mood-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.card-dresses {
  left: 0;
  top: 28px;
  transform: rotate(-3.5deg);
  z-index: 3;
}

.card-tops {
  left: 28%;
  top: 0;
  transform: rotate(2.5deg);
  width: min(31vw, 360px);
  z-index: 2;
}

.card-bottoms {
  bottom: 0;
  left: 17%;
  transform: rotate(3.2deg);
  width: min(33vw, 390px);
  z-index: 4;
}

.card-knits {
  right: 0;
  top: 92px;
  transform: rotate(-1.8deg);
  width: min(36vw, 430px);
  z-index: 5;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.category-tags span {
  background: var(--canvas);
  border-color: var(--line);
  color: var(--ink);
}

.capabilities {
  background: var(--canvas);
}

.factory-photo {
  border-radius: 8px;
  overflow: hidden;
}

.factory-photo img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.capability-copy {
  max-width: 580px;
}

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

.check-list li {
  border-bottom: 1px solid var(--line);
  color: #2d302f;
  font-size: 16px;
  line-height: 1.45;
  padding: 0 0 13px 28px;
  position: relative;
}

.check-list li::before {
  background: var(--gold);
  border-radius: 99px;
  content: '';
  height: 9px;
  left: 0;
  position: absolute;
  top: 7px;
  width: 9px;
}

.process {
  background: #edf1ef;
}

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

.step-card {
  background: var(--canvas);
  border: 1px solid #d8dfdc;
  border-radius: 8px;
  min-height: 245px;
  padding: 24px;
}

.step-card span {
  color: var(--blue);
  display: block;
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 48px;
}

.step-card p {
  color: var(--muted);
  line-height: 1.58;
  margin-bottom: 0;
}

.founder-support {
  background: var(--canvas);
}

.founder-support p {
  max-width: 720px;
}

.check-list.compact {
  margin-top: 20px;
}

.price-panel {
  background: #1c2f2a;
  border-radius: 8px;
  color: white;
  padding: clamp(24px, 4vw, 40px);
}

.price-panel p {
  color: #f0bf6b;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.price-panel strong {
  display: block;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.95;
  margin-bottom: 12px;
}

.price-panel span {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  line-height: 1.55;
}

.price-panel hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin: 30px 0;
}

.contact {
  background: #f1eadf;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) 220px;
}

.contact h2 {
  max-width: 760px;
}

.contact p {
  max-width: 720px;
}

.contact .button {
  margin-top: 8px;
}

.contact-hours {
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  margin-top: 18px;
  max-width: 720px;
  padding: 16px 18px;
}

.contact-hours strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

.contact-hours span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.qr-box {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 18px;
  text-align: center;
}

.qr-box img {
  aspect-ratio: 1;
  width: 174px;
}

.qr-box span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

footer {
  align-items: center;
  background: var(--ink);
  color: white;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 74px);
}

footer span:first-child {
  font-weight: 800;
}

footer span:last-child {
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 900px) {
  .site-nav {
    align-items: flex-start;
  }

  .nav-links {
    gap: 10px;
    justify-content: flex-end;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .intro-grid,
  .capability-grid,
  .support-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .factory-photo img {
    aspect-ratio: 16 / 10;
  }

  .contact-grid {
    justify-items: start;
  }
}

@media (max-width: 620px) {
  .brand small {
    display: none;
  }

  .site-nav {
    padding: 12px 16px;
  }

  .hero {
    min-height: 88vh;
    padding: 104px 18px 34px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .hero-proof span,
  .category-tags span {
    font-size: 12px;
    padding: 8px 10px;
  }

  .product-moodboard {
    display: grid;
    gap: 16px;
    min-height: 0;
  }

  .moodboard-note,
  .mood-card {
    bottom: auto;
    left: auto;
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
  }

  .moodboard-note {
    order: 1;
    transform: rotate(-1deg);
  }

  .mood-card {
    box-shadow: 0 16px 42px rgba(28, 30, 30, 0.12);
  }

  .card-dresses {
    order: 2;
    transform: rotate(-1.5deg);
  }

  .card-tops {
    order: 3;
    transform: rotate(1deg);
  }

  .card-bottoms {
    order: 4;
    transform: rotate(-0.8deg);
  }

  .card-knits {
    order: 5;
    transform: rotate(1.3deg);
  }

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

  .step-card {
    min-height: 0;
  }

  .step-card span {
    margin-bottom: 28px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
