*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream: #f8f3ea;
  --cream-2: #efe6d6;
  --dark: #191611;
  --gold: #ba9055;
  --gold-light: #d8b27a;
  --muted: #6f675a;
  --border: rgba(145, 114, 69, 0.3);
  --card-border: rgba(145, 114, 69, 0.22);
  --shadow-soft: 0 14px 35px rgba(25, 22, 17, 0.09);
}

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(circle at 12% 12%, rgba(186, 144, 85, 0.08), transparent 32%),
    radial-gradient(circle at 90% 24%, rgba(186, 144, 85, 0.06), transparent 36%),
    var(--cream);
  color: var(--dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
}

section[id] { scroll-margin-top: 6.2rem; }

/* NAV */
nav {
  position: fixed;
  top: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1160px, calc(100% - 2rem));
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.85rem 1.25rem;
  background: rgba(248, 243, 234, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(145, 114, 69, 0.26);
  border-radius: 10px;
  box-shadow: 0 7px 22px rgba(25, 22, 17, 0.08);
  transition: all 0.3s ease;
}

nav.scrolled {
  top: 0.55rem;
  box-shadow: 0 10px 24px rgba(25, 22, 17, 0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 6px;
  background: transparent;
  mix-blend-mode: multiply;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }

.nav-links a {
  font-size: 0.77rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a.active,
.mobile-menu a.active {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(145, 114, 69, 0.32);
  background: transparent;
  color: var(--dark);
  padding: 0.45rem 0.6rem;
  min-width: 42px;
  min-height: 36px;
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle:hover { border-color: var(--gold); color: var(--gold); }

.nav-toggle-icon {
  font-size: 1rem;
  line-height: 1;
}

.nav-toggle-icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon-close {
  display: inline;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-cta {
  background: var(--dark);
  color: var(--cream);
  padding: 0.5rem 1.05rem;
  border-radius: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--dark);
  transition: all 0.25s;
}

.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.nav-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: none;
  background: transparent;
  color: var(--dark);
  border-radius: 0;
  padding: 0;
  font-size: 0.68rem;
  cursor: pointer;
  transform: translateX(100px);
}

.cart-btn-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
}

.nav-cart-btn span {
  position: absolute;
  top: -8px;
  right: -10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  font-size: 0.64rem;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 4.2rem;
  left: 0.5rem;
  right: 0.5rem;
  z-index: 99;
  background: rgba(248, 243, 234, 0.98);
  border: 1px solid rgba(145, 114, 69, 0.26);
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(25, 22, 17, 0.12);
  padding: 0.6rem;
}

.mobile-menu a {
  display: block;
  color: var(--dark);
  text-decoration: none;
  padding: 0.75rem 0.8rem;
  border-radius: 6px;
  font-size: 0.85rem;
  border: 1px solid transparent;
}

.mobile-menu a:hover {
  border-color: rgba(145, 114, 69, 0.28);
  background: rgba(255, 255, 255, 0.7);
}

.mobile-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: auto;
  margin-top: 0.35rem;
  border: none;
  background: transparent;
  border-radius: 0;
  padding: 0.2rem 0.25rem;
  cursor: pointer;
}

.mobile-menu.open { display: block; }

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(22, 17, 12, 0.35);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100vh;
  z-index: 121;
  background: #fffdf9;
  border-left: 1px solid rgba(145, 114, 69, 0.24);
  box-shadow: -12px 0 28px rgba(25, 22, 17, 0.14);
  padding: 1rem;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}

.cart-drawer.open { transform: translateX(0); }

/* HERO */
.hero {
  min-height: 92vh;
  display: block;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 3rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 72% 65% at 50% 40%, #efe2cc 0%, #f8f3ea 68%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.2), transparent 40%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border: 1px solid rgba(145, 114, 69, 0.24);
  background: rgba(248, 243, 234, 0.88);
}

.hero-content {
  position: relative;
  text-align: left;
  padding: clamp(2rem, 4vw, 3.2rem);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7f6033;
  padding: 0;
  margin-bottom: 1.5rem;
  background: transparent;
}

