/* ─── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #F8F6F2;
  color: #1A1A1A;
  font-family: 'Courier Prime', monospace;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; cursor: pointer; }
img { display: block; max-width: 100%; }
::selection { background: #7A6652; color: #F8F6F2; }

/* ─── Variables ─────────────────────────────────────────── */
:root {
  --ivory:    #F8F6F2;
  --charcoal: #1A1A1A;
  --grey:     #6B6B6B;
  --taupe:    #7A6652;
  --border:   #E2DDD3;
  --margin:   7vw;
  --nav-h:    76px;
}

/* ─── Navigation ─────────────────────────────────────────── */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--margin);
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}
#site-nav.scrolled {
  background: rgba(248, 246, 242, 0.88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom-color: var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  flex-shrink: 0;
  color: inherit;
  text-decoration: none;
}
.nav-logo img {
  width: 40px;
  height: 40px;
  opacity: 0.9;
}
.nav-logo-text {
  font-family: 'Marcellus', serif;
  font-size: 16px;
  line-height: 1.25;
}
.nav-logo-sub {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.06em;
}

.nav-tagline {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--grey);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}
@media (max-width: 1200px) { .nav-tagline { display: none; } }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  flex-shrink: 0;
}
.nav-links li {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--grey);
  transition: color 0.2s;
}
.nav-links li a {
  color: inherit;
  text-decoration: none;
}
.nav-links li:hover,
.nav-links li.active { color: var(--charcoal); }

/* Mobile nav */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--charcoal);
  transition: all 0.3s;
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* Mobile menu overlay */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 99;
  padding: calc(var(--nav-h) + 60px) var(--margin) 60px;
  flex-direction: column;
  gap: 40px;
}
#mobile-menu.open { display: flex; }
#mobile-menu li {
  list-style: none;
  font-size: 22px;
  color: var(--grey);
  transition: color 0.2s;
}
#mobile-menu li a {
  color: inherit;
  text-decoration: none;
}
#mobile-menu li:hover { color: var(--charcoal); }

/* ─── HOME PAGE ───────────────────────────────────────── */
#page-home {
  min-height: 100vh;
  padding-top: var(--nav-h);
}
#page-home .hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10vh var(--margin) 0;
}
#page-home .hero-img-wrap {
  position: relative;
  display: inline-block;
  width: min(90vw, 460px);
}
#page-home .hero-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.5s ease;
  user-select: none;
}
#page-home .hero-img-wrap img.fade { opacity: 0; }
#page-home #hero-fig-row { width: min(90vw, 460px); }

/* Fig row: caption left, nav-arrows right */
.fig-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--grey);
  text-transform: uppercase;
}
.fig-nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  white-space: nowrap;
}
.img-nav-btn {
  cursor: pointer;
  color: var(--grey);
  transition: color 0.2s;
  padding: 2px 4px;
  user-select: none;
  white-space: nowrap;
}
.img-nav-btn:hover { color: var(--charcoal); }
.img-nav-counter { color: var(--grey); }

.home-cta {
  margin-top: 28px;
  text-align: center;
}
.action-link {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--taupe);
  cursor: pointer;
  transition: color 0.2s;
  display: inline-block;
}
.action-link:hover { color: var(--charcoal); }

/* Home sections */
.home-section {
  padding: 12vh var(--margin);
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--grey);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::before {
  content: '—';
  color: var(--taupe);
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 120px;
}

.home-statement {
  font-family: 'Marcellus', serif;
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1.35;
  max-width: 560px;
  margin-bottom: 40px;
  color: var(--charcoal);
}
.home-statement-body {
  font-size: 14px;
  line-height: 1.8;
  max-width: 420px;
  color: var(--grey);
  margin-bottom: 32px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.services-list-item {
  font-family: 'Marcellus', serif;
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--grey);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: color 0.2s, padding-left 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}
.services-list-item:first-child { border-top: 1px solid var(--border); }
.services-list-item:hover {
  color: var(--charcoal);
  padding-left: 8px;
}
.services-list-item .item-arrow {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  color: var(--taupe);
  opacity: 0;
  transition: opacity 0.2s;
}
.services-list-item:hover .item-arrow { opacity: 1; }

/* ─── WORK PAGE ───────────────────────────────────────── */
#page-work {
  min-height: 100vh;
  padding-top: var(--nav-h);
}
.page-header {
  padding: 10vh var(--margin) 0;
  padding-left: 14vw;
}
.page-title {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--grey);
  margin-bottom: 16px;
}
.page-title::before { content: '— '; color: var(--taupe); }

