/* ============================================================
   AKSULAR RESTAURANT — Main Stylesheet
   ============================================================ */

/* --- Variables --- */
:root {
  /* ── Brand Blues ──────────────────────────────── */
  --bg:          #0B1628;   /* Midnight Navy  — primary bg   */
  --bg-2:        #132240;   /* Deep Ocean     — secondary bg */
  --bg-3:        #0B1628;   /* Midnight Navy  — alt sections */
  --bg-card:     #1E3560;   /* Royal Blue     — cards/panels */
  --hover:       #243F72;   /* Sapphire       — hover states */

  /* ── Brand Golds ──────────────────────────────── */
  --gold:        #C9A84C;   /* Antique Gold   — primary accent  */
  --gold-light:  #E8C96D;   /* Champagne Gold — headlines/logos */
  --gold-pale:   #F4E1A8;   /* Pale Gold      — subheadings     */
  --gold-dark:   #8A6E30;   /* Burnished Gold — borders/labels  */

  /* ── Text ─────────────────────────────────────── */
  --text:        #FAF3E0;              /* Warm Cream   */
  --text-muted:  rgba(250,243,224,0.78); /* muted body (WCAG AA on --bg) */
  --text-dim:    rgba(250,243,224,0.62); /* dim/placeholder (WCAG AA on --bg) */

  /* ── Accents ──────────────────────────────────── */
  --teal:        #1A6B72;
  --burgundy:    #6B1A2A;

  /* ── Borders ──────────────────────────────────── */
  --border:      rgba(201,168,76,0.28);

  /* ── Fonts & Easing ───────────────────────────── */
  --ff-serif:    'Playfair Display', Georgia, serif;
  --ff-sans:     'Montserrat', sans-serif;
  --ff-italic:   'Cormorant Garamond', Georgia, serif;
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: var(--ff-sans); }

/* --- Utility --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-subtitle { margin: 0 auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.4rem;
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
}

.btn:hover::after { transform: translateX(0); }

.btn--gold {
  background: var(--gold);
  color: #0B1628;
}

.btn--gold:hover {
  background: var(--gold-light);
  color: #0B1628;
  box-shadow: 0 0 18px rgba(201,168,76,0.55), 0 0 36px rgba(201,168,76,0.25), 0 4px 16px rgba(201,168,76,0.2);
}

.btn--outline {
  border: 1px solid rgba(250,243,224,0.35);
  color: var(--text);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 14px rgba(201,168,76,0.3);
}

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


/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background 0.5s ease, padding 0.4s ease, backdrop-filter 0.5s ease;
}

.navbar.scrolled {
  background: rgba(11, 22, 40, 0.97);
  backdrop-filter: blur(16px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

/* Always-solid navbar (used on every page except the homepage hero). */
.navbar--solid {
  background: rgba(11, 22, 40, 0.97);
  backdrop-filter: blur(16px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}
.navbar--solid .nav-link            { color: rgba(250, 243, 224, 0.65); }
.navbar--solid .nav-link:hover,
.navbar--solid .nav-link--active    { color: #E8C96D; }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
}

.nav-logo__img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-logo .logo-text {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.nav-logo .logo-tagline {
  font-family: var(--ff-sans);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.75);
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

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

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

.nav-link.nav-cta {
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.nav-link.nav-cta::after { display: none; }

.nav-link.nav-cta:hover {
  background: var(--gold);
  color: #0B1628;
  box-shadow: 0 0 14px rgba(201,168,76,0.45);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(201,168,76,0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(26,107,114,0.15) 0%, transparent 50%);
  background-color: var(--bg);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,22,40,0.35) 0%,
    rgba(11,22,40,0.12) 50%,
    rgba(11,22,40,0.55) 100%
  );
}

/* Animated grid lines */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--ff-serif);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 600;
  line-height: 1.0;
  color: var(--gold-light);
  margin-bottom: 2rem;
  overflow: hidden;
}

.hero-line {
  display: block;
  transform: translateY(110%);
  opacity: 0;
}

.hero-line--italic {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  font-family: var(--ff-italic);
  font-size: clamp(4rem, 11vw, 10rem);
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(245,240,232,0.65);
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: scrollHint 2.5s ease-in-out infinite;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2.5s ease-in-out infinite;
}

