:root {
  --ink: #17201d;
  --muted: #5e6863;
  --paper: #f6f2ea;
  --paper-2: #eee7da;
  --accent: #315848;
  --accent-dark: #203b31;
  --line: rgba(23, 32, 29, .14);
  --white: #fffdf9;
  --radius: 24px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 28px;
  background: rgba(246,242,234,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark {
  display: grid; place-items: center; width: 34px; height: 34px;
  border: 1px solid var(--ink); border-radius: 50%; font-family: Georgia, serif;
}
.brand-name { font-weight: 800; letter-spacing: .18em; font-size: 14px; }
.nav { display: flex; align-items: center; gap: 24px; font-size: 14px; }
.nav a { text-decoration: none; }
.nav-cta { padding: 10px 15px; border-radius: 999px; border: 1px solid var(--ink); }

main { overflow: hidden; }
.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 60px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px 28px 92px;
}
.hero-copy { max-width: 760px; }
.eyebrow { margin: 0 0 14px; font-size: 12px; font-weight: 800; letter-spacing: .18em; color: var(--accent); }
.eyebrow.light { color: #d9e6df; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.025em; margin-top: 0; }
h1 { font-size: clamp(48px, 6.3vw, 92px); line-height: .98; margin-bottom: 28px; max-width: 900px; }
h2 { font-size: clamp(36px, 4vw, 60px); line-height: 1.04; margin-bottom: 18px; }
h3 { font-size: 28px; margin-bottom: 12px; }
.hero-text { max-width: 650px; font-size: 19px; color: var(--muted); margin: 0 0 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; padding: 14px 20px; border-radius: 999px; text-decoration: none; font-weight: 750; font-size: 14px; }
.button.primary { background: var(--accent); color: white; }
.button.secondary { border: 1px solid var(--line); background: rgba(255,255,255,.35); }
.hero-notes { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 34px; color: var(--muted); font-size: 13px; }
.hero-notes span::before { content: "•"; color: var(--accent); margin-right: 8px; }

.hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.86), transparent 26%),
    linear-gradient(145deg, #d9d1c2, #b8c5bd 48%, #6f8e80);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}
.fabric-card {
  position: absolute;
  width: 230px;
  min-height: 145px;
  padding: 26px;
  background: rgba(255,253,249,.9);
  border: 1px solid rgba(23,32,29,.12);
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(31,47,40,.14);
  transform: rotate(-5deg);
}
.fabric-card span { display: block; font-family: Georgia, serif; font-size: 42px; }
.fabric-card small { display: block; margin-top: 8px; color: var(--muted); }
.fabric-card-a { top: 74px; left: 42px; }
.fabric-card-b { bottom: 74px; right: 42px; transform: rotate(7deg); }
.stitch { position: absolute; border: 2px dashed rgba(255,255,255,.6); border-radius: 999px; }
.stitch-one { width: 250px; height: 250px; right: -70px; top: 18px; }
.stitch-two { width: 190px; height: 190px; left: -45px; bottom: 15px; }

.section { max-width: 1240px; margin: 0 auto; padding: 100px 28px; border-top: 1px solid var(--line); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.body-copy { max-width: 590px; font-size: 18px; color: var(--muted); }
.body-copy p { margin: 0 0 18px; }
.section-heading { max-width: 720px; margin-bottom: 42px; }
.section-heading > p:last-child { color: var(--muted); font-size: 18px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.product-card { min-height: 290px; padding: 28px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255,255,255,.26); }
.product-number { display: inline-block; margin-bottom: 70px; color: var(--accent); font-size: 12px; font-weight: 800; }
.product-card p { color: var(--muted); margin-bottom: 0; }

.wholesale { padding-top: 40px; }
.wholesale-panel { padding: clamp(36px, 7vw, 86px); background: var(--accent-dark); color: var(--white); border-radius: 34px; }
.wholesale-panel h2 { max-width: 820px; }
.wholesale-panel p { max-width: 640px; color: #d9e1dd; font-size: 18px; }
.light-button { margin-top: 12px; background: var(--white); color: var(--accent-dark); }

.contact { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-item { min-height: 130px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; text-decoration: none; background: rgba(255,255,255,.22); }
.contact-item span { display: block; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 20px; }
.contact-item strong { font-size: 16px; word-break: break-word; }

.footer { max-width: 1240px; margin: 0 auto; padding: 42px 28px 60px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto; gap: 18px 40px; align-items: end; }
.footer strong { letter-spacing: .18em; }
.footer p { color: var(--muted); font-size: 13px; margin: 10px 0 0; }
.footer-links { display: flex; gap: 18px; font-size: 13px; }
.copyright { grid-column: 1 / -1; }

.legal-page { max-width: 850px; margin: 0 auto; padding: 90px 28px 120px; }
.legal-page h1 { font-size: clamp(42px, 6vw, 72px); }
.legal-page h2 { font-size: 28px; margin-top: 44px; }
.legal-page p, .legal-page li { color: var(--muted); }
.legal-page .back { display: inline-block; margin-bottom: 36px; text-decoration: none; font-weight: 700; }

@media (max-width: 900px) {
  .nav a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 64px; }
  .hero-visual { min-height: 420px; }
  .split, .contact { grid-template-columns: 1fr; gap: 30px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { min-height: 230px; }
  .product-number { margin-bottom: 36px; }
}

@media (max-width: 600px) {
  .site-header { padding: 14px 18px; }
  .hero, .section, .footer { padding-left: 18px; padding-right: 18px; }
  .hero { min-height: auto; padding-top: 48px; padding-bottom: 70px; }
  h1 { font-size: 48px; }
  .hero-visual { min-height: 350px; border-radius: 28px; }
  .fabric-card { width: 190px; min-height: 120px; padding: 20px; }
  .fabric-card span { font-size: 34px; }
  .fabric-card-a { left: 20px; top: 45px; }
  .fabric-card-b { right: 20px; bottom: 50px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; }
}
