:root {
  color-scheme: light;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  color: #1a1410;
  background: #faf6f0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #fdf8f0;
  color: #1a1410;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  max-width: 1400px;
  margin: 0 auto;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16, 24, 40, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  display: block;
  height: 2.75rem;
  width: auto;
  max-width: min(11rem, 42vw);
}

.main-nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.main-nav a {
  font-weight: 600;
  color: #1f2937;
}

.nav-cta {
  display: inline-flex;
  padding: 0.88rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #d41220 0%, #e83040 50%, #d41220 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(227, 6, 19, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.28s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(227, 6, 19, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  font-size: 0.95rem;
  color: #475569;
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

.social-links svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: currentColor;
}

.sticky-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 15;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #d41220 0%, #e83040 50%, #d41220 100%);
  background-size: 200% 200%;
  color: #ffffff;
  font-weight: 700;
  box-shadow:
    0 8px 28px rgba(227, 6, 19, 0.35),
    0 2px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.sticky-cta:hover {
  background-position: 100% 100%;
  transform: translateY(-2px);
  box-shadow:
    0 12px 36px rgba(227, 6, 19, 0.45),
    0 4px 12px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

@media (max-width: 860px) {
  .main-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-copy h1 {
    font-size: 2.4rem;
  }

  .hero-slider-controls {
    right: 1rem;
    bottom: 1rem;
  }

  .carousel-button,
  .slider-button {
    width: 2.8rem;
    height: 2.8rem;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
