/* ===== Base ===== */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { height: 100%; }
body{
  margin: 0;
  color: #f4f0ea;
  background: #062b26;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
.container{ width: min(100% - 40px, 1200px); margin-inline: auto; }

/* Velvet-ish background */
body::before{
  content:""; position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(1200px 600px at 10% 20%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(700px 400px at 90% 30%, rgba(255,255,255,.03), transparent 60%),
    radial-gradient(1000px 800px at 50% 80%, rgba(255,255,255,.04), transparent 65%),
    linear-gradient(135deg, #062b26, #0a3c35);
}

/* ===== Navbar (same style family as services) ===== */
.site-header{ position: sticky; top:0; z-index:50; height:72px; display:flex; align-items:center; }
.site-header .nav-surface{ position:absolute; inset:0; z-index:-1; backdrop-filter: blur(6px); border-bottom:1px solid transparent; }
.site-header.scrolled .nav-surface{ background: rgba(8,43,38,.78); border-bottom-color: rgba(255,255,255,.18); box-shadow: 0 10px 22px rgba(0,0,0,.28); }

.nav-inner{ display:flex; align-items:center; justify-content:space-between; }
.brand{ display:inline-flex; align-items:center; gap:.6rem; font-weight:700; letter-spacing:.02em; font-size:1.08rem; }
.brand-mark{ width:34px; height:34px; border-radius:50%; display:grid; place-items:center; font-weight:700; background: radial-gradient(circle at 30% 30%, #d9efe3, #a0cbb6); color:#123a31; border:1px solid rgba(255,255,255,.2); box-shadow: 0 6px 14px rgba(0,0,0,.25) inset, 0 2px 10px rgba(0,0,0,.18); }
.brand-text strong{ font-weight:800; }
.nav-desktop{ display:none; gap:1.4rem; align-items:center; }
.nav-link{ opacity:.95; font-weight:500; }
.nav-link:hover{ opacity:1; text-decoration: underline; text-underline-offset:6px; }

.btn{ display:inline-flex; align-items:center; justify-content:center; gap:.5rem; padding:.7rem 1.05rem; border-radius:999px; background:#0b2420; color:#f4f0ea; border:1px solid rgba(0,0,0,.55); box-shadow:0 6px 14px rgba(0,0,0,.18); cursor:pointer; transition:transform .15s ease, background .2s ease, border-color .2s ease; }
.btn:hover{ background:#081e19; transform:translateY(-1px); }
.btn-small{ padding:.55rem .9rem; font-size:.92rem; }
.btn-contrast{ background:#bfe3cf; color:#10352d; border-color:rgba(0,0,0,.06); }

/* Hamburger */
.nav-toggle{ appearance:none; border:0; background:transparent; cursor:pointer; width:44px; height:44px; border-radius:10px; display:grid; place-items:center; }
.nav-toggle .bar{ display:block; width:22px; height:2px; background:#f4f0ea; margin:3px 0; border-radius:2px; transition: transform .25s ease, opacity .25s ease; }

@media (min-width:900px){ .nav-desktop{ display:flex; } .nav-toggle{ display:none; } }

/* Drawer (outside header) */
.mobile-drawer{
  position: fixed; top:0; right:0; bottom:0; left:auto;
  width: min(88vw, 380px); height: 100vh;
  background: rgba(8,43,38,.96); color:#f4f0ea;
  transform: translateX(100%); transition: transform .35s ease;
  z-index:60; display:flex; flex-direction:column; border-left:1px solid rgba(255,255,255,.18);
}
.mobile-drawer.open{ transform: translateX(0); }
.drawer-header{ display:flex; align-items:center; justify-content:space-between; padding:1rem 1.25rem; border-bottom:1px solid rgba(255,255,255,.18); }
.brand--drawer{ font-weight:700; display:flex; align-items:center; gap:.6rem; }
.drawer-close{ background:transparent; border:1px solid rgba(255,255,255,.18); color:#f4f0ea; border-radius:10px; padding:.4rem .6rem; cursor:pointer; }
.drawer-links{ display:flex; flex-direction:column; gap:.8rem; padding:1rem 1.25rem 2rem; }
.drawer-link{ padding:.8rem 0; font-size:1.05rem; border-bottom:1px dashed rgba(255,255,255,.12); }
.scrim{ position:fixed; inset:0; background:rgba(0,0,0,.4); z-index:55; }
.scrim[hidden]{ display:none !important; }
html, body{ overflow-x:hidden; }
@media (min-width:900px){ .mobile-drawer{ transform: translateX(100%) !important; } .mobile-drawer.open{ transform: translateX(100%) !important; } .scrim{ display:none !important; } }

/* ===== HERO ===== */
.gal-hero{
  position: relative; padding: 22px 0 0; background: #102d27;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.hero-inner{ position: relative; padding-bottom: 16px; }
.hero-photo{
  margin: 0; position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}
.hero-photo img{
  width: 100%; height: clamp(300px, 52vw, 520px); object-fit: cover; display: block;
}
.hero-text{
  position: absolute; left: clamp(18px, 4vw, 36px); top: clamp(16px, 4vw, 26px);
  color: #f4f0ea; text-shadow: 0 12px 30px rgba(0,0,0,.6);
}
.hero-kicker{ margin: 0; font-weight: 800; letter-spacing: .12em; font-size: clamp(.9rem, 1.6vw, 1.05rem); opacity: .9; }
.hero-title{
  margin: .4rem 0 0; font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 5.8vw, 3.6rem); line-height: .95;
}
.see-more{ display:inline-block; margin-top:.6rem; font-weight:700; color:#bfe3cf; }

/* Thumbs strip */
.thumbs{ position: relative; margin-top: 10px; display: grid; grid-template-columns: auto 1fr auto; gap: 6px; align-items: center; }
.thumb-track{
  display: flex; gap: 8px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  padding: 6px; border-radius: 10px; background: rgba(0,0,0,.25); border: 1px solid rgba(255,255,255,.12);
}
.thumb-track img{
  width: 120px; height: 72px; object-fit: cover; border-radius: 8px; scroll-snap-align: start;
  opacity: .9; transition: transform .2s ease, opacity .2s ease, outline-color .2s ease;
  outline: 2px solid transparent;
}
.thumb-track img:hover{ transform: translateY(-1px); opacity: 1; }
.thumb-track img:focus-visible{ outline-color: #bfe3cf; outline-offset: 2px; }
.thumb-btn{
  width: 40px; height: 40px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(15,45,39,.95); color:#fff; font-size: 22px; display:grid; place-items:center;
  box-shadow: 0 10px 18px rgba(0,0,0,.22);
}

/* ===== DARK CONTENT BLOCK ===== */
.gal-intro{
  background: #0b2f29; color: #f3efe8; padding: 28px 0; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12);
}
.intro-grid{ display: grid; gap: min(6vw, 36px); grid-template-columns: 1.1fr .9fr; align-items: start; }
.intro-title{ margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.4rem, 4.2vw, 2.2rem); line-height: 1.1; }
.intro-copy{ margin: 0; color: #dfe7e2; line-height: 1.8; }
@media (max-width: 900px){ .intro-grid{ grid-template-columns: 1fr; } }

/* ===== GRID CARDS ===== */
.gal-grid{ padding: 24px 0 40px; background: #ffffff; color:#0f2d27; }
.card-grid{ display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); }
.card{
  position: relative; overflow: hidden; border-radius: 12px; border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 22px rgba(0,0,0,.10); cursor: zoom-in;
}
.card img{ width:100%; height: 320px; object-fit: cover; transform: scale(1.02); transition: transform .45s ease; display:block; }
.card:hover img{ transform: scale(1.06); }
.card-label{
  position: absolute; left: 14px; bottom: 12px; color:#fff; font-weight:700; letter-spacing:.06em;
  text-shadow: 0 10px 16px rgba(0,0,0,.45); font-size: 1rem;
}
@media (max-width: 950px){ .card-grid{ grid-template-columns: 1fr 1fr; } .card img{ height: 280px; } }
@media (max-width: 620px){ .card-grid{ grid-template-columns: 1fr; } }

/* ===== Lightbox ===== */
.lightbox[hidden]{ display: none; }
.lightbox{
  position: fixed; inset: 0; z-index: 80; background: rgba(0,0,0,.86);
  display: grid; place-items: center; cursor: zoom-out;
}
.lightbox-img{
  max-width: min(92vw, 1400px); max-height: 90vh; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15); box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
/* Show labels only on the 1st and every 6th card (1, 7, 13, 19, ...) */
.card .card-label { display: none; }
.card:nth-child(6n + 1) .card-label { display: block; }

/* ===== Footer (condensed) ===== */
.site-footer{ background:#062b26; color:#f4f0ea; border-top:1px solid rgba(255,255,255,.12); }
.footer-grid{ display:grid; gap:32px; padding:24px 0; grid-template-columns: 1.2fr .9fr .9fr; align-items:start; }
.footer-tag{ margin:.6rem 0 0; color:#cdd7d4; max-width:40ch; }
.footer-heading{ margin:0 0 .4rem; font-weight:700; letter-spacing:.02em; font-size:1rem; }
.footer-addr{ font-style:normal; color:#e9e4dd; margin:0 0 .4rem; }
.footer-phone a{ color:#bfe3cf; }
.footer-social-links a{ color:#cdd7d4; } .footer-social-links a:hover{ color:#fff; text-decoration: underline; }
.footer-social-links .sep{ margin:0 .5rem; opacity:.6; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.12); background:#052521; color:#cdd7d4; }
.footer-bottom-inner{ display:flex; align-items:center; justify-content:space-between; padding:12px 0; }
@media (max-width: 900px){ .footer-grid{ grid-template-columns:1fr; } }

/* Accessibility helpers */
[inert]{ pointer-events:none; user-select:none; }
[inert] a,[inert] button,[inert] input,[inert] select,[inert] textarea{ pointer-events:none; }

/* Motion preference */
@media (prefers-reduced-motion: reduce){ *{ transition:none !important; scroll-behavior:auto !important; } }
