:root {
  /* Color Palette - Deep Navy & Gold for Premium Izakaya */
  --primary-color: #1A2744;
  /* Deep Navy */
  --secondary-color: #2E4080;
  /* Medium Navy */
  --accent-color: #C4974A;
  /* Warm Gold */
  --accent-gold: #E8C882;
  /* Light Gold */
  --text-main: #1A1A2E;
  /* Deep Navy Text */
  --text-light: #FAF8F4;
  /* Warm Cream */
  --bg-dark: #0E1B3A;
  /* Darkest Navy */
  --bg-light: #F5F3EE;
  /* Cream Beige */
  --bg-cream: #FAF8F4;
  /* Lighter Cream */
  --border-color: #C4974A;
  /* Gold accent for borders */

  /* Fonts */
  --font-serif: "Noto Serif JP", serif;
  --font-sans: "Noto Sans JP", sans-serif;

  /* Spacing */
  --section-padding: 80px 20px;
  --header-height: 80px;

  /* Transitions */
  --transition-smooth: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.8;
  overflow-x: hidden;
}

h1,
h2,
h3,
.serif {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.05em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

/* ==================== Base Components ==================== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 2px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  letter-spacing: 0.1em;
}

.btn-primary {
  background-color: var(--accent-color);
  color: white;
  border: 1px solid var(--accent-color);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(196, 151, 74, 0.3);
}

.btn-outline {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

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

.btn-ig {
  padding: 4px 10px;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  border-radius: 4px;
  vertical-align: middle;
  margin: 0 4px;
}

.note-small {
  font-size: 0.72rem;
  color: #4a4a6a;
}

/* ==================== Header ==================== */
header {
  height: var(--header-height);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
  color: white;
}

header.scrolled {
  background-color: rgba(250, 248, 244, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(26, 39, 68, 0.12);
  color: var(--text-main);
  height: 70px;
}

header.scrolled .nav-link {
  color: var(--text-main);
}

header.scrolled .logo {
  color: var(--primary-color);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}

.logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2px;
}

.logo {
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  transition: var(--transition-smooth);
}

.nav-menu {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  color: inherit;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: currentColor;
  transition: var(--transition-smooth);
}

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

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

.menu-toggle span {
  width: 30px;
  height: 2px;
  background-color: currentColor;
  transition: var(--transition-smooth);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==================== Scroll Animation ==================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

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

/* ==================== Hero Section ==================== */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      160deg,
      rgba(14, 27, 58, 0.65) 0%,
      rgba(26, 39, 68, 0.55) 40%,
      rgba(46, 64, 128, 0.50) 100%
    ),
    url('../img/store-out.png') center/cover no-repeat;
  z-index: -1;
  transform: scale(1.08);
  transition: transform 12s ease-out;
}

/* When store-out.jpg is placed */
.hero-bg.has-image {
  background:
    linear-gradient(160deg, rgba(14, 27, 58, 0.65) 0%, rgba(26, 39, 68, 0.55) 100%),
    url('../img/store-out.jpg') center/cover no-repeat;
}

.hero.active .hero-bg {
  transform: scale(1);
}

/* Decorative element for hero */
.hero-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, rgba(14, 27, 58, 0.5), transparent);
}

.hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  z-index: 1;
}

.hero-tagline {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 20px;
  letter-spacing: 0.35em;
  color: var(--accent-gold);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  line-height: 1.25;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-content p {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 50px;
  letter-spacing: 0.25em;
  opacity: 0.9;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-btn {
  color: white;
  border-color: white;
}

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

/* Gold accent line */

/* ==================== Sections ==================== */
section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-color), var(--accent-gold));
}

.section-title span {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  color: var(--accent-color);
  margin-bottom: 12px;
}

/* ==================== Concept Section ==================== */
.concept-intro {
  background-color: var(--bg-cream);
  position: relative;
}

.concept-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(196, 151, 74, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(46, 64, 128, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.concept-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 2;
  color: var(--text-main);
}

/* USP Grid */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 80px;
}

.usp-item {
  position: relative;
  height: 560px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(26, 39, 68, 0.15);
  border-radius: 4px;
}

.usp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.usp-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.usp-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.usp-slideshow .slide.active {
  opacity: 1;
  z-index: 1;
}

/* Placeholder for missing images */
.usp-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #c8c8c8 0%, #b0b0b0 50%, #c8c8c8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.usp-item:hover .usp-img,
.usp-item:hover .usp-img-placeholder {
  transform: scale(1.08);
}

