/* ==========================================================================
   陽龍（ヤンロン） 営業用イメージサイト スタイルシート
   制作: VOCサポート株式会社
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. DESIGN TOKENS & RESET
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --bg-dark: #0B0B0D;
  --bg-card: #141419;
  --bg-card-hover: #1C1C24;
  --bg-overlay: rgba(11, 11, 13, 0.85);

  --color-crimson: #9E1B1B;
  --color-crimson-bright: #D32F2F;
  --color-crimson-dark: #5C0A0A;
  --color-flame: #E64A19;
  --color-gold: #D4AF37;
  --color-gold-bright: #F5D061;

  --text-main: #F5F5F7;
  --text-sub: #A1A1A6;
  --text-muted: #6E6E73;

  --border-dark: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(158, 27, 27, 0.4);
  --border-gold: rgba(212, 175, 55, 0.3);

  /* Typography */
  --font-serif: 'Shippori Mincho', 'Noto Serif JP', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing & Layout */
  --container-max: 1200px;
  --header-height: 72px;
  --mobile-cta-height: 64px;

  /* Shadows & Effects */
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px rgba(158, 27, 27, 0.35);
  --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.25);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.7;
  word-break: break-word;
  padding-bottom: calc(var(--mobile-cta-height) + 20px);
  overflow-x: hidden;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --------------------------------------------------------------------------
   02. SALES DEMO NOTIFICATION BANNER
   -------------------------------------------------------------------------- */
.demo-banner {
  background: linear-gradient(90deg, #3A0505 0%, #7A1212 50%, #3A0505 100%);
  border-bottom: 1px solid var(--color-gold);
  color: #FFF;
  font-size: 0.82rem;
  padding: 8px 16px;
  text-align: center;
  position: relative;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.demo-badge {
  background: var(--color-gold);
  color: #000;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   03. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(11, 11, 13, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
  z-index: 1000;
  transition: background var(--transition-normal);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.brand-logo {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-main);
  background: linear-gradient(135deg, #FFFFFF 0%, #F5D061 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  text-transform: uppercase;
}

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

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-sub);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-crimson-bright);
  transition: width var(--transition-fast);
}

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

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

.header-cta-btn {
  display: none;
  background: linear-gradient(135deg, var(--color-crimson) 0%, var(--color-crimson-bright) 100%);
  color: var(--text-main);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-glow);
  transition: all var(--transition-fast);
}

@media (min-width: 992px) {
  .header-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .header-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(211, 47, 47, 0.6);
  }
}

.mobile-nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

@media (min-width: 992px) {
  .mobile-nav-toggle {
    display: none;
  }
}

.mobile-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  transition: all var(--transition-fast);
}

/* Mobile Nav Drawer */
.mobile-drawer {
  position: fixed;
  top: calc(var(--header-height) + 33px);
  right: -100%;
  width: 280px;
  height: 100vh;
  background: rgba(15, 15, 20, 0.98);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--border-dark);
  padding: 30px 24px;
  z-index: 999;
  transition: right var(--transition-normal);
}

.mobile-drawer.active {
  right: 0;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-drawer-links a {
  font-size: 1.05rem;
  font-family: var(--font-serif);
  color: var(--text-main);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
}

/* --------------------------------------------------------------------------
   04. HERO / FIRST VIEW
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) contrast(1.1);
  transform: scale(1.05);
  animation: heroPulse 18s infinite alternate ease-in-out;
}

@keyframes heroPulse {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(158, 27, 27, 0.25) 0%, rgba(11, 11, 13, 0.92) 80%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-tag {
  background: rgba(158, 27, 27, 0.35);
  border: 1px solid var(--border-accent);
  color: var(--color-gold-bright);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-title span {
  color: var(--color-gold);
  background: linear-gradient(135deg, #F5D061 0%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: clamp(0.98rem, 1.8vw, 1.25rem);
  color: #E2E2E8;
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  sm-flex-direction: row;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 576px) {
  .hero-cta-group {
    flex-direction: row;
  }
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-crimson) 0%, var(--color-crimson-bright) 100%);
  color: #FFF;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-glow);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition-fast);
  width: 100%;
}

@media (min-width: 576px) {
  .btn-primary {
    width: auto;
  }
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(211, 47, 47, 0.7);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  color: var(--text-main);
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid var(--border-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition-fast);
  width: 100%;
}

@media (min-width: 576px) {
  .btn-secondary {
    width: auto;
  }
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-gold);
  color: var(--color-gold-bright);
}

/* --------------------------------------------------------------------------
   05. SECTION COMMONS
   -------------------------------------------------------------------------- */
.section {
  padding: 90px 20px;
  position: relative;
}

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

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

.section-subtitle {
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-main);
  position: relative;
  display: inline-block;

}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-crimson-bright), var(--color-gold));
  margin: 14px auto 0;
  border-radius: 2px;
}

.section-lead {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--text-sub);
  font-size: 0.98rem;
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   06. ABOUT SECTION (陽龍について)
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-accent);
}

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

.about-image-wrapper:hover img {
  transform: scale(1.04);
}

.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(11, 11, 13, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-gold);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
}

.about-badge-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-gold-bright);
}

.about-badge-desc {
  font-size: 0.75rem;
  color: var(--text-sub);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all var(--transition-fast);
}

