@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --fm-ink: #0a1210;
  --fm-forest: #0f2e26;
  --fm-emerald: #1a5c4a;
  --fm-jade: #2d8a6e;
  --fm-gold: #d4a84b;
  --fm-gold-soft: #e8c97a;
  --fm-ivory: #f3efe6;
  --fm-mist: #c5d0cb;
  --fm-surface: #13221e;
  --fm-line: rgba(212, 168, 75, 0.28);
  --fm-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --nav-height: 78px;
  --topbar-height: 42px;
  --radius: 0;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--fm-ivory);
  background: var(--fm-ink);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease), opacity 0.25s var(--ease);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.topbar {
  background: linear-gradient(90deg, #071410 0%, #12352c 50%, #071410 100%);
  border-top: 1px solid var(--fm-line);
  border-bottom: 1px solid var(--fm-line);
  min-height: var(--topbar-height);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 5;
}

.topbar-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.55rem 1rem;
  text-align: center;
}

.topbar-icon {
  color: var(--fm-gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.topbar-text {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--fm-mist);
}

.topbar-text strong {
  color: var(--fm-gold-soft);
  font-weight: 600;
}

.site-navbar {
  background: rgba(10, 18, 16, 0.94);
  border-bottom: 1px solid rgba(212, 168, 75, 0.18);
  padding: 0;
  position: relative;
  z-index: 1020;
}

.site-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid var(--fm-gold);
  display: grid;
  place-items: center;
  color: var(--fm-gold);
  background: linear-gradient(145deg, rgba(212, 168, 75, 0.12), transparent);
  position: relative;
}

.brand-mark::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(212, 168, 75, 0.35);
  pointer-events: none;
}

.brand-mark i {
  font-size: 1.05rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--fm-ivory);
}

.brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fm-gold);
  margin-top: 0.2rem;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--fm-line);
  background: transparent;
  color: var(--fm-ivory);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--fm-gold);
  color: var(--fm-gold);
  outline: none;
}

.nav-toggle[aria-expanded='true'] {
  background: rgba(212, 168, 75, 0.1);
  border-color: var(--fm-gold);
  color: var(--fm-gold);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  display: block;
  padding: 0.55rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--fm-mist);
  position: relative;
  white-space: nowrap;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.25rem;
  height: 1px;
  background: var(--fm-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.active {
  color: var(--fm-ivory);
  outline: none;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.active::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--fm-forest);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(7, 16, 13, 0.92) 0%, rgba(7, 16, 13, 0.72) 42%, rgba(15, 46, 38, 0.45) 70%, rgba(7, 16, 13, 0.7) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(212, 168, 75, 0.18), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5.5rem 0 4.5rem;
  max-width: 720px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
  color: var(--fm-gold-soft);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-kicker span {
  width: 36px;
  height: 1px;
  background: var(--fm-gold);
  display: inline-block;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin: 0 0 1.25rem;
  color: var(--fm-ivory);
}

.hero-title em {
  font-style: italic;
  color: var(--fm-gold-soft);
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  color: var(--fm-mist);
  max-width: 34rem;
  margin: 0 0 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn-fm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0.85rem 1.55rem;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn-fm-primary {
  background: linear-gradient(135deg, var(--fm-gold) 0%, #b8862e 100%);
  color: var(--fm-ink);
  box-shadow: 0 10px 30px rgba(212, 168, 75, 0.25);
}

.btn-fm-primary:hover,
.btn-fm-primary:focus-visible {
  transform: translateY(-2px);
  color: var(--fm-ink);
  box-shadow: 0 16px 36px rgba(212, 168, 75, 0.35);
  outline: none;
}

.btn-fm-ghost {
  background: transparent;
  border-color: rgba(243, 239, 230, 0.35);
  color: var(--fm-ivory);
}

.btn-fm-ghost:hover,
.btn-fm-ghost:focus-visible {
  border-color: var(--fm-gold);
  color: var(--fm-gold-soft);
  outline: none;
}

.hero-frame {
  position: absolute;
  right: 6%;
  bottom: 12%;
  z-index: 2;
  width: min(280px, 28vw);
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--fm-line);
  background: rgba(10, 18, 16, 0.72);
  backdrop-filter: blur(10px);
  animation: fadeRise 1.1s var(--ease) both;
  animation-delay: 0.35s;
}

.hero-frame-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fm-gold);
  margin-bottom: 0.55rem;
}

.hero-frame-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.hero-frame-meta {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: var(--fm-mist);
  margin: 0;
}