.usp-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 60px 40px;
  background: linear-gradient(transparent, rgba(14, 27, 58, 0.93));
  color: var(--text-light);
}

.usp-content h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

/* ==================== Story Section ==================== */
.feature-section {
  display: flex;
  align-items: center;
  gap: 80px;
}

.feature-img {
  flex: 0 0 420px;
}

.store-placeholder {
  width: 420px;
  height: 300px;
  border-radius: 4px;
  background: linear-gradient(135deg, #c8c8c8 0%, #b5b5b5 50%, #c8c8c8 100%);
  box-shadow: 0 15px 30px rgba(26, 39, 68, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.feature-img img {
  border-radius: 4px;
  box-shadow: 0 15px 30px rgba(26, 39, 68, 0.1);
  width: 100%;
}

.feature-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 15px 30px rgba(26, 39, 68, 0.1);
}

.feature-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

.feature-slideshow .slide.active {
  opacity: 1;
  z-index: 2;
}

.feature-slideshow .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: none;
  border-radius: 0;
}

.feature-text {
  flex: 1;
}

.feature-text h3 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--primary-color);
}

.feature-text p {
  color: var(--text-main);
  opacity: 0.9;
  line-height: 2;
}

.no-wrap {
  white-space: nowrap;
}

/* ==================== Menu Grid ==================== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu-card {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(26, 39, 68, 0.1);
  background: white;
}

.menu-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.menu-img-placeholder {
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, #d0d0d0 0%, #bdbdbd 50%, #d0d0d0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  transition: transform 0.8s ease;
}

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

/* ==================== Gallery ==================== */
.gallery-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  align-items: center;
  gap: 10px;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 6px 20px;
  scroll-behavior: smooth;
}

.gallery-track::-webkit-scrollbar {
  height: 8px;
}

.gallery-track::-webkit-scrollbar-thumb {
  background: rgba(26, 39, 68, 0.25);
  border-radius: 999px;
}

.gallery-slide {
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(26, 39, 68, 0.12);
}

.gallery-slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gallery-placeholder {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, #d0d0d0 0%, #bababa 50%, #d0d0d0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.gallery-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(26, 39, 68, 0.2);
  background: white;
  cursor: pointer;
  position: relative;
  box-shadow: 0 6px 16px rgba(26, 39, 68, 0.12);
  transition: var(--transition-smooth);
}

.gallery-btn::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
}

.gallery-btn.next::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.gallery-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.gallery-btn:hover::before {
  border-color: white;
}

/* ==================== Instagram Section ==================== */
.instagram-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  text-align: center;
}

.instagram-section .section-title span {
  color: var(--accent-gold);
}

.instagram-section .section-title h2 {
  color: white;
}

.ig-block {
  max-width: 500px;
  margin: 0 auto;
}

.ig-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  color: var(--accent-gold);
}

.ig-icon svg {
  width: 100%;
  height: 100%;
}

.ig-handle {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
}

.ig-desc {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 35px;
  line-height: 1.8;
}

.instagram-section .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  font-size: 1rem;
  padding: 16px 48px;
}

.instagram-section .btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

/* ==================== Access Table ==================== */
#access {
  background-color: var(--bg-light) !important;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 60px;
  align-items: start;
}

.access-info {
  background: var(--bg-cream);
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(26, 39, 68, 0.06);
  border: 1px solid rgba(196, 151, 74, 0.2);
  width: 100%;
}

.access-table {
  width: 100%;
  border-collapse: collapse;
}

.access-table th {
  text-align: center;
  padding: 20px 10px;
  width: 30%;
  color: var(--primary-color);
  font-weight: 600;
  border-bottom: 1px solid rgba(196, 151, 74, 0.3);
  font-size: 0.9rem;
}

.access-table td {
  padding: 20px 10px;
  border-bottom: 1px solid rgba(196, 151, 74, 0.3);
  line-height: 1.7;
}

.access-table td a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(26, 39, 68, 0.3);
}

.access-table td a:hover {
  color: var(--accent-color);
}

.map-container {
  width: 100%;
  height: 450px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* ==================== Footer ==================== */
footer {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0A1528 100%);
  color: var(--text-light);
  padding: 100px 20px 50px;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-color), var(--accent-gold));
}

footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(196, 151, 74, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.footer-info h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--accent-gold);
}

.footer-links ul li {
  margin-bottom: 12px;
}

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

