.material-symbols-outlined {
  display: inline-block;
  vertical-align: middle;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.nav-link {
  position: relative;
  color: #44474d;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 2px;
  content: "";
  background: #C5A059;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 260ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: #C5A059;
}

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

.section {
  max-width: 1280px;
  padding: 5rem 1.5rem;
  margin-inline: auto;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-head h2,
.section-title,
.page-hero h1 {
  color: #0A1D37;
  font-family: "Source Serif 4", serif;
  font-weight: 800;
  line-height: 1.05;
}

.section-head h2,
.section-title {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.page-hero {
  position: relative;
  padding: 8rem 1.5rem 5rem;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(10, 29, 55, 0.96), rgba(10, 29, 55, 0.82)),
    url("https://images.unsplash.com/photo-1523580846011-d3a5bc25702b?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.page-hero h1 {
  max-width: 920px;
  margin: 1rem auto 0;
  color: #ffffff;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.page-hero p:last-child {
  max-width: 760px;
  margin: 1.25rem auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
}

.eyebrow {
  color: #C5A059;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.btn-gold,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.35rem;
  font-weight: 900;
  border-radius: 0.5rem;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, color 220ms ease;
}

.btn-gold {
  color: #0A1D37;
  background: #C5A059;
  box-shadow: 0 16px 35px rgba(197, 160, 89, 0.26);
}

.btn-ghost {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-gold:hover,
.btn-ghost:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(10, 29, 55, 0.16);
}

.info-card,
.quote-card,
.dark-card {
  display: block;
  padding: 2rem;
  border-radius: 0.75rem;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.info-card,
.quote-card {
  color: #1B1B1E;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(229, 216, 188, 0.85);
  box-shadow: 0 12px 34px rgba(10, 29, 55, 0.06);
}

.info-card:hover,
.quote-card:hover {
  border-color: rgba(197, 160, 89, 0.7);
  box-shadow: 0 26px 70px rgba(10, 29, 55, 0.13);
  transform: translateY(-7px);
}

.info-card .material-symbols-outlined {
  margin-bottom: 1rem;
  color: #C5A059;
  font-size: 2.25rem;
}

.info-card h2,
.info-card h3,
.image-card h3 {
  color: #0A1D37;
  font-family: "Source Serif 4", serif;
  font-size: 1.45rem;
  font-weight: 800;
}

.info-card p,
.image-card p,
.quote-card,
.mini-row {
  color: #5F6470;
}

.image-card {
  overflow: hidden;
  color: inherit;
  background: #ffffff;
  border: 1px solid rgba(229, 216, 188, 0.9);
  border-radius: 0.75rem;
  box-shadow: 0 12px 34px rgba(10, 29, 55, 0.06);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.image-card:hover {
  box-shadow: 0 26px 70px rgba(10, 29, 55, 0.14);
  transform: translateY(-7px);
}

.image-card img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  transition: transform 800ms ease;
}

.image-card:hover img {
  transform: scale(1.08);
}

.image-card div {
  padding: 1.5rem;
}

.image-card span {
  display: block;
  margin-bottom: 0.5rem;
  color: #C5A059;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-img {
  width: 100%;
  min-height: 26rem;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 26px 70px rgba(10, 29, 55, 0.14);
}

.stat {
  padding: 2rem;
  background: #ffffff;
  border: 1px solid rgba(229, 216, 188, 0.9);
  border-radius: 0.75rem;
  box-shadow: 0 12px 34px rgba(10, 29, 55, 0.06);
}

.stat strong {
  display: block;
  color: #C5A059;
  font-family: "Source Serif 4", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 0.75rem;
  color: #0A1D37;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-band {
  padding: 3rem;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(10, 29, 55, 0.94), rgba(10, 29, 55, 0.76)),
    url("https://images.unsplash.com/photo-1577896851231-70ef18881754?auto=format&fit=crop&w=1400&q=80") center/cover;
  border-radius: 0.9rem;
  box-shadow: 0 26px 70px rgba(10, 29, 55, 0.14);
}

.feature-band h2 {
  margin-top: 1rem;
  font-family: "Source Serif 4", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.06;
}

.feature-band p,
.feature-band li {
  color: rgba(255, 255, 255, 0.8);
}

.feature-band ul {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.feature-band li::before {
  margin-right: 0.65rem;
  color: #C5A059;
  content: ">";
}

.mini-row {
  padding: 1rem 1.2rem;
  background: #ffffff;
  border: 1px solid rgba(229, 216, 188, 0.9);
  border-radius: 0.5rem;
}

.dark-card {
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.dark-card:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-6px);
}

.chip {
  padding: 0.65rem 1rem;
  color: #0A1D37;
  font-weight: 900;
  border: 1px solid rgba(10, 29, 55, 0.14);
  border-radius: 999px;
  transition: all 220ms ease;
}

.chip:hover,
.chip.active {
  color: #ffffff;
  background: #0A1D37;
  transform: translateY(-2px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 12px 34px rgba(10, 29, 55, 0.08);
  transition: transform 450ms ease, box-shadow 450ms ease;
}

.gallery-grid img:hover {
  box-shadow: 0 26px 70px rgba(10, 29, 55, 0.16);
  transform: scale(1.025);
}

.form-input {
  width: 100%;
  padding: 1rem;
  background: #F9F8F3;
  border: 1px solid rgba(197, 160, 89, 0.45);
  border-radius: 0.55rem;
  outline: none;
  transition: box-shadow 220ms ease, border-color 220ms ease;
}

.form-input:focus {
  border-color: #C5A059;
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.18);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 760ms ease, transform 760ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.hero-shell img {
  animation: heroDrift 12s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

@media (max-width: 767px) {
  .section {
    padding-block: 3.5rem;
  }

  .page-hero {
    padding-top: 6rem;
  }
}
