
:root {
  --bg: #f5efe6;
  --paper: #fbf8f2;
  --ink: #24160f;
  --muted: #6d5b50;
  --line: #ddcfc0;
  --accent: #8a5a3c;
  --accent-dark: #6f4429;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.narrow { width: min(760px, 100%); }
.center { text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 248, 242, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap,
.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.site-header .wrap { min-height: 76px; }

.brand {
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
}

.nav a[aria-current="page"],
.nav a:hover,
.text-link:hover,
.footer-link:hover { color: var(--accent-dark); }

.lang-switch {
  border-left: 1px solid var(--line);
  padding-left: 18px;
}

.hero { padding: 110px 0 90px; }

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.04;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
}

.lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto;
}

.lead-tight { margin: 0 0 10px; }
.tagline {
  margin-top: 20px;
  color: var(--accent-dark);
  font-style: italic;
  font-size: 1.15rem;
}

.eyebrow,
.section-label,
.microcopy,
.muted {
  color: var(--muted);
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.cta-row { margin-top: 34px; }

.button {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  transition: transform .16s ease, background .16s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.section {
  padding: 84px 0;
  border-top: 1px solid var(--line);
}

.alt { background: rgba(255,255,255,0.36); }

.grid-2,
.product-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: start;
}

.section h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  line-height: 1.14;
  margin: 10px 0 0;
}

.facts {
  margin: 0;
  padding-left: 20px;
}

.facts li { margin-bottom: 10px; }

.photo-frame {
  min-height: 440px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.48)),
    linear-gradient(135deg, #eadbcc, #f8f4ee);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.photo-frame img {
  max-height: 560px;
  width: auto;
  object-fit: contain;
  box-shadow: 0 18px 40px rgba(36, 22, 15, 0.12);
}

.hero-product { padding-bottom: 72px; }

.contact-section .small {
  font-size: 1.05rem;
  max-width: 620px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 36px;
}

.site-footer p {
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .grid-2,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .site-header .wrap,
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 12px 0;
  }

  .nav {
    gap: 14px;
  }

  .lang-switch {
    border-left: 0;
    padding-left: 0;
  }

  .hero { padding: 84px 0 70px; }
  .photo-frame { min-height: 320px; }
}
