:root {
  --ink: #161114;
  --muted: #6e6268;
  --paper: #fffafc;
  --panel: #ffffff;
  --berry: #9f1638;
  --berry-dark: #731027;
  --blush: #f8dfe6;
  --gold: #c99636;
  --line: #eadde2;
  --shadow: 0 24px 70px rgba(85, 24, 43, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.wrap { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(234, 221, 226, .85);
  background: rgba(255, 250, 252, .93);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -.04em;
  font-size: 1.35rem;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--berry);
  font-family: Georgia, serif;
  font-size: 1.2rem;
  box-shadow: 0 8px 24px rgba(159, 22, 56, .24);
}
.nav-links { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.nav-links a {
  text-decoration: none;
  color: #493d42;
  font-weight: 650;
  font-size: .94rem;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--berry); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--berry);
  color: white;
  font-weight: 760;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--berry-dark); }
.button.secondary { background: white; color: var(--berry); border: 1px solid var(--line); }
.hero {
  padding: 72px 0 64px;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 9%, rgba(248, 223, 230, .9), transparent 31rem),
    linear-gradient(180deg, #fffafd 0%, #fff8fa 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--berry);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.08; margin-top: 0; letter-spacing: -.035em; }
h1 { margin-bottom: 24px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 500; }
h2 { margin-bottom: 20px; font-size: clamp(2.1rem, 4vw, 3.8rem); }
h3 { margin-bottom: 12px; font-size: 1.25rem; }
.lede { max-width: 660px; color: var(--muted); font-size: clamp(1.06rem, 2vw, 1.28rem); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.hero-visual { position: relative; min-height: 560px; }
.hero-card {
  position: absolute;
  inset: 0 0 0 8%;
  overflow: hidden;
  border-radius: 48% 48% 24px 24px;
  background: white;
  box-shadow: var(--shadow);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.floating-note {
  position: absolute;
  left: 0;
  bottom: 34px;
  width: 210px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 50px rgba(61, 24, 37, .16);
  backdrop-filter: blur(10px);
}
.floating-note strong { display: block; margin-bottom: 4px; color: var(--berry); }
.floating-note span { color: var(--muted); font-size: .9rem; }
.section { padding: 92px 0; }
.section.alt { background: #fff; }
.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading p { color: var(--muted); font-size: 1.08rem; }
.about-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 68px; align-items: start; }
.fact-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(71, 29, 42, .07);
}
.fact { padding: 14px 0; border-bottom: 1px solid var(--line); }
.fact:last-child { border: 0; }
.fact small { display: block; color: var(--muted); }
.fact strong { display: block; margin-top: 3px; }
.prose { color: #51464a; font-size: 1.08rem; }
.prose p:first-child { margin-top: 0; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
}
.product-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.product-copy { padding: 22px; }
.product-copy p { margin: 0; color: var(--muted); }
.data-panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  padding: clamp(30px, 6vw, 68px);
  color: white;
  border-radius: 34px;
  background: #23171d;
  box-shadow: var(--shadow);
}
.data-panel .eyebrow { color: #f4a8ba; }
.data-panel p { color: #d9ccd1; }
.principles { display: grid; gap: 12px; }
.principle { padding: 18px; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; background: rgba(255,255,255,.045); }
.principle strong { display: block; margin-bottom: 3px; }
.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 42px;
  border-radius: 28px;
  background: var(--blush);
}
.contact-card p { margin-bottom: 0; color: #59474e; }
.email { font-size: clamp(1.15rem, 2.7vw, 1.75rem); font-weight: 800; color: var(--berry); text-decoration-thickness: 2px; text-underline-offset: 5px; }
.legal-hero { padding: 74px 0 46px; background: linear-gradient(180deg, #fffafd, #fff5f8); }
.legal-hero h1 { font-size: clamp(2.7rem, 6vw, 5rem); }
.legal { max-width: 820px; padding: 54px 0 90px; }
.legal h2 { margin-top: 46px; font-size: 1.65rem; }
.legal h3 { margin-top: 32px; font-size: 1.15rem; }
.legal p, .legal li { color: #574c50; }
.legal li + li { margin-top: 8px; }
.updated { color: var(--muted); }
.site-footer { padding: 40px 0; color: #766970; border-top: 1px solid var(--line); background: #fff; }
.footer-grid { display: flex; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: inherit; }

@media (max-width: 860px) {
  .nav { align-items: flex-start; padding: 18px 0; }
  .nav-links { justify-content: flex-end; gap: 14px; }
  .hero { padding-top: 46px; }
  .hero-grid, .about-grid, .data-panel { grid-template-columns: 1fr; }
  .hero-visual { min-height: 460px; max-width: 620px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .wrap { width: min(100% - 28px, 1160px); }
  .nav { display: block; }
  .nav-links { margin-top: 16px; justify-content: flex-start; }
  .hero-visual { min-height: 390px; }
  .hero-card { inset: 0; }
  .floating-note { width: 180px; padding: 14px; }
  .section { padding: 68px 0; }
  .product-grid { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; padding: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
