/* ===================================
   一之江ラーメンナビ
   昭和レトロ × モダン食堂スタイル
   ================================== */

/* CSS Variables */
:root {
  /* Colors - Warm Ramen Palette */
  --bg-cream: #FFF8F0;
  --bg-beige: #F5EDE4;
  --bg-dark: #2C1810;
  --bg-darker: #1A0F0A;

  --accent-red: #C41E3A;
  --accent-red-dark: #9A1830;
  --accent-orange: #E85A19;
  --accent-gold: #D4A373;
  --accent-gold-light: #E8C9A0;

  --text-dark: #2C1810;
  --text-light: #FFF8F0;
  --text-muted: #6B5B4F;
  --text-warm-gray: #8B7355;

  --border-warm: rgba(44, 24, 16, 0.1);
  --shadow-warm: 0 4px 20px rgba(44, 24, 16, 0.1);
  --shadow-warm-lg: 0 10px 40px rgba(44, 24, 16, 0.15);

  /* Typography */
  --font-display: 'Shippori Mincho', serif;
  --font-body: 'Zen Maru Gothic', sans-serif;

  /* Spacing */
  --section-padding: 100px;
  --container-width: 1200px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.4s ease;
  --transition-slow: 0.6s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dark);
  background-color: var(--bg-cream);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Paper texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
}

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

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

ul {
  list-style: none;
}

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

/* ===================================
   Typography
   ================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.3;
}

/* ===================================
   Buttons
   ================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-orange) 100%);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(196, 30, 58, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--accent-gold);
}

.btn-outline:hover {
  background: var(--accent-gold);
  color: var(--text-dark);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===================================
   Navigation
   ================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-base);
}

.nav.scrolled {
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-warm);
  padding: 12px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-bowl {
  font-size: 28px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

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

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: color var(--transition-fast);
  position: relative;
}

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

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

.nav-cta {
  padding: 10px 24px;
  background: var(--accent-red);
  color: var(--text-light);
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  transition: all var(--transition-base);
}

.nav-cta:hover {
  background: var(--accent-red-dark);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all var(--transition-base);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-cream);
  z-index: 999;
  padding: 100px 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.mobile-menu-links a {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
}

.mobile-cta {
  display: inline-block;
  margin-top: 24px;
  padding: 16px 32px;
  background: var(--accent-red);
  color: var(--text-light) !important;
  border-radius: 50px;
}

/* ===================================
   Hero Section
   ================================== */

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  position: relative;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 24, 16, 0.85) 0%,
    rgba(44, 24, 16, 0.6) 50%,
    rgba(44, 24, 16, 0.4) 100%
  );
}

/* Steam Animation */
.steam {
  position: absolute;
  width: 8px;
  height: 80px;
  background: linear-gradient(to top, rgba(255,255,255,0), rgba(255,255,255,0.4));
  border-radius: 50%;
  filter: blur(8px);
  animation: steam 3s ease-in-out infinite;
}

.steam-1 {
  bottom: 30%;
  right: 35%;
  animation-delay: 0s;
}

.steam-2 {
  bottom: 32%;
  right: 40%;
  animation-delay: 0.5s;
  height: 100px;
}

.steam-3 {
  bottom: 28%;
  right: 45%;
  animation-delay: 1s;
  height: 60px;
}

@keyframes steam {
  0% {
    opacity: 0;
    transform: translateY(0) scaleX(1);
  }
  15% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
    transform: translateY(-60px) scaleX(1.5);
  }
  100% {
    opacity: 0;
    transform: translateY(-120px) scaleX(2);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 0 24px;
  margin-left: 10%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 248, 240, 0.15);
  border: 1px solid rgba(255, 248, 240, 0.3);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.lantern {
  font-size: 18px;
}

.hero-title {
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-light);
}

.title-main {
  display: block;
}

.title-accent {
  display: block;
  color: var(--accent-gold-light);
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(255, 248, 240, 0.85);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.9;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  background: rgba(255, 248, 240, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 248, 240, 0.2);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-gold-light);
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 248, 240, 0.7);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 248, 240, 0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 248, 240, 0.6);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--accent-gold-light);
  border-bottom: 2px solid var(--accent-gold-light);
  transform: rotate(45deg);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(8px); }
}

/* Animation Classes */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   Section Styles
   ================================== */

section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.section-header-light .section-label,
.section-header-light .section-title,
.section-header-light .section-desc {
  color: var(--text-light);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent-red);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 5vw, 42px);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ===================================
   Area Section
   ================================== */

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.area-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.area-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg-beige);
  border-radius: 16px;
  transition: all var(--transition-base);
}

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

.area-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.area-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  font-family: var(--font-body);
}

.area-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.area-map {
  position: relative;
}

.map-wrapper {
  width: 100%;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-warm-lg);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
}

.map-label {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--bg-dark);
  color: var(--text-light);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-warm);
}

.map-pin {
  font-size: 16px;
}

/* ===================================
   Ranking Section
   ================================== */

.ranking {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.ranking-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(196, 30, 58, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(232, 90, 25, 0.1) 0%, transparent 50%);
}

.ranking-list {
  position: relative;
}

.ranking-card {
  background: rgba(255, 248, 240, 0.05);
  border: 1px solid rgba(255, 248, 240, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--transition-base);
}

.ranking-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-gold);
}

.ranking-card-featured {
  display: grid;
  grid-template-columns: 400px 1fr;
  margin-bottom: 32px;
}

.rank-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
}

.rank-1 {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: var(--bg-dark);
}

.rank-crown {
  position: absolute;
  top: -12px;
  font-size: 16px;
}

