:root {
  --bg: #fbf7f2;
  --bg-alt: #f3ead9;
  --ink: #3a2f28;
  --ink-soft: #6b5d51;
  --gold: #b5893a;
  --gold-dark: #8a6526;
  --card-bg: #ffffff;
  --border: #e6d9c3;
  --radius: 14px;
  --serif: "Georgia", "Iowan Old Style", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --shadow: 0 8px 24px rgba(58, 47, 40, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; color: var(--ink); }
h1 { font-size: 2.4rem; }
h2 { font-size: 1.7rem; }
p { color: var(--ink-soft); }

a { color: var(--gold-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.topbar {
  background: var(--gold-dark);
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  padding: 6px 10px;
}

.site-header {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  gap: 16px;
}

.brand-logo { height: 42px; display: block; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}

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

.site-nav a {
  color: var(--ink);
  font-size: 0.95rem;
  white-space: nowrap;
}

.site-nav a.cta {
  background: var(--gold);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
}
.site-nav a.cta:hover { background: var(--gold-dark); text-decoration: none; }

.cart-badge {
  background: var(--gold-dark);
  color: #fff;
  border-radius: 999px;
  padding: 1px 7px;
  font-size: 0.75rem;
}

.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(58,47,40,.75), rgba(58,47,40,.35));
}
.hero-inner { position: relative; z-index: 1; padding: 60px 20px; max-width: 1100px; margin: 0 auto; }
.hero h1 { color: #fff; max-width: 640px; }
.hero p { color: #f3ead9; max-width: 520px; font-size: 1.1rem; }
.btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  margin-top: 18px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn:hover { background: var(--gold-dark); text-decoration: none; }
.btn.secondary { background: transparent; border: 1px solid var(--gold); color: var(--gold-dark); }

section { padding: 56px 0; }
section.alt { background: var(--bg-alt); }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.card img { width: 100%; height: 170px; object-fit: cover; }
.card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.1rem; margin: 0 0 8px; }
.card-body p { font-size: 0.92rem; margin: 0 0 12px; flex: 1; }
.price-tag { font-weight: 700; color: var(--gold-dark); margin-bottom: 10px; }
.golden-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.steps { counter-reset: step; margin-top: 32px; display: flex; flex-direction: column; gap: 22px; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step-num {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}

table.pricing { width: 100%; border-collapse: collapse; margin-top: 20px; }
table.pricing th, table.pricing td { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--border); }
table.pricing th { color: var(--ink-soft); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; }
table.pricing tr:hover { background: var(--bg-alt); }

.promo-box {
  background: var(--gold);
  color: #fff;
  border-radius: var(--radius);
  padding: 24px;
  margin: 28px 0;
}
.promo-box h3 { color: #fff; margin-top: 0; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 24px; }
.contact-grid dt { font-weight: 600; color: var(--ink); margin-top: 14px; }
.contact-grid dd { margin: 2px 0 0; color: var(--ink-soft); }

.cart-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.cart-table th, .cart-table td { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-table img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; }
.cart-total { text-align: right; font-size: 1.2rem; font-weight: 700; margin-top: 16px; }

.qty-form { display: flex; gap: 6px; align-items: center; }
.qty-form input[type=number] { width: 56px; padding: 6px; border: 1px solid var(--border); border-radius: 6px; }

form.order-form { max-width: 520px; margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
form.order-form label { font-weight: 600; font-size: 0.9rem; }
form.order-form input, form.order-form textarea {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}
.form-error { background: #fbeaea; color: #9c3030; padding: 10px 14px; border-radius: 8px; }
.checkbox-row { display: flex; align-items: center; gap: 8px; font-weight: 400; }

.confirmation-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  max-width: 480px;
  margin: 40px auto;
  box-shadow: var(--shadow);
}
.confirmation-box img.qr { width: 220px; height: 220px; margin: 20px auto; display: block; }

.reservio-embed { width: 100%; min-height: 900px; border: none; border-radius: var(--radius); overflow: hidden; }

.site-footer { background: var(--ink); color: #ded2c4; padding: 40px 0 16px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.site-footer a { color: #ded2c4; }
.footer-note { margin-top: 24px; font-size: 0.8rem; opacity: 0.7; }

.usp-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 28px; }
.usp-row .card-body { padding: 0; }

@media (max-width: 780px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    background: var(--card-bg);
    padding: 12px 0;
  }
  .site-nav.open { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
}
