:root {
  --bg: #f6ecdd;
  --bg-soft: #fffaf2;
  --surface: rgba(255, 250, 242, 0.82);
  --surface-strong: #fffdf9;
  --text: #2f2219;
  --text-soft: #6d5645;
  --primary: #bb5a1d;
  --primary-dark: #7b3510;
  --accent: #efb75c;
  --accent-soft: #f8dcc0;
  --accent-strong: #ffd28b;
  --border: rgba(94, 58, 30, 0.12);
  --shadow: 0 24px 60px rgba(70, 39, 16, 0.12);
  --shadow-soft: 0 16px 35px rgba(70, 39, 16, 0.08);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Trebuchet MS", "Avenir Next", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(239, 183, 92, 0.28), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(187, 90, 29, 0.14), transparent 20%),
    linear-gradient(180deg, #fffaf2 0%, var(--bg) 45%, #f2e3d0 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.35), transparent 22%),
    radial-gradient(circle at 80% 12%, rgba(240, 187, 98, 0.18), transparent 20%),
    radial-gradient(circle at 75% 78%, rgba(185, 95, 32, 0.12), transparent 18%);
  opacity: 0.9;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  top: -10rem;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  border-radius: 40% 60% 60% 40%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(239, 183, 92, 0.18));
  filter: blur(8px);
  pointer-events: none;
  z-index: -1;
}

main::before {
  content: "";
  position: fixed;
  left: -6rem;
  bottom: 8rem;
  width: 18rem;
  height: 18rem;
  border-radius: 55% 45% 60% 40%;
  background: linear-gradient(135deg, rgba(248, 220, 192, 0.28), rgba(255, 255, 255, 0.1));
  filter: blur(10px);
  pointer-events: none;
  z-index: -1;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(255, 250, 242, 0.74);
  border-bottom: 1px solid rgba(94, 58, 30, 0.08);
  box-shadow: 0 10px 24px rgba(70, 39, 16, 0.04);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  position: relative;
}

.logo::after {
  content: "";
  display: block;
  width: 2.8rem;
  height: 0.22rem;
  margin-top: 0.3rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.nav a {
  position: relative;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text-soft);
  transition: 0.25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.45rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.4);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--surface-strong);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 10px 22px rgba(137, 66, 17, 0.22);
}

.nav a:hover::after,
.nav a.active::after {
  opacity: 0.9;
  transform: scaleX(1);
}

.hero,
.quick-overview,
.page-banner,
.section,
.site-footer {
  position: relative;
}

.hero {
  padding: 5.5rem 0 3.6rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  right: 0;
  width: min(32rem, 48vw);
  height: 18rem;
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(239, 183, 92, 0.12)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0 10px, transparent 10px 20px);
  transform: rotate(-8deg);
  pointer-events: none;
}

.hero-grid,
.about-grid,
.story-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  position: relative;
}

.about-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.about-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  position: relative;
  min-height: 46rem;
  padding-right: 3rem;
}

.hero-copy h1,
.page-banner h1,
.section-heading h2,
.story h2,
.contact-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
  margin: 0;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  max-width: 10ch;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.hero-copy h2 {
  margin: 0 0 1rem;
  max-width: 22ch;
  color: var(--primary-dark);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.25;
}

.hero-copy p,
.page-banner p,
.story p,
.product-content p,
.contact-card p,
.info-card p {
  color: var(--text-soft);
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(185, 95, 32, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.01);
}

.btn-primary {
  color: #fff9f1;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 16px 32px rgba(137, 66, 17, 0.22);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.35) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

.btn-secondary {
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(137, 66, 17, 0.14);
}

.hero-facts,
.product-points,
.contact-card ol {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
}

.hero-facts li,
.product-points li,
.contact-card ol li {
  margin-bottom: 0.5rem;
}

.card-surface,
.info-card,
.product-card,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card-surface:hover,
.info-card:hover,
.product-card:hover,
.contact-card:hover,
.overview-item:hover,
.legal-card:hover,
.about-point:hover,
.section-intro:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(70, 39, 16, 0.16);
  border-color: rgba(185, 95, 32, 0.24);
}

.hero-visual {
  position: relative;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.86), rgba(255, 241, 220, 0.72));
  isolation: isolate;
}

