/* =============================================
   EMBER & GOLD — Premium Restaurant CSS
   Theme: Deep charcoal + ember orange + gold
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --bg-dark:      #0f0d0b;
  --bg-card:      #1a1612;
  --bg-section:   #141210;
  --ember:        #e8602c;
  --ember-light:  #f07843;
  --gold:         #c9a84c;
  --gold-light:   #e2c47a;
  --cream:        #f5ede0;
  --text-main:    #e8ddd0;
  --text-muted:   #8a7d6e;
  --text-light:   #c0b09a;
  --border:       rgba(201,168,76,0.18);
  --shadow-glow:  0 8px 40px rgba(232,96,44,0.22);
  --shadow-card:  0 4px 30px rgba(0,0,0,0.55);
  --radius:       14px;
  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── LOADER ── */
#page-loader {
  position: fixed; inset: 0;
  background: var(--bg-dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  animation: pulse-glow 1.5s ease-in-out infinite;
}
.loader-bar {
  width: 180px; height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  display: block; height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--ember), var(--gold));
  border-radius: 2px;
  animation: loader-slide 1.2s ease-in-out infinite;
}
@keyframes loader-slide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}
@keyframes pulse-glow {
  0%,100% { text-shadow: 0 0 20px rgba(201,168,76,0.3); }
  50%      { text-shadow: 0 0 40px rgba(201,168,76,0.7); }
}

/* ── NAVBAR ── */
.navbar {
  background: rgba(15,13,11,0.82) !important;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  padding: 8px 0;
  background: rgba(15,13,11,0.97) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold) !important;
  letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 8px;
}
.navbar-brand span { color: var(--ember); }
.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px !important;
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 2px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%; height: 1px;
  background: var(--gold);
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold) !important; }
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.navbar-toggler { border: 1px solid var(--border); padding: 6px 10px; }
.navbar-toggler-icon { filter: invert(1); }
.nav-btn {
  background: linear-gradient(135deg, var(--ember), #c94a1a);
  color: #fff !important;
  border-radius: 50px;
  padding: 8px 22px !important;
  font-weight: 600;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 18px rgba(232,96,44,0.35);
  transition: all var(--transition);
}
.nav-btn:hover {
  background: linear-gradient(135deg, var(--ember-light), var(--ember));
  box-shadow: 0 6px 28px rgba(232,96,44,0.5);
  transform: translateY(-1px);
}
.nav-btn::after { display: none !important; }

/* ── HERO ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.hero-section:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15,13,11,0.92) 0%,
    rgba(15,13,11,0.7) 50%,
    rgba(15,13,11,0.35) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '★';
  font-size: 0.65rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--cream);
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--text-light);
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 42px;
  line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.btn-primary-custom {
  background: linear-gradient(135deg, var(--ember), #c94a1a);
  color: #fff;
  border: none;
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-glow);
  transition: all var(--transition);
}
.btn-primary-custom:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 45px rgba(232,96,44,0.45);
}
.btn-outline-custom {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245,237,224,0.35);
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all var(--transition);
  backdrop-filter: blur(6px);
}
.btn-outline-custom:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.hero-stats {
  position: relative; z-index: 2;
  margin-top: 80px;
  display: flex; gap: 50px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.hero-scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce-soft 2s infinite;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, var(--gold), transparent);
}
@keyframes bounce-soft {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ── SECTION TITLES ── */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--gold); }
.title-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 18px 0 0;
}
.title-divider span {
  display: block; height: 1px;
  background: var(--border);
  flex: 1;
}
.title-divider i {
  color: var(--gold);
  font-size: 0.9rem;
}