.copyright {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 1;
}

/* ==================== Responsive ==================== */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 3.2rem;
  }

  .feature-section {
    gap: 50px;
  }

  .feature-img {
    flex: 0 0 320px;
  }

  .store-placeholder {
    width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 16px;
    --header-height: 70px;
  }

  .hero {
    height: 90vh;
  }

  .hero-tagline {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    margin-bottom: 36px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 14px;
    width: 90%;
  }

  .hero-btn, .hero-btns .btn {
    width: 100%;
    text-align: center;
  }

  .hero-content::before {
    font-size: 0.75rem;
    bottom: 30px;
  }

  .section-title h2 {
    font-size: 1.8rem;
    letter-spacing: 0.04em;
  }

  .section-title span {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  /* Mobile Menu */
  .menu-toggle {
    display: flex;
    color: white;
    width: 32px;
    height: 24px;
    position: relative;
  }

  .menu-toggle span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    transform-origin: center;
  }

  .menu-toggle span:nth-child(1) { top: 3px; }
  .menu-toggle span:nth-child(2) { top: 11px; }
  .menu-toggle span:nth-child(3) { top: 19px; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    height: 100vh;
    background-color: var(--bg-dark);
    flex-direction: column;
    justify-content: center;
    padding: 80px 36px;
    transition: var(--transition-smooth);
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.35);
    gap: 0;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 10px 0;
  }

  .nav-menu li:last-child {
    border-bottom: none;
    padding-top: 20px;
  }

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

  .nav-link {
    font-size: 1.4rem;
    color: white;
    display: block;
    padding: 8px 0;
  }

  .nav-menu .nav-link {
    color: white;
  }

  header.scrolled .nav-menu .nav-link {
    color: white;
  }

  header.scrolled .menu-toggle {
    color: var(--primary-color);
  }

  .menu-toggle.active {
    color: var(--accent-gold);
  }

  /* USP Grid */
  .usp-grid {
    grid-template-columns: 1fr;
  }

  .usp-item {
    height: 420px;
    border-radius: 10px;
  }

  .usp-content h3 {
    font-size: 1.3rem;
  }

  /* Story / Feature */
  .feature-section {
    flex-direction: column;
    gap: 30px;
  }

  .feature-img {
    flex: none;
    width: 100%;
  }

  .store-placeholder {
    width: 100%;
    height: 240px;
    border-radius: 10px;
  }

  .feature-text h3 {
    font-size: 1.5rem;
  }

  /* Menu Grid */
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .menu-card {
    border-radius: 10px;
  }

  .menu-img-placeholder {
    height: 180px;
  }

  /* Gallery */
  .gallery-wrap {
    grid-template-columns: 1fr;
  }

  .gallery-btn {
    display: none;
  }

  .gallery-track {
    grid-auto-columns: 82%;
    padding: 10px 2px 18px;
  }

  .gallery-slide {
    border-radius: 10px;
  }

  .gallery-placeholder {
    height: 200px;
  }

  /* Instagram */
  .ig-handle {
    font-size: 1.3rem;
  }

  /* Access */
  #access {
    padding-left: 0;
    padding-right: 0;
  }

  #access .container {
    padding-left: 0;
    padding-right: 0;
  }

  .access-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .access-info {
    padding: 24px 16px;
    border-radius: 0;
    box-shadow: none;
  }

  .access-map {
    width: 100%;
  }

  .map-container {
    height: 300px;
    border-radius: 0;
    box-shadow: none !important;
  }

  /* Ultimate responsive table styling */
  .access-table, 
  .access-table tbody, 
  .access-table tr, 
  .access-table th, 
  .access-table td {
    display: block;
    width: 100% !important;
    text-align: left;
  }

  .access-table tr {
    padding: 20px 0;
    border-bottom: 1px solid rgba(196, 151, 74, 0.2);
  }

  .access-table tr:last-child {
    border-bottom: none;
  }

  .access-table th {
    width: 100% !important;
    padding: 0 0 8px 0;
    border-bottom: none;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
  }

  .access-table td {
    width: 100% !important;
    padding: 0;
    border-bottom: none;
    font-size: 0.9rem;
    word-break: break-word;
    line-height: 1.6;
  }

  /* Footer */
  footer {
    padding: 70px 16px 40px;
  }

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

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.9rem;
  }

  .section-title h2 {
    font-size: 1.55rem;
  }

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

  .menu-img-placeholder {
    height: 220px;
  }
}
