/*
Theme Name: Smokey Ribs
Theme URI: https://jagosoftware.com/smokeyribs
Author: Jago Software Studio
Author URI: https://jagosoftware.com
Description: WordPress Theme untuk Smokey Ribs, terintegrasi dengan ACF Pro.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: smokeyribs
*/

/* ══════════════════════════════════════
   TOKENS
══════════════════════════════════════ */
:root {
  --black: #090705;
  --dark: #110d08;
  --charcoal: #1c140d;
  --brown-deep: #291708;
  --brown: #6b3a1f;
  --brown-mid: #8b4a2a;
  --caramel: #c47d52;
  --gold: #c9964a;
  --cream: #f0e6d6;
  --warm-white: #faf5ee;
  --red: #8b1a1a;
  --red-bright: #b52b2b;
  --red-light: #d94f4f;
  --border: rgba(107, 58, 31, 0.22);
  --border-hi: rgba(107, 58, 31, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
}

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

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

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--brown);
  border-radius: 4px;
}

/* ══════════════════════════════════════
   LAYOUT HELPERS
══════════════════════════════════════ */
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 52px;
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(9, 7, 5, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-hi);
}

.header-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 52px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  cursor: pointer;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--red), var(--red-bright));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(139, 26, 26, 0.5);
  flex-shrink: 0;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1;
}

.logo-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--caramel);
  margin-top: 3px;
}

nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

/* WP Menu Support */
.header-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
}

.header-menu li {
  margin: 0;
  padding: 0;
}

.header-menu a,
.nav-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(240, 230, 214, 0.5);
  background: transparent;
  transition: color .2s, background .2s;
}

.header-menu a:hover,
.nav-btn:hover {
  color: var(--cream);
  background: rgba(107, 58, 31, .15);
}

.header-menu li.current-menu-item a,
.nav-btn.active {
  color: var(--warm-white);
  background: rgba(139, 26, 26, .2);
  border: 1px solid rgba(139, 26, 26, .3);
}

/* Support for custom WP logo class */
.custom-logo-link {
  display: flex;
  align-items: center;
  max-height: 45px;
}

.custom-logo {
  max-height: 45px;
  width: auto;
  object-fit: contain;
}

.nav-btn svg {
  flex-shrink: 0;
  opacity: .6;
  transition: opacity .2s;
}

.nav-btn:hover svg {
  opacity: 1;
}

.nav-btn.active svg {
  opacity: 1;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  color: var(--warm-white);
  border: none;
  padding: 8px;
  cursor: pointer;
  outline: none;
  align-items: center;
  justify-content: center;
}

.nav-cta {
  margin-left: 10px;
  padding: 8px 20px;
  background: var(--red);
  color: var(--warm-white) !important;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background .2s, transform .2s;
  box-shadow: 0 3px 16px rgba(139, 26, 26, .4);
}

.nav-cta:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
}

.header-menu li.nav-cta a {
  background: var(--red);
  color: var(--warm-white);
  padding: 8px 20px;
  border-radius: 3px;
  box-shadow: 0 3px 16px rgba(139, 26, 26, .4);
}
.header-menu li.nav-cta a:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
  color: var(--warm-white);
}

/* ══════════════════════════════════════
   PAGES
══════════════════════════════════════ */
.page {
  padding-top: 0;
}

/* ══════════════════════════════════════
   COMMON ATOMS
══════════════════════════════════════ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 12px;
}

.tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--red-bright);
}

.hdg {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--warm-white);
  margin-bottom: 14px;
}

.hdg em {
  font-style: italic;
  color: var(--caramel);
}

.lead {
  font-size: 16px;
  color: rgba(240, 230, 214, .85);
  line-height: 1.85;
}

.lead p {
  margin-bottom: 20px;
}

.lead p:last-child {
  margin-bottom: 0;
}

.bar {
  width: 44px;
  height: 3px;
  background: linear-gradient(to right, var(--red), var(--brown-mid));
  border-radius: 2px;
  margin-bottom: 22px;
}

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--red);
  color: var(--warm-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .25s;
  box-shadow: 0 4px 20px rgba(139, 26, 26, .35);
}

.btn-red:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139, 26, 26, .5);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: transparent;
  color: var(--cream);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(196, 125, 82, .4);
  border-radius: 2px;
  transition: all .25s;
}

.btn-ghost:hover {
  border-color: var(--caramel);
  color: var(--caramel);
  background: rgba(196, 125, 82, .08);
}

/* ══════════════════════════════════════
   HOME — HERO
══════════════════════════════════════ */
.hero-section {
  background: linear-gradient(150deg, var(--brown-deep) 0%, var(--dark) 55%, var(--black) 100%);
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(107, 58, 31, .14);
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
}