@keyframes scrollHint {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.8; transform: translateX(-50%) translateY(6px); }
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Floating particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.2; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}


/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 3.5rem;
  text-align: center;
}

.strip-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
}

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

.strip-item h4, .strip-item .strip-label {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold-light);
}

.strip-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.strip-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}


/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 8rem 0;
  background: var(--bg);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-images {
  position: relative;
  height: 600px;
}

.about-img {
  position: absolute;
  border-radius: 0;
  overflow: hidden;
}

.about-img--main {
  top: 0;
  left: 0;
  width: 75%;
  height: 78%;
  z-index: 1;
}

.about-img--secondary {
  bottom: 0;
  right: 0;
  width: 55%;
  height: 50%;
  z-index: 2;
  border: 6px solid #0B1628;
}

.about-img img {
  transition: transform 0.8s var(--ease-out);
}

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

.about-badge {
  position: absolute;
  top: 48%;
  left: 70%;
  transform: translate(-50%, -50%);
  z-index: 3;
  background: var(--gold);
  color: #0B1628;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.badge-number {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 4px;
}

.about-content {}

.about-text {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.9;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
}


/* ============================================================
   QUOTE
   ============================================================ */
.quote-section {
  padding: 6rem 0;
  background: var(--hover);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  overflow: hidden;
}

.quote-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  max-width: 300px;
}

.quote-text {
  font-family: var(--ff-italic);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-pale);
  text-align: center;
  white-space: nowrap;
}


/* ============================================================
   BREAKFAST AT AKSULAR
   ============================================================ */
.breakfast {
  position: relative;
  padding: 7rem 0;
  background: var(--bg);
  overflow: hidden;
}
.breakfast__bg {
  position: absolute;
  inset: 0;
  background-image: var(--breakfast-hero-img, none);
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: saturate(0.85);
  z-index: 0;
}
.breakfast .container { position: relative; z-index: 1; }

.breakfast-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}

.breakfast-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.breakfast-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
.breakfast-card--featured { border-color: rgba(201,168,76,0.55); }

.breakfast-card__img {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #1a2a4a;
}
.breakfast-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.breakfast-card:hover .breakfast-card__img img { transform: scale(1.05); }
.breakfast-card__img--placeholder {
  background: radial-gradient(circle at center, rgba(36,63,114,0.55) 0%, rgba(11,22,40,0.95) 80%);
}
.breakfast-card__img--placeholder img {
  object-fit: contain;
  padding: 56px;
  opacity: 0.85;
}
.breakfast-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold, #C9A84C);
  color: #0B1628;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  font-weight: 600;
}

.breakfast-card__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}
.breakfast-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #FAF3E0;
  margin: 0;
}
.breakfast-card__hours {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold, #C9A84C);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}
.breakfast-card__desc {
  color: rgba(250,243,224,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.breakfast-card__prices {
  list-style: none;
  padding: 0.8rem 0 0;
  margin: 0;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(201,168,76,0.18);
}
.breakfast-card__prices li {
  display: flex;
  flex-direction: column;
}
.breakfast-card__prices strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--gold, #C9A84C);
  line-height: 1;
}
.breakfast-card__prices span {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250,243,224,0.55);
  margin-top: 0.35rem;
}
.breakfast-card .btn { margin-top: auto; align-self: flex-start; }

@media (max-width: 768px) {
  .breakfast { padding: 5rem 0; }
  .breakfast-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .breakfast-card__img { height: 220px; }
  .breakfast-card__body { padding: 1.5rem; }
}

/* ============================================================
   SPECIALTIES (legacy — unused on homepage, kept for admin)
   ============================================================ */
.specialties {
  padding: 8rem 0;
  background: var(--bg);
}

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

.specialty-card {
  background: var(--bg-card);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  border: 1px solid rgba(201,168,76,0.12);
}

.specialty-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(11,22,40,0.6), 0 0 20px rgba(201,168,76,0.15);
}

.specialty-card--featured .card-image { height: 360px; }

.card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.card-image img {
  transition: transform 0.7s var(--ease-out);
}

.specialty-card:hover .card-image img { transform: scale(1.08); }

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,22,40,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}

.specialty-card:hover .card-overlay { opacity: 1; }

.card-overlay-btn {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.7rem 1.6rem;
  transition: all 0.3s;
}