.work-category {
  padding: 3vh var(--margin) 8vh;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.work-cat-label {
  align-self: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--grey);
  margin-bottom: 32px;
  text-transform: uppercase;
}
.work-category .fig-row {
  width: 100%;
  max-width: 460px;
}

.work-img-wrap {
  position: relative;
  cursor: zoom-in;
  max-width: 460px;
  width: 100%;
  transition: width 0.3s ease, max-width 0.3s ease;
}
.work-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.4s ease;
}
.work-img-wrap img.fade { opacity: 0; }

/* ─── ABOUT PAGE ──────────────────────────────────────── */
#page-about {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: var(--nav-h);
}
#about-footer {
  margin-top: auto;
}
#page-about .page-header {
  padding-bottom: 4vh;
}

.about-cols {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  column-gap: 3vw;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
  padding: 0 var(--margin);
}
@media (max-width: 780px) {
  .about-cols { grid-template-columns: 1fr; }
}

.about-photo-side {
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-photo-side img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
}
.about-photo-fig {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--grey);
  text-transform: uppercase;
}

.about-text-side {
  padding-top: 8px;
}
.about-name {
  font-family: 'Marcellus', serif;
  font-size: clamp(26px, 3.5vw, 44px);
  line-height: 1.15;
  margin-bottom: 8px;
}
.about-role {
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.06em;
  margin-bottom: 48px;
}
.about-body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--charcoal);
  max-width: 46ch;
  margin-bottom: 48px;
}
.about-body p + p { margin-top: 1.4em; }

/* ─── SERVICES PAGE ───────────────────────────────────── */
#page-services {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: var(--nav-h);
}
#page-services .page-content {
  padding: 10vh var(--margin);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
#services-footer {
  margin-top: auto;
}
.services-intro {
  font-family: 'Marcellus', serif;
  font-size: clamp(20px, 2.8vw, 36px);
  line-height: 1.3;
  max-width: 540px;
  margin-bottom: 72px;
}

.service-block {
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 0 32px;
  align-items: start;
}
.service-block:first-of-type { border-top: 1px solid var(--border); }
.service-idx {
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.06em;
  padding-top: 4px;
}
.service-name {
  font-family: 'Marcellus', serif;
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--grey);
  max-width: 44ch;
  margin-bottom: 20px;
}
.service-price {
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.04em;
  text-align: right;
  padding-top: 4px;
  white-space: nowrap;
}
.service-price strong {
  font-family: 'Marcellus', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  display: block;
}

@media (max-width: 600px) {
  .service-block {
    grid-template-columns: 32px 1fr;
  }
  .service-price { grid-column: 2; text-align: left; }
}

/* ─── CONTACT PAGE ────────────────────────────────────── */
#page-contact {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: var(--nav-h);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  padding: 0 var(--margin) 8vh;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .contact-grid { grid-template-columns: 1fr; }
}
#contact-footer { margin-top: auto; }

.contact-heading {
  font-family: 'Marcellus', serif;
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1.2;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.contact-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--grey);
  max-width: 38ch;
  margin-bottom: 48px;
}
.contact-direct-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--grey);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.contact-direct {
  font-size: 13px;
  line-height: 2;
  color: var(--charcoal);
}
.contact-direct a:hover { color: var(--taupe); }

.form-group {
  margin-bottom: 28px;
}
.form-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--grey);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-input,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-family: 'Courier Prime', monospace;
  font-size: 14px;
  color: var(--charcoal);
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-textarea:focus { border-bottom-color: var(--charcoal); }
.form-textarea { resize: none; min-height: 120px; line-height: 1.65; }
.form-error {
  font-size: 11px;
  color: #9A5050;
  margin-top: 12px;
  letter-spacing: 0.03em;
}
.form-success {
  padding: 32px 0;
}
.form-success-text {
  font-family: 'Marcellus', serif;
  font-size: 22px;
  margin-bottom: 12px;
}
.form-success-sub { font-size: 13px; color: var(--grey); }