.hero-tag::before,
.hero-tag::after {
  content: '';
  display: block;
  width: 26px;
  height: 1px;
  background: rgba(145, 114, 69, 0.45);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.02;
  color: #17130f;
  text-wrap: balance;
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line-inner {
  display: block;
  opacity: 1;
  transform: none;
  filter: none;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  margin: 1.2rem 0 0;
  font-size: 1.03rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 560px;
  opacity: 1;
  transform: none;
  filter: none;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 0.9rem;
  justify-content: flex-start;
  width: auto;
  flex-wrap: wrap;
  opacity: 1;
  transform: none;
  filter: none;
}

.hero-css-fallback .hero-line-inner {
  opacity: 0;
  transform: translateY(110%);
  filter: blur(6px);
  animation: heroLineReveal 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-css-fallback .hero-line:nth-child(1) .hero-line-inner { animation-delay: 0.2s; }
.hero-css-fallback .hero-line:nth-child(2) .hero-line-inner { animation-delay: 0.32s; }
.hero-css-fallback .hero-line:nth-child(3) .hero-line-inner { animation-delay: 0.44s; }
.hero-css-fallback .hero-line:nth-child(4) .hero-line-inner { animation-delay: 0.56s; }

.hero-css-fallback .hero-tag,
.hero-css-fallback .hero-sub,
.hero-css-fallback .hero-actions {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(4px);
  animation: heroTextIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-css-fallback .hero-tag { animation-delay: 0.06s; }
.hero-css-fallback .hero-sub { animation-delay: 0.72s; }
.hero-css-fallback .hero-actions { animation-delay: 0.9s; }


.hero-media {
  position: relative;
  min-height: 560px;
  background:
    radial-gradient(circle at 65% 35%, rgba(186, 144, 85, 0.22), transparent 48%),
    linear-gradient(145deg, #2a1d13 0%, #1b130d 100%);
  overflow: hidden;
  isolation: isolate;
}

.hero-media-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(82%, 620px);
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}

.hero-rating-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background:
    radial-gradient(circle at 65% 35%, rgba(186, 144, 85, 0.16), transparent 55%),
    linear-gradient(145deg, #2a1d13 0%, #1b130d 100%);
  border: 1px solid rgba(216, 178, 122, 0.45);
  color: #f3e8d7;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.2;
  z-index: 3;
}

.hero-rating-badge span {
  display: block;
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.62rem;
  color: #d6b88d;
}

.hero-media-caption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  background: rgba(28, 22, 17, 0.7);
  border: 1px solid rgba(216, 178, 122, 0.4);
  color: #ecd3ab;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  z-index: 2;
}

.btn-primary,
.btn-outline {
  padding: 0.86rem 1.8rem;
  border-radius: 6px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  text-align: center;
  min-width: 170px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--dark);
  color: var(--cream);
  border: 1px solid var(--dark);
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1px solid rgba(145, 114, 69, 0.4);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 255, 255, 0.55);
}

.hero-stats {
  margin-top: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  justify-content: flex-start;
  width: auto;
  animation: fadeUp 0.8s 0.6s ease both;
}

.stat-item {
  position: relative;
  text-align: left;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  min-width: 0;
}

.stat-item + .stat-item {
  padding-left: 1.2rem;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 1px;
  background: rgba(145, 114, 69, 0.28);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.35rem;
}

.hero-watermark {
  position: absolute;
  width: min(34vw, 360px);
  left: 38%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.035;
  mix-blend-mode: multiply;
  pointer-events: none;
  user-select: none;
}

@keyframes heroContentIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroLineReveal {
  from {
    opacity: 0;
    transform: translateY(110%);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 auto;
  width: min(1160px, calc(100% - 3rem));
}

section { padding: 6.5rem 2rem; }

.container {
  max-width: 1140px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.67rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #8f6a37;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  color: var(--dark);
  line-height: 1.14;
  margin-bottom: 1.15rem;
}

.section-title em { font-style: italic; color: var(--gold); }

.section-desc {
  color: var(--muted);
  line-height: 1.85;
  max-width: 580px;
}

/* OFFER */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 3.4rem;
}

.offer-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(251, 246, 236, 0.8));
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 2.2rem 1.9rem;
  transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s;
  box-shadow: var(--shadow-soft);
}

.offer-card:hover {
  transform: translateY(-5px);
  border-color: rgba(186, 144, 85, 0.48);
  box-shadow: 0 18px 36px rgba(25, 22, 17, 0.12);
}

.offer-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(145, 114, 69, 0.28);
  background: rgba(255, 255, 255, 0.72);
  color: #7f5b2f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.offer-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offer-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.offer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  color: var(--dark);
  margin-bottom: 0.7rem;
}

.offer-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}

.offer-badge {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.69rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8f6a37;
  border-top: 1px solid rgba(145, 114, 69, 0.22);
  padding-top: 0.8rem;
  width: 100%;
}

/* ORDER */
.order-section {
  position: relative;
  background:
    radial-gradient(circle at 85% 8%, rgba(186, 144, 85, 0.14), transparent 30%),
    #17130f;
  color: var(--cream);
}