.card-overlay-btn:hover {
  background: var(--gold);
  color: #0B1628;
  box-shadow: 0 0 14px rgba(201,168,76,0.45);
}

.card-body {
  padding: 1.8rem;
}

.card-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}

.card-title {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold-pale);
  margin-bottom: 0.8rem;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.card-price {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  color: var(--gold);
}


/* ============================================================
   MENU
   ============================================================ */
.menu-section {
  padding: 8rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
}

.tab-btn {
  padding: 0.75rem 2rem;
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-pale);
  border: 1px solid rgba(201,168,76,0.2);
  transition: all 0.3s;
  background: transparent;
}

.tab-btn:hover {
  color: var(--gold-light);
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.tab-btn.active {
  background: var(--gold);
  color: #0B1628;
  border-color: var(--gold);
  box-shadow: 0 0 14px rgba(201,168,76,0.4);
}

.menu-panels { position: relative; }

.menu-panel {
  display: none;
  animation: panelFadeIn 0.5s var(--ease-out);
}

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

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

.menu-cat-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.25rem auto 2rem;
}
.menu-cat-image img {
  display: block;
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 14px 32px rgba(0,0,0,0.45);
  border: 1px solid rgba(201,168,76,0.3);
}
/* When falling back to the brand logo, contain it (don't crop) and
   give it a subtle inset background so it reads as intentional. */
.menu-cat-image--logo img {
  object-fit: contain;
  padding: 38px;
  background: radial-gradient(circle at center, rgba(36,63,114,0.55) 0%, rgba(11,22,40,0.95) 80%);
}
@media (max-width: 768px) {
  .menu-cat-image { margin: 0.75rem auto 1.5rem; }
  .menu-cat-image img { width: 220px; height: 220px; }
  .menu-cat-image--logo img { padding: 28px; }
}

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

.menu-item {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  padding: 1.6rem;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  border-right: 1px solid rgba(201,168,76,0.12);
  transition: background 0.3s;
}

.menu-item:nth-child(even) { border-right: none; }

.menu-item:hover { background: rgba(36,63,114,0.55); }

.menu-item-img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 2px;
}

.menu-item-img img {
  transition: transform 0.5s var(--ease-out);
}

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

.menu-item-info { flex: 1; }

.menu-item-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.menu-item-header h4, .menu-item-header h3.menu-item-name {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gold-pale);
  white-space: nowrap;
}

.dots {
  flex: 1;
  border-bottom: 1px dotted var(--text-dim);
  margin-bottom: 2px;
}

.menu-price {
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: var(--gold);
  white-space: nowrap;
}

.menu-item-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.menu-footer {
  text-align: center;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.menu-footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}


/* ============================================================
   CHEF
   ============================================================ */
.chef-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.chef-bg {
  position: absolute;
  inset: 0;
}

.chef-bg img { object-position: center 30%; }

.chef-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11,22,40,0.93) 40%,
    rgba(11,22,40,0.38) 100%
  );
}

.chef-content {
  position: relative;
  z-index: 1;
  max-width: 550px;
}

.chef-text {
  color: rgba(245,240,232,0.7);
  font-size: 1rem;
  line-height: 1.9;
  margin: 1.5rem 0;
}

.chef-signature {
  font-family: var(--ff-italic);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.05em;
}


/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  padding: 8rem 0 6rem;
  background: var(--bg);
}

/* ---- Film tape ---- */
.gallery-tape {
  margin-top: 3.5rem;
  overflow: hidden;
  position: relative;
}

/* Fade edges so the tape looks like it runs off-screen */
.gallery-tape::before,
.gallery-tape::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.gallery-tape::before { left: 0;  background: linear-gradient(to right, var(--bg), transparent); }
.gallery-tape::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }

.gallery-track {
  display: flex;
  gap: 6px;
  width: max-content;
  animation: gallery-roll 28s linear infinite;
  will-change: transform;
}

.gallery-tape:hover .gallery-track {
  animation-play-state: paused;
}

@keyframes gallery-roll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.gallery-tape-item {
  width: 280px;
  height: 400px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-tape-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

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

.gallery-tape-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,22,40,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.35s;
}

.gallery-tape-item:hover .gallery-tape-overlay {
  background: rgba(11,22,40,0.5);
}

