:root {
  --bg: #ffffff;
  --ink: #1c1c1c;
  --muted: #8a8a8a;
  --line: #ececec;
  --maxw: 1180px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.brand { text-decoration: none; color: var(--ink); line-height: 1.05; }
.brand-name {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: 0.5px;
}
.brand-sub {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.nav-links a:hover { border-color: var(--ink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: 0.25s;
}

/* HERO */
.hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 90px 28px 70px;
  text-align: center;
}
.hero-image {
  margin: 0 0 44px;
}
.hero-image img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: cover;
}
.tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.7rem;
  color: var(--ink);
  margin: 0 0 38px;
}
.hero-quote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.75;
  color: #3a3a3a;
}
.hero-quote figcaption {
  margin-top: 22px;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

/* SECTION TITLES */
.section-title {
  text-align: center;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 36px;
}

/* GALLERY */
.gallery-section { padding: 40px 20px 70px; }
.gallery {
  max-width: var(--maxw);
  margin: 0 auto;
  columns: 3;
  column-gap: 14px;
}
.gallery figure {
  margin: 0 0 14px;
  break-inside: avoid;
  cursor: zoom-in;
  overflow: hidden;
  background: #f4f4f4;
}
.gallery img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease, opacity 0.6s ease;
  opacity: 0;
}
.gallery img.loaded { opacity: 1; }
.gallery figure:hover img { transform: scale(1.035); }

.show-more-wrap { text-align: center; margin-top: 30px; }
.show-more {
  padding: 11px 38px;
  border: 1px solid var(--ink);
  background: none;
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s;
}
.show-more:hover { background: var(--ink); color: #fff; }

/* CONTACT */
.contact-section { padding: 30px 20px 80px; }
.contact-form {
  max-width: 540px;
  margin: 0 auto;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  background: #fafafa;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: 2px;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
}
.submit-btn {
  display: inline-block;
  padding: 12px 42px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s;
}
.submit-btn:hover { background: #fff; color: var(--ink); }
.form-status { margin-top: 16px; font-size: 0.9rem; min-height: 1.2em; }
.form-status.ok { color: #2e7d32; }
.form-status.err { color: #c0392b; }
.hidden-field { position: absolute; left: -5000px; }

/* FOOTER QUOTE */
.footer-quote {
  max-width: 720px;
  margin: 0 auto;
  padding: 30px 28px 70px;
  text-align: center;
}
.footer-quote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.75;
  color: #3a3a3a;
}
.footer-quote figcaption {
  margin-top: 20px;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

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

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.97);
}
.lightbox.open { display: flex; }
.lightbox:fullscreen { background: #ffffff; width: 100vw; height: 100vh; }
.lightbox:-webkit-full-screen { background: #ffffff; width: 100vw; height: 100vh; }
.lb-img {
  max-width: 90vw;
  max-height: 86vh;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.18);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: none;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
}
.lb-close { top: 22px; right: 30px; font-size: 2.4rem; line-height: 1; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); font-size: 3rem; padding: 0 22px; }
.lb-prev { left: 8px; }
.lb-next { right: 8px; }
.lb-prev:hover, .lb-next:hover, .lb-close:hover { color: var(--muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .gallery { columns: 2; }
}
@media (max-width: 640px) {
  .gallery { columns: 1; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    min-width: 180px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links a { display: block; padding: 14px 20px; border: 0; }
  .nav { position: relative; }
  .tagline { font-size: 1.4rem; }
}
