:root {
  --brand-red: #c7362d;
  --brand-red-dark: #9c2922;
  --brand-red-light: #fbecea;
  --accent-gold: #d8a53a;
  --accent-gold-light: #f3dfae;
  --dark: #1e1a18;
  --dark-80: rgba(30, 26, 24, 0.85);
  --dark-60: rgba(30, 26, 24, 0.6);
  --text: #362f2d;
  --text-light: #6c625e;
  --bg-cream: #faf7f2;
  --bg-warm: #fff9f3;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(30,26,24,0.06);
  --shadow: 0 8px 28px rgba(30,26,24,0.12);
  --shadow-lg: 0 20px 50px rgba(30,26,24,0.18);
  --transition: 0.25s ease;
  --max-width: 1200px;
  --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

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

.section {
  padding: 90px 20px;
}

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

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-red);
  background: var(--brand-red-light);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--dark);
}

.section-intro {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--brand-red);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(199,54,45,0.35);
}
.btn-primary:hover { background: var(--brand-red-dark); transform: translateY(-2px); }

.btn-secondary {
  background: var(--white);
  color: var(--brand-red);
  border: 2px solid var(--brand-red);
}
.btn-secondary:hover { background: var(--brand-red); color: var(--white); }

.btn-gold {
  background: var(--accent-gold);
  color: var(--dark);
}
.btn-gold:hover { background: #c4922d; color: var(--white); }

/* ---------- Nav ---------- */
.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  transition: var(--transition);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--brand-red);
  color: var(--white);
  border-radius: 50%;
  font-size: 18px;
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 0.05em;
}

.brand-sub {
  display: none;
  font-size: 13px;
  color: var(--text-light);
  border-left: 1px solid #ddd;
  padding-left: 10px;
}
@media (min-width: 640px) { .brand-sub { display: inline; } }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--brand-red);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--brand-red); }
.nav-links a:hover::after { width: 100%; }

.nav-cta .btn { padding: 10px 22px; font-size: 14px; }

/* mobile nav */
.menu-toggle {
  display: none;
  width: 36px; height: 36px;
  border: none; background: none;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    padding: 20px 24px;
    box-shadow: var(--shadow);
    gap: 16px;
  }
  .nav-links.open .btn { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  padding: 120px 20px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,26,24,0.55) 0%, rgba(30,26,24,0.75) 70%, rgba(30,26,24,0.88) 100%);
  z-index: -1;
}

.hero-content {
  position: relative;
  max-width: 840px;
  z-index: 1;
}

.hero-slogan {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent-gold-light);
  border: 1px solid rgba(216,165,58,0.5);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
  background: rgba(0,0,0,0.2);
}