.gallery-zoom-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
}

.gallery-tape-item:hover .gallery-zoom-btn {
  opacity: 1;
  transform: scale(1);
}

.gallery-zoom-btn:hover { background: rgba(201,168,76,0.38); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img-wrap {
  max-width: 85vw;
  max-height: 85vh;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(19,34,64,0.85);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
  z-index: 1;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: #0B1628;
  box-shadow: 0 0 16px rgba(201,168,76,0.5);
}

.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }


/* ============================================================
   RESERVATION
   ============================================================ */
.reservation {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.reservation-bg {
  position: absolute;
  inset: 0;
}

.reservation-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,22,40,0.90);
}

.reservation-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.reservation-text p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

.reservation-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.res-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.res-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Form */
.reservation-form {
  background: rgba(19,34,64,0.85);
  border: 1px solid var(--border);
  padding: 2.5rem;
  backdrop-filter: blur(14px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group--full {
  margin-bottom: 1.2rem;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(30,53,96,0.6);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 0;
  padding: 0.9rem 1rem;
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group select { cursor: pointer; }

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

.form-note {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 1rem;
  letter-spacing: 0.03em;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
  border: 1px solid rgba(201,168,76,0.35);
  margin-top: 1rem;
  background: rgba(201,168,76,0.08);
}

.form-success svg {
  width: 36px;
  height: 36px;
  color: var(--gold);
}

.form-success p {
  font-size: 0.9rem;
  color: var(--text-muted);
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 8rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.testimonials-swiper {
  padding: 2rem 0 4rem !important;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 2.5rem;
  height: auto;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(201,168,76,0.45);
  box-shadow: 0 4px 24px rgba(11,22,40,0.5), 0 0 16px rgba(201,168,76,0.1);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-family: var(--ff-italic);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(250,243,224,0.75);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  color: #0B1628;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Swiper overrides */
.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
  width: 48px;
  height: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  top: auto;
  bottom: 0;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.testimonials-swiper .swiper-button-prev { left: calc(50% - 64px); }
.testimonials-swiper .swiper-button-next { right: calc(50% - 64px); }

.testimonials-swiper .swiper-button-prev::after,
.testimonials-swiper .swiper-button-next::after {
  font-size: 0.9rem;
  color: var(--gold);
}

.testimonials-swiper .swiper-button-prev:hover,
.testimonials-swiper .swiper-button-next:hover {
  background: var(--gold);
  box-shadow: 0 0 14px rgba(201,168,76,0.45);
}

.testimonials-swiper .swiper-button-prev:hover::after,
.testimonials-swiper .swiper-button-next:hover::after {
  color: #0B1628;
}

.testimonials-swiper .swiper-pagination-bullet {
  background: var(--text-dim);
  opacity: 1;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 20px;
  border-radius: 2px;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #08101f;
  border-top: 1px solid var(--border);
}

.footer-top {
  padding: 5rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
}

.footer-brand .footer-logo {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.footer-logo__img {
  height: 80px;
  width: auto;
  display: block;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
}

.social-links a svg { width: 18px; height: 18px; }

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.12);
  box-shadow: 0 0 12px rgba(201,168,76,0.3);
}

.footer-col h4, .footer-col h3 {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 1.5rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }

.footer-col ul a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

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

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  gap: 1rem;
}

.hours-list li span:last-child { color: var(--gold); }

.contact-list { gap: 1rem !important; }

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-list li svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}


/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 46px;
  height: 46px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: #0B1628;
  box-shadow: 0 0 16px rgba(201,168,76,0.5);
}

.back-to-top svg { width: 20px; height: 20px; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-images { height: 450px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }

  .reservation-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
  .specialties-grid { grid-template-columns: 1fr 1fr; }
  .specialty-card--featured .card-image { height: 280px; }

  .menu-grid { grid-template-columns: 1fr; }
  .menu-item:nth-child(even) { border-right: 1px solid rgba(255,255,255,0.05); }
  .menu-item:last-child { border-right: none; }

  .gallery-tape-item { width: 220px; height: 320px; }

  .quote-section { flex-direction: column; gap: 1.5rem; padding: 4rem 2rem; }
  .quote-text    { white-space: normal; }
  .quote-line    { width: 80px; height: 1px; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(11,22,40,0.99);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    border-left: 1px solid var(--border);
    transition: right 0.4s var(--ease-out);
    z-index: 999;
  }

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

  .nav-link { font-size: 0.85rem; }
  .nav-link.nav-cta { align-self: flex-start; }

  .nav-toggle { display: flex; z-index: 1000; }

  .intro-strip { padding: 2rem 1rem; }
  .strip-item  { padding: 0.8rem 1.5rem; }
  .strip-divider { display: none; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom .container { flex-direction: column; gap: 0.5rem; text-align: center; }

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

  .gallery-tape-item { width: 180px; height: 260px; }
  .gallery-tape::before, .gallery-tape::after { width: 60px; }

  .chef-section { height: auto; min-height: 0; padding: 5rem 0; }
  .chef-bg img { display: none; }
  .chef-overlay { background: var(--bg-2); }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }

  .about-images { height: 320px; }
  .about-img--secondary { width: 60%; height: 45%; }
  .about-badge { width: 90px; height: 90px; }
  .badge-number { font-size: 1.5rem; }

  .reservation-form { padding: 1.5rem; }

  .menu-tabs { gap: 0.3rem; }
  .tab-btn   { padding: 0.6rem 1rem; font-size: 0.68rem; }
}

/* Smooth color transitions on inputs for date in dark mode */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6) sepia(1) hue-rotate(5deg) saturate(2);
  cursor: pointer;
}


