/* Nick Schluth Photography — design system
   Palette sampled from the Instagram feed: espresso shadows,
   caramel midtones, champagne highlights. */

:root {
  --paper: #f8f3eb;
  --paper-alt: #f0e6d6;
  --ink: #2a231f;
  --ink-soft: #8b7c72;
  --accent: #a9713f;
  --accent-dark: #8a5a2f;
  --line: #e3d9c9;
  --max: 1120px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Karla", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

a { color: var(--accent-dark); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 700;
  margin-bottom: 14px;
}

/* ---------- nav ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 243, 235, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.navbar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  font-family: "Fraunces", Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.logo span { color: var(--accent-dark); }
nav.main { display: flex; align-items: center; gap: 26px; }
nav.main a {
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}
nav.main .btn { display: none; }
nav.main a:hover { color: var(--accent-dark); }
nav.main a.active { color: var(--accent-dark); }

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--accent-dark); }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn.ghost:hover { background: var(--ink); color: var(--paper); }
.btn.small { padding: 9px 18px; font-size: 14px; }

/* mobile nav */
.nav-toggle { display: none; background: none; border: none; font-size: 26px; color: var(--ink); cursor: pointer; line-height: 1; padding: 4px 8px; }
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  nav.main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px 24px;
    gap: 18px;
  }
  nav.main.open { display: flex; }
  .navbar > .btn { display: none; }
  nav.main .btn { display: inline-block; }
}

/* sticky mobile CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  box-shadow: 0 6px 24px rgba(42, 35, 31, 0.3);
  border-radius: 999px;
  padding: 14px 30px;
}
@media (max-width: 820px) {
  .mobile-cta { display: inline-block; }
  body { padding-bottom: 72px; }
}

/* ---------- hero ---------- */
.hero { position: relative; }
.hero img.bg {
  width: 100%;
  height: min(86vh, 780px);
  object-fit: cover;
  object-position: center 38%;
}
.hero .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 23, 18, 0.72) 0%, rgba(30, 23, 18, 0.18) 45%, rgba(30, 23, 18, 0.05) 70%);
}
.hero .content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0 24px 56px;
  max-width: var(--max);
  margin: 0 auto;
  color: #fdfaf4;
}
.hero h1 { font-size: clamp(34px, 5.4vw, 60px); max-width: 17ch; margin-bottom: 14px; color: #fdfaf4; }
.hero p.sub { font-size: clamp(16px, 2vw, 20px); max-width: 52ch; margin-bottom: 26px; color: rgba(253, 250, 244, 0.92); }
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn.ghost { color: #fdfaf4; border-color: #fdfaf4; }
.hero .btn.ghost:hover { background: #fdfaf4; color: var(--ink); }

/* page hero (interior pages) */
.page-head { padding: 72px 0 26px; }
.page-head h1 { font-size: clamp(32px, 4.6vw, 50px); margin-bottom: 16px; }
.page-head p.lede { font-size: 18px; color: var(--ink); max-width: 62ch; }

/* ---------- sections ---------- */
section.band { padding: 88px 0; }
section.band.alt { background: var(--paper-alt); }
section.band.tight { padding: 56px 0; }
h2.sec { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 18px; }
.prose p { margin-bottom: 16px; max-width: 65ch; }
.prose p:last-child { margin-bottom: 0; }

/* proof strip */
.proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 34px 24px 10px;
}
.proof img { height: 92px; width: auto; }
.proof-line { text-align: center; color: var(--ink-soft); font-size: 15px; padding: 14px 24px 34px; }

/* image grids */
.grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}
.grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
}
.grid img.wide { grid-column: span 2; aspect-ratio: auto; }
@media (max-width: 700px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .grid img.wide { grid-column: span 2; }
  .grid img.m-full { grid-column: span 2; aspect-ratio: auto; }
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.split img { border-radius: 6px; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 28px; } }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; padding: 26px; }
.band.alt .step { background: var(--paper); }
.step .num { font-family: "Fraunces", Georgia, serif; font-size: 15px; color: var(--accent-dark); font-weight: 600; }
.step h3 { font-size: 21px; margin: 8px 0 8px; }
.step p { font-size: 15px; color: var(--ink-soft); }
.step p strong { color: var(--ink); }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }

/* quotes */
blockquote.pull {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(20px, 2.6vw, 27px);
  line-height: 1.35;
  max-width: 26ch;
  margin-bottom: 14px;
}
.quote-attr { color: var(--ink-soft); font-size: 15px; }
.quote-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  padding: 26px 30px;
  margin-bottom: 22px;
}
.stars { color: var(--accent); font-size: 15px; letter-spacing: 4px; margin-bottom: 10px; }
.quote-card .big {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.3;
  margin-bottom: 14px;
}
.quote-card p.body { color: var(--ink); margin-bottom: 12px; }
.quote-card .who { color: var(--ink-soft); font-size: 15px; font-weight: 700; }

/* FAQ */
.faq { max-width: 760px; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  padding: 16px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: "Fraunces", Georgia, serif; font-size: 22px; color: var(--accent-dark); flex-shrink: 0; }
.faq details[open] summary::after { content: "–"; }
.faq .a { padding: 0 0 18px; color: var(--ink); max-width: 60ch; }

/* checklist */
ul.includes { list-style: none; margin: 22px 0; }
ul.includes li {
  padding: 10px 0 10px 34px;
  position: relative;
  font-size: 17px;
  border-bottom: 1px solid var(--line);
}
ul.includes li::before {
  content: "";
  position: absolute;
  left: 4px; top: 17px;
  width: 14px; height: 8px;
  border-left: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  transform: rotate(-45deg);
}
ul.includes li strong { font-weight: 700; }
ul.includes li span.note { color: var(--ink-soft); }

/* forms */
form.inquiry { display: grid; gap: 18px; }
form.inquiry label { font-weight: 700; font-size: 15px; display: block; margin-bottom: 6px; }
form.inquiry input, form.inquiry textarea, form.inquiry select {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: #fffdf9;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
}
form.inquiry input:focus, form.inquiry textarea:focus, form.inquiry select:focus { border-color: var(--accent); outline: none; }
form.inquiry .hint { font-size: 13.5px; color: var(--ink-soft); margin-top: 5px; }
form.inquiry button { justify-self: start; }

/* CTA band */
.cta-band { text-align: center; padding: 96px 24px; }
.cta-band h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 12px; }
.cta-band p { color: var(--ink-soft); margin-bottom: 26px; }

/* footer */
footer.site {
  border-top: 1px solid var(--line);
  padding: 36px 0 46px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
footer.site .cols {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
footer.site a { color: var(--ink); text-decoration: none; font-weight: 600; margin-left: 22px; }
footer.site a:first-child { margin-left: 0; }
footer.site a:hover { color: var(--accent-dark); }

/* utility */
.mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 40px; }
.center { text-align: center; }
.imgnote { font-size: 13.5px; color: var(--ink-soft); margin-top: 10px; }

/* lightbox */
.grid img { cursor: zoom-in; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(24, 19, 15, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox button {
  position: absolute;
  background: none;
  border: none;
  color: #f8f3eb;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  padding: 18px;
  opacity: 0.8;
  font-family: inherit;
}
.lightbox button:hover { opacity: 1; }
.lightbox .lb-close { top: 10px; right: 14px; }
.lightbox .lb-prev { left: 6px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 6px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-count {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(248, 243, 235, 0.7);
  font-size: 13px;
  letter-spacing: 0.08em;
}
@media (max-width: 700px) {
  .lightbox .lb-prev, .lightbox .lb-next { display: none; } /* swipe instead */
}

/* fade-up on scroll */
.fade { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .fade { opacity: 1; transform: none; } }