.about-visual {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.86), rgba(255, 241, 220, 0.72));
  isolation: isolate;
}

.about-visual-large {
  width: min(100%, 31rem);
}

.about-visual-small {
  position: absolute;
  right: 0;
  bottom: 1.5rem;
  width: min(62%, 18rem);
  margin-left: 0;
}

.hero-image,
.about-image,
.product-image {
  width: 100%;
  object-fit: cover;
}

.hero-image {
  height: 520px;
  border-radius: calc(var(--radius-lg) - 6px);
}

.about-image {
  height: 520px;
  border-radius: calc(var(--radius-lg) - 6px);
}

.about-visual-small .about-image {
  height: 320px;
}

.hero-visual::before,
.about-visual::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 7rem;
  height: 7rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.05));
  z-index: 0;
}

.floating-note {
  position: absolute;
  right: -0.6rem;
  bottom: 1.5rem;
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: rgba(53, 34, 21, 0.88);
  color: #fff9f1;
  animation: floatNote 4.2s ease-in-out infinite;
  box-shadow: 0 18px 30px rgba(25, 14, 8, 0.24);
}

.floating-note span {
  color: #f2d3a7;
}

.section,
.page-banner {
  padding: 4.5rem 0;
}

.quick-overview {
  padding: 0 0 1.5rem;
}

.quick-overview::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.32));
  pointer-events: none;
}

.quick-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: -0.6rem;
}

.overview-item,
.section-intro {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.overview-item {
  display: grid;
  gap: 0.35rem;
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.overview-item:nth-child(2) {
  transform: translateY(1rem);
}

.overview-item:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 248, 236, 0.9), rgba(255, 255, 255, 0.66));
}

.overview-item::after {
  content: "";
  position: absolute;
  top: -1.2rem;
  right: -1.2rem;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 183, 92, 0.26), transparent 70%);
}

.overview-item strong {
  font-size: 1rem;
}

.overview-item span {
  color: var(--text-soft);
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 243, 227, 0.78));
}

.highlights {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(248, 220, 192, 0.18)),
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.6), transparent 18%);
}

.angebote-preview {
  overflow: hidden;
}

.angebote-preview::before {
  content: "";
  position: absolute;
  top: 3rem;
  left: -3rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 183, 92, 0.18), transparent 70%);
  pointer-events: none;
}

.section-heading {
  margin-bottom: 2rem;
  position: relative;
}

.section-heading::after {
  content: "";
  display: block;
  width: 5rem;
  height: 0.28rem;
  margin-top: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.section-intro {
  margin-bottom: 1.5rem;
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(248, 220, 192, 0.4));
}

.section-intro p {
  margin: 0;
  color: var(--text-soft);
}

.about-copy {
  display: grid;
  gap: 1.2rem;
}

.about-copy p {
  margin: 0;
  color: var(--text-soft);
}

.about-highlights {
  display: grid;
  gap: 0.9rem;
}

.timeline-card {
  padding: 1.6rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(248, 220, 192, 0.48));
}

.timeline-card p {
  margin: 0;
  color: var(--text-soft);
}

.timeline-card p + p {
  margin-top: 1rem;
}

.about-point {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.about-point strong {
  display: block;
  margin-bottom: 0.25rem;
}

.section-heading h2,
.story h2,
.page-banner h1,
.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.highlight-grid,
.product-grid {
  display: grid;
  gap: 1.4rem;
}

.highlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlight-grid .info-card:nth-child(2) {
  transform: translateY(1.2rem);
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.95), rgba(255, 239, 215, 0.82));
}

.highlight-grid .info-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 251, 247, 0.95), rgba(248, 220, 192, 0.55));
}

.info-card,
.product-card,
.contact-card {
  border-radius: var(--radius-md);
}

.info-card {
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
}

.info-card::after,
.product-card::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  bottom: -1.5rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 183, 92, 0.18), transparent 70%);
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(185, 95, 32, 0.12);
  color: var(--primary-dark);
  font-weight: 800;
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  overflow: hidden;
  height: 100%;
  position: relative;
}

.product-grid .product-card:nth-child(odd) .product-image {
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

.product-grid .product-card:nth-child(even) .product-image {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 92%);
}

.product-grid .product-card:nth-child(3n) {
  background: linear-gradient(180deg, rgba(255, 248, 236, 0.95), rgba(255, 255, 255, 0.8));
}