/* ============================================================
   FEATURED SLIDER  —  Elegant redesign
   ============================================================ */
.featured-slider {
  position: relative;
  height: 100vh;
  height: 100svh; /* excludes mobile browser chrome */
  min-height: 580px;
  overflow: hidden;
}

/* ── Swiper shell ── */
.fs-swiper,
.fs-swiper .swiper-wrapper,
.fs-swiper .swiper-slide { height: 100%; }

.fs-slide {
  position: relative;
  overflow: hidden;
  background: #0B1628;
}

/* ── Background (JS-injected div) ── */
.fs-slide__bg {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center 20%; /* show upper portion — suits portrait food shots */
  will-change: transform;
}

/* ── Layered overlay: left solid taper + global vignette ── */
.fs-slide__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(11,22,40,0.94) 0%,
      rgba(11,22,40,0.66) 42%,
      rgba(11,22,40,0.20) 72%,
      rgba(11,22,40,0.42) 100%),
    radial-gradient(ellipse at center,
      transparent 40%,
      rgba(11,22,40,0.55) 100%);
  z-index: 1;
}

/* ── Slide content ── */
.fs-slide__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 9vw;
  max-width: 820px;
}

/* ── Vertical gold accent line ── */
.fs-accent-line {
  width: 1px;
  height: 0;                       /* animated in via GSAP */
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin-bottom: 2rem;
  opacity: 0;
}

/* ── Eyebrow ── */
.fs-eyebrow {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(232,201,109,0.88);
  opacity: 0;
  transform: translateY(18px);
  margin-bottom: 1.6rem;
}

.fs-eyebrow-num {
  font-family: var(--ff-serif);
  font-size: 0.8rem;
  color: var(--gold);
  margin-right: 0.6rem;
}

.fs-eyebrow-dash {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin: 0 0.8rem;
  flex-shrink: 0;
}

/* ── Title ── */
.fs-title {
  display: flex;
  flex-direction: column;
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 600;
  line-height: 1.04;
  color: var(--gold-light);
  margin-bottom: 1.8rem;
}

/* Each line has its own clip container */
.fs-line-wrap {
  display: block;
  overflow: hidden;
  padding-bottom: 0.1em; /* prevent serif descent clipping */
}

.fs-line {
  display: block;
  opacity: 0;
  will-change: transform;
}

.fs-line--italic {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  font-family: var(--ff-italic);
  font-size: clamp(3.5rem, 7vw, 6.8rem);
}

/* ── Body ── */
.fs-body {
  font-size: clamp(0.82rem, 1.1vw, 0.96rem);
  color: rgba(250,243,224,0.58);
  line-height: 1.95;
  max-width: 480px;
  opacity: 0;
  transform: translateY(18px);
  margin-bottom: 2.8rem;
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* ── Elegant CTA button ── */
.fs-cta {
  display: inline-flex;
  align-items: center;
  gap: 0;
  opacity: 0;
  transform: translateY(14px);
  align-self: flex-start;
  position: relative;
  overflow: hidden;
  color: var(--text);
}

.fs-cta__text {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 1.6rem;
  border: 1px solid rgba(201,168,76,0.48);
  border-right: none;
  position: relative;
  z-index: 1;
  transition: color 0.45s var(--ease-out), border-color 0.45s;
}

/* sliding gold fill */
.fs-cta__text::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
  z-index: -1;
}