/* ── FEATURED DISHES ── */
.section-featured { padding: 100px 0; background: var(--bg-section); }
.dish-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  height: 100%;
}
.dish-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: rgba(201,168,76,0.35);
}
.dish-img-wrap {
  overflow: hidden;
  height: 220px;
  position: relative;
}
.dish-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.dish-card:hover .dish-img-wrap img { transform: scale(1.1); }
.dish-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--ember);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}
.dish-body { padding: 22px; }
.dish-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 6px;
}
.dish-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.dish-footer { display: flex; justify-content: space-between; align-items: center; }
.dish-price { font-size: 1.3rem; font-weight: 700; color: var(--gold); }
.dish-price sub { font-size: 0.7em; font-weight: 400; }
.btn-add {
  background: rgba(232,96,44,0.12);
  border: 1px solid rgba(232,96,44,0.3);
  color: var(--ember);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-add:hover {
  background: var(--ember);
  color: #fff;
  transform: rotate(90deg);
}

/* ── SPECIAL OFFERS ── */
.section-offers { padding: 100px 0; background: var(--bg-dark); }
.offer-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 380px;
}
.offer-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.offer-card:hover img { transform: scale(1.07); }
.offer-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,13,11,0.92) 0%, rgba(15,13,11,0.3) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 30px;
  transition: all var(--transition);
}
.offer-tag {
  display: inline-block;
  background: var(--ember);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  width: fit-content;
}
.offer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.offer-desc { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 18px; }
.offer-price-wrap { display: flex; align-items: center; gap: 12px; }
.offer-price-old { font-size: 0.9rem; color: var(--text-muted); text-decoration: line-through; }
.offer-price-new { font-size: 1.5rem; font-weight: 700; color: var(--gold); }

/* ── TESTIMONIALS ── */
.section-testimonials { padding: 100px 0; background: var(--bg-section); }
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  transition: all var(--transition);
  height: 100%;
}
.testi-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 18px; letter-spacing: 3px; }
.testi-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.75;
  margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testi-name { font-weight: 600; color: var(--cream); font-size: 0.92rem; }
.testi-role { font-size: 0.76rem; color: var(--text-muted); }

/* ── MENU PAGE ── */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-section) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201,168,76,0.08), transparent);
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--cream);
  position: relative;
}
.page-hero-title em { color: var(--gold); font-style: italic; }
.breadcrumb-custom {
  display: flex; justify-content: center; gap: 8px;
  align-items: center;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb-custom a { color: var(--gold); text-decoration: none; }
.breadcrumb-custom span { color: var(--text-muted); }

.menu-filter-wrap { padding: 50px 0 20px; }
.menu-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
}
.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 10px 26px;
  border-radius: 50px;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--ember), #c94a1a);
  border-color: var(--ember);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232,96,44,0.35);
}
.section-menu { padding: 40px 0 100px; background: var(--bg-dark); }
.menu-item-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex; flex-direction: column;
  height: 100%;
}
.menu-item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: rgba(201,168,76,0.35);
}
.menu-img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.menu-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.menu-item-card:hover .menu-img-wrap img { transform: scale(1.12); }
.menu-category-tag {
  position: absolute; top: 12px; right: 12px;
  background: rgba(15,13,11,0.8);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}
.menu-item-body {
  padding: 20px;
  flex: 1;
  display: flex; flex-direction: column;
}
.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  color: var(--cream);
  margin-bottom: 6px;
}
.menu-item-desc { font-size: 0.82rem; color: var(--text-muted); flex: 1; margin-bottom: 16px; }
.menu-item-footer {
  display: flex; justify-content: space-between; align-items: center;
}
.menu-item-price { font-size: 1.2rem; font-weight: 700; color: var(--gold); }

/* ── ABOUT PAGE ── */
.section-story { padding: 100px 0; background: var(--bg-dark); }
.story-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.story-img-wrap img { width: 100%; height: 500px; object-fit: cover; }
.story-img-badge {
  position: absolute; bottom: 28px; right: -24px;
  background: linear-gradient(135deg, var(--ember), #c94a1a);
  color: #fff;
  padding: 20px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-glow);
}
.story-img-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
.story-img-badge .label { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; }
.story-text { padding-left: 60px; }
.story-body { font-size: 0.96rem; color: var(--text-light); line-height: 1.9; margin-bottom: 20px; }
.feature-list { list-style: none; margin: 28px 0; }
.feature-list li {
  display: flex; align-items: center; gap: 12px;
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 12px;
}
.feature-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.55rem;
  flex-shrink: 0;
}