.hero h1 {
  font-size: clamp(36px, 6.5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.hero-tagline {
  font-size: clamp(18px, 2.5vw, 24px);
  margin-bottom: 32px;
  opacity: 0.95;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}

.hero-tagline span { position: relative; }
.hero-tagline span:not(:last-child)::after {
  content: "·";
  margin-left: 20px;
  color: var(--accent-gold);
  opacity: 0.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 38px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
}

.hero-trust span {
  background: rgba(255,255,255,0.12);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%; transform: translateX(-50%);
  animation: bounce 2s infinite;
  opacity: 0.7;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ---------- Story ---------- */
.story-section { background: var(--white); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.story-text-block p {
  color: var(--text-light);
  margin-bottom: 18px;
  font-size: 16px;
}

.story-text-block strong { color: var(--brand-red); }

.story-slogan {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 24px 0;
  padding: 18px 22px;
  background: var(--brand-red-light);
  border-left: 4px solid var(--brand-red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: 1.6;
}

.name-meaning {
  display: flex;
  gap: 18px;
  margin-top: 28px;
}

.meaning-item {
  flex: 1;
  background: var(--bg-cream);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.meaning-char {
  font-size: 36px;
  font-weight: 900;
  color: var(--brand-red);
  line-height: 1;
  margin-bottom: 8px;
}

.meaning-item p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.story-images .img-main {
  grid-column: 1 / -1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 340px;
}

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

.story-images .img-wrap:hover img { transform: scale(1.05); }

.story-images .img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  height: 180px;
  box-shadow: var(--shadow);
}

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

/* ---------- Gallery ---------- */
.gallery-section { background: var(--bg-cream); }

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.gallery-tab {
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--white);
  color: var(--text-light);
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
}

.gallery-tab:hover, .gallery-tab.active {
  background: var(--brand-red);
  color: var(--white);
  border-color: var(--brand-red);
  box-shadow: var(--shadow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-grid[data-tab="reviews"] {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item.tall { aspect-ratio: 3 / 4; grid-row: span 2; }
.gallery-item.wide { aspect-ratio: 16 / 9; grid-column: span 2; }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-caption { opacity: 1; }

.gallery-panel { display: none; }
.gallery-panel.active { display: grid; }

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid[data-tab="reviews"] { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid[data-tab="reviews"] { grid-template-columns: 1fr; }
}

/* ---------- Dishes ---------- */
.dishes-section { background: var(--white); }

.dishes-showcase {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 50px;
}

.dish-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
}

.dish-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.dish-flavors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dish-card {
  background: var(--bg-cream);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
  position: relative;
}

.dish-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.dish-card.featured {
  background: var(--brand-red);
  color: var(--white);
}

.dish-card.featured .dish-desc { color: rgba(255,255,255,0.85); }

.dish-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--accent-gold);
  color: var(--dark);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
}

.dish-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
  font-weight: 700;
}

.dish-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

.dish-price-hint {
  text-align: center;
  color: var(--text-light);
  font-size: 15px;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .dishes-showcase { grid-template-columns: 1fr; }
  .dish-hero-img { height: 300px; }
}

@media (max-width: 600px) {
  .dish-flavors { grid-template-columns: 1fr; }
}

/* ---------- Quality ---------- */
.quality-section { background: var(--dark); color: var(--white); }

.quality-section .section-header h2,
.quality-section .section-header p { color: var(--white); }
.quality-section .section-header p { opacity: 0.8; }

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.quality-card {
  background: var(--dark-80);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}

.quality-card:hover {
  background: var(--dark-60);
  transform: translateY(-4px);
  border-color: var(--brand-red);
}

.quality-icon {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  background: var(--brand-red);
  border-radius: 50%;
  font-size: 26px;
}

.quality-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
}

.quality-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .quality-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ---------- Menu ---------- */
.menu-section { background: var(--bg-cream); }

.menu-boards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.menu-board {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}

.menu-board img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--bg-cream);
}

.menu-board p {
  padding: 14px;
  font-size: 14px;
  color: var(--text-light);
  background: var(--white);
}

.menu-note {
  text-align: center;
  color: var(--text-light);
  font-size: 15px;
  margin-top: 28px;
}

@media (max-width: 800px) {
  .menu-boards { grid-template-columns: 1fr; }
}

/* ---------- Reviews ---------- */
.reviews-section { background: var(--bg-warm); }

.review-subtitle {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 24px;
}

.reviews-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.reviews-featured .review-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.04);
}

.reviews-featured .review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.reviews-featured .review-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Review Wall - infinite scroll of many reviews */
.review-wall {
  position: relative;
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 32px;
}

.review-wall::before,
.review-wall::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.review-wall::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-warm), transparent);
}

.review-wall::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-warm), transparent);
}

.review-wall-track {
  display: flex;
  gap: 14px;
  width: max-content;
  will-change: transform;
  margin-bottom: 14px;
}

.review-wall-track:last-child { margin-bottom: 0; }

.review-wall-track img {
  height: 220px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  flex-shrink: 0;
  opacity: 0.85;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.review-wall-track img:hover { opacity: 1; transform: scale(1.04); }

.track-1 { animation: scroll-left 40s linear infinite; }
.track-2 { animation: scroll-right 44s linear infinite; }

.review-wall:hover .review-wall-track { animation-play-state: paused; }

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.ratings-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.rating-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
}

.rating-value {
  display: block;
  font-size: 34px;
  font-weight: 800;
  color: var(--brand-red);
  line-height: 1.2;
}

.rating-label {
  display: block;
  font-size: 13px;
  color: var(--text-light);
  margin-top: 8px;
}