.fs-cta__icon {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(201,168,76,0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.45s var(--ease-out), border-color 0.45s;
}

.fs-cta__icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
  z-index: -1;
}

.fs-cta__icon svg { width: 18px; height: 18px; }

/* Hover state — fill sweeps in, text turns dark */
.fs-cta:hover .fs-cta__text,
.fs-cta:hover .fs-cta__icon { color: #0B1628; border-color: var(--gold); }

.fs-cta:hover .fs-cta__text::before,
.fs-cta:hover .fs-cta__icon::before { transform: scaleX(1); }

/* Icon arrow slides right on hover */
.fs-cta:hover .fs-cta__icon svg {
  animation: arrowSlide 0.5s var(--ease-out) forwards;
}

@keyframes arrowSlide {
  0%   { transform: translateX(0); }
  45%  { transform: translateX(120%); opacity: 0; }
  46%  { transform: translateX(-120%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

/* ── Circular arc navigation buttons ── */
.fs-nav {
  position: absolute;
  bottom: 3.2rem;
  right: 7vw;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.fs-circle-btn {
  position: relative;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* SVG ring */
.fs-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);        /* start arc at 12 o'clock */
  pointer-events: none;
}

/* circumference = 2π × 30 ≈ 188.5 */
.fs-ring__track {
  fill: none;
  stroke: rgba(201,168,76,0.22);
  stroke-width: 1;
}

.fs-ring__fill {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 188.5;
  stroke-dashoffset: 188.5;        /* fully hidden */
  transition: stroke-dashoffset 0.6s var(--ease-out);
}

.fs-circle-btn:hover .fs-ring__fill {
  stroke-dashoffset: 0;            /* draw full arc on hover */
}

/* Inner circle fill */
.fs-circle-btn::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: rgba(11,22,40,0.75);
  backdrop-filter: blur(10px);
  transition: background 0.4s;
}

.fs-circle-btn:hover::before {
  background: rgba(201,168,76,0.15);
}

/* Arrow icon */
.fs-arrow {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  color: rgba(250,243,224,0.72);
  transition: color 0.35s, transform 0.35s var(--ease-out);
}

.fs-circle-btn:hover .fs-arrow {
  color: var(--gold);
}

.fs-prev:hover .fs-arrow { transform: translateX(-2px); }
.fs-next:hover .fs-arrow { transform: translateX(2px); }

/* ── Counter ── */
.fs-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 44px;
}

.fs-current {
  font-family: var(--ff-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.fs-total {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  display: block;
}

/* thin track between numbers */
.fs-counter-track {
  width: 1px;
  height: 28px;
  background: rgba(201,169,110,0.2);
  position: relative;
  overflow: hidden;
}

.fs-counter-fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0%;
  background: var(--gold);
  transition: height linear;
}

/* ── Progress bar ── */
.fs-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1.5px;
  background: rgba(201,168,76,0.14);
  z-index: 10;
}

.fs-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--gold-dark), var(--gold-light));
}

/* ── Dot pagination ── */
.fs-pagination {
  position: absolute !important;
  left: 9vw !important;
  bottom: 3.6rem !important;
  right: auto !important;
  width: auto !important;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.fs-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background: rgba(245,240,232,0.25);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.5s var(--ease-out);
  cursor: pointer;
}

.fs-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 32px;
  border-radius: 3px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .fs-slide__content { padding: 0 7vw; max-width: 720px; }
}

