:root {
  color-scheme: dark;
  --bg: #08101b;
  --bg-soft: #0f1c2a;
  --surface: #112336;
  --surface-strong: #192d42;
  --text: #eef3fb;
  --muted: #a5b4cd;
  --accent: #c16d39;
  --accent-soft: #d18f5e;
  --border: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, rgba(193, 109, 57, 0.14), transparent 28%), linear-gradient(180deg, #08101b 0%, #091829 45%, #0b1c2e 100%);
  color: var(--text);
  line-height: 1.75;
}

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(8, 16, 27, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding: 5rem 0;
}

.hero-content {
  max-width: 760px;
  text-align: center;
}

.hero-image {
  width: 100%;
  max-width: 920px;
  border-radius: 1rem;
  margin: 1.75rem auto 0;
  display: block;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  object-fit: cover;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h1 {
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  margin: 0;
  line-height: 1.02;
}

.hero p {
  margin: 1.75rem auto 0;
  max-width: 680px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #d18f5e);
  color: #08101b;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.section {
  padding: 5rem 0;
}

.light-section {
  background: linear-gradient(180deg, rgba(14, 25, 40, 0.92), rgba(8, 16, 27, 0.96));
}

.dark-section {
  background: var(--bg-soft);
}

.section-label {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}

.light-label {
  color: #c8cfdc;
}

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.section-text p {
  max-width: 670px;
  color: var(--muted);
}

.section-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.section-cards,
.feature-grid,
.visit-info,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.card,
.feature-item,
.info-block,
.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.75rem;
}

.card h3,
.feature-item h3,
.info-block h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.card p,
.feature-item p,
.info-block p,
.contact-card p {
  margin: 0;
  color: var(--muted);
}

.muted {
  color: var(--muted);
  margin-top: 0.75rem;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-item {
  min-height: 190px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.photo-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
}

.photo-card img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.photo-card p {
  margin: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.visit-info {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-section {
  padding-bottom: 6rem;
}

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
}

.contact-card a {
  color: var(--accent);
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.site-footer {
  background: rgba(8, 16, 27, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links p {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

.footer-links a,
.footer-social a {
  color: var(--accent);
  text-decoration: none;
}

.footer-links a:hover,
.footer-social a:hover {
  text-decoration: underline;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-social img {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
  filter: invert(1);
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .section-grid,
  .contact-grid,
  .visit-info,
  .feature-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 4rem 0;
  }

  .header-inner {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
  }
}

@media (max-width: 560px) {
  .nav-links {
    justify-content: center;
    gap: 0.85rem;
  }

  .hero h1 {
    font-size: 2.75rem;
  }
}