.review-note {
  text-align: center;
  color: var(--text-light);
  font-size: 15px;
  margin-top: 12px;
}

@media (max-width: 900px) {
  .reviews-featured { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .review-wall-track img { height: 170px; }
  .ratings-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .reviews-featured { grid-template-columns: 1fr; }
  .review-wall-track img { height: 140px; }
  .ratings-bar { grid-template-columns: 1fr 1fr; gap: 12px; }
  .rating-value { font-size: 28px; }
}

@media (max-width: 420px) {
  .ratings-bar { grid-template-columns: 1fr; }
}
.stores-section { background: var(--white); }

.store-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.store-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
  background: var(--white);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.store-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.store-img {
  height: 220px;
  overflow: hidden;
}

.store-img img { width: 100%; height: 100%; object-fit: cover; }

.store-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.store-badge {
  display: inline-block;
  background: var(--brand-red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  margin-left: 8px;
  vertical-align: middle;
}

.store-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--dark);
  line-height: 1.4;
}

.store-info { list-style: none; flex: 1; }

.store-info { list-style: none; }

.store-info li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
  font-size: 15px;
  color: var(--text-light);
}

.store-info li:last-child { border-bottom: none; }

.store-info strong {
  color: var(--dark);
  min-width: 70px;
  font-weight: 600;
}

.store-info a { color: var(--brand-red); font-weight: 600; }
.store-info a:hover { text-decoration: underline; }

.store-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.store-actions .btn { flex: 1; justify-content: center; padding: 12px 16px; font-size: 14px; }

.store-platforms {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed #eee;
}

.platform-tip {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.platform-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pf-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #e5e5e5;
  transition: var(--transition);
  color: #444;
  background: #fafafa;
}

.pf-btn:hover {
  background: var(--brand-red);
  color: var(--white);
  border-color: var(--brand-red);
  transform: translateY(-2px);
}

.pf-btn .pf-icon {
  font-size: 13px;
  line-height: 1;
}

@media (max-width: 520px) {
  .platform-buttons { gap: 8px; }
  .pf-btn { padding: 8px 11px; font-size: 13px; flex: 1 1 calc(50% - 8px); justify-content: center; }
}

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

/* Scene tags */
.scene-tags {
  background: var(--bg-cream);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.scene-tags h3 {
  font-size: 18px;
  margin-bottom: 18px;
  color: var(--dark);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.tag-list span {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

/* ---------- FAQ ---------- */
.faq-section { background: var(--bg-cream); }

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-q {
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
  transition: var(--transition);
}

.faq-q:hover { color: var(--brand-red); }

.faq-q::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--brand-red);
  transition: var(--transition);
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-a { max-height: 500px; }

.faq-a p {
  padding: 0 24px 20px;
  color: var(--text-light);
  line-height: 1.8;
}

.faq-a strong { color: var(--brand-red); }

/* ---------- Contact ---------- */
.contact-section {
  background: var(--brand-red);
  color: var(--white);
  text-align: center;
}

.contact-section .section-header h2 { color: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}

.contact-item {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: var(--transition);
}

.contact-item:hover { background: rgba(255,255,255,0.18); }

.contact-item h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
  margin-bottom: 10px;
}

.contact-item p {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.contact-item a { color: var(--accent-gold-light); text-decoration: underline; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 50px 20px 24px;
  text-align: center;
}

.footer-brand {
  margin-bottom: 28px;
}

.footer-brand .brand-name {
  color: var(--white);
  font-size: 26px;
  display: block;
  margin-bottom: 8px;
}

.footer-brand p { font-size: 15px; margin-bottom: 4px; }

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-bottom: 28px;
}

.footer-links a {
  font-size: 15px;
  transition: var(--transition);
}

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

.footer-copy {
  font-size: 13px;
  opacity: 0.6;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  backdrop-filter: blur(8px);
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover { background: var(--brand-red); }

.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 50%; transform: translateX(-50%);
  color: var(--white);
  font-size: 15px;
  text-align: center;
  max-width: 80%;
}

/* ---------- Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

@media (max-width: 600px) {
  .section { padding: 60px 18px; }
}
