/* ============================================
   品牌餐饮官网 - 主样式表
   定位：高端、轻奢、极简、品牌感
   ============================================ */

/* --- CSS Variables --- */
:root {
  --color-primary: #2B2B2B;
  --color-accent: #A88C67;
  --color-accent-light: #C9A87C;
  --color-gray: #4A4A4A;
  --color-bg: #F8F5F0;
  --color-text: #111111;
  --color-text-light: #555555;
  --color-white: #FFFFFF;
  --color-border: #E8E3DC;
  --font-heading: 'Noto Serif SC', 'Source Han Serif SC', 'SimSun', 'STSong', serif;
  --font-body: 'Noto Sans SC', 'Source Han Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --max-width: 1280px;
  --nav-height: 80px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.8;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* --- Typography --- */
.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-accent);
  text-align: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--color-text-light);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
  line-height: 1.9;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: all var(--transition);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.nav-logo span {
  color: var(--color-accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.88rem;
  color: var(--color-text);
  letter-spacing: 0.05em;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  transition: width var(--transition);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../images/b1.jpg') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 40px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 16, 12, 0.65) 0%,
    rgba(18, 16, 12, 0.3) 35%,
    rgba(18, 16, 12, 0.3) 65%,
    rgba(18, 16, 12, 0.72) 100%
  );
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(18, 16, 12, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--color-accent-light);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 28px;
  position: relative;
  display: inline-block;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.hero-eyebrow::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--color-accent);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.06em;
  line-height: 1.35;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.1em;
  margin-bottom: 52px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero .btn-outline {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.55);
}

.hero .btn-outline:hover {
  background: #FFFFFF;
  color: #1a1a1a;
  border-color: #FFFFFF;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(168, 140, 103, 0.3);
}

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

.btn-outline:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

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

/* --- Section Spacing --- */
.section {
  padding: 100px 0;
}

.section-light {
  background: var(--color-white);
}

.section-dark {
  background: var(--color-primary);
}

/* --- Brand Advantages Grid --- */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.advantage-card {
  text-align: center;
  padding: 48px 28px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.advantage-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.advantage-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  border-radius: 50%;
}

.advantage-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-accent);
}

.advantage-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.advantage-card p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- Page Hero (Sub Pages) --- */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F8F5F0 0%, #EFE9DF 50%, #F0EBE2 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 140px 40px 80px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 140, 103, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

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

.page-hero .section-subtitle {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.page-hero .section-title {
  font-size: 2.8rem;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.page-hero-desc {
  font-size: 1rem;
  color: var(--color-text-light);
  max-width: 560px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 0.82rem;
  color: var(--color-text-light);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.breadcrumb a {
  color: var(--color-accent);
}

.breadcrumb span {
  color: var(--color-border);
}

/* --- Content Sections --- */
.content-block {
  padding: 80px 0;
}

.content-block .container {
  max-width: 860px;
}

.content-block h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.content-block p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 2;
  margin-bottom: 20px;
  text-align: justify;
}

.content-block .highlight {
  color: var(--color-accent);
  font-weight: 500;
}

/* --- Decorative Divider --- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px auto;
}

.divider::before,
.divider::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--color-accent);
}

.divider-icon {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  transform: rotate(45deg);
}

/* --- Image + Text Split --- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-image {
  position: relative;
}

.split-image img {
  width: 100%;
}

.split-image .image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--color-accent);
  z-index: -1;
}

.split-text h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.split-text p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 2;
  margin-bottom: 16px;
}

/* --- Grid Cards --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all var(--transition);
}

.card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.card-image {
  width: 100%;
  height: 260px;
  background: var(--color-bg);
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-body {
  padding: 28px 24px;
}

.card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.card-body p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.card-body .card-tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

/* --- Feature List --- */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--color-bg);
  border-left: 2px solid var(--color-accent);
}

.feature-item .feature-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-accent-light);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
}

.feature-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* --- Stats Bar --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 60px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--color-accent);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  letter-spacing: 0.06em;
}

/* --- Timeline --- */
.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--color-border);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: start;
  margin-bottom: 60px;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  background: var(--color-accent);
  border-radius: 50%;
  margin: 8px auto 0;
  position: relative;
  z-index: 2;
}

.timeline-content {
  padding: 0 30px;
}

.timeline-content .year {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: right;
}

