:root {
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(199, 155, 99, 0.16), transparent 26%),
    linear-gradient(180deg, #fbf7f2 0%, #f7f1e8 100%);
}

.nav-link,
.mobile-link {
  border-radius: 9999px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.nav-link {
  color: #2869a8;
}

.nav-link:hover,
.mobile-link:hover {
  transform: translateY(-1px);
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgb(136 25 31);
}

.mobile-link {
  color: #fff;
  display: block;
}

.mobile-link + .mobile-link {
  margin-top: 0.25rem;
}

.mobile-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-kicker,
.section-label {
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.section-label {
  color: #2869a8;
}

.section-title {
  margin-top: 1rem;
  max-width: 44rem;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.05;
  font-weight: 600;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 90px rgba(15, 14, 12, 0.24);
  backdrop-filter: blur(18px);
}

.pill {
  border: 1px solid rgba(40, 105, 168, 0.15);
  border-radius: 9999px;
  background: #ffffff;
  color: #2869a8;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.7rem 1rem;
}

.gallery-tile,
.feature-image {
  width: 100%;
  object-fit: cover;
}

.gallery-tile {
  border-radius: 1.75rem;
  box-shadow: 0 20px 60px rgba(47, 36, 31, 0.14);
}

.feature-card {
  border-radius: 2rem;
  background: #fffdf8;
  box-shadow: 0 18px 60px rgba(47, 36, 31, 0.1);
  padding: 1rem;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.feature-card:hover {
  box-shadow: 0 28px 80px rgba(47, 36, 31, 0.16);
  transform: translateY(-4px);
}

.feature-image {
  height: 19rem;
  border-radius: 1.5rem;
}

.form-field {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.94);
  color: #2f241f;
  padding: 0.95rem 1rem;
  outline: none;
  transition: box-shadow 220ms ease, border-color 220ms ease;
}

.form-field:focus {
  border-color: rgba(199, 155, 99, 0.92);
  box-shadow: 0 0 0 4px rgba(199, 155, 99, 0.22);
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.menu-anchor {
  border-radius: 1.25rem;
  border: 1px solid rgba(40, 105, 168, 0.14);
  background: #f8f2ea;
  color: #2f241f;
  padding: 0.9rem 1rem;
  text-align: left;
  transition: background-color 220ms ease, transform 220ms ease, color 220ms ease;
}

.menu-anchor:hover {
  background: #2869a8;
  color: #ffffff;
  transform: translateX(2px);
}

.menu-section {
  border-radius: 2rem;
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(47, 36, 31, 0.1);
  padding: 1.5rem;
}

.menu-item + .menu-item {
  border-top: 1px solid rgba(47, 36, 31, 0.08);
  margin-top: 1rem;
  padding-top: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    animation: none;
    transition: none;
  }
}

@media (max-width: 767px) {
  .section-title {
    max-width: 100%;
  }
}
