:root {
  --paper: #f4efe6;
  --paper-2: #ebe3d4;
  --ink: #1b1410;
  --ink-soft: #53483e;
  --muted: #7a6d60;
  --wine: #8a2d42;
  --wine-deep: #6b1f31;
  --gold: #b08d57;
  --line: rgba(27, 20, 16, 0.12);
  --shadow: 0 18px 40px rgba(27, 20, 16, 0.14);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
  --header: 4.5rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.6rem;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.55rem; }
p { margin: 0 0 1rem; }
.eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--wine);
  margin-bottom: 0.6rem;
}
.lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 38rem;
}
.meta { color: var(--muted); font-size: 0.95rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  min-height: var(--header);
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
}
.brand-tag {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem 1.2rem;
}
.site-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.site-nav a.is-active,
.site-nav a:hover { color: var(--wine); }
.nav-cta {
  border: 1px solid var(--ink);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}
.nav-group { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 16rem;
  padding: 0.6rem 0;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown { display: grid; }
.nav-dropdown a {
  padding: 0.4rem 1rem;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 4px;
  background: var(--ink);
}

.hero,
.page-hero-photo {
  min-height: 88vh;
  background:
    linear-gradient(180deg, rgba(27,20,16,0.35), rgba(27,20,16,0.55)),
    var(--hero) center/cover no-repeat;
  color: #f7f1e8;
  display: grid;
  align-items: end;
}
.hero-content,
.page-hero {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 5rem 1.25rem 4rem;
}
.hero .eyebrow,
.page-hero-photo .eyebrow { color: #efd4b0; }
.hero .lede,
.page-hero-photo .lede { color: rgba(247, 241, 232, 0.88); }
.page-hero { padding-top: 4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.5rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 2.8rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--wine);
  color: #fff;
}
.btn-primary:hover { background: var(--wine-deep); }
.btn-ghost {
  border-color: currentColor;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}
.section-head { margin-bottom: 2rem; }
.gallery-section { padding-top: 1.5rem; }

.album-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.album-grid-wide { grid-template-columns: repeat(2, 1fr); }
.album-card {
  text-decoration: none;
  background: #fffdf8;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.album-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.album-card-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #2a221c;
}
.album-grid-wide .album-card-media { aspect-ratio: 16 / 10; }
.album-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.album-card-body { padding: 1rem 1.05rem 1.2rem; }
.album-card-body p { color: var(--ink-soft); font-size: 0.98rem; }
.album-count {
  color: var(--muted);
  font-size: 0.85rem;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--paper-2);
  align-items: stretch;
}
.story-compact { margin: 0 auto; max-width: 1200px; background: transparent; padding: 2rem 1.25rem 0; gap: 2rem; }
.story-media {
  position: relative;
  min-height: 28rem;
}
.story-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.story-body { padding: 4rem 3rem; }
.story-sub { font-family: var(--serif); font-size: 1.35rem; color: var(--ink-soft); }

.video-teaser {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
  overflow: hidden;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-list { display: grid; gap: 3rem; }
.video-item {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: center;
}
.video-copy h2 { font-size: 2rem; }

.event-banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  background: #fffdf8;
  border: 1px solid var(--line);
  padding: 1rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.contact-card {
  text-decoration: none;
  padding: 1.3rem 1.2rem;
  background: #fffdf8;
  border: 1px solid var(--line);
  display: grid;
  gap: 0.35rem;
}
.contact-card:hover { border-color: var(--wine); }
.contact-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-value { font-family: var(--serif); font-size: 1.45rem; }

.photo-grid {
  columns: 4 180px;
  column-gap: 0.8rem;
}
.photo-tile {
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0 0 0.8rem;
  background: #2a221c;
  break-inside: avoid;
  cursor: zoom-in;
  position: relative;
  display: block;
}
.photo-tile img { width: 100%; }
.photo-caption {
  display: block;
  padding: 0.55rem 0.65rem 0.7rem;
  background: #fffdf8;
  color: var(--ink-soft);
  font-size: 0.88rem;
  text-align: left;
}
.album-nav a { color: var(--wine); }

.lightbox[hidden] { display: none; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(12, 9, 7, 0.92);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 1rem;
}
.lightbox-figure { margin: 0; text-align: center; }
.lightbox-figure img {
  max-height: 82vh;
  max-width: min(92vw, 1200px);
  margin: 0 auto;
  object-fit: contain;
}
.lightbox figcaption {
  color: #efe6d8;
  margin-top: 0.8rem;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2.6rem;
  cursor: pointer;
  width: 3rem;
  height: 3rem;
}
.lightbox-close {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1.25rem 2.5rem;
  text-align: center;
  color: var(--muted);
}
.site-footer a { color: var(--wine); text-decoration: none; }
.footer-brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

@media (max-width: 980px) {
  .album-grid,
  .story,
  .video-teaser,
  .video-item,
  .event-banner,
  .contact-grid { grid-template-columns: 1fr; }
  .story-body { padding: 2rem 1.25rem 3rem; }
  .photo-grid { columns: 2; }
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem 1.25rem 1.2rem;
  }
  .site-header.is-open .site-nav { display: flex; }
  .nav-dropdown {
    position: static;
    display: grid;
    box-shadow: none;
    border: 0;
    padding: 0.2rem 0 0.6rem 0.8rem;
  }
}

@media (max-width: 640px) {
  .hero, .page-hero-photo { min-height: 72vh; }
  .album-grid { grid-template-columns: 1fr; }
  .photo-grid { columns: 1; }
}
