:root {
  --bg: oklch(97.5% 0.008 60);
  --ink: oklch(24% 0.01 60);
  --ink-soft: oklch(38% 0.01 60);
  --accent: oklch(46% 0.09 45);
  --accent-hover: oklch(38% 0.09 45);
  --card-bg: #fff;
  --logo-bg: oklch(95% 0.008 60);
  --dark: oklch(24% 0.015 55);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

.wrap { max-width: 1280px; margin: 0 auto; padding-left: clamp(20px, 5vw, 56px); padding-right: clamp(20px, 5vw, 56px); }

header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 56px);
  max-width: 1280px;
  margin: 0 auto;
}

.brand {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 24px;
  font-weight: 600;
}

nav { display: flex; align-items: center; flex-wrap: wrap; gap: clamp(16px, 3vw, 36px); font-size: 15px; }
nav a { color: inherit; }

.hero {
  padding: 48px 24px;
  background: var(--logo-bg);
}
.hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1.1;
  font-weight: 500;
  max-width: 680px;
  margin: 0;
}
.hero p {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 560px;
  margin-top: 16px;
  line-height: 1.5;
}

.intro { padding: 88px 0 40px; }
.eyebrow {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}
.intro-grid { display: flex; flex-wrap: wrap; gap: 40px 56px; align-items: flex-start; }
.intro-grid h2 {
  flex: 1 1 320px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
}
.intro-grid p { flex: 1 1 320px; font-size: 16px; line-height: 1.7; color: var(--ink-soft); margin: 0; }

.brands { padding: 40px 0 100px; }
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.brand-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(20, 16, 12, 0.08);
}
.brand-card .logo-box {
  aspect-ratio: 1;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--logo-bg);
}
.brand-card .logo-box img { width: 100%; height: 100%; object-fit: contain; }
.brand-card .body { padding: 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.brand-card h3 { font-family: Georgia, 'Times New Roman', serif; font-size: 18px; font-weight: 500; margin: 0; }
.brand-card p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0; flex: 1; }
.brand-card .link { font-size: 14px; font-weight: 500; margin-top: 8px; }

.webshops { background: var(--dark); padding: 72px clamp(20px, 5vw, 56px); }
.webshops-grid { max-width: 1280px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 40px 56px; align-items: center; }
.webshops-text { flex: 1 1 380px; }
.webshops h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 30px;
  font-weight: 500;
  color: #fdfaf6;
  margin: 0 0 14px;
  line-height: 1.3;
}
.webshops-text p { color: oklch(85% 0.01 60); font-size: 16px; line-height: 1.6; margin: 0; max-width: 480px; }
.webshops-links { flex: 1 1 320px; display: flex; flex-direction: column; gap: 14px; }
.shop-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 26px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
}
.shop-link.primary { background: #fdfaf6; color: var(--ink); }
.shop-link.secondary { background: transparent; border: 1px solid oklch(60% 0.01 60 / 0.4); color: #fdfaf6; }

footer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px clamp(20px, 5vw, 56px) 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  font-size: 14px;
  color: var(--ink-soft);
}
footer .col-title { font-weight: 500; color: var(--ink); margin-bottom: 10px; }
footer .brand-name { font-family: Georgia, 'Times New Roman', serif; font-size: 20px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
footer .links { display: flex; flex-direction: column; gap: 8px; }
.copyright { grid-column: 1 / -1; border-top: 1px solid oklch(85% 0.01 60); padding-top: 20px; margin-top: 8px; }