/* --- Contact Form --- */
.contact-form {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-primary);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  outline: none;
  transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  background: var(--color-white);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  text-align: center;
  margin-top: 8px;
}

/* --- Contact Info Cards --- */
.info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.info-card {
  text-align: center;
  padding: 36px 20px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.info-card:hover {
  border-color: var(--color-accent);
}

.info-card .info-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.info-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.info-card p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* --- Footer --- */
.footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

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

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.footer-brand h3 span {
  color: var(--color-accent-light);
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.9;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--color-white);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --- Floating Contact Widget --- */
.floating-contact {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.floating-item {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  cursor: pointer;
  position: relative;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.floating-item:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.floating-item:hover svg {
  color: var(--color-white);
}

.floating-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  transition: color var(--transition);
}

.floating-item .tooltip {
  position: absolute;
  right: 64px;
  white-space: nowrap;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 8px 16px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.floating-item:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

.floating-item .tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--color-primary);
}

/* QR Popup */
.floating-qr-popup {
  position: absolute;
  right: 64px;
  bottom: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 16px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  width: 160px;
}

.floating-item.qr:hover .floating-qr-popup {
  opacity: 1;
  visibility: visible;
}

.floating-qr-popup .qr-placeholder {
  width: 120px;
  height: 120px;
  margin: 0 auto 8px;
  background: var(--color-bg);
  border: 2px dashed var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--color-text-light);
}

.floating-qr-popup p {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--color-primary);
}

/* --- Menu Category Tabs --- */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 60px 0 40px;
}

.menu-tab {
  padding: 12px 28px;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text-light);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.menu-tab:hover,
.menu-tab.active {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

/* --- Dish Card (Menu items) --- */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.dish-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all var(--transition);
}

.dish-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

.dish-image {
  width: 100%;
  height: 220px;
  background: var(--color-bg);
  overflow: hidden;
}

.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dish-card:hover .dish-image img {
  transform: scale(1.05);
}

.dish-info {
  padding: 20px;
}

.dish-info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.dish-info .dish-tag {
  font-size: 0.78rem;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.dish-info p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* --- Honor Certificates --- */
.honor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.honor-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.honor-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
}

.honor-card .honor-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  color: var(--color-accent);
}

.honor-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.honor-card p {
  font-size: 0.82rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* --- News / Blog Cards --- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.news-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all var(--transition);
}

.news-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

.news-image {
  width: 100%;
  height: 200px;
  background: var(--color-bg);
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-body {
  padding: 24px;
}

.news-body .news-date {
  font-size: 0.78rem;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.news-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 10px;
  line-height: 1.5;
}

.news-body p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.news-body .news-link {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--color-accent);
  margin-top: 12px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.news-body .news-link:hover {
  border-bottom-color: var(--color-accent);
}

/* --- Reservation Steps --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.step-card {
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

.step-card .step-num {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  border-radius: 50%;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.step-arrow {
  position: absolute;
  top: 30px;
  right: -12px;
  color: var(--color-accent-light);
  opacity: 0.4;
  font-size: 1.5rem;
}

/* --- Map Placeholder --- */
.map-section {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  margin-top: 60px;
}

.map-placeholder {
  width: 100%;
  height: 360px;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* --- Full-width Banner --- */
.banner {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a1a1a 100%);
  color: var(--color-white);
}

.banner h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.banner p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-grid,
  .dish-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .feature-list {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .page-hero .section-title {
    font-size: 2.2rem;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    grid-template-columns: 40px 1fr;
  }

  .timeline-dot {
    margin: 8px 0 0 15px;
  }

  .timeline-content {
    padding: 0 0 0 30px;
  }

  .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
  }

  .step-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .container {
    padding: 0 20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: var(--color-white);
    padding: 100px 40px 40px;
    gap: 24px;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.08);
    transition: right 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .page-hero .section-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .advantages-grid,
  .cards-grid,
  .dish-grid,
  .news-grid,
  .info-cards,
  .honor-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .btn {
    padding: 13px 30px;
    font-size: 0.85rem;
  }

  .floating-contact {
    right: 8px;
  }

  .floating-item {
    width: 42px;
    height: 42px;
  }

  .floating-item svg {
    width: 17px;
    height: 17px;
  }

  .menu-tabs {
    gap: 8px;
  }

  .menu-tab {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .content-block {
    padding: 50px 0;
  }

  .section {
    padding: 60px 0;
  }
}