.order-section .section-title { color: var(--cream); }
.order-section .section-desc { color: rgba(249, 245, 238, 0.68); }

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.order-options {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 2rem;
}

.order-option {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  transition: all 0.24s;
}

.order-option:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(186, 144, 85, 0.5);
  transform: translateX(4px);
}

.order-option-icon {
  font-size: 1.55rem;
  flex-shrink: 0;
}

.order-option-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  color: var(--cream);
}

.order-option-desc {
  font-size: 0.83rem;
  color: rgba(249, 245, 238, 0.58);
  margin-top: 0.15rem;
}

/* ABOUT */
.about-section {
  position: relative;
  background:
    radial-gradient(circle at 85% 8%, rgba(186, 144, 85, 0.14), transparent 30%),
    #17130f;
  color: var(--cream);
}

.about-section .container {
  max-width: 1120px;
}

.about-section .section-tag { color: var(--gold); }
.about-section .section-title { color: rgba(249, 245, 238, 0.96); }
.about-section .section-desc { color: rgba(249, 245, 238, 0.78); max-width: none; }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.6rem;
  align-items: start;
}

.about-list {
  margin-top: 1.1rem;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: rgba(249, 245, 238, 0.72);
  line-height: 1.55;
  font-size: 0.92rem;
}

.about-list li::marker {
  color: rgba(186, 144, 85, 0.9);
}

.about-right {
  max-width: none;
  justify-self: stretch;
  padding-left: 0.9rem;
  border-left: 1px solid rgba(186, 144, 85, 0.2);
}

.about-right-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.95rem;
  line-height: 1.2;
  color: rgba(249, 245, 238, 0.95);
  margin-bottom: 1rem;
}

.about-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  line-height: 1.5;
  color: rgba(249, 245, 238, 0.9);
}

.about-quote-sub {
  margin-top: 0.8rem;
  color: rgba(249, 245, 238, 0.74);
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-right-list {
  margin-top: 0.9rem;
  padding-left: 1rem;
  color: rgba(249, 245, 238, 0.8);
  line-height: 1.7;
}

.about-right-list li::marker {
  color: rgba(186, 144, 85, 0.9);
}

.order-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--cream);
  margin-bottom: 1.4rem;
}

.form-row { margin-bottom: 0.95rem; }

.form-row label {
  display: block;
  font-size: 0.73rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(249, 245, 238, 0.58);
  margin-bottom: 0.45rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  padding: 0.72rem 0.95rem;
  color: var(--cream);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.09);
}

.form-row select option { background: #2a2822; }

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  border: 1px solid var(--gold);
  padding: 0.9rem;
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-top: 0.65rem;
  font-weight: 500;
}

.form-submit:hover {
  background: var(--gold-light);
}

.order-cart-summary {
  margin-top: 0.6rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(249, 245, 238, 0.85);
  font-size: 0.82rem;
  line-height: 1.5;
}

/* PHONE BAR */
.phone-bar {
  background: linear-gradient(110deg, #d1aa74, #ba9055);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--dark);
}

.phone-bar strong { font-size: 1.08rem; }
.phone-bar a { color: var(--dark); text-decoration: none; font-weight: 600; }

/* REVIEWS */
.reviews-section {
  background:
    linear-gradient(180deg, rgba(239, 230, 214, 0.8), rgba(248, 243, 234, 0.8)),
    var(--cream-2);
}

.rating-hero {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 2.6rem;
}

.rating-big {
  font-family: 'Playfair Display', serif;
  font-size: 5.2rem;
  color: var(--dark);
  line-height: 1;
}

.stars { color: var(--gold); font-size: 1.25rem; letter-spacing: 0.04em; }
.rating-count { font-size: 0.85rem; color: var(--muted); margin-top: 0.28rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  box-shadow: 0 8px 24px rgba(25, 22, 17, 0.06);
}

.review-card:hover {
  transform: translateY(-5px) rotate(-0.2deg);
  border-color: rgba(186, 144, 85, 0.4);
  box-shadow: 0 16px 34px rgba(25, 22, 17, 0.13);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.95rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--cream);
  flex-shrink: 0;
}

.review-name { font-weight: 600; font-size: 0.92rem; color: var(--dark); }
.review-meta { font-size: 0.76rem; color: var(--muted); }
.review-stars { color: var(--gold); font-size: 0.76rem; margin-bottom: 0.65rem; }

.review-text {
  font-size: 0.88rem;
  color: #5f574b;
  line-height: 1.72;
}