@media (max-width: 768px) {
  .featured-slider  { min-height: 540px; }

  /* Content sits above the bottom nav — add bottom clearance */
  .fs-slide__content {
    padding: 0 6vw 9rem;
    max-width: 100%;
    justify-content: flex-end;
  }

  .fs-body  { display: none; }

  /* Ghost number — readable size on tablet */
  .fs-ghost-num { font-size: clamp(10rem, 30vw, 18rem); }

  /* Side brand hidden */
  .fs-side-brand { display: none; }

  /* Centre nav at bottom */
  .fs-nav {
    right: 50%;
    transform: translateX(50%);
    bottom: 2rem;
    gap: 1.2rem;
  }

  /* Centre pagination above nav */
  .fs-pagination {
    left: 50% !important;
    transform: translateX(-50%);
    bottom: 5.6rem !important;
  }

  .fs-circle-btn { width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .featured-slider  { min-height: 480px; }

  .fs-slide__content { padding: 0 5vw 8.5rem; }

  .fs-title        { font-size: clamp(2rem, 9vw, 3.2rem); }
  .fs-line--italic { font-size: clamp(2.4rem, 10.5vw, 3.8rem); }
  .fs-accent-line  { display: none; }
  .fs-ghost-num    { font-size: clamp(6rem, 28vw, 10rem); right: -3vw; }
}

/* Landscape phones — very short viewport */
@media (max-height: 480px) and (orientation: landscape) {
  .featured-slider  { height: 100svh; min-height: unset; }

  .fs-slide__content {
    padding: 0 6vw 6rem;
    justify-content: flex-end;
  }

  .fs-title        { font-size: clamp(1.6rem, 4vw, 2.4rem); }
  .fs-line--italic { font-size: clamp(1.9rem, 4.5vw, 2.8rem); }
  .fs-body         { display: none; }
  .fs-accent-line  { display: none; }
  .fs-ghost-num    { display: none; }

  .fs-nav        { bottom: 0.8rem; }
  .fs-pagination { bottom: 3.2rem !important; }
  .fs-circle-btn { width: 44px; height: 44px; }
}

/* ── Film grain overlay ── */
.fs-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n' color-interpolation-filters='linearRGB'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  animation: fs-grain 0.45s steps(1) infinite;
}

@keyframes fs-grain {
  0%   { background-position:   0%   0%; }
  11%  { background-position:  -5% -10%; }
  22%  { background-position: -15%   5%; }
  33%  { background-position:   7% -25%; }
  44%  { background-position:  20%  25%; }
  55%  { background-position: -25%  10%; }
  66%  { background-position:  15%   5%; }
  77%  { background-position:   0%  15%; }
  88%  { background-position:  25%  35%; }
  100% { background-position: -10%  10%; }
}

/* ── Ghost slide number (large, faint, top-right) ── */
.fs-ghost-num {
  position: absolute;
  top: 50%;
  right: 3vw;
  transform: translateY(-50%);
  font-family: var(--ff-serif);
  font-size: clamp(20rem, 32vw, 40rem);
  font-weight: 700;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.07);
  letter-spacing: -0.04em;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  will-change: transform, opacity;
}

/* ── Vertical brand strip (right edge) ── */
.fs-side-brand {
  position: absolute;
  right: 1.6rem;
  top: 0;
  bottom: 0;
  z-index: 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  pointer-events: none;
}

.fs-side-brand span:not(.fs-side-dot) {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.38);
}

.fs-side-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(201,168,76,0.4);
  flex-shrink: 0;
}

/* ── Gold sweep (GSAP-triggered on transition) ── */
.fs-sweep {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 35%,
    rgba(201,168,76,0.10) 45%,
    rgba(232,201,109,0.20) 50%,
    rgba(201,168,76,0.10) 55%,
    transparent 65%,
    transparent 100%
  );
  transform: translateX(-101%);
  will-change: transform;
}



/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 1rem 1.5rem 0;
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250,243,224,0.55);
}
.breadcrumb li:not(:last-child)::after {
  content: '·';
  margin-left: 0.6rem;
  color: rgba(201,168,76,0.6);
}
.breadcrumb a {
  color: #C9A84C;
  text-decoration: none;
}
.breadcrumb a:hover {
  color: #E8C96D;
  text-decoration: underline;
}
.breadcrumb li[aria-current="page"] {
  color: rgba(250,243,224,0.85);
}

/* ============================================================
   Accessibility — larger touch targets on swiper bullets
   ============================================================ */
.swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  margin: 0 8px !important;
  /* Hit area expansion without changing visual size */
  position: relative;
}
.swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  inset: -10px;          /* expands hit area to 34×34 (≥24×24 required) */
}
