:root {
  --cream: #f4efe7;
  --cream-2: #ece4d8;
  --ink: #332e27;
  --ink-soft: #5c5448;
  --sage: #8a9578;
  --sage-dark: #6b7658;
  --line: #ddd3c2;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

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

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 231, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.brand span { color: var(--sage-dark); }

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links a {
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.nav-links a:hover { opacity: 1; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--ink);
}

/* Hero */
.hero {
  padding: 90px 28px 70px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero .eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 52px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero p {
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 32px;
}

.btn {
  display: inline-block;
  padding: 14px 34px;
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s ease;
}

.btn:hover { background: var(--sage-dark); }

.btn-outline {
  display: inline-block;
  padding: 13px 32px;
  border: 1px solid var(--ink);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-left: 12px;
}

/* Section headings */
.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.section-head .eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 14px;
}

.section-head h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 36px;
  font-weight: 500;
}

.section-head p {
  color: var(--ink-soft);
  margin-top: 12px;
  font-size: 15px;
}

section { padding: 80px 0; }

section#gallery { background: var(--cream-2); }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
  aspect-ratio: 4 / 5;
  background: #fff;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(30,26,20,0.65), transparent);
  color: #f4efe7;
  font-size: 13px;
  letter-spacing: 0.03em;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-item:hover .cap { opacity: 1; }

/* About */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-wrap img {
  border-radius: 3px;
}

.about-text .eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 14px;
}

.about-text h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 18px;
}

.about-text p {
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-size: 16px;
}

/* Contact */
section#contact { background: var(--ink); color: var(--cream); text-align: center; }

section#contact .eyebrow { color: #b9c2ab; }

section#contact h2 { color: var(--cream); }

section#contact p { color: #d9d2c4; }

.contact-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

section#contact .btn { background: var(--sage); color: var(--ink); }
section#contact .btn:hover { background: var(--cream); }
section#contact .btn-outline { border-color: #d9d2c4; color: var(--cream); }

/* Footer */
footer {
  padding: 32px 28px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 17, 13, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 40px;
}

.lightbox.open { display: flex; }

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

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 32px;
  color: #f4efe7;
  cursor: pointer;
  background: none;
  border: none;
}

/* Responsive */
@media (max-width: 860px) {
  .about-wrap { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 38px; }
}

@media (max-width: 600px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px 28px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero { padding: 60px 24px 50px; }
  .hero h1 { font-size: 32px; }
  .btn-outline { margin-left: 0; margin-top: 12px; }
}