.hero-frame-meta i {
  color: var(--fm-gold);
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-intro {
  max-width: 620px;
  margin-bottom: 3rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--fm-gold);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.section-text {
  color: var(--fm-mist);
  margin: 0;
  font-weight: 300;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.experience-item {
  padding: 2rem 1.6rem;
  background: linear-gradient(165deg, rgba(26, 92, 74, 0.22), rgba(19, 34, 30, 0.9));
  border: 1px solid rgba(212, 168, 75, 0.16);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.experience-item:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 75, 0.45);
  box-shadow: var(--fm-shadow);
}

.experience-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--fm-line);
  color: var(--fm-gold);
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
}

.experience-item h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 0 0 0.7rem;
}

.experience-item p {
  margin: 0;
  color: var(--fm-mist);
  font-weight: 300;
  font-size: 0.95rem;
}

.signature {
  background:
    radial-gradient(circle at 15% 20%, rgba(212, 168, 75, 0.12), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(45, 138, 110, 0.16), transparent 45%),
    var(--fm-surface);
  border-top: 1px solid rgba(212, 168, 75, 0.12);
  border-bottom: 1px solid rgba(212, 168, 75, 0.12);
}

.signature-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.signature-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-block {
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(212, 168, 75, 0.2);
  background: rgba(10, 18, 16, 0.55);
}

.stat-block strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--fm-gold-soft);
  line-height: 1;
  margin-bottom: 0.45rem;
}

.stat-block span {
  font-size: 0.84rem;
  color: var(--fm-mist);
  letter-spacing: 0.04em;
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(212, 168, 75, 0.16);
  overflow: hidden;
}

.split-feature.reverse .split-copy {
  order: 2;
}

.split-media {
  min-height: 360px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.split-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 18, 16, 0.15), rgba(10, 18, 16, 0.35));
}

.split-feature.reverse .split-media::after {
  background: linear-gradient(270deg, rgba(10, 18, 16, 0.15), rgba(10, 18, 16, 0.35));
}

.split-copy {
  padding: clamp(2rem, 4vw, 3.4rem);
  background: linear-gradient(165deg, rgba(19, 34, 30, 0.95), rgba(10, 18, 16, 0.98));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-list {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
}

.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--fm-mist);
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.split-list i {
  color: var(--fm-gold);
  margin-top: 0.3rem;
}

.events-band {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(212, 168, 75, 0.14);
  border-bottom: 1px solid rgba(212, 168, 75, 0.14);
}

.events-band-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.events-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(7, 16, 13, 0.92) 0%, rgba(7, 16, 13, 0.7) 48%, rgba(7, 16, 13, 0.55) 100%);
}

.events-band-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 4.5rem 0;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.journey-step {
  padding: 1.6rem 1.3rem;
  border: 1px solid rgba(212, 168, 75, 0.16);
  background: rgba(19, 34, 30, 0.55);
  position: relative;
}

.journey-step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--fm-gold);
  line-height: 1;
  margin-bottom: 0.85rem;
}

.journey-step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.55rem;
}

.journey-step p {
  margin: 0;
  color: var(--fm-mist);
  font-weight: 300;
  font-size: 0.92rem;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.highlight-card {
  border: 1px solid rgba(212, 168, 75, 0.16);
  background: rgba(10, 18, 16, 0.45);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.highlight-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 168, 75, 0.4);
}

.highlight-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.highlight-card-body {
  padding: 1.35rem 1.25rem 1.5rem;
}

.highlight-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
}

.highlight-card-body p {
  margin: 0;
  color: var(--fm-mist);
  font-weight: 300;
  font-size: 0.92rem;
}

.disclaimer-band {
  background: linear-gradient(90deg, #0b1a16, #12352c 50%, #0b1a16);
  border-top: 1px solid var(--fm-line);
  border-bottom: 1px solid var(--fm-line);
  padding: 2.4rem 0;
}

.disclaimer-band-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
}

.disclaimer-band-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--fm-line);
  color: var(--fm-gold);
}

.disclaimer-band h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 0 0 0.4rem;
}

.disclaimer-band p {
  margin: 0;
  color: var(--fm-mist);
  font-weight: 300;
  font-size: 0.92rem;
}

.cta-panel {
  padding: 3.2rem 2rem;
  border: 1px solid rgba(212, 168, 75, 0.25);
  background:
    radial-gradient(circle at 80% 20%, rgba(212, 168, 75, 0.14), transparent 45%),
    linear-gradient(145deg, rgba(26, 92, 74, 0.25), rgba(10, 18, 16, 0.95));
  text-align: center;
}