.product-image {
  height: 240px;
  transition: transform 0.45s ease;
}

.product-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.4rem;
}

.info-card::before,
.product-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0.35rem;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  opacity: 0.9;
}

.product-card:hover .product-image,
.about-visual:hover .about-image,
.hero-visual:hover .hero-image {
  transform: scale(1.04);
}

.product-content h3,
.info-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.35rem;
  line-height: 1.2;
}

.product-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 1rem 0 0.8rem;
}

.product-weight {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(123, 53, 16, 0.08);
  color: var(--primary-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.4rem;
}

.product-order {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(123, 53, 16, 0.12);
}

.product-meta .btn {
  width: 100%;
  justify-content: center;
  min-height: 54px;
  font-size: 1rem;
}

.angebote-preview .product-order .btn {
  background: linear-gradient(135deg, rgba(123, 53, 16, 0.12), rgba(239, 183, 92, 0.28));
  border: 1px solid rgba(123, 53, 16, 0.18);
  color: var(--primary-dark);
  box-shadow: 0 12px 24px rgba(70, 39, 16, 0.1);
}

.angebote-preview .product-order .btn:hover {
  background: linear-gradient(135deg, rgba(123, 53, 16, 0.18), rgba(239, 183, 92, 0.38));
}

.product-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  margin-top: 1.2rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(123, 53, 16, 0.12), rgba(239, 183, 92, 0.28));
  border: 1px solid rgba(123, 53, 16, 0.18);
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(70, 39, 16, 0.1);
}

.product-more-link:hover {
  background: linear-gradient(135deg, rgba(123, 53, 16, 0.18), rgba(239, 183, 92, 0.38));
  transform: translateY(-2px);
}

.price {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.text-link {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: none;
  position: relative;
}

.text-link::after {
  content: "→";
  margin-left: 0.35rem;
  transition: transform 0.2s ease;
  display: inline-block;
}

.text-link:hover::after {
  transform: translateX(3px);
}

.tag {
  display: inline-block;
  margin-bottom: 0.7rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(240, 187, 98, 0.34), rgba(255, 255, 255, 0.7));
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.featured-card {
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(255, 247, 233, 0.98), rgba(255, 240, 218, 0.9));
  outline: 1px solid rgba(239, 183, 92, 0.26);
}

.featured-card:hover {
  transform: translateY(-12px);
}

.story-grid {
  grid-template-columns: 0.9fr 1.1fr;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(111, 63, 24, 0.95), rgba(164, 87, 31, 0.88));
  color: #fff8ef;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.story {
  padding-top: 1.5rem;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  margin-bottom: 1.6rem;
}

.plan-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.94), rgba(255, 236, 210, 0.72));
  color: var(--primary-dark);
}

.plan-card,
.plan-card strong,
.plan-card p {
  color: var(--primary-dark);
}

.story .plan-card p,
.story .plan-card strong {
  color: var(--primary-dark);
}

.plan-card strong {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  color: var(--primary-dark);
}

.plan-card p {
  margin: 0;
  color: var(--primary-dark);
}

.about-visual::before {
  display: none;
}

.story-grid::before {
  content: "";
  position: absolute;
  top: -4rem;
  right: -3rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.story-grid::after {
  content: "";
  position: absolute;
  left: 2rem;
  bottom: 1.5rem;
  width: 6rem;
  height: 0.28rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-strong), transparent);
}

.story p {
  color: rgba(255, 248, 239, 0.84);
  font-size: 1.08rem;
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-grid .contact-card:first-child {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.9), rgba(255, 238, 215, 0.78));
}

.contact-grid .contact-card:last-child {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 220, 192, 0.42));
}

.contact-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.contact-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 0.5rem;
}

.contact-item {
  display: inline-flex;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease;
}

.contact-item:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.82);
}

.pickup-box {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(255, 255, 255, 0.55);
}

.pickup-box strong {
  display: inline-block;
  margin-bottom: 0.35rem;
}

.qr-box {
  margin-top: 1.5rem;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.qr-box strong {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--primary-dark);
}

.qr-image {
  width: min(100%, 320px);
  margin: 0 auto 0.9rem;
  border-radius: 1rem;
  border: 1px solid rgba(123, 53, 16, 0.12);
  background: #fff;
  box-shadow: 0 12px 28px rgba(70, 39, 16, 0.08);
}

