:root {
  --ink: #181713;
  --paper: #f2efe7;
  --paper-deep: #e8e2d6;
  --moss: #52594a;
  --rust: #a76045;
  --line: rgba(24, 23, 19, 0.2);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
section[id] { scroll-margin-top: 4rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  background: var(--paper);
  padding: 0.7rem 1rem;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 4.5rem;
  padding: 0.45rem clamp(1.25rem, 4vw, 4.5rem);
  color: var(--ink);
  background: rgba(242, 239, 231, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background 250ms ease, color 250ms ease, padding 250ms ease;
}
.site-header.scrolled {
  color: var(--ink);
  background: rgba(242, 239, 231, 0.94);
}
.site-header.inner-header { color: var(--ink); background: rgba(242, 239, 231, 0.94); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.brand {
  display: block;
  width: fit-content;
  color: inherit;
  text-decoration: none;
}
.brand-logo { display: block; width: clamp(8.5rem, 12vw, 10rem); height: auto; transition: filter 250ms ease; }
.site-footer .brand-logo { filter: brightness(0) invert(1); }
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.5rem); }
.site-nav a { font-size: 0.73rem; letter-spacing: 0.14em; text-decoration: none; text-transform: uppercase; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: calc(100svh - 4.5rem);
  display: grid;
  align-items: end;
  color: white;
  background: #2e322d;
}
.hero-image, .hero-shade { position: absolute; inset: 0; }
.hero-image { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.hero-shade {
  background: linear-gradient(90deg, rgba(13, 14, 12, 0.76) 0%, rgba(13, 14, 12, 0.26) 58%, rgba(13, 14, 12, 0.08)),
    linear-gradient(0deg, rgba(13, 14, 12, 0.5), transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, 90%);
  padding: 10rem clamp(1.25rem, 7vw, 8rem) clamp(5.5rem, 11vh, 8rem);
}
.hero--simple {
  min-height: calc(70svh - 4.5rem);
  align-items: center;
}
.hero--simple .hero-content {
  max-width: 760px;
}
.eyebrow {
  margin: 0 0 1.4rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.035em; line-height: 0.98; }
h1 { max-width: 850px; margin: 0; font-size: clamp(3.25rem, 7.8vw, 7.8rem); }
h2 { margin: 0; font-size: clamp(2.6rem, 5.2vw, 5.8rem); }
.hero-intro { max-width: 520px; margin: 2rem 0; font-size: clamp(1rem, 1.5vw, 1.25rem); color: rgba(255,255,255,0.82); }
.text-link {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translate(0.2rem, 0.12rem); }
.scroll-cue {
  position: absolute;
  z-index: 2;
  right: clamp(1.25rem, 4vw, 4.5rem);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: white;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: right center;
}
.scroll-cue i { width: 3rem; height: 1px; background: currentColor; }

.section-pad { padding: clamp(5.5rem, 11vw, 10rem) clamp(1.25rem, 7vw, 8rem); }
.about {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(3rem, 9vw, 10rem);
  background: var(--paper);
}
.about-heading h2 { max-width: 780px; }
.about-copy { align-self: end; max-width: 470px; }
.about-copy p { color: #4d4a43; }
.about-copy .text-link { margin-top: 1.5rem; }

.gallery { background: var(--ink); color: var(--paper); }
.gallery-heading { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: clamp(3rem, 6vw, 6rem); }
.gallery-note { max-width: 280px; margin: 0; font-size: 0.78rem; color: rgba(242,239,231,0.6); }
.gallery-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.gallery-card { margin: 0 0 2rem; }
.gallery-card:nth-child(2) { margin-top: 15vw; }
.gallery-card-wide { grid-column: 1 / -1; width: 72%; margin-left: auto; }
.gallery-open { display: block; width: 100%; padding: 0; border: 0; background: transparent; color: inherit; cursor: zoom-in; text-align: left; }
.gallery-photo { display: block; width: 100%; object-fit: cover; background: #343530; transition: filter 250ms ease, transform 400ms ease; }
.gallery-open:hover .gallery-photo { filter: brightness(0.86); transform: scale(1.01); }
.gallery-photo-tall { aspect-ratio: 4 / 5; }
.gallery-photo-square { aspect-ratio: 1 / 1; }
.gallery-photo-landscape { aspect-ratio: 3 / 2; }
.gallery-photo-wide { aspect-ratio: 16 / 8; }
.gallery-meta { display: flex; justify-content: space-between; padding-top: 0.8rem; border-top: 1px solid rgba(242,239,231,0.3); font-size: 0.65rem; letter-spacing: 0.17em; text-transform: uppercase; }
.gallery-meta i { font-style: normal; opacity: 0; transition: opacity 180ms ease; }
.gallery-open:hover .gallery-meta i, .gallery-open:focus-visible .gallery-meta i { opacity: 0.7; }
.gallery-more { display: flex; justify-content: space-between; align-items: center; gap: 2rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(242,239,231,0.3); }
.gallery-more p { margin: 0; color: rgba(242,239,231,0.65); font-family: var(--serif); font-size: 1.3rem; }

.portfolio-page { background: var(--paper); }
.portfolio-intro { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(3rem, 9vw, 9rem); align-items: end; }
.portfolio-intro h1 { color: var(--ink); }
.portfolio-intro-copy { max-width: 500px; color: #56524b; }
.portfolio-intro-copy p { margin: 0; }
.portfolio-jump { display: flex; gap: 1.5rem; margin-top: 1.7rem; }
.portfolio-jump a { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; text-underline-offset: 0.35rem; }
.portfolio-section { padding-top: 2rem; }
.portfolio-section-alt { background: var(--paper-deep); }
.portfolio-heading { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 3rem; }
.portfolio-heading p { max-width: 390px; margin: 0; color: #615d55; }
.portfolio-grid { columns: 3; column-gap: clamp(1rem, 2vw, 1.8rem); }
.portfolio-item { display: inline-block; width: 100%; margin: 0 0 clamp(1rem, 2vw, 1.8rem); break-inside: avoid; }
.portfolio-open { width: 100%; padding: 0; border: 0; background: transparent; cursor: zoom-in; overflow: hidden; }
.portfolio-open img { display: block; width: 100%; height: auto; transition: filter 250ms ease, transform 400ms ease; }
.portfolio-open:hover img { filter: brightness(0.88); transform: scale(1.015); }
.portfolio-end { margin: 4rem auto 0; max-width: 650px; text-align: center; }
.portfolio-end p { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.2; }

.lightbox { width: min(92vw, 1200px); max-width: none; height: min(90vh, 900px); max-height: none; padding: 0; border: 0; background: transparent; color: white; overflow: visible; }
.lightbox::backdrop { background: rgba(15, 15, 13, 0.94); backdrop-filter: blur(8px); }
.lightbox figure { width: 100%; height: 100%; display: grid; grid-template-rows: minmax(0, 1fr) auto; gap: 0.8rem; margin: 0; }
.lightbox img { width: 100%; height: 100%; object-fit: contain; }
.lightbox figcaption { min-height: 1.5rem; font-size: 0.68rem; letter-spacing: 0.14em; text-align: center; text-transform: uppercase; }
.lightbox-close { position: absolute; z-index: 2; right: 0; top: -2.2rem; padding: 0.3rem 0; border: 0; background: transparent; color: white; cursor: pointer; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; }

.quote-section { position: relative; min-height: 72vh; display: grid; place-items: center; color: white; }
.quote-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #4b4943; }
.quote-section::after { content: ""; position: absolute; inset: 0; background: rgba(21,22,18,0.46); }
.quote-section blockquote { position: relative; z-index: 2; max-width: 980px; margin: 0; padding: 5rem 2rem; font-family: var(--serif); text-align: center; }
.quote-section blockquote p { margin: 0; font-size: clamp(2.5rem, 5.3vw, 5.5rem); font-style: italic; line-height: 1.08; }
.quote-section blockquote cite { display: block; margin-top: 2rem; font-family: var(--sans); font-size: 0.66rem; font-style: normal; letter-spacing: 0.17em; text-transform: uppercase; }

.reviews { background: var(--paper); }
.reviews-heading { display: flex; justify-content: space-between; align-items: end; gap: 3rem; margin-bottom: clamp(3rem, 6vw, 5.5rem); }
.reviews-heading h2 { max-width: 850px; }
.reviews-summary { flex: 0 0 auto; padding-bottom: 0.4rem; }
.reviews-summary p { margin: 0 0 1.2rem; color: #5a564e; font-size: 0.82rem; }
.reviews-summary strong { display: block; color: var(--ink); font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.review-card { display: flex; flex-direction: column; min-height: 22rem; padding: 2rem clamp(1.2rem, 2.5vw, 2.5rem); border-right: 1px solid var(--line); }
.review-card:last-child { border-right: 0; }
.review-card > p:not(.review-stars) { color: #555149; }
.review-stars { margin: 0 0 2.5rem; color: var(--rust); font-size: 0.7rem; letter-spacing: 0.2em; }
.review-card blockquote { margin: auto 0 1.5rem; font-family: var(--serif); font-size: clamp(1.45rem, 2vw, 2rem); font-style: italic; line-height: 1.2; }
.review-card cite { font-size: 0.65rem; font-style: normal; letter-spacing: 0.15em; text-transform: uppercase; }

.packages { position: relative; display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(4rem, 10vw, 10rem); background: var(--paper-deep); }
.packages-heading p:not(.eyebrow) { max-width: 480px; margin-top: 2rem; color: #59564f; }
.package { padding: 1.7rem 0; border-top: 1px solid var(--line); }
.package:last-child { border-bottom: 1px solid var(--line); }
.package-top { display: block; }
.package-top p { margin: 0; font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 2.2rem); }
.package > p { margin: 0.8rem 0 0; color: #67635b; font-size: 0.85rem; }
.package-cta { margin-top: 2rem; }

.contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(4rem, 10vw, 10rem); background: var(--moss); color: var(--paper); }
.contact-intro h2 { max-width: 700px; }
.contact-intro > p:not(.eyebrow) { max-width: 520px; margin: 2rem 0; color: rgba(242,239,231,0.72); }
.contact-intro > a { text-underline-offset: 0.3rem; }
.contact-details { display: flex; flex-direction: column; align-items: flex-start; gap: 0.45rem; }
.contact-details a { text-underline-offset: 0.3rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; align-self: end; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.contact-form label { display: flex; flex-direction: column; gap: 0.45rem; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 0.7rem 0;
  border: 0;
  border-bottom: 1px solid rgba(242,239,231,0.45);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--paper);
  text-transform: none;
}
.contact-form select option { color: var(--ink); }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--paper); }
.contact-form input:focus-visible, .contact-form textarea:focus-visible, .contact-form select:focus-visible { outline: 2px solid var(--paper); outline-offset: 5px; }
.button {
  width: fit-content;
  margin-top: 1rem;
  padding: 0.95rem 1.25rem;
  border: 1px solid var(--paper);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}
.button span { margin-left: 1rem; }
.button:hover { background: transparent; color: var(--paper); }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 2rem; padding: 3rem clamp(1.25rem, 4vw, 4.5rem); background: var(--ink); color: var(--paper); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; text-underline-offset: 0.3rem; }
.site-footer > p { justify-self: end; margin: 0; font-size: 0.68rem; color: rgba(242,239,231,0.55); }

.reveal { opacity: 1; transform: none; }
.reveal.reveal-pending { opacity: 0; transform: translateY(1.5rem); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.reveal-pending.visible { opacity: 1; transform: none; }

@media (max-width: 800px) {
  .site-header { padding: 0.4rem 1.25rem; }
  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 0.38rem;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: rgba(24, 23, 19, 0.14);
    color: inherit;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 1.1rem; height: 2px; background: currentColor; transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(0.2rem) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-0.2rem) rotate(-45deg); }
  .site-nav {
    position: fixed;
    top: 5rem;
    right: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: calc(100svh - 6rem);
    padding: 0.6rem;
    overflow-y: auto;
    background: rgba(24, 23, 19, 0.97);
    border: 1px solid rgba(242, 239, 231, 0.16);
    border-radius: 1.1rem;
    box-shadow: 0 1.4rem 4rem rgba(0, 0, 0, 0.24);
    color: var(--paper);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.5rem);
    transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease;
  }
  .site-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(242, 239, 231, 0.12);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .site-nav a:last-child { border-bottom: 0; }
  .hero-content { padding-inline: 1.25rem; }
  .about, .packages, .contact { grid-template-columns: 1fr; }
  .about-copy, .packages-heading { max-width: 620px; }
  .reviews-heading { align-items: flex-start; flex-direction: column; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .review-card:last-child { border-bottom: 0; }
  .review-card blockquote { margin-top: 2.5rem; }
  .gallery-heading { align-items: start; flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card:nth-child(2) { margin-top: 0; }
  .gallery-card-wide { grid-column: auto; width: 100%; }
  .gallery-photo-tall,
  .gallery-photo-square,
  .gallery-photo-landscape,
  .gallery-photo-wide {
    aspect-ratio: auto;
    height: clamp(14rem, 62vw, 22rem);
  }
  .gallery-more { align-items: flex-start; flex-direction: column; }
  .portfolio-intro { grid-template-columns: 1fr; }
  .portfolio-grid { columns: 2; }
  .site-footer { grid-template-columns: 1fr; align-items: start; }
  .site-footer > p { justify-self: start; }
}

@media (max-width: 520px) {
  .section-pad { padding-inline: 1.25rem; }
  .hero-content { padding-bottom: 6rem; }
  .scroll-cue { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .quote-section { min-height: 60vh; }
  .footer-links { flex-wrap: wrap; }
  .portfolio-heading { align-items: flex-start; flex-direction: column; }
  .portfolio-grid { columns: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal.reveal-pending { opacity: 1; transform: none; }
}
