:root {
  --ink: #211a1d;
  --muted: #75676c;
  --cream: #fbf5ed;
  --blush: #e9c7bf;
  --wine: #6c2137;
  --gold: #b88a44;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--cream);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 245, 237, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(108, 33, 55, 0.12);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  text-decoration: none;
  font-size: 27px;
  letter-spacing: -1px;
  font-weight: 700;
}

.logo span {
  color: var(--wine);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-links a {
  text-decoration: none;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--wine);
  background: transparent;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--wine);
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 44px;
  padding: 64px 0;
}

.hero-copy h1 {
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.94;
  margin: 14px 0 24px;
  letter-spacing: -0.06em;
}

.eyebrow,
.section-label {
  font-family: Arial, sans-serif;
  color: var(--wine);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 12px;
}

.lead {
  max-width: 650px;
  font-size: 21px;
  line-height: 1.65;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--wine);
  font-family: Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.btn.primary {
  background: var(--wine);
  color: var(--white);
}

.btn.ghost {
  color: var(--wine);
}

.hero-card {
  min-height: 560px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(rgba(33, 26, 29, 0.15), rgba(33, 26, 29, 0.58)),
    radial-gradient(circle at 30% 20%, #f4dfd6, transparent 30%),
    linear-gradient(135deg, #8d3151, #d9aa86 55%, #f7e8d7);
  color: var(--white);
  border-radius: 280px 280px 28px 28px;
  box-shadow: 0 30px 80px rgba(108, 33, 55, 0.22);
}

.hero-card span {
  color: #ffe8b7;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: Arial, sans-serif;
  font-size: 12px;
}

.hero-card h2 {
  font-size: 42px;
  margin: 12px 0;
}

.intro,
.collections,
.lookbook,
.fabric-lab,
.process,
.content-band,
.contact {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border-top: 1px solid rgba(108, 33, 55, 0.18);
}

h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  margin: 0 0 22px;
  letter-spacing: -0.04em;
}

p {
  font-size: 17px;
  line-height: 1.75;
}

.numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.numbers div {
  padding: 28px;
  background: var(--white);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(108, 33, 55, 0.08);
}

.numbers strong {
  display: block;
  font-size: 42px;
  color: var(--wine);
}

.numbers span {
  font-family: Arial, sans-serif;
  color: var(--muted);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.collection-grid article {
  background: var(--white);
  border-radius: 34px;
  padding: 34px;
  border: 1px solid rgba(108, 33, 55, 0.12);
}

.collection-grid h3,
.panel h3,
.steps h3 {
  font-size: 28px;
  margin: 0 0 12px;
}

li {
  margin: 10px 0;
  color: var(--muted);
}

.lookbook {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
  align-items: stretch;
}

.lookbook-title {
  position: sticky;
  top: 100px;
  align-self: start;
  padding: 34px;
  border-radius: 34px;
  background: var(--white);
}

.lookbook-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 18px;
}

.lookbook-strip article {
  min-height: 430px;
  padding: 28px;
  border-radius: 160px 160px 28px 28px;
  background: linear-gradient(180deg, #f6dfd3, #fffaf5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.lookbook-strip article:nth-child(2) {
  background: linear-gradient(180deg, #6c2137, #2b1720);
  color: var(--white);
}

.lookbook-strip article:nth-child(2) p {
  color: #f3d3d8;
}

.lookbook-strip article:nth-child(3) {
  background: linear-gradient(180deg, #d7b48c, #fff3df);
}

.lookbook-strip article:nth-child(4) {
  background: linear-gradient(180deg, #211a1d, #8e6b44);
  color: var(--white);
}

.lookbook-strip span {
  color: var(--wine);
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
}

.lookbook-strip article:nth-child(2) span,
.lookbook-strip article:nth-child(4) span {
  color: #ffe8b7;
}

.fabric-lab {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: center;
}

.fabric-board {
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(108, 33, 55, 0.08), rgba(184, 138, 68, 0.18)),
    var(--white);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.fabric-choice {
  border: 1px solid rgba(108, 33, 55, 0.18);
  background: #fffaf5;
  color: var(--wine);
  border-radius: 20px;
  padding: 18px;
  font-weight: 700;
  cursor: pointer;
}

.fabric-choice.active {
  background: var(--wine);
  color: var(--white);
}

.fabric-output {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  padding: 24px;
  border-radius: 24px;
  background: var(--cream);
  color: var(--ink);
  font-size: 20px;
}

.atelier {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.panel {
  padding: 54px;
}

.panel.dark {
  background: var(--wine);
  color: var(--white);
  border-radius: 0 48px 48px 0;
}

.panel.dark .section-label {
  color: var(--blush);
}

.panel.light {
  background: #f3e4d8;
  border-radius: 48px 0 0 48px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.steps div {
  min-height: 260px;
  padding: 24px;
  background: var(--white);
  border-bottom: 5px solid var(--gold);
  border-radius: 24px;
}

.steps span {
  color: var(--wine);
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.content-band {
  padding: 70px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 46px;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
}

.contact-form {
  background: var(--white);
  border-radius: 34px;
  padding: 34px;
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  font-family: Arial, sans-serif;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(108, 33, 55, 0.2);
  border-radius: 18px;
  padding: 14px 16px;
  font: inherit;
  background: #fffaf5;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--wine);
  font-weight: 700;
}

footer {
  padding: 32px;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: 24px;
    flex-direction: column;
  }

  .nav-links.open {
    display: flex;
  }

  .hero,
  .intro,
  .lookbook,
  .fabric-lab,
  .atelier,
  .contact {
    grid-template-columns: 1fr;
  }

  .collection-grid,
  .steps,
  .numbers,
  .lookbook-strip,
  .fabric-board {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 420px;
  }

  .panel.dark,
  .panel.light {
    border-radius: 32px;
  }
}