.qr-box p {
  margin: 0;
  color: var(--text-soft);
}

.dates-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
}

.dates-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.date-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.8rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(123, 53, 16, 0.1), rgba(239, 183, 92, 0.24));
  color: var(--primary-dark);
  font-weight: 700;
  border: 1px solid rgba(123, 53, 16, 0.14);
}

.dates-note {
  margin: 1rem 0 0;
  color: var(--text-soft);
  text-align: center;
}

.inline-link {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(123, 53, 16, 0.25);
}

.inline-link:hover {
  border-bottom-color: rgba(123, 53, 16, 0.7);
}

.site-footer {
  margin-top: 3rem;
  padding: 3rem 0 1.2rem;
  background: linear-gradient(180deg, #462d1d 0%, #26170f 100%);
  color: #fdf5ea;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.site-footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 0.25rem;
  background: linear-gradient(90deg, rgba(239, 183, 92, 0.15), rgba(239, 183, 92, 0.9), rgba(239, 183, 92, 0.15));
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.site-footer h3 {
  margin-top: 0;
  margin-bottom: 0.85rem;
  font-family: Georgia, "Times New Roman", serif;
}

.site-footer p {
  margin: 0 0 0.4rem;
  color: rgba(253, 245, 234, 0.76);
}

.footer-bottom {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  color: rgba(253, 245, 234, 0.62);
  font-size: 0.92rem;
}

.footer-link {
  color: #fdf5ea;
  text-decoration: none;
  border-bottom: 1px solid rgba(253, 245, 234, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-link:hover {
  border-bottom-color: rgba(253, 245, 234, 0.8);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy > * {
  animation: fadeUp 0.8s ease both;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 0.08s;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 0.16s;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 0.24s;
}

.hero-copy > *:nth-child(5) {
  animation-delay: 0.32s;
}

.hero-copy > *:nth-child(6) {
  animation-delay: 0.4s;
}

.hero-visual,
.about-visual {
  animation: fadeInScale 0.9s ease 0.15s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes floatNote {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.legal-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.legal-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(255, 248, 236, 0.95), rgba(255, 255, 255, 0.78));
}

.legal-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 220, 192, 0.42));
}

.legal-card::before,
.about-point::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.32rem;
  background: linear-gradient(180deg, var(--accent), var(--primary));
}

.legal-card + .legal-card {
  margin-top: 1.4rem;
}

.legal-card h2 {
  margin: 0 0 0.9rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.legal-card p {
  margin: 0 0 0.85rem;
  color: var(--text-soft);
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  z-index: 30;
  width: min(720px, calc(100% - 2rem));
  padding: 1.2rem;
  border-radius: var(--radius-md);
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.94), rgba(255, 240, 220, 0.88));
  box-shadow: 0 24px 50px rgba(70, 39, 16, 0.18);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner-text strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.cookie-banner-text p {
  margin: 0;
  color: var(--text-soft);
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .quick-overview-grid,
  .highlight-grid,
  .plan-grid,
  .dates-grid,
  .product-grid,
  .story-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .featured-card {
    transform: none;
  }

  .featured-card:hover {
    transform: translateY(-6px);
  }

  .overview-item:nth-child(2),
  .highlight-grid .info-card:nth-child(2) {
    transform: none;
  }

  .hero-image {
    height: 380px;
  }

  .about-image {
    height: 380px;
  }

  .about-gallery {
    min-height: 0;
    padding-right: 0;
  }

  .about-visual-large,
  .about-visual-small {
    width: 100%;
    position: static;
  }

  .about-visual-small .about-image {
    height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
  }

  .nav a {
    text-align: center;
    flex: 1 1 auto;
  }

  .hero {
    padding-top: 2.8rem;
  }

  .hero::before {
    display: none;
  }

  .section,
  .page-banner {
    padding: 3.3rem 0;
  }

  .hero-image {
    height: 300px;
  }

  .about-image {
    height: 300px;
  }

  .about-visual-small .about-image {
    height: 220px;
  }

  .product-meta,
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .floating-note {
    position: static;
    margin-top: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-actions {
    width: 100%;
    flex-direction: column;
  }

}
