:root {
  --bg: #f3ece2;
  --paper: #fffaf3;
  --ink: #191512;
  --muted: #776b60;
  --line: #ded1c1;
  --denim: #24384c;
  --denim-2: #314c67;
  --accent: #9a5a38;
  --shadow: 0 28px 80px rgba(47, 34, 23, 0.16);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 14% 0%, rgba(154, 90, 56, 0.13), transparent 34%), linear-gradient(180deg, var(--bg), #eee2d3);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  backdrop-filter: blur(16px);
}
.logo {
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}
nav a { text-decoration: none; }
nav a:hover { color: var(--ink); }
main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 64px 0 52px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 9vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.075em;
}
.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
  margin-bottom: 30px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--line);
}
.button.primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.button.ghost {
  background: rgba(255, 250, 243, 0.5);
}
.visual {
  position: relative;
  min-height: 520px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent), linear-gradient(145deg, var(--denim), var(--denim-2));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.visual:before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 38px), repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 38px);
  opacity: 0.55;
}
.denim-block {
  position: absolute;
  right: -68px;
  bottom: -74px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
}
.label-card {
  position: absolute;
  left: 44px;
  top: 44px;
  width: 280px;
  height: 170px;
  padding: 24px;
  border-radius: 28px;
  background: #ead7c1;
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(0,0,0,0.22);
  transform: rotate(-4deg);
}
.label-card span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  letter-spacing: -0.06em;
}
.label-card small {
  display: block;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 96px;
}
.split, .order, .contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  margin-bottom: 18px;
}
.section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,250,243,0.62);
  box-shadow: var(--shadow);
}
.card h3 {
  font-size: 28px;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}
.steps {
  display: grid;
  gap: 12px;
}
.steps div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,250,243,0.56);
}
.steps span {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 0.12em;
}
.steps p {
  margin: 8px 0 0;
  font-size: 16px;
}
.wide { grid-column: 1 / -1; }
.contact-links {
  display: grid;
  gap: 12px;
  align-content: start;
}
.contact-links a {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,250,243,0.6);
  text-decoration: none;
  font-weight: 900;
}
.contact-links a:hover { border-color: var(--accent); }
footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 820px) {
  .topbar { align-items: flex-start; flex-direction: column; }
  .hero, .split, .order, .contact { grid-template-columns: 1fr; }
  .visual { min-height: 360px; }
  .cards { grid-template-columns: 1fr; }
  .section { padding: 54px 0; }
}