/* ─── LANDING PAGES ───────────────────────────────────── */
.lp-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 10vh) var(--margin) 8vh;
  border-bottom: 1px solid var(--border);
}
.lp-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--taupe);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.lp-headline {
  font-family: 'Marcellus', serif;
  font-size: clamp(32px, 5vw, 68px);
  line-height: 1.15;
  color: var(--charcoal);
  max-width: 680px;
  margin-bottom: 28px;
}
.lp-subline {
  font-size: 15px;
  line-height: 1.75;
  color: var(--grey);
  max-width: 48ch;
  margin-bottom: 36px;
}
.lp-body {
  padding: 10vh var(--margin);
  max-width: 900px;
  margin: 0 auto;
}
.lp-body-text {
  font-size: 14px;
  line-height: 1.9;
  color: var(--charcoal);
  max-width: 60ch;
}
.lp-body-text p + p { margin-top: 1.6em; }
.lp-includes {
  width: 100%;
  padding: 8vh var(--margin);
  max-width: 1200px;
  margin: 0 auto;
}
#page-landing .about-cols {
  width: 100%;
  max-width: 1200px;
}
#page-landing .reviews-section {
  width: 100%;
  border-top: none;
  padding-top: 0;
}
.lp-includes-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--grey);
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.lp-includes-label::before { content: '—'; color: var(--taupe); }
.lp-includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}
.lp-include-item strong {
  font-family: 'Marcellus', serif;
  font-weight: 400;
  font-size: 15px;
  display: block;
  margin-bottom: 6px;
}
.lp-include-item span {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.65;
}
.lp-form-section {
  padding-top: 8vh;
  border-top: 1px solid var(--border);
}
.lp-form-heading {
  font-family: 'Marcellus', serif;
  font-size: clamp(22px, 3vw, 36px);
  margin-bottom: 40px;
}

