body {
  font-family: system-ui,-apple-system,BlinkMacSystemFont,'Inter','Helvetica',Arial,sans-serif;
  margin:0;
  color:#000;
  padding-top:4.5rem; /* makes space for header on mobile */
}

/* HERO */
.hero {
  position:relative;
  width:100%;
  min-height:80vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:#000;
}
.hero-img {
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(0.6);
}
.overlay {
  position:relative;
  text-align:center;
  color:#fff;
  z-index:2;
  padding:2rem 1rem;
}
.overlay h1 {
  font-size:2.5rem;
  margin:0.5rem 0;
  text-shadow:0 2px 6px rgba(0,0,0,.6);
}
.overlay p {
  font-size:1.2rem;
  margin:0.5rem 0 1rem;
  text-shadow:0 2px 6px rgba(0,0,0,.6);
}
.btn {
  display:inline-block;
  padding:0.75rem 1rem;
  border-radius:0.5rem;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 12px 30px rgba(0,0,0,.4);
}
.primary {
  background:#fff;
  color:#000;
}

/* GALLERY */
.gallery {
  padding:2rem 1rem;
  text-align:center;
  background:#fff;
  color:#000;
}
.gallery h2 {
  font-size:1.5rem;
  font-weight:600;
  margin:0 0 1.5rem 0;
  letter-spacing:-.02em;
}
.grid {
  display:grid;
  gap:0.75rem;
  grid-template-columns:1fr;
  max-width:1200px;
  margin:0 auto;
}
.card img {
  width:100%;
  height:250px;
  object-fit:cover;
  border-radius:0.75rem;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}
@media(min-width:600px){
  .grid{grid-template-columns:repeat(2,1fr);}
  .card img{height:280px;}
}
@media(min-width:900px){
  .grid{grid-template-columns:repeat(3,1fr);}
  .card img{height:300px;}
}

/* FOOTER */
footer {
  text-align:center;
  padding:1rem;
  background:#000;
  color:#fff;
  font-size:.8rem;
}

/* HEADER */
.site-header {
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:100;
  background:rgba(0,0,0,0.4);
  backdrop-filter:blur(8px);
}
.header-inner {
  max-width:1200px;
  margin:0 auto;
  padding:1rem 1.5rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:1rem;
  color:#fff;
}
.brand a {
  font-size:1.1rem;
  font-weight:600;
  color:#fff;
  text-decoration:none;
  text-shadow:0 2px 6px rgba(0,0,0,0.5);
}
.nav-links {
  display:flex;
  gap:1.5rem;
  flex:1;
  justify-content:center;
  flex-wrap:wrap;
}
.nav-links a {
  color:#fff;
  text-decoration:none;
  font-weight:500;
  font-size:.95rem;
  transition:opacity .2s ease;
}
.nav-links a:hover {
  opacity:.7;
}
.header-actions {
  display:flex;
  gap:.75rem;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.btn-header {
  background:#fff;
  color:#000;
  font-size:.85rem;
  font-weight:600;
  text-decoration:none;
  padding:.6rem .9rem;
  border-radius:.4rem;
  white-space:nowrap;
  box-shadow:0 12px 30px rgba(0,0,0,.4);
}
.btn-header.secondary {
  background:transparent;
  border:1.5px solid #fff;
  color:#fff;
  box-shadow:none;
}
.btn-header.secondary:hover {
  background:rgba(255,255,255,0.1);
}
.btn-header:hover {
  background:#eaeaea;
}

/* SUBPAGES */
.subpage-body {
  background:#fff;
  color:#000;
  margin:0;
  line-height:1.5;
  padding-top:4.5rem; /* ensures header doesn't overlap text */
}
.subpage-header {
  padding:2.5rem 1rem 2rem;
  max-width:800px;
  margin:0 auto;
}
.subpage-header h1 {
  margin:0 0 .5rem 0;
  font-size:2rem;
  font-weight:600;
  line-height:1.2;
  color:#000;
}
.subpage-header p {
  margin:0;
  font-size:1rem;
  color:#555;
  line-height:1.4;
  max-width:40rem;
}
.info-block {
  max-width:800px;
  padding:1.5rem 1rem 2rem;
  margin:0 auto;
}
.info-block h2 {
  margin:0 0 .75rem 0;
  font-size:1.1rem;
  font-weight:600;
  color:#000;
}
.info-block p {
  margin:0 0 1rem 0;
  font-size:1rem;
  color:#333;
  line-height:1.5;
}
.info-list {
  list-style:none;
  padding:0;
  margin:0 0 1rem 0;
  font-size:1rem;
  color:#333;
  line-height:1.5;
}
.info-list li {
  padding-left:1.25rem;
  position:relative;
  margin-bottom:.5rem;
}
.info-list li::before {
  content:"•";
  position:absolute;
  left:0;
  color:#000;
  font-weight:600;
}
.subpage-footer {
  text-align:center;
  padding:2rem 1rem 3rem;
  font-size:.8rem;
  color:#777;
}