:root {
  --bg: #f5f2ec;
  --ink: #1c1a17;
  --muted: #6b655b;
  --line: #e4e0d6;
  --accent: #8a6f3a;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-weight: 300;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }

/* ── Hero ──────────────────────────────────── */

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #f7f5ef;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../images/C6.jpg") center/cover no-repeat;
  filter: grayscale(20%) brightness(0.72);
  transform: scale(1.05);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.55));
}

.hero__content {
  padding: 0 1.5rem;
  max-width: 760px;
}

.hero__kicker {
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.75rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.hero__subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  opacity: 0.92;
  margin-bottom: 2.5rem;
}

.hero__cta {
  display: inline-block;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(255,255,255,.6);
  color: #f7f5ef;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background .3s, color .3s;
}

.hero__cta:hover { background: #f7f5ef; color: var(--ink); }

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  opacity: 0.6;
  animation: bob 2.2s ease-in-out infinite;
}

@keyframes bob { 50% { transform: translate(-50%, 8px); } }

/* ── About ────────────────────────────────── */

.about {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 7rem auto;
  padding: 0 2rem;
}

.about h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.about p {
  color: #3d3830;
  margin-bottom: 1.2rem;
  max-width: 50ch;
}

.about__logo img {
  width: 100%;
  border: 1px solid var(--line);
}

.about__logo figcaption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

/* ── Galleries ─────────────────────────────── */

.gallery {
  max-width: 1200px;
  margin: 0 auto 6rem;
  padding: 0 2rem;
}

.gallery__head {
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.gallery__head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: 0.02em;
}

.gallery__head p {
  color: var(--muted);
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.05rem;
  justify-self: end;
  max-width: 32ch;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  border: none;
  background: #000;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  line-height: 0;
}

.card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .6s ease, filter .6s ease;
  filter: brightness(.97);
}

.card--wide { grid-column: span 2; }

.card:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}

/* ── Contact ──────────────────────────────── */

.contact {
  text-align: center;
  padding: 6rem 2rem;
  border-top: 1px solid var(--line);
  max-width: 800px;
  margin: 0 auto;
}

.contact h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.contact p { color: var(--muted); margin-bottom: 2rem; }

.contact__links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact__btn {
  padding: 0.8rem 1.6rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background .25s, color .25s;
}

.contact__btn:hover { background: var(--ink); color: var(--bg); }

.contact__note {
  margin-top: 2.5rem;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
}

/* ── Footer ──────────────────────────────── */

.footer {
  text-align: center;
  padding: 2.5rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

/* ── Lightbox ────────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10,9,8,.94);
  display: grid;
  place-items: center;
  padding: 2rem;
  cursor: zoom-out;
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: 95vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 10px 40px rgba(0,0,0,.6);
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  z-index: 2;
  background: transparent;
  border: 1px solid rgba(255,255,255,.5);
  color: #fff;
  width: 2.6rem;
  height: 2.6rem;
  font-size: 1.4rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
}

.lightbox__close:hover { background: rgba(255,255,255,.15); }

.lightbox__nav {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28%;
  background: transparent;
  border: none;
  color: rgba(255,255,255,.85);
  font-size: 4rem;
  font-family: var(--serif);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: opacity .25s, background .25s;
  z-index: 1;
}

.lightbox__nav--prev { left: 0; }
.lightbox__nav--next { right: 0; }

.lightbox__nav:hover {
  opacity: 1;
  background: linear-gradient(90deg, rgba(0,0,0,.35), transparent);
}
.lightbox__nav--next:hover {
  background: linear-gradient(270deg, rgba(0,0,0,.35), transparent);
}

.lightbox__counter {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  z-index: 2;
}

@media (max-width: 560px) {
  .lightbox__nav { width: 22%; font-size: 2.5rem; }
}

/* ── Responsive ──────────────────────────── */

@media (max-width: 860px) {
  .about { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__head { grid-template-columns: 1fr; gap: .5rem; }
  .gallery__head p { justify-self: start; }
}

@media (max-width: 560px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .card--wide { grid-column: span 1; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}