:root {
  --denim: #1A2C5B;
  --gold: #D4AF37;
  --beige: #F8F4EF;
  --white: #ffffff;
}

body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  color: var(--denim);
  background: var(--beige);
  line-height: 1.6;
}

header {
  background: linear-gradient(180deg, rgba(26,44,91,0.95), rgba(26,44,91,0.7));
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
}

header h1 {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 6px;
  letter-spacing: 1px;
}

header p {
  font-size: 18px;
  color: var(--beige);
}

section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

h2 {
  border-left: 6px solid var(--gold);
  padding-left: 10px;
  color: var(--denim);
  margin-bottom: 16px;
}

.hero {
  text-align: center;
  position: relative;
}

.hero img {
  width: 100%;
  max-height: 550px;
  object-fit: cover;
  border-radius: 10px;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  text-shadow: 1px 1px 8px rgba(0,0,0,0.6);
}

.hero-text h1 {
  font-size: 56px;
  color: var(--gold);
}

.hero-text p {
  font-size: 22px;
}

.video-section iframe {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.gallery-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minm
