:root {
  --bg: #1a0c0e;
  --bg-card: #261418;
  --bg-elevated: #321c20;
  --wine: #6b1d2a;
  --wine-light: #8f2d3d;
  --gold: #c9a962;
  --gold-light: #e8d5a3;
  --gold-dark: #9a7b3c;
  --cream: #f5efe6;
  --text: #f3ebe3;
  --text-muted: #b8a89a;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: var(--bg);
  border-radius: 6px;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 12, 14, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 169, 98, 0.18);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--bg);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(201, 169, 98, 0.3);
  color: var(--gold);
  font-size: 1.25rem;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  cursor: pointer;
}

.header-cta {
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition);
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.35);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(107, 29, 42, 0.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(201, 169, 98, 0.12) 0%, transparent 55%),
    linear-gradient(165deg, #1a0c0e 0%, #2d1218 45%, #1a0c0e 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    45deg,
    var(--gold) 0,
    var(--gold) 1px,
    transparent 1px,
    transparent 24px
  );
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(201, 169, 98, 0.35);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  max-width: 14ch;
  margin-bottom: 1.25rem;
}

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

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 169, 98, 0.4);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(201, 169, 98, 0.45);
  color: var(--gold-light);
}

.btn-outline:hover {
  background: rgba(201, 169, 98, 0.08);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 98, 0.15);
}

.trust-item strong {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  color: var(--gold-light);
  line-height: 1.2;
}

.trust-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  max-width: 58ch;
  font-size: 1.02rem;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-desc {
  margin: 0 auto;
}

.block-section {
  padding: 6rem 0;
}

.block-section.alt {
  background: var(--bg-card);
}

.block-section.accent {
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-elevated);
  border: 1px solid rgba(201, 169, 98, 0.12);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 98, 0.3);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(107, 29, 42, 0.6), rgba(201, 169, 98, 0.2));
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  margin-bottom: 0.65rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-content h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}

.split-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  margin-top: 1.5rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.55rem;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.split-visual {
  background: linear-gradient(145deg, var(--wine) 0%, var(--bg-elevated) 100%);
  border-radius: var(--radius);
  padding: 3rem;
  border: 1px solid rgba(201, 169, 98, 0.2);
  position: relative;
  overflow: hidden;
}

.split-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.stat-box {
  text-align: center;
  padding: 1.5rem;
  background: rgba(26, 12, 14, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(201, 169, 98, 0.15);
}

.stat-box strong {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  color: var(--gold-light);
}

.stat-box span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.dish-list {
  display: grid;
  gap: 1rem;
}

.dish-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.25rem 1.5rem;
  background: var(--bg-elevated);
  border-radius: 12px;
  border-left: 3px solid var(--gold);
  transition: background var(--transition);
}

.dish-item:hover {
  background: var(--bg-card);
}

.dish-item h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
}

.dish-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.dish-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(201, 169, 98, 0.12);
}

.testimonial blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  color: var(--cream);
}

.testimonial cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial cite strong {
  display: block;
  color: var(--gold-light);
  font-weight: 600;
}

.cta-section {
  padding: 6rem 0;
  text-align: center;
}

.cta-box {
  background: linear-gradient(145deg, var(--wine) 0%, var(--bg-elevated) 60%);
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(2.5rem, 5vw, 4rem);
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.cta-box > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
}

.contact-form label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

.contact-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(26, 12, 14, 0.6);
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.contact-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form button {
  margin-top: 0.5rem;
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(201, 169, 98, 0.15);
  border-radius: 8px;
  color: var(--gold-light);
  font-size: 0.9rem;
  text-align: center;
}

.site-footer {
  background: #120608;
  border-top: 1px solid rgba(201, 169, 98, 0.12);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 0.75rem;
  max-width: 32ch;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 98, 0.1);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: var(--bg-elevated);
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  padding: 1.25rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  width: min(1160px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-inner p {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 60ch;
}

.cookie-inner a {
  color: var(--gold-light);
  text-decoration: underline;
}

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

.cookie-actions button {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-accept {
  background: var(--gold);
  color: var(--bg);
}

.btn-decline {
  background: transparent;
  border: 1px solid rgba(201, 169, 98, 0.35) !important;
  color: var(--text-muted);
}

.page-hero {
  padding: 8rem 0 3rem;
  background: var(--bg-card);
  border-bottom: 1px solid rgba(201, 169, 98, 0.12);
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--text-muted);
}

.legal-content {
  padding: 3rem 0 5rem;
  max-width: 720px;
}

.legal-content h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
  color: var(--gold-light);
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.legal-content ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(26, 12, 14, 0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(201, 169, 98, 0.15);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .header-cta {
    display: none;
  }

  .split-block {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-trust {
    gap: 1.5rem;
  }

  .dish-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }
}
