:root {
  --primary: #4A90C4;
  --primary-dark: #1B3A5C;
  --primary-light: #E8F4FD;
  --accent: #6BB3D9;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--gray-700);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.display { font-family: 'Cormorant Garamond', Georgia, serif; }

/* ===== Header banner ===== */
.banner {
  background: var(--primary-dark);
}
.banner-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.logo-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.logo-card img {
  height: 80px;
  width: auto;
  border-radius: 6px;
}

@media (min-width: 640px) {
  .banner-inner { padding: 64px 24px; gap: 48px; }
  .logo-card { padding: 20px; }
  .logo-card img { height: 112px; }
}
@media (min-width: 768px) {
  .logo-card img { height: 128px; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 820px;
  width: 100%;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(27, 58, 92, 0.50) 0%,
    rgba(27, 58, 92, 0.20) 50%,
    rgba(27, 58, 92, 0.80) 100%);
}
.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.45em;
  font-size: 16px;
  margin-bottom: 48px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}
.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(3rem, 11vw, 14rem);
  line-height: 1;
  margin-bottom: 24px;
}
.hero-divider {
  width: 80px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  margin: 40px 0;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 30px;
  margin-bottom: 8px;
}
.hero-date {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 640px) {
  .hero { min-height: 920px; }
  .hero-eyebrow { font-size: 24px; margin-bottom: 64px; }
  .hero-divider { margin: 56px 0; }
  .hero-subtitle { font-size: 36px; }
  .hero-date { font-size: 18px; margin-top: 56px; }
}
@media (min-width: 768px) {
  .hero-eyebrow { font-size: 30px; }
  .hero-subtitle { font-size: 48px; }
  .hero-date { font-size: 20px; }
}

/* ===== Main body ===== */
.main {
  max-width: 768px;
  margin: 0 auto;
  padding: 64px 24px;
}
@media (min-width: 640px) {
  .main { padding: 96px 24px; }
}

/* Intro */
.intro {
  text-align: center;
  margin-bottom: 64px;
}
.intro-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 30px;
  color: var(--primary-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}
.intro-divider {
  width: 48px;
  height: 1px;
  background: var(--primary);
  margin: 0 auto 24px;
}
.intro-text {
  color: var(--gray-600);
  line-height: 1.625;
  font-size: 16px;
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .intro { margin-bottom: 80px; }
  .intro-title { font-size: 36px; }
  .intro-text { font-size: 18px; }
}

/* Details cards */
.details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 64px;
}
@media (min-width: 640px) {
  .details {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 80px;
  }
}
.detail-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s;
}
.detail-card:hover {
  border-color: rgba(74, 144, 196, 0.3);
}
.detail-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 600;
}
.detail-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 30px;
  color: var(--primary-dark);
  font-weight: 300;
  line-height: 1.2;
}
.detail-meta {
  color: var(--gray-500);
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.625;
}
.detail-meta-italic {
  color: var(--gray-400);
  margin-top: 4px;
  font-size: 12px;
  font-style: italic;
}

/* CTA */
.cta {
  text-align: center;
  margin-bottom: 64px;
}
@media (min-width: 640px) {
  .cta { margin-bottom: 80px; }
}
.cta-button {
  display: inline-block;
  background: var(--primary-dark);
  color: #fff;
  letter-spacing: 0.2em;
  padding: 16px 48px;
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s;
}
.cta-button:hover {
  background: var(--primary);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
@media (min-width: 640px) {
  .cta-button { font-size: 14px; }
}
.cta-meta {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 20px;
  font-style: italic;
  font-weight: 300;
}

/* Photo + Map grid */
.photo-map {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 16px;
}
@media (min-width: 640px) {
  .photo-map { grid-template-columns: 1fr 1fr; }
}
.photo-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-card {
  aspect-ratio: 4 / 3;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
}
.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.address-line {
  text-align: center;
  font-size: 12px;
  color: var(--gray-400);
  font-style: italic;
  font-weight: 300;
}

/* Footer */
.footer {
  border-top: 1px solid var(--gray-100);
  padding: 48px 24px;
  background: rgba(249, 250, 251, 0.5);
  margin-top: 64px;
}
.footer-inner {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
  color: var(--gray-500);
  font-size: 14px;
}
.footer-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  color: var(--primary-dark);
  font-weight: 300;
}
.footer-subtitle {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-400);
  margin-top: 8px;
}
.footer-contact {
  margin-top: 24px;
  font-size: 12px;
}
.footer-contact a {
  color: var(--primary);
  margin-left: 4px;
  transition: text-decoration 0.2s;
}
.footer-contact a:hover { text-decoration: underline; }
.footer-copyright {
  font-size: 12px;
  color: var(--gray-300);
  margin-top: 32px;
  font-weight: 300;
}