.review-tag {
  display: inline-block;
  margin-top: 0.95rem;
  background: rgba(186, 144, 85, 0.14);
  color: #876131;
  font-size: 0.66rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

/* LOCATION */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.info-list {
  margin-top: 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.info-row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.05rem 0;
  border-bottom: none;
}

.info-icon {
  width: auto;
  height: auto;
  background: transparent;
  border: none;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 0.12rem;
  opacity: 0.72;
}

.info-label {
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: #8d7f6e;
  font-weight: 500;
}

.info-value {
  font-size: 1rem;
  color: #211b14;
  margin-top: 0.08rem;
  line-height: 1.45;
}

.map-embed-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(145, 114, 69, 0.24);
  box-shadow: var(--shadow-soft);
  background: #efe4d0;
}

.map-embed {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

.map-open-link {
  display: inline-flex;
  margin: 0.75rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(145, 114, 69, 0.34);
  border-radius: 6px;
  text-decoration: none;
  color: #5f4a2a;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.map-open-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 255, 255, 0.6);
}

/* MENU + KOSZYK */
.menu-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 243, 234, 0.88));
}

.menu-layout { margin-top: 0; display: block; }

.daily-special {
  margin-top: 1.8rem;
  width: 100%;
  border: 1px solid rgba(145, 114, 69, 0.24);
  border-radius: 14px 14px 0 0;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(252, 246, 236, 0.96));
  padding: 1rem 1.1rem;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 0.95rem 1.2rem;
  align-items: center;
  box-shadow: 0 8px 16px rgba(25, 22, 17, 0.05);
  position: relative;
  overflow: hidden;
}

.daily-special::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #d2ad77, #b98b4a);
}

.daily-special-media {
  grid-row: 1 / span 5;
  align-self: stretch;
}

.daily-special-image {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(145, 114, 69, 0.24);
}

.daily-special-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.daily-special-tag {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a6533;
}

.daily-special-day {
  font-size: 0.78rem;
  color: #6d5f4b;
}

.daily-special-title {
  margin-top: 0.45rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  line-height: 1.2;
  color: #17130f;
}

.daily-special-desc {
  margin-top: 0.45rem;
  color: #655b4f;
  line-height: 1.6;
  font-size: 0.9rem;
}

.daily-special-meta {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(145, 114, 69, 0.34);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  background: rgba(255, 255, 255, 0.9);
}

.daily-special-add-btn {
  margin-top: 0.45rem;
  justify-self: start;
}

.daily-special-price {
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #7d5b2d;
  font-weight: 600;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: #fff;
  border: 1px solid rgba(145, 114, 69, 0.18);
  border-radius: 0 0 12px 12px;
  padding: 0.35rem 0;
  box-shadow: 0 10px 20px rgba(25, 22, 17, 0.05);
}

.daily-special + .menu-layout .menu-list {
  border-top: none;
}

.menu-category {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.menu-category-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 1rem 0.62rem;
  background: transparent;
  color: #12100d;
  font-family: 'Playfair Display', serif;
  font-size: 1.33rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
}

.menu-category-title::before {
  content: '';
  width: 16px;
  height: 2px;
  background: #12100d;
  opacity: 0.75;
}

.menu-category + .menu-category {
  margin-top: 0.45rem;
  padding-top: 0.2rem;
  border-top: 1px dashed rgba(23, 19, 15, 0.18);
}

