:root {
  --ink: #292824;
  --muted-ink: #68655d;
  --paper: #f6f3ed;
  --paper-deep: #ece8df;
  --line: #d7d0c4;
  --accent: #8a816b;
  --accent-dark: #67604f;
  --glass: rgba(246, 243, 237, 0.92);
  --shadow: 0 18px 42px rgba(40, 37, 31, 0.08);
  --orange: #fb9012;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(215, 208, 196, 0.78);
}
.nav-wrap {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand img { width: min(380px, 47vw); height: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; font-family: Georgia, "Times New Roman", serif; }
.nav-links a { position: relative; padding: 10px 0; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 3px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 2px; margin: 5px 0; background: var(--ink); }

main { min-height: 65vh; }
.shell { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }

.hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
  background: #2d2d29;
  color: white;
}
.hero-copy { align-self: center; padding: 76px max(36px, calc((100vw - 1180px)/2)); padding-right: 60px; }
.eyebrow {
  margin: 0 0 18px;
  font-size: .76rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: #d5cdbc;
}
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; line-height: 1.12; }
h1 { font-size: clamp(3rem, 5vw, 5.4rem); margin: 0 0 24px; letter-spacing: -.035em; }
h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); margin: 0 0 22px; letter-spacing: -.025em; }
h3 { font-size: 1.5rem; margin: 0 0 10px; }
.hero-copy p { max-width: 560px; color: #e5e2dc; font-family: Georgia, "Times New Roman", serif; font-size: 1.15rem; }
.hero-art {
  min-height: 610px;
  background: #efede8 url('assets/hero-main.jpeg') center/cover no-repeat;
  position: relative;
}
.hero-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(45,45,41,.18), transparent 35%); }

.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.btn:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-light { background: #f0ede7; color: var(--ink); }
.btn-light:hover { background: white; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { background: white; }

.intro { padding: 92px 0; }
.intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.intro-mark { width: 86px; margin-bottom: 28px; }
.intro-copy { max-width: 730px; }
.intro-copy p { font-family: Georgia, "Times New Roman", serif; font-size: 1.12rem; color: #4d4a43; }
.rule { width: 44px; height: 1px; background: var(--ink); margin: 0 0 30px; }

.feature-band { background: var(--paper-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 54px 0; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.feature-card { padding: 6px 24px 6px 0; }
.feature-card p { color: var(--muted-ink); margin: 0; }

.page-hero { padding: 88px 0 54px; }
.page-hero .lede { max-width: 670px; color: var(--muted-ink); font-family: Georgia, "Times New Roman", serif; font-size: 1.12rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-bottom: 92px;
}
.gallery-item {
  border: 0;
  padding: 0;
  background: #e8e4dc;
  cursor: zoom-in;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.025); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(25, 24, 22, .92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 38px;
}
.lightbox.open { display: flex; }
.lightbox img { max-height: 88vh; max-width: 92vw; box-shadow: var(--shadow); }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  border: 0; background: transparent; color: white;
  font-size: 2.2rem; line-height: 1; cursor: pointer;
}

.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; padding-bottom: 100px; }
.contact-details { padding-top: 12px; }
.contact-details p { color: var(--muted-ink); }
.contact-email { display: inline-block; margin-top: 18px; border-bottom: 1px solid var(--ink); }
.contact-form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-family: Georgia, "Times New Roman", serif; font-size: .96rem; }
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.52);
  color: var(--ink);
  border-radius: 0;
  padding: 13px 14px;
  outline: none;
}
.field input:focus, .field textarea:focus { border-color: #9c9485; box-shadow: 0 0 0 3px rgba(138,129,107,.08); }
.field textarea { min-height: 180px; resize: vertical; }
.form-note { color: var(--muted-ink); font-size: .86rem; margin: 0; }

.site-footer { padding: 42px 0 50px; border-top: 1px solid var(--line); text-align: center; color: var(--muted-ink); }
.footer-mark { width: 35px; margin: 0 auto 12px; }
.footer-title { font-family: Georgia, "Times New Roman", serif; color: var(--ink); margin: 0; }
.site-footer small { display: block; margin-top: 6px; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 70px 28px; }
  .hero-art { min-height: 440px; order: -1; }
  .intro-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: repeat(3,1fr); }
  .feature-grid { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 720px) {
  .nav-wrap { min-height: 74px; }
  .brand img { width: min(285px, 69vw); }
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    left: 0; right: 0; top: 74px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 20px 22px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 10px 0; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .page-hero { padding-top: 64px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.8rem; }
  .hero-art { min-height: 350px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .lightbox { padding: 18px; }
}
