:root {
  --deep-red: #a51d1d;
  --off-white: #fff;
  --white: #fff;
  --charcoal: #1a1a1a;
  --serif-font: "Playfair Display", serif;
  --sans-font: "Inter", sans-serif;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
*,
:before,
:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  width: 100%;
  font-family: var(--serif-font);
  background-color: var(--white);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}
a:hover {
  opacity: 0.7;
}
img {
  max-width: 100%;
  height: auto;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (width<=768px) {
  .container {
    padding: 0 24px;
  }
}
.capsule-navbar {
  z-index: 12000;
  -webkit-backdrop-filter: blur(8px);
  box-sizing: border-box;
  pointer-events: auto;
  background: #1f1f1fa6;
  border: 1px solid #333;
  border-radius: 9999px;
  flex-direction: column;
  align-items: center;
  width: calc(100% - 45px);
  max-width: fit-content;
  padding: 12px 24px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translate(-50%);
}
.capsule-navbar.mobile-active {
  background: #191919d9;
  border-radius: 20px;
  max-width: 480px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.glass-canvas {
  opacity: 0;
  transition: opacity 0.5s;
}
.capsule-navbar.glass-active {
  -webkit-backdrop-filter: none !important;
  background: 0 0 !important;
  border-color: #ffffff2e !important;
  box-shadow:
    0 20px 40px #00000059,
    inset 0 1px 1px #ffffff40 !important;
}
.capsule-navbar.glass-active .glass-canvas {
  opacity: 1;
}
.navbar-container {
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  width: 100%;
  display: flex;
}
.nav-logo-link {
  align-items: center;
  text-decoration: none;
  display: flex;
}
.nav-logo {
  color: #000;
  width: auto;
  height: 30px;
  transition:
    color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.2s;
  display: block;
}
.nav-logo-link:hover .nav-logo {
  opacity: 0.8;
}
.capsule-navbar.past-hero .nav-logo {
  color: #7a0c0c !important;
}
.nav-middle-links {
  align-items: center;
  gap: 24px;
  display: flex;
}
.nav-capsule-item {
  height: 20px;
  line-height: 20px;
  font-family: var(--sans-font);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.nav-text-container {
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
}
.nav-capsule-item:hover .nav-text-container {
  transform: translateY(-50%);
}
.nav-text-default,
.nav-text-hover {
  color: #000;
}
.nav-right-actions {
  align-items: center;
  gap: 12px;
  display: flex;
}
.nav-btn-login {
  font-family: var(--sans-font);
  cursor: pointer;
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  color: #fff;
  text-shadow: 0 1px 2px #00000080;
  background: #141414b3;
  border: 1px solid #ffffff26;
  border-radius: 9999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  box-shadow:
    0 4px 16px #0000004d,
    inset 0 1px 1px #ffffff26,
    inset 0 -1px 4px #00000080;
}
.nav-btn-login:hover {
  color: #fff;
  background: #282828d9;
  border-color: #ffffff4d;
  box-shadow:
    0 6px 20px #0006,
    inset 0 1px 2px #ffffff40,
    inset 0 -1px 4px #00000080;
}
.nav-signup-wrapper {
  display: inline-block;
  position: relative;
}
.nav-signup-glow {
  opacity: 0.25;
  filter: blur(12px);
  pointer-events: none;
  background: #fff;
  border-radius: 9999px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: absolute;
  inset: -8px;
}
.nav-signup-wrapper:hover .nav-signup-glow {
  opacity: 0.45;
  filter: blur(16px);
  inset: -12px;
}
.nav-btn-signup {
  z-index: 10;
  font-family: var(--sans-font);
  cursor: pointer;
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  color: #fff;
  text-shadow: 0 1px 2px #00000080;
  background: #232323bf;
  border: 1px solid #fff3;
  border-radius: 9999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  position: relative;
  box-shadow:
    0 4px 16px #0000004d,
    inset 0 1px 1px #fff3,
    inset 0 -1px 4px #00000080;
}
.nav-signup-wrapper:hover .nav-btn-signup {
  background: #373737e6;
  border-color: #fff6;
  box-shadow:
    0 6px 20px #0006,
    inset 0 1px 2px #ffffff4d,
    inset 0 -1px 4px #00000080;
}
.nav-mobile-burger {
  color: #d1d5dbe6;
  cursor: pointer;
  background: 0 0;
  border: none;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: none;
}
.nav-mobile-burger svg {
  width: 24px;
  height: 24px;
}
.nav-mobile-drawer {
  opacity: 0;
  pointer-events: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-height: 0;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  overflow: hidden;
}
.capsule-navbar.mobile-active .nav-mobile-drawer {
  opacity: 1;
  pointer-events: auto;
  max-height: 300px;
  padding-top: 16px;
}
.nav-mobile-links {
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  display: flex;
}
.nav-mobile-links a {
  font-family: var(--sans-font);
  color: #000;
  text-align: center;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-mobile-links a:hover {
  color: #000;
}
.nav-mobile-actions {
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-top: 20px;
  display: flex;
}
.nav-mobile-actions .nav-btn-login,
.nav-mobile-actions .nav-signup-wrapper,
.nav-mobile-actions .nav-btn-signup {
  text-align: center;
  width: 100%;
}
.nav-mobile-actions .nav-btn-signup {
  display: block;
}
@media (width<=768px) {
  .nav-middle-links,
  .nav-right-actions {
    display: none;
  }
  .nav-mobile-burger {
    display: flex;
  }
  .capsule-navbar {
    width: calc(100% - 32px);
    max-width: none;
  }
}
.page-wrapper {
  z-index: 2;
  background-color: var(--white);
  position: relative;
  box-shadow: 0 15px 40px #00000014;
}
:root {
  --footer-bg: #bf2b19;
  --footer-text: #111;
}
.site-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  padding: 100px 0 40px;
  position: sticky;
  bottom: 0;
  overflow: hidden;
}
.footer-container {
  flex-direction: column;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  position: relative;
}
.footer-row-top {
  border-bottom: 1px solid #11111126;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 60px;
  display: flex;
}
.footer-slogan {
  font-family: var(--sans-font);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: var(--footer-text);
  margin: 0;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
}
.back-to-top-btn {
  cursor: pointer;
  width: 60px;
  height: 60px;
  color: var(--footer-text);
  background: 0 0;
  border: 1px solid #1113;
  border-radius: 50%;
  outline: none;
  justify-content: center;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
}
.back-to-top-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}
.back-to-top-btn:hover {
  background-color: var(--footer-text);
  color: var(--footer-bg);
  border-color: var(--footer-text);
  transform: translateY(-4px);
}
.back-to-top-btn:hover svg {
  transform: translateY(-2px);
}
.footer-row-middle {
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 60px;
  display: grid;
}
.footer-col {
  flex-direction: column;
  gap: 20px;
  display: flex;
}
.footer-col .col-title {
  font-family: var(--sans-font);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.8;
  font-size: 13px;
  font-weight: 700;
}
.footer-col .address-text {
  font-family: var(--sans-font);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}
.footer-links-list {
  flex-direction: column;
  gap: 12px;
  list-style: none;
  display: flex;
}
.footer-links-list li {
  font-family: var(--sans-font);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 15px;
  font-weight: 700;
}
.footer-links-list a {
  transition: transform 0.2s;
  display: inline-block;
  position: relative;
}
.footer-links-list a:hover {
  opacity: 1;
  transform: translate(4px);
}
.footer-links-list a:after {
  content: "";
  background-color: var(--footer-text);
  transform-origin: 0;
  width: 100%;
  height: 1px;
  transition: transform 0.25s;
  position: absolute;
  bottom: -2px;
  left: 0;
  transform: scaleX(0);
}
.footer-links-list a:hover:after {
  transform: scaleX(1);
}
.footer-row-bottom {
  flex-direction: column;
  margin-top: 20px;
  display: flex;
  position: relative;
}
.footer-watermark {
  font-family: var(--sans-font);
  text-transform: lowercase;
  letter-spacing: -0.05em;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  text-align: center;
  width: 100%;
  margin-bottom: -15px;
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 900;
  line-height: 0.8;
}
.footer-copyright-bar {
  font-family: var(--sans-font);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  -webkit-backdrop-filter: blur(4px);
  z-index: 2;
  background: #bf2b191a;
  border: 1px solid #11111126;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
}
.footer-copyright-bar a {
  font-weight: 700;
  transition: opacity 0.2s;
}
.footer-copyright-bar a:hover {
  opacity: 0.7;
}
@media (width<=1024px) {
  .footer-row-middle {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (width<=768px) {
  .site-footer {
    padding: 60px 0 30px;
  }
  .footer-container {
    gap: 40px;
    padding: 0 24px;
  }
  .footer-row-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding-bottom: 40px;
  }
  .footer-row-middle {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-copyright-bar {
    text-align: center;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
}
.noise-overlay {
  opacity: 0.05;
  pointer-events: none;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  position: absolute;
  inset: 0;
}

/* SKELETON LOADER STYLES */
#global-preloader-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 99998;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
#global-preloader-overlay.fade-out {
  opacity: 0;
}
.skeleton-mask {
  position: absolute;
  background: #e2e2e2;
  border-radius: 8px;
  pointer-events: none;
  z-index: 99999;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.skeleton-mask::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
  animation: skeletonShimmer 1.5s infinite;
  transform: translateX(-100%);
}
@keyframes skeletonShimmer {
  100% { transform: translateX(100%); }
}
.skeleton-mask.fade-out {
  opacity: 0;
}