.about-feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateX(6px);
}

.about-feature-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.about-feature-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.about-feature-desc {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   07. RECOMMENDED DISHES (おすすめ料理)
   -------------------------------------------------------------------------- */
.dishes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .dishes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .dishes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dish-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.dish-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-accent);
  box-shadow: 0 15px 35px rgba(158, 27, 27, 0.25);
}

.dish-img-box {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

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

.dish-card:hover .dish-img-box img {
  transform: scale(1.08);
}

.dish-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-crimson);
  color: #FFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.dish-spice {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(11, 11, 13, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FF5722;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 50px;
}

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

.dish-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.dish-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
}

.dish-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-gold);
}

.dish-desc {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 18px;
  flex-grow: 1;
}

.dish-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-dark);
  padding-top: 14px;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.demo-note-pill {
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
}

/* --------------------------------------------------------------------------
   08. MENU OVERVIEW (メニュー)
   -------------------------------------------------------------------------- */
.menu-section-bg {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0F0F14 50%, var(--bg-dark) 100%);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

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

.menu-tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  color: var(--text-sub);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.menu-tab-btn.active,
.menu-tab-btn:hover {
  background: var(--color-crimson);
  color: #FFF;
  border-color: var(--color-crimson-bright);
  box-shadow: var(--shadow-glow);
}

.menu-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

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

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

.menu-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .menu-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.menu-item-row {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  transition: background var(--transition-fast);
}

.menu-item-row:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.15);
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
}

.menu-item-subtext {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.menu-item-price {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-gold);
  white-space: nowrap;
}

.menu-notice-box {
  text-align: center;
  margin-top: 36px;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border-dark);
}

/* --------------------------------------------------------------------------
   09. GALLERY SECTION (ギャラリー)
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 240px;
  cursor: pointer;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-card);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 11, 13, 0.9) 100%);
  opacity: 0.8;
  transition: opacity var(--transition-fast);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

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

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

.gallery-caption {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

/* --------------------------------------------------------------------------
   10. STORE INFO & ACCESS (店舗情報・アクセス)
   -------------------------------------------------------------------------- */
.info-access-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .info-access-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.info-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dark);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
}

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

.info-table tr {
  border-bottom: 1px solid var(--border-dark);
}

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

.info-table th {
  text-align: left;
  padding: 16px 12px 16px 0;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--color-gold);
  width: 110px;
  vertical-align: top;
}

.info-table td {
  padding: 16px 0;
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.7;
}

.tel-link {
  color: var(--color-gold-bright);
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tel-link:hover {
  text-decoration: underline;
}

.status-badge-unconfirmed {
  background: rgba(230, 74, 25, 0.2);
  color: #FF7043;
  border: 1px solid rgba(230, 74, 25, 0.4);
  font-size: 0.72rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}

.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-card);
  height: 380px;
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.6) invert(0.92) contrast(1.2);
}

.map-btn-bar {
  margin-top: 16px;
  display: flex;
  gap: 12px;
}

/* --------------------------------------------------------------------------
   11. INSTAGRAM & SNS
   -------------------------------------------------------------------------- */
.sns-box {
  background: linear-gradient(135deg, rgba(20, 20, 25, 0.9) 0%, rgba(35, 15, 20, 0.9) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 50px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.sns-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-main);
  margin-bottom: 14px;
}

.sns-text {
  color: var(--text-sub);
  font-size: 0.95rem;
  max-width: 540px;
  margin: 0 auto 28px;
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  color: #FFF;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
  transition: transform var(--transition-fast);
}

.btn-instagram:hover {
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   12. RESERVATION & CALL CTA SECTION
   -------------------------------------------------------------------------- */
.cta-section {
  background: linear-gradient(180deg, rgba(158, 27, 27, 0.3) 0%, rgba(11, 11, 13, 1) 100%);
  border-top: 1px solid var(--border-accent);
  text-align: center;
  padding: 80px 20px;
}

.cta-box {
  max-width: 760px;
  margin: 0 auto;
}

.cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--text-main);
  margin-bottom: 16px;
}

.cta-subtext {
  color: var(--text-sub);
  font-size: 1rem;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  sm-flex-direction: row;
  gap: 16px;
  justify-content: center;
}

@media (min-width: 576px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* --------------------------------------------------------------------------
   13. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: #070709;
  border-top: 1px solid var(--border-dark);
  padding: 60px 20px 40px;
  font-size: 0.88rem;
  color: var(--text-sub);
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-gold-bright);
}

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

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

.footer-bottom {
  max-width: var(--container-max);
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* --------------------------------------------------------------------------
   14. MOBILE FIXED BOTTOM CTA BAR
   -------------------------------------------------------------------------- */
.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--mobile-cta-height);
  background: rgba(15, 15, 20, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
}

@media (min-width: 992px) {
  .mobile-bottom-bar {
    display: none;
  }
}

.bottom-cta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-sub);
  font-size: 0.68rem;
  gap: 3px;
  flex: 1;
  height: 100%;
  transition: color var(--transition-fast);
}

.bottom-cta-item.highlight {
  background: linear-gradient(180deg, var(--color-crimson) 0%, var(--color-crimson-bright) 100%);
  color: #FFF;
  font-weight: 700;
}

.bottom-cta-item svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