.section-chefs { padding: 100px 0; background: var(--bg-section); }
.chef-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.chef-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.chef-img { position: relative; overflow: hidden; height: 320px; }
.chef-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.chef-card:hover .chef-img img { transform: scale(1.08); }
.chef-social {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,13,11,0.7);
  display: flex; align-items: center; justify-content: center; gap: 14px;
  opacity: 0;
  transition: opacity var(--transition);
}
.chef-card:hover .chef-social { opacity: 1; }
.chef-social a {
  color: #fff;
  background: var(--ember);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform var(--transition);
}
.chef-social a:hover { transform: scale(1.1); }
.chef-info { padding: 22px; text-align: center; }
.chef-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--cream); margin-bottom: 4px; }
.chef-title { font-size: 0.8rem; color: var(--ember); letter-spacing: 0.1em; text-transform: uppercase; }

.section-gallery { padding: 100px 0; background: var(--bg-dark); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { border-radius: 10px; overflow: hidden; position: relative; }
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:first-child { height: 500px; }
.gallery-item:not(:first-child) { height: 240px; }

/* ── CONTACT PAGE ── */
.section-contact { padding: 100px 0; background: var(--bg-dark); }
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 42px;
}
.form-label { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-control, .form-select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-main);
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 0.92rem;
  transition: all var(--transition);
}
.form-control:focus, .form-select:focus {
  background: rgba(255,255,255,0.06);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  color: var(--text-main);
  outline: none;
}
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: none; height: 140px; }
.contact-info-item {
  display: flex; gap: 18px; align-items: flex-start;
  margin-bottom: 28px;
}
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(232,96,44,0.12);
  border: 1px solid rgba(232,96,44,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ember);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-title { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-val { color: var(--text-main); font-size: 0.96rem; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table tr td { padding: 6px 0; font-size: 0.88rem; }
.hours-table tr td:first-child { color: var(--text-muted); width: 120px; }
.hours-table tr td:last-child { color: var(--text-main); font-weight: 500; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 300px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(60%) invert(92%) hue-rotate(180deg); }

/* ── FOOTER ── */
.footer {
  background: #0a0806;
  border-top: 1px solid var(--border);
  padding: 80px 0 30px;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-brand span { color: var(--ember); }
.footer-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; max-width: 280px; }
.footer-heading {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  font-weight: 600;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-links a::before { content: '›'; color: var(--ember); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--ember);
  border-color: var(--ember);
  color: #fff;
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  margin-top: 60px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ── BACK TO TOP ── */
#back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--ember), #c94a1a);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  opacity: 0; visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
}
#back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(232,96,44,0.5); }

/* ── FADE IN ANIMATION ── */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ── DECORATIVE SEPARATOR ── */
.fancy-sep {
  text-align: center;
  margin: 0 auto 60px;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 18px;
}
.fancy-sep::before, .fancy-sep::after {
  content: '';
  display: block;
  height: 1px;
  width: 80px;
  background: var(--border);
}

/* ── UTILITIES ── */
.text-gold { color: var(--gold); }
.text-ember { color: var(--ember); }
.text-cream { color: var(--cream); }
.bg-section { background: var(--bg-section); }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .story-text { padding-left: 0; margin-top: 50px; }
  .story-img-badge { right: 14px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-row: span 1; height: 240px; }
}
@media (max-width: 768px) {
  .hero-stats { gap: 30px; }
  .hero-title { font-size: 2.8rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-card { padding: 28px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary-custom, .btn-outline-custom { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item:first-child { height: 220px; }
}

/* ── NOTIFICATION TOAST ── */
.toast-custom {
  position: fixed;
  bottom: 90px; right: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--ember);
  border-radius: 10px;
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem;
  color: var(--text-main);
  box-shadow: var(--shadow-card);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 998;
  max-width: 280px;
}
.toast-custom.show { transform: translateX(0); }
.toast-icon { color: var(--ember); font-size: 1.1rem; }