.rank-2 { background: linear-gradient(135deg, #C0C0C0, #A0A0A0); color: var(--bg-dark); }
.rank-3 { background: linear-gradient(135deg, #CD7F32, #A0522D); color: var(--text-light); }
.rank-4, .rank-5 { background: var(--accent-red); color: var(--text-light); }

.ranking-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.ranking-card-featured .ranking-image {
  aspect-ratio: auto;
  height: 100%;
}

.ranking-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.ranking-content {
  padding: 24px;
  color: var(--text-light);
}

.ranking-card-featured .ranking-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.shop-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}

.shop-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  color: #FFD700;
  font-size: 14px;
}

.rating-score {
  font-weight: 700;
  font-size: 14px;
  color: var(--accent-gold-light);
}

.shop-desc {
  font-size: 14px;
  color: rgba(255, 248, 240, 0.7);
  margin-bottom: 16px;
  line-height: 1.7;
}

.shop-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 248, 240, 0.8);
}

.meta-icon {
  font-size: 14px;
}

.shop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 4px 12px;
  background: rgba(255, 248, 240, 0.1);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.tag-featured {
  background: var(--accent-red);
}

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

/* ===================================
   Genre Section
   ================================== */

.genre-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.genre-tab {
  padding: 12px 28px;
  background: transparent;
  border: 2px solid var(--border-warm);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--transition-base);
}

.genre-tab:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
}

.genre-tab.active {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: var(--text-light);
}

.genre-panel {
  display: none;
}

.genre-panel.active {
  display: block;
}

.genre-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-beige);
  border-radius: 24px;
  overflow: hidden;
}

.genre-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

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

.genre-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(44, 24, 16, 0.8), transparent);
}

.genre-count {
  color: var(--text-light);
  font-weight: 700;
  font-size: 18px;
}

.genre-info {
  padding: 40px;
}

.genre-info h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.genre-info p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.genre-shops {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-chip {
  padding: 8px 16px;
  background: var(--bg-cream);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.shop-chip:hover {
  background: var(--accent-red);
  color: var(--text-light);
}

.shop-chip.more {
  background: var(--accent-gold);
  color: var(--text-dark);
}

/* ===================================
   News Section
   ================================== */

.news {
  background: var(--bg-beige);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--bg-cream);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all var(--transition-base);
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-warm-lg);
}

.news-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.badge-new {
  background: var(--accent-red);
  color: var(--text-light);
}

.badge-hot {
  background: var(--accent-orange);
  color: var(--text-light);
}

.badge-sns {
  background: linear-gradient(135deg, #833AB4, #E1306C);
  color: var(--text-light);
}

.news-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.news-content {
  padding: 24px;
}

.news-date {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}

.news-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.5;
  font-family: var(--font-body);
}

.news-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===================================
   Reviews Section
   ================================== */

.reviews {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.reviews-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(212, 163, 115, 0.1) 0%, transparent 50%);
}

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

.review-card {
  background: rgba(255, 248, 240, 0.05);
  border: 1px solid rgba(255, 248, 240, 0.1);
  border-radius: 20px;
  padding: 24px;
  transition: all var(--transition-base);
}

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

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-light);
}

.review-date {
  font-size: 11px;
  color: rgba(255, 248, 240, 0.5);
}

.review-rating {
  color: #FFD700;
  font-size: 12px;
}

.review-shop {
  font-size: 12px;
  color: var(--accent-gold-light);
  margin-bottom: 12px;
  font-weight: 500;
}

.review-text {
  font-size: 14px;
  color: rgba(255, 248, 240, 0.8);
  line-height: 1.7;
}

/* ===================================
   Column Section
   ================================== */

.column-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.column-card {
  background: var(--bg-beige);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 200px 1fr;
  transition: all var(--transition-base);
}

.column-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-warm-lg);
}

.column-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

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

.column-category {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background: var(--accent-red);
  color: var(--text-light);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}

.column-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.column-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--font-body);
  line-height: 1.5;
}

.column-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.column-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-red);
  transition: color var(--transition-fast);
}

.column-link:hover {
  color: var(--accent-orange);
}

/* ===================================
   Contact Section
   ================================== */

.contact {
  background: var(--bg-beige);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.8;
}

.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}

.benefit-icon {
  width: 24px;
  height: 24px;
  background: var(--accent-red);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.contact-form {
  background: var(--bg-cream);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-warm);
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.required {
  color: var(--accent-red);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-beige);
  border: 2px solid transparent;
  border-radius: 12px;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-red);
  background: var(--bg-cream);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232C1810' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

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

/* ===================================
   Footer
   ================================== */

.footer {
  background: var(--bg-dark);
  padding: 64px 0 32px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-logo .logo-text {
  color: var(--text-light);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 248, 240, 0.6);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 248, 240, 0.1);
  border-radius: 50%;
  color: var(--text-light);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--accent-red);
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 248, 240, 0.6);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 248, 240, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 248, 240, 0.4);
}

/* ===================================
   Responsive Design
   ================================== */

@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .ranking-card-featured {
    grid-template-columns: 1fr;
  }

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

  .genre-card {
    grid-template-columns: 1fr;
  }

  .genre-info {
    padding: 32px;
  }

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

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

  .column-card {
    grid-template-columns: 180px 1fr;
  }

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

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

@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero-content {
    margin-left: 0;
    text-align: center;
  }

  .hero-subtitle br {
    display: none;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .area-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

  .reviews-slider {
    grid-template-columns: 1fr;
  }

  .column-card {
    grid-template-columns: 1fr;
  }

  .column-image {
    aspect-ratio: 16/9;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .stat-divider {
    display: none;
  }

  .genre-tabs {
    gap: 8px;
  }

  .genre-tab {
    padding: 10px 20px;
    font-size: 13px;
  }

  .contact-form {
    padding: 24px;
  }
}