.hero-ring:nth-child(1) {
  width: 500px;
  height: 500px;
  animation: spin 40s linear infinite;
}

.hero-ring:nth-child(2) {
  width: 370px;
  height: 370px;
  border-color: rgba(139, 26, 26, .1);
  animation: spin 28s linear infinite reverse;
}

.hero-ring:nth-child(3) {
  width: 240px;
  height: 240px;
  animation: spin 18s linear infinite;
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.hero-bg-text {
  position: absolute;
  right: 2%;
  bottom: -10px;
  font-family: 'Playfair Display', serif;
  font-size: 200px;
  font-weight: 900;
  font-style: italic;
  color: rgba(107, 58, 31, .05);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.hero-section .wrap {
  position: relative;
  z-index: 2;
  padding-top: 88px;
  padding-bottom: 72px;
  text-align: left;
  max-width: 1200px;
}
.hero-content {
  max-width: 650px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}

.hero-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--red-bright);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(50px, 6vw, 84px);
  font-weight: 900;
  line-height: .98;
  color: var(--warm-white);
  opacity: 0;
  animation: fadeUp .9s .35s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--caramel);
  display: block;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: rgba(240, 230, 214, .6);
  line-height: 1.7;
  margin: 18px 0 32px;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp .9s .5s forwards;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
  opacity: 0;
  animation: fadeUp .9s .65s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

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

/* Swiper custom */
.swiper-pagination-bullet {
  background: var(--warm-white) !important;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* ══════════════════════════════════════
   HOME — STATS
══════════════════════════════════════ */
.stats-section {
  background: var(--brown-deep);
  border-top: 1px solid var(--border-hi);
  border-bottom: 1px solid var(--border-hi);
}

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

.stat-cell {
  padding: 22px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--border);
  padding-left: 28px;
}

.stat-cell:first-child {
  padding-left: 0;
}

.stat-cell:last-child {
  border-right: none;
}

.stat-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(139, 26, 26, .15);
  border: 1px solid rgba(139, 26, 26, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-light);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--caramel);
  line-height: 1;
}

.stat-lbl {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(240, 230, 214, .4);
  margin-top: 2px;
}

/* ══════════════════════════════════════
   HOME — FEATURED MENU
══════════════════════════════════════ */
.featured-section {
  background: var(--dark);
  padding: 80px 0;
}

.featured-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

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

.mcard {
  background: var(--charcoal);
  border: 1px solid var(--border);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}

.mcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--red), var(--brown-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.mcard:hover {
  background: var(--brown-deep);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .5);
}

.mcard:hover::before {
  transform: scaleX(1);
}

.mcard-icon {
  width: 44px;
  height: 44px;
  background: rgba(139, 26, 26, .12);
  border: 1px solid rgba(139, 26, 26, .25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-light);
  margin-bottom: 16px;
}

.mcard-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 6px;
}

.mcard-desc {
  font-size: 13px;
  color: rgba(240, 230, 214, .48);
  line-height: 1.65;
  margin-bottom: 18px;
}

.mcard-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mcard-price {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--caramel);
}

.badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 2px;
}

.b-red {
  background: rgba(139, 26, 26, .2);
  color: var(--red-light);
  border: 1px solid rgba(139, 26, 26, .3);
}

.b-gold {
  background: rgba(201, 150, 74, .15);
  color: var(--gold);
  border: 1px solid rgba(201, 150, 74, .3);
}

.b-brown {
  background: rgba(107, 58, 31, .2);
  color: var(--caramel);
  border: 1px solid rgba(107, 58, 31, .35);
}

/* ══════════════════════════════════════
   HOME — CTA BANNER
══════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--red) 0%, var(--brown) 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .08);
}

.cta-section::after {
  content: '';
  position: absolute;
  right: 60px;
  top: 30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .06);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 6px;
}

.cta-sub {
  font-size: 14px;
  color: rgba(250, 245, 238, .7);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--warm-white);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .25s;
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════
   ABOUT / CUSTOM PAGE STYLE
══════════════════════════════════════ */
.about-hero-section {
  background: linear-gradient(160deg, var(--brown-deep), var(--dark));
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--brown-deep);
  border-top: 1px solid var(--border-hi);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 52px 0 40px;
}

.ft-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 2px;
}

.ft-brand-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--caramel);
  margin-bottom: 12px;
}

.ft-brand-desc {
  font-size: 12px;
  color: rgba(240, 230, 214, .4);
  line-height: 1.75;
  max-width: 250px;
}

.ft-col-title {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 16px;
}

.ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ft-links li button,
.ft-links li a {
  font-size: 12px;
  color: rgba(240, 230, 214, .4);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
  background: transparent;
  padding: 0;
  font-family: 'DM Sans', sans-serif;
}

.ft-links li button:hover,
.ft-links li a:hover {
  color: var(--caramel);
}

.footer-bottom {
  border-top: 1px solid rgba(107, 58, 31, .25);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ft-copy {
  font-size: 12px;
  color: rgba(240, 230, 214, .28);
}

.ft-copy span {
  color: var(--caramel);
}

.social-row {
  display: flex;
  gap: 8px;
}

.sc-btn {
  width: 34px;
  height: 34px;
  background: rgba(107, 58, 31, .15);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240, 230, 214, .45);
  transition: all .22s;
}

.sc-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--warm-white);
}

/* WA FLOAT */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, .4);
  transition: transform .3s, box-shadow .3s;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .5);
}

/* ══════════════════════════════════════
   MENU PAGE
══════════════════════════════════════ */
.menu-hero-section {
  background: linear-gradient(160deg, var(--brown-deep), var(--dark));
  padding: 80px 0 40px;
  border-bottom: 1px solid var(--border);
}

.menu-hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.fb-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: transparent;
  color: rgba(240, 230, 214, .6);
  border: 1px solid rgba(107, 58, 31, .3);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all .2s;
}

.fb-btn:hover {
  background: rgba(107, 58, 31, .15);
  color: var(--cream);
}

.fb-btn.active {
  background: rgba(139, 26, 26, .15);
  border-color: rgba(139, 26, 26, .4);
  color: var(--warm-white);
}

.menu-body-section {
  padding: 60px 0 100px;
}

.menu-cat {
  margin-bottom: 60px;
}

.cat-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--caramel);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

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

.ml-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: transform .2s, box-shadow .2s;
}

.ml-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
  border-color: var(--border-hi);
}

.ml-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: rgba(139, 26, 26, .1);
  border: 1px solid rgba(139, 26, 26, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-light);
}

.ml-info {
  flex-grow: 1;
}

.ml-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 4px;
}

.ml-desc {
  font-size: 13px;
  color: rgba(240, 230, 214, .5);
  line-height: 1.5;
}

.ml-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.ml-price {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--caramel);
}

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.av-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.av-main {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid var(--border-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.av-accent {
  position: absolute;
  bottom: 10%;
  right: 10%;
  background: var(--red);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--warm-white);
  box-shadow: 0 10px 30px rgba(139, 26, 26, .4);
}

.av-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.av-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 4px;
}

.av-chip {
  position: absolute;
  top: 15%;
  left: 0;
  background: var(--brown-deep);
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--caramel);
}

.feats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.feat {
  display: flex;
  gap: 16px;
}

.feat-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(139, 26, 26, .1);
  border: 1px solid rgba(139, 26, 26, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-light);
}

.feat-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 6px;
}

.feat-desc {
  font-size: 14px;
  color: rgba(240, 230, 214, .6);
  line-height: 1.6;
}

.tl-section {
  padding: 80px 0;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
}

.tl-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-left: 2px dashed rgba(196, 125, 82, .3);
  padding-left: 30px;
  margin-left: 20px;
}

.tl-item {
  position: relative;
}

.tl-dot {
  position: absolute;
  left: -53px;
  top: 0;
  width: 44px;
  height: 44px;
  background: var(--brown-deep);
  border: 1px solid var(--border-hi);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--caramel);
}

.tl-year {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--red-light);
  margin-bottom: 6px;
}

.tl-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 8px;
}

.tl-text {
  font-size: 14px;
  color: rgba(240, 230, 214, .6);
  line-height: 1.6;
  max-width: 500px;
}

.team-section {
  padding: 80px 0;
  background: var(--brown-deep);
}

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

.team-card {
  background: var(--dark);
  border: 1px solid var(--border);
  padding: 32px;
  text-align: center;
  border-radius: 6px;
  transition: transform .3s;
}

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

.team-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(139, 26, 26, .15);
  border: 1px solid rgba(139, 26, 26, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--red-light);
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 4px;
}

.team-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 16px;
}

