/* ==============================
   FROSTED GLASS NAV — Dark Premium
   ============================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 12, 18, 0.65);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--color-border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-nav--scrolled {
  background: rgba(8, 12, 18, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

/* Brand */
.site-nav__brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
}

.site-nav__brand:hover {
  opacity: 0.9;
}

.site-nav__brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.01em;
}

.site-nav__brand-location {
  font-size: 10px;
  font-weight: 400;
  color: var(--color-text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

/* Nav Links */
.site-nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav__link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link--active {
  color: var(--color-white);
}

.site-nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}

/* CTA */
.site-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 9px 20px;
  background: var(--color-accent);
  color: var(--color-bg);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
}

.site-nav__cta:hover {
  background: var(--color-accent-light);
  color: var(--color-bg);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

.site-nav__cta svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Hamburger */
.site-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 1001;
}

.site-nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.site-nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.site-nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.site-nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 12, 18, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.mobile-menu__link {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-menu__link:hover,
.mobile-menu__link--active {
  color: var(--color-accent-light);
}

.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 40px;
  background: var(--color-accent);
  color: var(--color-bg);
  border-radius: var(--radius-sm);
  text-decoration: none;
  width: 80%;
  max-width: 300px;
  text-align: center;
}

.mobile-menu__address {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--color-text-dim);
  text-align: center;
  line-height: 1.5;
}

/* ==============================
   HERO — Dark Premium
   ============================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--color-bg), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay), var(--gradient-accent-glow);
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
  z-index: 1;
}

.hero__title {
  font-size: clamp(3.5rem, 8vw, 5rem);
  color: var(--color-white);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.hero__title .text-accent {
  color: var(--color-accent);
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero__actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==============================
   PAGE HERO (inner pages)
   ============================== */
.page-hero {
  position: relative;
  padding: clamp(9rem, 20vw, 15rem) 0 clamp(3rem, 8vw, 5rem);
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero h1,
.page-hero__title,
.page-hero-title {
  color: var(--color-white);
  margin-bottom: 0.5rem;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.5);
}

.page-hero p,
.page-hero__subtitle,
.page-hero-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ==============================
   INFO BAR — Button Pills
   ============================== */
.info-bar {
  background: var(--color-bg);
  color: var(--color-text);
  padding: 1.5rem 0;
}

.info-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.info-bar__item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.info-bar__item--link {
  cursor: pointer;
}

.info-bar__item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.02);
}

.info-bar__item svg {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
  stroke: var(--color-accent);
  flex-shrink: 0;
}

.info-bar__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.info-bar__text strong {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
}

.info-bar__text span,
.info-bar__text a {
  font-size: 0.85rem;
  color: var(--color-text);
  line-height: 1.4;
}

/* ==============================
   FOOTER — Dark Premium
   ============================== */
.footer {
  background: var(--color-bg-section-alt);
  color: var(--color-text-muted);
  padding: var(--section-padding) 0 2rem;
  border-top: 1px solid var(--color-border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text-bright);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer__brand span {
  color: var(--color-accent);
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-dim);
}

.footer h4 {
  color: var(--color-text);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  color: var(--color-text-dim);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-accent);
}

.footer__hours {
  font-size: 0.9rem;
  color: var(--color-text-dim);
}

.footer__hours p {
  margin-bottom: 0.3rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-surface);
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  background: var(--color-accent);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: var(--color-text-dim);
}

.footer__social a:hover svg {
  fill: var(--color-bg);
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--color-text-dim);
}

.footer__credit a {
  color: var(--color-accent);
}

/* ==============================
   BACK TO TOP
   ============================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--color-surface);
  color: var(--color-accent);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-base);
  z-index: 90;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible,
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
}

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

/* ==============================
   THEME TOGGLE
   ============================== */
.theme-toggle {
  position: fixed;
  bottom: calc(2rem + 44px + 8px);
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--color-surface);
  color: var(--color-accent);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-base);
  z-index: 90;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.theme-toggle.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.theme-toggle:hover {
  background: var(--color-accent);
  color: var(--color-bg);
  border-color: var(--color-accent);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  transition: transform 0.3s ease;
}

.theme-toggle:hover svg {
  transform: rotate(15deg);
}