/* ─── GOOGLE REVIEWS ─────────────────────────────────── */
.reviews-section {
  padding: 8vh var(--margin);
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}
#page-home .reviews-section,
#page-contact .reviews-section {
  border-top: none;
  padding-top: 0;
}
.reviews-summary {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 3vh 0 4vh;
  flex-wrap: wrap;
}
.reviews-stars-big {
  color: var(--taupe);
  font-size: 18px;
  letter-spacing: 0.05em;
}
.reviews-score {
  font-family: 'Marcellus', serif;
  font-size: 20px;
  color: var(--charcoal);
}
.reviews-count {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--grey);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3vw;
}
@media (max-width: 780px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
.review-card {
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.review-stars {
  color: var(--taupe);
  font-size: 13px;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.review-text {
  font-size: 13px;
  line-height: 1.85;
  color: var(--grey);
  margin-bottom: 18px;
  max-width: 38ch;
}
.review-meta {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.review-author {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.review-date {
  font-size: 10px;
  color: var(--grey);
  letter-spacing: 0.04em;
}

/* ─── COOKIE CONSENT ─────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal);
  color: #e0dbd4;
  padding: 20px var(--margin);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cookie-text {
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: #9e9890;
  max-width: 620px;
}
.cookie-text a {
  color: #e0dbd4;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: 'Courier Prime', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  cursor: pointer;
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,0.18);
  color: #e0dbd4;
  background: transparent;
  transition: background 0.2s, border-color 0.2s;
}
.cookie-btn:hover { background: rgba(255,255,255,0.07); }
.cookie-btn.cookie-accept {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.30);
}
.cookie-btn.cookie-accept:hover { background: rgba(255,255,255,0.18); }
@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-buttons { width: 100%; justify-content: flex-end; }
}

/* ─── FOOTER ──────────────────────────────────────────── */
.site-footer {
  padding: 48px var(--margin) 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  margin-top: 8vh;
  flex-wrap: wrap;
  gap: 20px;
}
/* Home page footer has its own ID but same style */
#site-footer {
  padding: 48px var(--margin) 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  margin-top: 8vh;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-inner {
  border-top: 1px solid var(--border);
  padding: 40px var(--margin) 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 4vh;
}
.footer-copy {
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.04em;
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links li {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--grey);
  transition: color 0.2s;
  text-transform: uppercase;
}
.footer-links li a {
  color: inherit;
  text-decoration: none;
}
.footer-links li:hover { color: var(--charcoal); }

/* ─── RESPONSIVE ─────────────────────────────────────── */

/* Tablet (≤ 900px) */
@media (max-width: 900px) {
  :root { --margin: 6vw; }

  /* Page headers: reduce indent on tablet */
  .page-header { padding-left: var(--margin); }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-left: var(--margin);
    padding-right: var(--margin);
  }

  /* About cols single column earlier */
  .about-cols { grid-template-columns: 1fr; }

  /* Landing page form narrower */
  .lp-form-section { padding-left: 0; padding-right: 0; }

  /* Reviews grid 1-col earlier */
  .reviews-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Section spacing */
  .home-section { padding-top: 8vh; padding-bottom: 8vh; }
}

/* Landing pages: contact-grid already inside padded #page-landing — remove double padding */
.lp-form-section .contact-grid {
  padding-left: 0;
  padding-right: 0;
}

/* Mobile (≤ 600px) */
@media (max-width: 600px) {
  :root { --margin: 5vw; --nav-h: 64px; }

  /* Nav logo smaller */
  .nav-logo img { width: 32px; height: 32px; }
  .nav-logo-text { font-size: 14px; }

  /* Hero: full width, same ratio as images (all 2:3) — no crop, same width as fig-row */
  #page-home .hero { padding-left: var(--margin); padding-right: var(--margin); }
  #page-home .hero-img-wrap {
    width: 90vw;
    aspect-ratio: 2/3;
    overflow: hidden;
  }
  #page-home .hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  #page-home #hero-fig-row {
    width: 90vw !important;
  }

  /* Work page images full-width */
  .work-img-wrap { max-width: 100%; }
  .work-category .fig-row { max-width: 100%; }

  /* About text side: less top padding */
  .about-text-side { padding-top: 0; }
  .about-body { max-width: 100%; }

  /* Landing page two-col → single */
  .about-cols { column-gap: 0; row-gap: 32px; }

  /* Landing page includes grid → 1 col */
  .lp-includes-grid { grid-template-columns: 1fr; }

  /* Smaller section headings */
  .contact-heading { font-size: clamp(24px, 7vw, 36px); }
  .lp-form-heading { font-size: clamp(20px, 6vw, 28px); }

  /* Prevent iOS Safari auto-zoom on input focus (requires font-size >= 16px) */
  .form-input, .form-textarea { font-size: 16px; }

  /* Larger touch target for submit button */
  form button[type="submit"] { padding: 12px 0; min-height: 44px; }

  /* Footer links wrap */
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Cookie banner */
  .cookie-btn { padding: 8px 14px; }
}

/* ─── LEGAL PAGES ────────────────────────────────────── */
#page-legal {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
}
.legal-content {
  padding: 10vh var(--margin) 12vh;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  flex: 1;
  box-sizing: border-box;
}
.legal-content h1 {
  font-family: 'Marcellus', serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 48px;
  line-height: 1.2;
}
.legal-content h2 {
  font-family: 'Marcellus', serif;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  color: var(--charcoal);
  margin: 40px 0 12px;
}
.legal-content h3 {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  margin: 32px 0 10px;
}
.legal-content p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--grey);
  margin-bottom: 16px;
  max-width: 70ch;
}
.legal-content p strong { color: var(--charcoal); font-weight: 700; }
.legal-content ul, .legal-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.legal-content li {
  font-size: 13px;
  line-height: 1.85;
  color: var(--grey);
  margin-bottom: 6px;
}
.legal-content a { color: var(--taupe); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: var(--charcoal); }
.legal-address {
  font-size: 14px;
  line-height: 2;
  color: var(--charcoal);
  margin: 24px 0 32px;
}
.legal-meta {
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.04em;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ─── LIGHTBOX ────────────────────────────────────────── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.96);
  z-index: 200;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
}
.lightbox-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 20px;
  font-size: 12px;
  color: rgba(248,246,242,0.5);
}
.lightbox-btn {
  cursor: pointer;
  padding: 6px 10px;
  transition: color 0.2s;
}
.lightbox-btn:hover { color: var(--ivory); }
.lightbox-caption { color: rgba(248,246,242,0.5); }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: var(--margin);
  font-size: 12px;
  color: rgba(248,246,242,0.5);
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--ivory); }

/* ─── FAQ PAGE ────────────────────────────────────────── */
#page-faq,
#page-ablauf {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
}
#page-faq .page-header,
#page-ablauf .page-header {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-left: var(--margin);
  padding-right: var(--margin);
  box-sizing: border-box;
}
.faq-content {
  padding: 6vh var(--margin) 10vh;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  flex: 1;
  box-sizing: border-box;
}
.faq-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-q {
  font-family: 'Marcellus', serif;
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 16px;
}
.faq-a {
  font-size: 13px;
  line-height: 1.85;
  color: var(--grey);
  max-width: 68ch;
}
.faq-a a {
  color: var(--taupe);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-a a:hover { color: var(--charcoal); }
.faq-cta {
  padding-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ─── Touch swipe support ────────────────────────────── */
.swipeable { touch-action: pan-y; user-select: none; }

/* ─── Utilities ──────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 0 var(--margin);
}
@media (max-width: 480px) {
  :root { --margin: 5vw; }
  .site-footer,
  #site-footer { flex-direction: column; gap: 20px; align-items: flex-start; }
}
