:root {
  --charcoal: #1c1c1c;
  --stone: #3a3a3a;
  --cream: #f7f5f2;
  --accent: #b5651d;
  --line: #e2ddd6;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  background: var(--charcoal);
  color: var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .brand {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

nav a {
  margin-left: 1.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.15s;
}

nav a:hover { opacity: 1; }

.hero {
  text-align: center;
  padding: 4.5rem 1.5rem 3rem;
}

.hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin: 0 0 0.5rem;
  font-weight: 800;
}

.hero p {
  font-size: 1.15rem;
  color: var(--stone);
  margin: 0;
}

.hero .cta {
  display: inline-block;
  margin-top: 1.75rem;
  padding: 0.8rem 1.9rem;
  background: var(--accent);
  color: #fff;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  max-width: 1100px;
  margin: 0 auto 3.5rem;
  padding: 0 1.5rem;
}

.featured img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 4px;
}

.about {
  max-width: 720px;
  margin: 0 auto 4rem;
  padding: 0 1.5rem;
  text-align: center;
}

.about h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.about p {
  color: var(--stone);
  font-size: 1.05rem;
}

.gallery-header {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
}

.gallery-header h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin: 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 0.6rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.gallery img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.15s;
  display: block;
}

.gallery img:hover { opacity: 0.85; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 4px;
}

.lightbox .close,
.lightbox .prev,
.lightbox .next {
  position: absolute;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
  padding: 0.5rem 1rem;
}

.lightbox .close { top: 1rem; right: 1.5rem; font-size: 2.2rem; }
.lightbox .prev { left: 0.5rem; top: 50%; transform: translateY(-50%); }
.lightbox .next { right: 0.5rem; top: 50%; transform: translateY(-50%); }

.contact-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
  text-align: center;
}

.contact-wrap h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 1.5rem;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem;
  margin-top: 1.5rem;
}

.contact-card .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--stone);
  margin-bottom: 0.3rem;
}

.contact-card .value {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-card .note {
  font-size: 0.95rem;
  color: var(--stone);
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}

footer {
  text-align: center;
  padding: 2rem 1.5rem;
  color: var(--stone);
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 640px) {
  header { padding: 1rem 1.25rem; }
  nav a { margin-left: 1.1rem; font-size: 0.88rem; }
  .featured { grid-template-columns: 1fr; }
  .featured img { height: 220px; }
}
