:root {
  --brown-950: #2b1b14;
  --brown-900: #3b261c;
  --brown-800: #513528;
  --brown-700: #6b4736;
  --sand-100: #f6f0e7;
  --sand-200: #ede1d2;
  --sand-300: #dcc8b2;
  --cream: #fffaf3;
  --white: #ffffff;
  --ink: #251d19;
  --muted: #6f625a;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(43, 27, 20, 0.12);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section { padding: 100px 0; }
.section-soft { background: var(--sand-100); }
.eyebrow {
  margin: 0 0 14px;
  color: var(--brown-700);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}
h1 { font-size: clamp(2.65rem, 6vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); margin-bottom: 24px; }
h3 { font-size: 1.45rem; }
p { color: var(--muted); }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}
.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 20px; top: 20px; z-index: 999;
  background: white; padding: 12px 18px;
}

.logo_RA {
  width: 11rem !important;
  height: 8rem !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 243, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(81, 53, 40, .1);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand img { width: 52px; height: 52px; }
.brand span { display: flex; flex-direction: column; }
.brand strong { color: var(--brown-900); font-family: Georgia, serif; font-size: 1.15rem; }
.brand small { color: var(--muted); font-size: .76rem; letter-spacing: .06em; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav > a:not(.btn) { font-size: .94rem; font-weight: 650; }
.main-nav > a:not(.btn):hover { color: var(--brown-700); }

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 26px; height: 2px;
  margin: 5px 0;
  background: var(--brown-900);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 13px 24px;
  border: 1px solid var(--brown-800);
  border-radius: 999px;
  background: var(--brown-800);
  color: white;
  font-weight: 750;
  cursor: pointer;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--brown-950); }
.btn-small { min-height: 42px; padding: 10px 19px; }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.75); }
.btn-outline:hover { background: white; color: var(--brown-900); }
.btn-light { background: white; color: var(--brown-900); border-color: white; }

.hero {
  min-height: calc(100vh - 82px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--brown-900);
}
.hero-image, .hero-overlay {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.hero-image { object-fit: cover; }
.hero-overlay {
  background: linear-gradient(90deg, rgba(37, 23, 17, .9) 0%, rgba(37, 23, 17, .58) 52%, rgba(37, 23, 17, .18) 100%);
}
.hero-content { position: relative; z-index: 2; padding-block: 90px; color: white; }
.hero-content .eyebrow, .hero-content p { color: rgba(255,255,255,.82); }
.hero-content h1 { max-width: 880px; margin-bottom: 24px; }
.hero-text { max-width: 690px; font-size: 1.16rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 70px;
  align-items: start;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.value-card {
  padding: 26px;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}
.value-card span { color: var(--brown-700); font-size: .78rem; font-weight: 800; }
.value-card h3 { margin: 18px 0 9px; }
.value-card p { margin: 0; font-size: .94rem; }

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 48px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  overflow: hidden;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--sand-200);
}
.product-card div { padding: 25px; }
.product-card h3 { margin-bottom: 9px; }
.product-card p { margin: 0; }

.wholesale {
  background: var(--white);
}
.wholesale-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr;
  gap: 80px;
  align-items: center;
}

.wholesale-card.custom_footer {
  background: transparent !important;
}
.section_grossiste {
  margin-bottom: 6rem;
}
.check-list { padding: 0; margin: 28px 0 34px; list-style: none; }
.check-list li {
  position: relative;
  padding: 9px 0 9px 34px;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brown-700);
  font-weight: 900;
}
.wholesale-card {
  padding: 38px;
  border-radius: var(--radius);
  background: var(--sand-100);
  border: 1px solid var(--sand-300);
}
.card-label { color: var(--brown-700); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; }
.wholesale-card ol { padding-left: 22px; }
.wholesale-card li { padding: 7px 0; }

.cta-section { padding: 0 0 100px; }
.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 55px;
  border-radius: 30px;
  background: var(--brown-900);
  color: white;
}
.cta-box h2 { margin-bottom: 10px; }
.cta-box p { color: rgba(255,255,255,.74); margin-bottom: 0; }

.site-footer {
  padding: 70px 0 24px;
  background: var(--brown-950);
  color: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 50px;
}
.footer-brand strong { color: white; }
.footer-brand small, .site-footer p { color: rgba(255,255,255,.62); }
.site-footer a { display: block; margin: 7px 0; color: rgba(255,255,255,.85); }
.site-footer a:hover { color: white; }
.footer-title { font-family: inherit; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .9rem;
}
.footer-bottom p { margin: 0; }

.page-hero {
  padding: 100px 0 78px;
  background: var(--sand-100);
}
.page-hero p { max-width: 720px; font-size: 1.08rem; }
.page-hero h1 { font-size: clamp(2.7rem, 5vw, 4.8rem); margin-bottom: 22px; }

.contact-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
  align-items: start;
}
.contact-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--sand-300);
}
.contact-item span {
  display: block;
  color: var(--brown-700);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-item a { display: block; font-weight: 750; }
.contact-item p { margin: 0; }
.contact-note {
  margin-top: 30px;
  padding: 22px;
  background: var(--sand-100);
  border-radius: 16px;
}
.contact-note p { margin-bottom: 0; }

.form-card {
  padding: 38px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
label {
  display: block;
  margin-bottom: 20px;
  color: var(--brown-900);
  font-size: .9rem;
  font-weight: 750;
}
input, textarea, select {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  border: 1px solid #d6c6b8;
  border-radius: 12px;
  background: #fffdf9;
  color: var(--ink);
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--brown-700);
  box-shadow: 0 0 0 3px rgba(107,71,54,.12);
}
textarea { resize: vertical; }
.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
  color: var(--muted);
}
.checkbox input { width: auto; margin-top: 5px; }
.honeypot { position: absolute !important; left: -9999px !important; }
.submit-btn { width: 100%; }
.form-status { min-height: 24px; margin: 12px 0 0; text-align: center; }

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--sand-100);
}
.thanks-card {
  max-width: 650px;
  padding: 54px;
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
  text-align: center;
}
.thanks-card img { margin: 0 auto 20px; }
.thanks-card h1 { font-size: clamp(2.2rem, 5vw, 4rem); }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 10px; }
  .two-columns, .section-heading, .wholesale-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-box { align-items: flex-start; flex-direction: column; }

  .logo_RA {
    width: 7rem !important;
    height: 5rem !important;
  }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .hero { min-height: 720px; }
  .hero-overlay { background: rgba(37,23,17,.72); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .values-grid, .products-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .cta-section { padding-bottom: 72px; }
  .cta-box, .form-card, .thanks-card { padding: 30px 22px; }
  .footer-bottom { flex-direction: column; }
  .brand small { display: none; }
}
