:root {
  color-scheme: light;
  --ink: #151515;
  --muted: #68635d;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --line: #dfd8cd;
  --teal: #0e6f67;
  --rust: #b6542f;
  --plum: #5b315f;
  --gold: #c8932d;
  --shadow: 0 18px 45px rgba(35, 31, 25, 0.12);
}

* {
  box-sizing: border-box;
}

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

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

.topbar {
  align-items: center;
  background: rgba(251, 250, 247, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 6vw;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand,
nav {
  align-items: center;
  display: flex;
  gap: 18px;
}

.brand {
  font-weight: 800;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  color: white;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.hero {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  min-height: calc(100vh - 72px);
  padding: 8vh 6vw 9vh;
}

.hero-copy {
  align-self: center;
  max-width: 720px;
}

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

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

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  font-weight: 500;
  line-height: 0.9;
  margin-bottom: 24px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 0.98;
  margin-bottom: 18px;
}

h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button,
button {
  border: 1px solid var(--ink);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 750;
  min-height: 46px;
  padding: 12px 18px;
}

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

.secondary {
  background: transparent;
}

.hero-look {
  align-items: end;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 0.9fr;
  min-height: 460px;
}

.look-card {
  box-shadow: var(--shadow);
  min-height: 220px;
}

.look-outerwear {
  background:
    linear-gradient(140deg, rgba(14, 111, 103, 0.85), rgba(14, 111, 103, 0.45)),
    url("/static/assets/blazer.svg") center / 72% no-repeat #e2ebe6;
  grid-row: span 2;
  min-height: 520px;
}

.look-dress {
  background:
    linear-gradient(150deg, rgba(91, 49, 95, 0.82), rgba(91, 49, 95, 0.2)),
    url("/static/assets/dress.svg") center / 78% no-repeat #efe7ef;
}

.look-trouser {
  background:
    linear-gradient(150deg, rgba(182, 84, 47, 0.76), rgba(200, 147, 45, 0.2)),
    url("/static/assets/trouser.svg") center / 80% no-repeat #f3eadc;
}

.section {
  padding: 84px 6vw;
}

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

.product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-rows: 250px auto;
  overflow: hidden;
}

.product-art {
  align-items: center;
  background: #eee5d8;
  display: flex;
  justify-content: center;
}

.product-art img {
  height: 78%;
  max-width: 76%;
}

.product-body {
  padding: 22px;
}

.product-meta {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  gap: 10px;
  margin-top: 14px;
}

.concierge-band {
  background: #e9eee9;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.concierge-shell {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 0.7fr) minmax(300px, 0.6fr);
}

.tool-panel,
.tool-output,
.policy-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.tool-panel {
  display: grid;
  gap: 16px;
}

label {
  color: var(--muted);
  display: grid;
  font-size: 0.92rem;
  font-weight: 700;
  gap: 8px;
}

input,
select {
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}

.tool-output {
  min-height: 250px;
  white-space: pre-wrap;
}

.policy-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.6fr);
}

footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 28px 6vw;
}

@media (max-width: 980px) {
  .hero,
  .concierge-shell,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

@media (max-width: 640px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 16px;
    padding-top: 16px;
  }

  nav {
    gap: 12px;
    overflow-x: auto;
    width: 100%;
  }

  h1 {
    font-size: 3.2rem;
  }

  .hero-look {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .look-outerwear {
    grid-row: auto;
    min-height: 300px;
  }

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