.cta-panel .section-title {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-panel .section-text {
  max-width: 520px;
  margin: 0 auto 1.8rem;
}

.cta-panel .hero-actions {
  justify-content: center;
}

.page-hero {
  padding: 4.2rem 0 2.8rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 168, 75, 0.12), transparent 40%),
    linear-gradient(180deg, #0f2e26, #0a1210);
  border-bottom: 1px solid rgba(212, 168, 75, 0.16);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 0.75rem;
}

.page-hero p {
  margin: 0;
  max-width: 42rem;
  color: var(--fm-mist);
  font-weight: 300;
}

.legal-content {
  padding: 3.5rem 0 4.5rem;
}

.legal-content article {
  max-width: 760px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 2rem 0 0.75rem;
  color: var(--fm-gold-soft);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--fm-mist);
  font-weight: 300;
}

.legal-content ul {
  padding-left: 1.15rem;
  margin: 0.6rem 0 1rem;
}

.legal-content li + li {
  margin-top: 0.4rem;
}

.site-footer {
  background: #070d0b;
  border-top: 1px solid rgba(212, 168, 75, 0.16);
  padding: 3.5rem 0 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .brand-name {
  font-size: 1.7rem;
}

.footer-text {
  color: var(--fm-mist);
  font-weight: 300;
  margin: 1rem 0 0;
  max-width: 28rem;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 1rem;
  color: var(--fm-gold-soft);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li + li {
  margin-top: 0.55rem;
}

.footer-links a {
  color: var(--fm-mist);
  font-size: 0.92rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--fm-gold-soft);
  outline: none;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 168, 75, 0.12);
  color: rgba(197, 208, 203, 0.75);
  font-size: 0.82rem;
}

.mobile-nav-panel {
  display: none;
}

