html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.bg-paper { background-color: #FAF7F2 !important; }
.text-ink { color: #1A1115 !important; }
.text-ink-light { color: #6B5A60 !important; }
.text-burgundy { color: #7B1F3A !important; }
.bg-burgundy { background-color: #7B1F3A !important; }
.bg-burgundy-deep { background-color: #5C172B !important; }
.text-gold { color: #C9983F !important; }
.bg-gold { background-color: #C9983F !important; }
.border-gold { border-color: #C9983F !important; }

#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #FAF7F2;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#loading-logo {
  animation: loadingLogoPulse 2s ease-in-out infinite;
}

.loading-dots span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E8DFD5;
  animation: loadingDotPulse 1.2s ease-in-out infinite;
}

.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes loadingLogoPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.85; }
}

@keyframes loadingDotPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.4); opacity: 1; }
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

#mainNav {
  transition: all 0.3s ease;
}

#mainNav.scrolled {
  box-shadow: 0 2px 20px rgba(26, 17, 21, 0.06);
}

.nav-link-custom {
  color: #6B5A60 !important;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link-custom:hover,
.nav-link-custom:focus {
  color: #7B1F3A !important;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.5rem;
  right: 0.5rem;
  height: 1px;
  background: #C9983F;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left;
}

.nav-link-custom:hover::after {
  transform: scaleX(1);
}

.nav-social {
  color: #6B5A60;
  transition: all 0.2s cubic-bezier(0.618, 0.382, 0.382, 0.618);
}

.nav-social:hover {
  color: #C9983F;
  transform: translateY(-2px);
  background: rgba(201, 152, 63, 0.08);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231A1115' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.editorial-filter {
  filter: contrast(1.08) saturate(0.88);
}

.hero-title {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #7B1F3A;
}

.hero-subtitle {
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 400;
  color: #1A1115;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.hero-text {
  font-size: clamp(16px, 1.2vw, 19px);
  font-weight: 400;
  line-height: 1.7;
  color: #1A1115;
}

.hero-social-link {
  color: #1A1115;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s cubic-bezier(0.618, 0.382, 0.382, 0.618);
}

.hero-social-link:hover {
  color: #7B1F3A;
}

.hero-social-link i {
  transition: transform 0.2s ease;
}

.hero-social-link:hover i {
  transform: scale(1.1);
}

.cta-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.caption-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6B5A60;
}

.label-gold {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C9983F;
}

.editorial-text {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.75;
  color: #1A1115;
}

.subsection-title {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.split-image-wrap {
  position: absolute;
  inset: 0;
}

.split-content {
  padding: clamp(40px, 5vh, 80px) clamp(24px, 4vw, 64px);
  max-width: 680px;
}

.split-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tag-number {
  font-weight: 700;
  color: #C9983F;
}

.tag-dot {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #C9983F;
  flex-shrink: 0;
}

.tag-label {
  color: #6B5A60;
}

.split-title {
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #7B1F3A;
}

.availability-badge {
  padding: 6px 16px;
  border: 1px solid #E8DFD5;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6B5A60;
}

.split-lead {
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 400;
  line-height: 1.65;
  color: #1A1115;
}

.split-body {
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 400;
  line-height: 1.7;
  color: #1A1115;
}

.reveal-clip-right,
.reveal-clip-right.revealed {
  clip-path: inset(0 0% 0 0);
}

.reveal-clip-left,
.reveal-clip-left.revealed {
  clip-path: inset(0 0 0 0%);
}

.reveal-text-title,
.reveal-text-title.revealed {
  clip-path: inset(0 0% 0 0);
}

.reveal-on-scroll,
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.cta-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.cta-lead {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

.cta-body {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.cta-card {
  padding: 1.25rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  color: #ffffff;
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  min-width: 220px;
}

.cta-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #C9983F;
  transform: translateY(-3px);
  color: #ffffff;
}

.cta-card-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cta-card-handle {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.signature-line {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 600;
  color: #7B1F3A;
  letter-spacing: 0.08em;
  margin-top: 2.5rem;
}

.py-md-80 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.footer-brand {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
}

.footer-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9983F;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s cubic-bezier(0.618, 0.382, 0.382, 0.618);
}

.footer-link:hover {
  color: #C9983F;
}

.footer-meta {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.footer-copyright {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
}

.object-fit-cover { object-fit: cover; }

@media (min-width: 768px) {
  .py-md-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
}

@media (min-width: 992px) {
  .split-image-wrap { min-height: 55vh; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .editorial-filter { animation: none !important; transform: scale(1) !important; }
  .reveal-clip-right,
  .reveal-clip-left { clip-path: inset(0 0% 0 0%) !important; transition: none !important; }
  .reveal-text-title { clip-path: inset(0 0% 0 0) !important; transition: none !important; }
  .reveal-on-scroll { opacity: 1 !important; transform: none !important; transition: none !important; }
  #loading-screen { display: none !important; }
}