.team-bio {
  font-size: 13px;
  color: rgba(240, 230, 214, .5);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════ */
.gal-hero-section {
  background: linear-gradient(160deg, var(--brown-deep), var(--dark));
  padding: 80px 0 40px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gal-hero-section .tag,
.gal-hero-section .bar {
  margin-left: auto;
  margin-right: auto;
}

.gal-hero-section .lead {
  margin: 0 auto 32px;
}

.gal-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.gf-btn {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: transparent;
  color: rgba(240, 230, 214, .6);
  border: 1px solid rgba(107, 58, 31, .3);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all .2s;
}

.gf-btn:hover {
  background: rgba(107, 58, 31, .15);
  color: var(--cream);
}

.gf-btn.active {
  background: rgba(139, 26, 26, .15);
  border-color: rgba(139, 26, 26, .4);
  color: var(--warm-white);
}

.gal-body-section {
  padding: 60px 0 100px;
}

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

.gc {
  position: relative;
  height: 280px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: opacity .3s, filter .3s;
}

.gc-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  transition: transform .5s;
}

.gc:hover .gc-bg {
  transform: scale(1.05);
}

.gc-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 7, 5, 0.9) 0%, rgba(9, 7, 5, 0.2) 60%, transparent 100%);
}

.gc-lbl {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  text-align: left;
}

.gc-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 4px;
}

.gc-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--caramel);
}

/* ══════════════════════════════════════
   LOCATION PAGE
══════════════════════════════════════ */
.loc-section {
  background: linear-gradient(160deg, var(--brown-deep), var(--dark));
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.loc-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 6px;
}

.loc-addr-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 16px;
}

.loc-addr-text {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1.4;
  margin-bottom: 24px;
}

.loc-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.ml-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(255, 255, 255, .1);
  position: relative;
}

.ml-tooltip {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%) translateX(10px);
  width: 150px;
  height: 150px;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  pointer-events: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  border: 2px solid var(--brown-deep);
  background-size: cover;
  background-position: center;
}
.ml-item:hover .ml-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.ml-icon {
  width: 32px;
  height: 32px;
  background: rgba(196, 125, 82, .1);
  border: 1px solid rgba(196, 125, 82, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--caramel);
}

.loc-ci-icon {
  width: 32px;
  height: 32px;
  background: rgba(196, 125, 82, .1);
  border: 1px solid rgba(196, 125, 82, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--caramel);
}

.map-box {
  background: var(--dark);
  border: 1px dashed var(--border-hi);
  height: 160px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(196, 125, 82, .5);
  gap: 12px;
}

.map-box-txt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hrs-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.hg:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hg-day {
  font-size: 14px;
  font-weight: 700;
  color: var(--warm-white);
}

.hg-time {
  font-size: 14px;
  color: var(--caramel);
  font-family: monospace;
}

.hg-off {
  color: var(--red-light);
}

.transport-section {
  padding: 80px 0;
  background: var(--dark);
}

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

.tr-card {
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 6px;
  transition: border-color .3s;
}

.tr-card:hover {
  border-color: var(--caramel);
}

.tr-icon {
  width: 48px;
  height: 48px;
  background: rgba(107, 58, 31, .15);
  border: 1px solid rgba(107, 58, 31, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--caramel);
  margin-bottom: 20px;
}

.tr-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 8px;
}

.tr-desc {
  font-size: 14px;
  color: rgba(240, 230, 214, .6);
  line-height: 1.6;
}

/* Lightbox Modal */
.gal-lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(9, 7, 5, 0.95);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.gal-lightbox.active {
  opacity: 1;
  visibility: visible;
}
.gl-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--warm-white);
  cursor: pointer;
  z-index: 2;
  padding: 10px;
}
.gl-close:hover {
  color: var(--caramel);
}
.gl-swiper {
  width: 100%;
  height: 80vh;
}
.gl-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gl-swiper img {
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
  border-radius: 8px;
}
.gl-caption {
  color: var(--warm-white);
  margin-top: 15px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
}
.swiper-button-next, .swiper-button-prev {
  color: var(--caramel);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width:860px) {
  .wrap {
    padding: 0 20px;
  }

  .mobile-menu-btn {
    display: flex;
  }
  
  .header-wrap {
    padding: 0 20px;
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  nav {
    display: none;
    width: 100%;
  }
  
  nav.active {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    padding-bottom: 20px;
  }

  .header-menu {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  
  .header-menu li {
    width: 100%;
    margin: 0;
  }

  .header-menu a,
  .nav-btn {
    justify-content: center;
    padding: 12px;
    border-bottom: 1px solid var(--border-hi);
  }
  
  .header-menu li.nav-cta {
    margin-left: 0;
    margin-top: 10px;
  }
  
  .header-menu li.nav-cta a {
    justify-content: center;
  }

  .two-col,
  .three-col,
  .gal-grid,
  .transport-grid,
  .loc-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

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

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

  .stat-cell {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-left: 16px;
  }

  .cta-inner {
    flex-direction: column;
  }

  .av-wrap {
    min-height: 300px;
  }

  .ml-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .ml-right {
    align-items: center;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    margin-top: 8px;
    border-top: 1px dashed var(--border);
    padding-top: 12px;
  }
}