:root {
  --bg: #FBFAF7;
  --surface: #F1EEE6;
  --line: #E2DCCF;
  --accent: #B8862A;
  --accent-2: #2B8C82;
  --text: #1B1A17;
  --muted: #736B5C;
  --radius: 2px;
  --wrap: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, .display {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
  margin: 0;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.ridge { width: 100%; height: 40px; }
.ridge svg { width: 100%; height: 100%; display: block; }

header.site {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
header.site .bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: var(--wrap); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 40px; height: 40px; border-radius: 50%; }
.brand .name { font-family: 'Oswald', sans-serif; font-size: 18px; letter-spacing: 0.08em; }
.brand .name span { color: var(--accent); }

.header-actions { display: flex; gap: 10px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: var(--radius);
  font-family: 'Oswald', sans-serif; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
  border: 1px solid var(--accent);
}
.btn-solid { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.btn-ghost { background: transparent; color: var(--accent-2); }

/* Hero */
.hero img { width: 100%; height: auto; display: block; }
.hero-note {
  text-align: center; padding: 10px 20px; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
  background: var(--surface);
}

/* Product — flexbox, not grid, for maximum preview/browser compatibility */
.product {
  padding: 64px 0 52px;
  display: flex; flex-wrap: wrap; gap: 48px; align-items: center;
}
.product-copy { flex: 1 1 460px; min-width: 300px; }
.product-visual { flex: 1 1 360px; min-width: 280px; background: var(--surface); border: 1px solid var(--line); padding: 16px; }
.product .eyebrow { font-family: 'Oswald', sans-serif; color: var(--accent); font-size: 13px; letter-spacing: 0.16em; margin-bottom: 10px; }
.product h2 { font-size: clamp(28px, 5vw, 42px); line-height: 1.05; margin-bottom: 16px; }
.product .desc { color: var(--muted); font-size: 16px; max-width: 46ch; margin-bottom: 24px; }
.price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 24px; }
.price { font-family: 'Oswald', sans-serif; font-size: 30px; color: var(--accent); }
.price-unit { color: var(--muted); font-size: 13px; text-transform: uppercase; }

.facts { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 24px; }
.facts li { font-size: 14px; display: flex; align-items: center; gap: 9px; flex: 1 1 45%; }
.facts li::before { content: ''; width: 7px; height: 7px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

/* Story */
.story { background: var(--surface); padding: 56px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.story .wrap { max-width: 720px; }
.story h3 { font-size: clamp(22px, 3.4vw, 28px); margin-bottom: 16px; }
.story p { color: var(--muted); }
.story .partner-mark { display: flex; justify-content: center; gap: 32px; margin-top: 28px; }
.story .partner-mark img { height: 56px; width: 56px; border-radius: 50%; }

footer.site { border-top: 1px solid var(--line); padding: 36px 0 26px; }
footer.site .foot-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; }
footer.site .foot-brand { display: flex; align-items: center; gap: 10px; }
footer.site .foot-brand img { width: 30px; height: 30px; border-radius: 50%; }
footer.site .foot-actions { display: flex; gap: 10px; flex-wrap: wrap; }
footer.site .foot-contact { font-size: 13px; color: var(--muted); }
footer.site .compliance { border-top: 1px solid var(--line); padding-top: 16px; font-size: 11px; color: var(--muted); line-height: 1.6; }
