:root {
  color-scheme: light;
  --ink: #1d2220;
  --muted: #5d6660;
  --line: #d9ded8;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --sage: #6f8b73;
  --clay: #b76048;
  --teal: #176b73;
  --gold: #c4944a;
  --shadow: 0 22px 80px rgba(29, 34, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(217, 222, 216, 0.78);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: white;
  background: var(--teal);
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  max-width: 220px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.6vw, 34px);
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

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

.toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 210px;
}

select,
.icon-button,
.button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
}

select {
  height: 40px;
  max-width: 142px;
  padding: 0 32px 0 12px;
  font: inherit;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: calc(100vh - 72px);
  padding: clamp(24px, 4vw, 56px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
}

.hero-media {
  min-height: 560px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(29, 34, 32, 0.08), rgba(255, 255, 255, 0.2)),
    repeating-linear-gradient(90deg, rgba(111, 139, 115, 0.14) 0 1px, transparent 1px 22px),
    #ece8dd;
  box-shadow: var(--shadow);
  position: relative;
}

.hanger-scene {
  position: absolute;
  inset: 8%;
}

.rail {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 78%;
  height: 10px;
  border-radius: 10px;
  background: #2f3834;
}

.garment,
.fabric-roll {
  position: absolute;
  display: block;
}

.garment::before {
  content: "";
  position: absolute;
  top: -42px;
  left: 50%;
  width: 46px;
  height: 42px;
  transform: translateX(-50%);
  border-top: 3px solid #2f3834;
  border-left: 3px solid #2f3834;
  border-radius: 50% 50% 0 0;
}

.coat {
  top: 21%;
  left: 10%;
  width: 25%;
  height: 58%;
  background: linear-gradient(90deg, #546d63, #78917f);
  clip-path: polygon(34% 0, 66% 0, 100% 18%, 84% 100%, 16% 100%, 0 18%);
}

.dress {
  top: 22%;
  left: 31%;
  width: 23%;
  height: 63%;
  background: linear-gradient(140deg, #b76048, #d59476);
  clip-path: polygon(38% 0, 62% 0, 74% 28%, 100% 100%, 0 100%, 26% 28%);
}

.shirt {
  top: 21%;
  left: 53%;
  width: 21%;
  height: 48%;
  background: linear-gradient(135deg, #f3f0e8, #cfc6b5);
  clip-path: polygon(35% 0, 65% 0, 100% 20%, 82% 54%, 72% 100%, 28% 100%, 18% 54%, 0 20%);
}

.jacket {
  top: 20%;
  left: 72%;
  width: 22%;
  height: 56%;
  background: linear-gradient(120deg, #176b73, #4aa0a3);
  clip-path: polygon(36% 0, 64% 0, 100% 19%, 82% 100%, 18% 100%, 0 19%);
}

.fabric-roll {
  right: 3%;
  bottom: 1%;
  width: 38%;
  height: 14%;
  border-radius: 999px;
  background: linear-gradient(90deg, #d6be91, #f0ddad);
  box-shadow: inset -30px 0 0 rgba(29, 34, 32, 0.13);
}

.fabric-roll.two {
  right: 18%;
  bottom: 12%;
  width: 34%;
  background: linear-gradient(90deg, #8f4f44, #c07361);
}

.hero-copy {
  max-width: 650px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-weight: 750;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow),
.split-section p,
.contact-section p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

.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: 0 20px;
  text-decoration: none;
  font-weight: 760;
}

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

.button.secondary {
  background: transparent;
}

.stats,
.split-section,
.service-band,
.products,
.contact-section {
  padding: clamp(54px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
}

.stats div {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 26px;
}

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

.stats strong {
  font-size: 18px;
}

.stats span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 6vw, 86px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.service-band {
  background: #eef2ed;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head h2 {
  max-width: 780px;
}

.service-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-grid article,
.product-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}

.service-grid svg {
  color: var(--clay);
  width: 32px;
  height: 32px;
}

h3 {
  margin: 22px 0 10px;
  font-size: 21px;
}

.service-grid p,
.product-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  background: #edf0eb;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--ink);
  color: white;
}

.contact-section .section-kicker,
.contact-section p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-panel a,
.contact-panel span {
  display: block;
  min-height: 58px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #f4f1e9;
  flex-wrap: wrap;
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .toolbar {
    min-width: auto;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 420px;
    order: 2;
  }

  .stats,
  .service-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    max-width: 170px;
  }

  .toolbar {
    width: 100%;
    justify-content: space-between;
  }

  select {
    max-width: none;
    flex: 1;
  }

  h1 {
    font-size: 40px;
  }

  .hero {
    padding-inline: 18px;
  }

  .hero-media {
    min-height: 330px;
  }
}