.mobile-nav-inner,
.mobile-nav-head,
.mobile-nav-foot {
  display: none;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .nav-toggle {
    display: inline-flex;
  }

  .desktop-nav {
    display: none;
  }

  .site-navbar {
    z-index: 1040;
  }

  .mobile-nav-panel {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background:
      linear-gradient(180deg, rgba(12, 24, 20, 0.99) 0%, rgba(8, 14, 12, 0.99) 100%);
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: max-height 0.35s var(--ease), opacity 0.28s var(--ease), visibility 0.28s var(--ease), border-color 0.28s var(--ease), box-shadow 0.28s var(--ease);
  }

  .mobile-nav-panel.is-open {
    max-height: min(78vh, 560px);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    border-bottom-color: rgba(212, 168, 75, 0.28);
    box-shadow: 0 28px 48px rgba(0, 0, 0, 0.45);
    overflow-y: auto;
  }

  .mobile-nav-panel[hidden] {
    display: none !important;
  }

  .mobile-nav-panel.is-open[hidden] {
    display: block !important;
  }

  .mobile-nav-inner {
    display: block;
    padding: 1.15rem 1.25rem 1.4rem;
  }

  .mobile-nav-head {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(212, 168, 75, 0.18);
  }

  .mobile-nav-label {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--fm-gold);
  }

  .mobile-nav-brand {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--fm-ivory);
    letter-spacing: 0.03em;
  }

  .mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
  }

  .mobile-nav-list a {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.85rem 0.95rem;
    border: 1px solid rgba(212, 168, 75, 0.14);
    background: rgba(19, 34, 30, 0.55);
    color: var(--fm-mist);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
  }

  .mobile-nav-list a i:first-child {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(212, 168, 75, 0.22);
    color: var(--fm-gold);
    font-size: 0.85rem;
    flex-shrink: 0;
    background: rgba(212, 168, 75, 0.08);
  }

  .mobile-nav-list a span {
    flex: 1;
  }

  .mobile-nav-list a:hover,
  .mobile-nav-list a:focus-visible {
    color: var(--fm-ivory);
    border-color: rgba(212, 168, 75, 0.45);
    background: rgba(26, 92, 74, 0.28);
    outline: none;
    transform: translateX(3px);
  }

  .mobile-nav-list a.active {
    color: var(--fm-ivory);
    border-color: var(--fm-gold);
    background: linear-gradient(135deg, rgba(212, 168, 75, 0.18), rgba(26, 92, 74, 0.22));
  }

  .mobile-nav-list a.active i:first-child {
    background: rgba(212, 168, 75, 0.18);
    border-color: var(--fm-gold);
  }

  .mobile-nav-foot {
    display: block;
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 168, 75, 0.16);
  }

  .mobile-nav-foot p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--fm-mist);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
  }

  .mobile-nav-foot i {
    color: var(--fm-gold);
  }

  .hero-frame {
    display: none;
  }

  .experience-grid,
  .signature-panel,
  .footer-grid,
  .split-feature,
  .split-feature.reverse,
  .journey-grid,
  .highlight-grid,
  .disclaimer-band-inner {
    grid-template-columns: 1fr;
  }

  .split-feature.reverse .split-copy {
    order: 0;
  }

  .split-media {
    min-height: 260px;
  }

  .signature-stats {
    grid-template-columns: 1fr 1fr;
  }

  .journey-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575.98px) {
  .topbar-text {
    font-size: 0.7rem;
    letter-spacing: 0.02em;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .brand-tag {
    letter-spacing: 0.14em;
  }

  .hero-content {
    padding: 4rem 0 3.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-fm {
    width: 100%;
  }

  .signature-stats,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    flex-direction: column;
  }

  .disclaimer-band-inner .btn-fm {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media,
  .hero-frame,
  .reveal,
  .experience-item,
  .btn-fm {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.fm-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(4, 10, 8, 0.82);
  backdrop-filter: blur(8px);
}

.fm-overlay[hidden] {
  display: none !important;
}

.fm-dialog {
  width: min(100%, 420px);
  padding: 2rem 1.75rem 1.75rem;
  border: 1px solid rgba(212, 168, 75, 0.35);
  background: linear-gradient(165deg, #13221e, #0a1210);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.fm-dialog-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--fm-line);
  color: var(--fm-gold);
  font-size: 1.2rem;
}

.fm-dialog h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  margin: 0 0 0.65rem;
  color: var(--fm-ivory);
}

.fm-dialog p {
  margin: 0 0 1.5rem;
  color: var(--fm-mist);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.55;
}

.fm-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.fm-dialog-actions .btn-fm {
  min-width: 140px;
  min-height: 46px;
  padding: 0.7rem 1.1rem;
  font-size: 0.78rem;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1900;
  max-width: 720px;
  margin: 0 auto;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(212, 168, 75, 0.3);
  background: rgba(10, 18, 16, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner-copy {
  flex: 1 1 280px;
}

.cookie-banner-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: var(--fm-ivory);
}

.cookie-banner-copy p {
  margin: 0;
  color: var(--fm-mist);
  font-size: 0.86rem;
  font-weight: 300;
}

.cookie-banner-copy a {
  color: var(--fm-gold-soft);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cookie-banner-actions .btn-fm {
  min-height: 42px;
  padding: 0.55rem 1rem;
  font-size: 0.74rem;
  cursor: pointer;
}

body.fm-locked {
  overflow: hidden;
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(212, 168, 75, 0.14);
  color: var(--fm-mist);
  font-weight: 300;
}

.info-list li:last-child {
  border-bottom: 0;
}

.info-list i {
  color: var(--fm-gold);
  margin-top: 0.25rem;
}

.info-list strong {
  display: block;
  color: var(--fm-ivory);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.menu-board {
  display: grid;
  gap: 1rem;
}

.menu-group {
  border: 1px solid rgba(212, 168, 75, 0.16);
  background: rgba(19, 34, 30, 0.45);
  padding: 1.6rem 1.4rem;
}

.menu-group h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin: 0 0 1rem;
  color: var(--fm-gold-soft);
}

.menu-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(212, 168, 75, 0.1);
}

.menu-row:last-child {
  border-bottom: 0;
}

.menu-row span {
  color: var(--fm-mist);
  font-weight: 300;
  font-size: 0.92rem;
}

.menu-row strong {
  color: var(--fm-ivory);
  font-weight: 500;
}

.menu-row em {
  color: var(--fm-gold);
  font-style: normal;
  white-space: nowrap;
}

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

.contact-tile {
  padding: 1.6rem 1.3rem;
  border: 1px solid rgba(212, 168, 75, 0.16);
  background: rgba(19, 34, 30, 0.5);
}

.contact-tile i {
  color: var(--fm-gold);
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
}

.contact-tile h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.contact-tile p,
.contact-tile a {
  color: var(--fm-mist);
  font-weight: 300;
  font-size: 0.92rem;
}

.contact-tile a:hover,
.contact-tile a:focus-visible {
  color: var(--fm-gold-soft);
  outline: none;
}

@media (max-width: 991.98px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .fm-dialog-actions,
  .cookie-banner-actions {
    flex-direction: column;
  }

  .fm-dialog-actions .btn-fm,
  .cookie-banner-actions .btn-fm {
    width: 100%;
  }
}
