:root {
  --ink: #25211f;
  --muted: #6f6762;
  --paper: #ffffff;
  --soft: #f7f3ee;
  --line: #e3dbd2;
  --rose: #a2645e;
  --green: #60735b;
  --gold: #b18438;
  --blue: #365f78;
  --shadow: 0 18px 48px rgba(45, 36, 32, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px max(18px, calc((100vw - 1120px) / 2));
  background: rgba(247, 243, 238, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: var(--rose);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 22px;
}
.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); font-size: 11px; }
nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
  font-size: 13px;
  font-weight: 700;
}
nav a { text-decoration: none; color: var(--muted); }
nav a:hover { color: var(--rose); }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 30px;
  align-items: center;
  width: min(1120px, calc(100% - 36px));
  min-height: 560px;
  margin: 0 auto;
  padding: 70px 0 54px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 1.12; }
h1 {
  max-width: 760px;
  font-size: clamp(36px, 7vw, 78px);
  letter-spacing: 0;
}
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: 20px; }
p { color: var(--muted); line-height: 1.7; }
.hero p:not(.eyebrow) { max-width: 650px; font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}
.button.primary { color: #fff; background: var(--rose); }
.button.secondary { color: var(--ink); background: #fff; border: 1px solid var(--line); }
.status-card {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.status-card span { color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.status-card strong { display: block; margin: 8px 0 18px; font-size: 24px; }
dl { margin: 0; }
dl div { display: grid; grid-template-columns: 100px 1fr; gap: 10px; padding: 10px 0; border-top: 1px solid var(--line); }
dt { color: var(--muted); }
dd { margin: 0; font-weight: 800; }
.notice-band {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto 24px;
  padding: 16px 18px;
  color: #3d302b;
  background: #fff5df;
  border: 1px solid #e1c681;
  border-radius: 8px;
}
.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 56px 0;
  border-top: 1px solid var(--line);
}
.section-heading { margin-bottom: 24px; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.product-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.product-media { min-height: 220px; background: linear-gradient(135deg, #efe0d8, #d5e0d0); }
.product-media.shorts { background: linear-gradient(135deg, #eee4d9, #d9c0a8); }
.product-media.trousers { background: linear-gradient(135deg, #f2efe8, #c8d8df); }
.product-body { padding: 18px; }
.sku { color: var(--blue); font-size: 12px; font-weight: 900; }
.product-body strong { display: block; margin: 12px 0; font-size: 20px; }
.text-link { color: var(--rose); font-weight: 900; }
.two-col { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr); gap: 28px; align-items: start; }
.link-list {
  display: grid;
  gap: 10px;
}
.link-list a {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
}
.link-list a::after { content: "→"; color: var(--rose); }
.sync-panel { background: #eef2eb; width: 100%; max-width: none; padding-inline: max(18px, calc((100vw - 1120px) / 2)); }
.link-list.dark a { background: #27342a; color: #fff; border-color: #27342a; }
.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0;
  color: var(--muted);
  font-size: 13px;
}
.page {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: 56px 0 80px;
}
.page-card {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.page-card ul { color: var(--muted); line-height: 1.8; }
@media (max-width: 760px) {
  .topbar { align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; }
  .hero, .two-col { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 42px; }
  .product-grid { grid-template-columns: 1fr; }
  .footer { flex-direction: column; }
}