/* Basic reset */
* { box-sizing: border-box; }
html, body { height: 100%; }
body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Ubuntu, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif; color: #111; background: #fff; }

:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #6b7280;
  --primary: #0ea5e9;
  --primary-600: #0284c7;
  --accent: #16a34a;
  --surface: #f7f7f7;
  --card: #ffffff;
  --shadow: 0 6px 24px rgba(0,0,0,.08);
  --radius: 14px;
}

.container { width: min(1100px, 92%); margin: 0 auto; }
.section { padding: 56px 0; }
.section--alt { background: var(--surface); }
h1, h2, h3 { line-height: 1.2; margin: 0 0 16px; }
p { margin: 0 0 12px; }
.muted { color: var(--muted); }
.small { font-size: .95rem; }

.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; }
.nav .brand { font-weight: 700; }
.nav ul { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; }
.nav a { text-decoration: none; color: var(--text); opacity: .9; }
.nav a:hover { opacity: 1; }

.hero { position: relative; color: #fff; background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.55)), center/cover no-repeat var(--hero-image, url('/images/cover.jpg')); }
.hero__content { padding: 72px 0 84px; }
.hero h1 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 10px; }
.hero p { font-size: clamp(16px, 2.6vw, 20px); opacity: .95; }
.hero__meta { margin-top: 14px; opacity: .9; font-size: 15px; }
.cta { display: flex; gap: 10px; margin-top: 18px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 14px; border-radius: 10px; border: 1px solid rgba(0,0,0,.1); background: rgba(255,255,255,.9); color: #111; text-decoration: none; transition: transform .06s ease, background .2s ease; }
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--primary); color: #fff; border-color: transparent; }
.btn--primary:hover { background: var(--primary-600);} 
.btn--link { background: transparent; border: none; padding: 0; color: var(--primary-600); }

.cols { display: grid; grid-template-columns: 2fr 1fr; gap: 28px; align-items: start; }
.cols--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .cols, .cols--3 { grid-template-columns: 1fr; } }

.card { background: var(--card); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.list { margin: 0; padding-left: 18px; }
.list li { margin: 6px 0; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; }
.gallery-grid figure { margin: 0; position: relative; overflow: hidden; border-radius: 12px; box-shadow: 0 3px 14px rgba(0,0,0,.05); }
.gallery-grid img { width: 100%; height: 100%; display: block; object-fit: cover; aspect-ratio: 4/3; transition: transform .25s ease; background: #eee; }
.gallery-grid figure:hover img { transform: scale(1.02); }

.site-footer { padding: 24px 0 34px; background: #0f172a; color: #e5e7eb; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
@media (max-width: 720px) { .footer__inner { flex-direction: column; align-items: flex-start; } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; justify-items: center; background: rgba(0,0,0,.92); opacity: 0; pointer-events: none; transition: opacity .2s ease; z-index: 50; }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: 8px; box-shadow: 0 4px 30px rgba(0,0,0,.6); }
.lightbox__caption { grid-column: 1/-1; color: #cbd5e1; margin-top: 10px; font-size: 14px; }
.lightbox__close { position: absolute; top: 10px; right: 14px; font-size: 28px; line-height: 1; background: transparent; color: #fff; border: none; cursor: pointer; padding: 10px; opacity: .9; }
.lightbox__nav { border: none; background: rgba(255,255,255,.08); color: #fff; width: 46px; height: 46px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; font-size: 28px; }
.lightbox__prev { justify-self: end; margin-right: 12px; }
.lightbox__next { justify-self: start; margin-left: 12px; }

/* Utilities */
.stack { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

/* Header shadow */
.site-header { position: sticky; top: 0; z-index: 30; background: #fff; box-shadow: 0 1px 0 rgba(0,0,0,.06); }

/* Carousel */
.carousel { position: relative; overflow: hidden; border-radius: 16px; box-shadow: var(--shadow); background: #000; }
.carousel__track { display: flex; transition: transform .6s ease; }
.carousel__slide { flex: 0 0 100%; }
.carousel__slide img { display: block; width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; background: #0b0b0b; }
.carousel__nav { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; pointer-events: none; }
.carousel__btn { pointer-events: auto; border: none; background: rgba(255,255,255,.08); color: #fff; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; margin: 0 8px; font-size: 22px; transition: background .2s ease; }
.carousel__btn:hover { background: rgba(255,255,255,.15); }
.carousel__dots { position: absolute; left: 50%; bottom: 10px; transform: translateX(-50%); display: flex; gap: 6px; background: rgba(0,0,0,.3); padding: 6px 10px; border-radius: 999px; }
.carousel__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.6); border: none; cursor: pointer; }
.carousel__dot[aria-current="true"] { background: #fff; }
.map-embed { margin-top: 12px; }
