
:root {
  --bg: #5f8fb3;
  --bg-deep: #4d7b9b;
  --surface: rgba(255,255,255,0.10);
  --surface-strong: rgba(255,255,255,0.16);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.88);
  --accent: #d49a27;
  --accent-deep: #c38711;
  --shadow: 0 14px 36px rgba(0,0,0,0.18);
  --radius: 18px;
  --radius-lg: 28px;
  --page-width: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, #6b97b7 100%);
}
a { color: inherit; }
.page-shell {
  min-height: 100vh;
}
.hero {
  padding: 44px 24px 28px;
}
.hero-inner {
  max-width: var(--page-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 32px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 18px;
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  line-height: 1.03;
  font-weight: 300;
}
.hero p {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 18px 0 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.button {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}
.button-primary:hover { background: var(--accent-deep); }
.button-secondary {
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
}
.hero-card {
  justify-self: center;
  width: min(360px, 78vw);
  text-align: center;
}
.hero-photo-wrap {
  width: min(340px, 66vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 8px solid rgba(255,255,255,0.24);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.16);
}
.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-meta {
  font-size: 1rem;
  color: var(--muted);
}
.hero-meta strong {
  color: white;
}
.gallery-section {
  padding: 12px 24px 48px;
}
.gallery-shell {
  max-width: var(--page-width);
  margin: 0 auto;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(4px);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 600;
}
.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}
.thumb {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border: 0;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255,255,255,0.12);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
  transition: transform .2s ease, box-shadow .2s ease;
}
.thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(0,0,0,0.18);
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.thumb::after {
  content: attr(data-index);
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.82rem;
  padding: 5px 8px;
  border-radius: 999px;
}
.footer-note {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 24px 42px;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,16,23,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  width: min(1280px, 100%);
  height: min(92vh, 100%);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
}
.lightbox-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #fff;
}
.lightbox-counter { color: rgba(255,255,255,0.8); }
.lightbox-close {
  border: 0;
  background: rgba(255,255,255,0.1);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
}
.lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}
.lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 14px;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  cursor: pointer;
  font-size: 1.5rem;
}
.lightbox-nav.prev { left: 10px; }
.lightbox-nav.next { right: 10px; }
.lightbox-caption {
  color: rgba(255,255,255,0.82);
  min-height: 1.4em;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .section-head { flex-direction: column; align-items: start; }
}
@media (max-width: 640px) {
  .hero { padding-top: 32px; }
  .gallery-shell { padding: 16px; }
  .grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
  .lightbox-nav { width: 44px; height: 44px; }
}
