:root {
  color-scheme: only light;
  --ink: #15120f;
  --paper: #f6f0e6;
  --gold: #e0c060;
  --gold-deep: #b98b34;
  --wine: #6b1d2b;
  --leaf: #2a4b3a;
  --shadow: rgba(21, 18, 15, 0.18);
  --card: rgba(255, 255, 255, 0.82);
  --line: rgba(21, 18, 15, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Urbanist", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fffaf0 0%, #f1e4d4 35%, #e7d6c0 100%);
  min-height: 100vh;
}

.texture {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(199, 154, 66, 0.08), rgba(107, 29, 43, 0.05)),
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.45), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.35), transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(255, 255, 255, 0.3), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
  z-index: -2;
}

.grain {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(246, 240, 230, 0.8);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  height: 44px;
  width: auto;
  display: block;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.8;
  transition: all 0.2s ease;
}

.nav a:hover {
  opacity: 1;
  color: var(--gold-deep);
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 20px 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
  gap: 32px;
  align-items: center;
}

.hero-card {
  background: linear-gradient(135deg, rgba(21, 18, 15, 0.92), rgba(28, 22, 18, 0.92));
  color: #f9f2e5;
  padding: 28px;
  border-radius: 28px;
  box-shadow: 0 18px 35px var(--shadow);
  text-align: center;
}

.hero-logo {
  width: 220px;
  max-width: 60vw;
  height: auto;
  display: block;
  margin: 8px auto 16px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
}

.hero-card h1 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.qr-card {
  background: var(--card);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 40px var(--shadow);
  border: 1px solid rgba(199, 154, 66, 0.25);
}

.qr-card h2 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.qr-box {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(21, 18, 15, 0.18);
}

#qr-image {
  width: 210px;
  height: 210px;
}

.qr-actions {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.qr-input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 8px 12px;
  font-size: 14px;
  background-color: #fff;
  color: var(--ink);
}

.btn {
  background: var(--wine);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--wine);
  border: 1px solid var(--wine);
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 80px;
  display: grid;
  gap: 32px;
}

section {
  background: var(--card);
  border-radius: 30px;
  padding: 32px;
  border: 1px solid rgba(21, 18, 15, 0.08);
  box-shadow: 0 18px 35px var(--shadow);
}

section h2 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  border-radius: 20px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.card h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wine);
}

.item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(21, 18, 15, 0.12);
}

.item:last-child {
  border-bottom: none;
}

.item span {
  display: block;
  line-height: 1.4;
}

.price {
  font-weight: 600;
  color: var(--gold-deep);
  white-space: nowrap;
}

.tagline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(21, 18, 15, 0.6);
  margin-bottom: 12px;
}

.note {
  font-size: 13px;
  color: rgba(21, 18, 15, 0.7);
  margin-top: 12px;
}

.floating-qr {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 12px 22px var(--shadow);
  transition: all 0.2s ease;
}

.floating-qr:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media print {
  header,
  .floating-qr,
  .hero-card,
  .qr-actions,
  .tagline {
    display: none;
  }

  body {
    background: #fff;
  }

  .qr-card {
    box-shadow: none;
    border: none;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
}