.menu-items {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 0.82rem 1.05rem;
  border-bottom: 1px solid rgba(23, 19, 15, 0.08);
  border-left: 3px solid transparent;
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

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

.menu-item:nth-child(odd) {
  background: rgba(186, 144, 85, 0.07);
}

.menu-item:hover {
  background: rgba(186, 144, 85, 0.14);
  border-left-color: rgba(186, 144, 85, 0.7);
}

.menu-item-name {
  font-size: 1.02rem;
  font-weight: 700;
  color: #2f2112;
}

.menu-item-desc {
  margin-top: 0.25rem;
  font-size: 0.82rem;
  color: #756956;
  line-height: 1.5;
}

.menu-item-side {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  align-self: center;
}

.menu-item-price {
  min-width: 72px;
  text-align: right;
  font-weight: 700;
  color: #7b4f1c;
  font-size: 0.95rem;
}

.add-to-cart-btn {
  border: 1px solid rgba(145, 114, 69, 0.28);
  background: #fff;
  color: #2b2319;
  border-radius: 6px;
  padding: 0.45rem 0.65rem;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.add-to-cart-btn:hover {
  border-color: #a57a42;
  color: #8c6837;
  background: #fbf4e8;
}

.cart-clear-main {
  margin-top: 0.65rem;
  width: 100%;
}

.cart-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.cart-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
}

.cart-clear-btn {
  border: 1px solid rgba(145, 114, 69, 0.3);
  background: #fff;
  color: #5f5343;
  border-radius: 6px;
  padding: 0.35rem 0.55rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.cart-items {
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-height: calc(100vh - 240px);
  overflow: auto;
  padding-right: 0.2rem;
  flex: 1;
}

.cart-empty {
  color: #736858;
  font-size: 0.85rem;
  padding: 0.5rem 0.1rem;
}

.cart-item {
  border: 1px solid rgba(145, 114, 69, 0.2);
  border-radius: 8px;
  padding: 0.55rem;
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  font-size: 0.84rem;
}

.cart-item-name { color: #221d16; }
.cart-item-subtotal { font-weight: 600; }

.cart-item-controls {
  margin-top: 0.45rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(145, 114, 69, 0.3);
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.qty-value {
  min-width: 18px;
  text-align: center;
  font-size: 0.84rem;
}

.remove-btn {
  border: none;
  background: transparent;
  color: #8f5a5a;
  font-size: 0.76rem;
  cursor: pointer;
}

.cart-footer {
  margin-top: 0.85rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(145, 114, 69, 0.2);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-order-btn {
  margin-top: 0.75rem;
  width: 100%;
  text-align: center;
}

.drawer-order-form {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(145, 114, 69, 0.2);
}

.drawer-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}

.drawer-form-row { margin-bottom: 0.65rem; }

.drawer-form-row label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #655a4b;
  margin-bottom: 0.3rem;
}

.drawer-form-row input,
.drawer-form-row select,
.drawer-form-row textarea {
  width: 100%;
  border: 1px solid rgba(145, 114, 69, 0.24);
  background: #fff;
  border-radius: 8px;
  padding: 0.62rem 0.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.drawer-form-row input:focus,
.drawer-form-row select:focus,
.drawer-form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.drawer-submit-btn { margin-top: 0.55rem; }

.cart-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 140;
  background: #1f1a14;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0.65rem 0.8rem;
  font-size: 0.8rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cart-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.cart-bump {
  animation: cart-bump 0.35s ease;
}

@keyframes cart-bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* FOOTER */
footer {
  background: #15120e;
  color: rgba(249, 245, 238, 0.56);
  padding: 3.2rem 2rem 2.4rem;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px;
}

.footer-links {
  display: flex;
  gap: 1.7rem;
  justify-content: center;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(249, 245, 238, 0.56);
  text-decoration: none;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  font-size: 0.77rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.3rem;
  margin-top: 0.5rem;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* CLEAN PRZEJSCIE PO KLIKNIECIU W ZAKLADKE */
.section-focus {
  animation: section-focus 0.55s ease;
}

@keyframes section-focus {
  0% { opacity: 0.82; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 980px) {
  nav { border-radius: 10px; }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav {
    top: 0.5rem;
    padding: 0.75rem 0.9rem;
    width: calc(100% - 1rem);
    border-radius: 8px;
  }

  .nav-links,
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cart-btn { display: none; }
  .nav-logo { font-size: 0.9rem; }
  .brand-logo { width: 28px; height: 28px; }

  .hero { padding: 6.9rem 1rem 2.5rem; min-height: auto; }
  .hero-shell { grid-template-columns: 1fr; }
  .hero-content { padding: 1.3rem 1.05rem 1.5rem; }
  .hero-media { min-height: 320px; }
  .hero-media-image { width: min(88%, 460px); }
  .hero-rating-badge { top: 0.85rem; right: 0.85rem; font-size: 1rem; }
  .hero-media-caption { left: 0.85rem; bottom: 0.85rem; font-size: 0.66rem; }
  .hero-watermark { display: none; }
  .hero-sub { font-size: 0.94rem; line-height: 1.75; }
  .hero-actions { width: 100%; }
  .btn-primary,
  .btn-outline {
    min-width: 0;
    flex: 1 1 0;
  }

  section { padding: 4.8rem 1rem; }
  .divider { width: calc(100% - 1rem); }

  .offer-grid,
  .order-grid,
  .reviews-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .daily-special {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    width: 100%;
    border-radius: 12px 12px 0 0;
  }

  .daily-special-media {
    grid-row: auto;
  }

  .daily-special-image {
    min-height: 180px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    align-items: start;
  }

  .about-right {
    max-width: none;
    justify-self: stretch;
    padding-left: 0;
    border-left: none;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .menu-item-side {
    justify-content: space-between;
  }

  .cart-drawer {
    width: 100%;
  }

  .rating-big { font-size: 4rem; }
  .map-embed { height: 300px; }
}
