/* ═══════════════════════════════════════════════════════════════
   GRABKREUZ SCHMIEDE — DESIGN SYSTEM v2
   Warm ivory · forged iron · restrained bronze.
   Grief-informed: calm surfaces, generous space, no urgency.
   Single source of styling — pages carry NO local <style> blocks
   except page-specific layout marked /* page: xyz *​/ at the end.
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* color */
  --bg:          #F5F1E9;
  --bg-soft:     #EDE7DA;
  --surface:     #FCFAF5;
  --ink:         #26221B;
  --ink-2:       #5C5346;
  --ink-3:       #8B8071;
  --bronze:      #96712F;
  --bronze-deep: #7A5B27;
  --bronze-soft: rgba(150,113,47,.10);
  --bronze-line: rgba(150,113,47,.28);
  --sage:        #6E7A63;
  --sage-soft:   #E9EBE2;
  --dark:        #23201A;
  --dark-2:      #2E2A22;
  --on-dark:     #F3EEE4;
  --on-dark-dim: rgba(243,238,228,.62);
  --line:        rgba(70,58,38,.14);
  --line-strong: rgba(70,58,38,.26);

  /* type */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* rhythm */
  --nav-h: 72px;
  --container: 1180px;
  --radius: 3px;
  --shadow: 0 2px 24px rgba(50,40,20,.07);
  --shadow-lift: 0 10px 40px rgba(50,40,20,.13);
}

/* ── reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
main { display: block; }
::selection { background: var(--bronze); color: #fff; }

/* ── typography ── */
h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-wrap: balance;
}
.display { font-size: clamp(42px, 5.6vw, 72px); font-weight: 300; }
h1 { font-size: clamp(36px, 4.6vw, 58px); font-weight: 300; }
h2 { font-size: clamp(28px, 3.4vw, 42px); font-weight: 400; }
h3 { font-size: clamp(21px, 2.4vw, 27px); font-weight: 500; }
h4 { font-family: var(--sans); font-size: 17px; font-weight: 600; line-height: 1.4; }
h1 em, h2 em, h3 em, .display em { font-style: italic; color: var(--bronze); }
p.lead { font-size: clamp(17px, 1.9vw, 20px); line-height: 1.7; color: var(--ink-2); }
.muted { color: var(--ink-2); }
.small { font-size: 14px; }

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 16px;
}
.rule { width: 44px; height: 1px; background: var(--bronze); border: 0; margin: 22px 0; }
.rule.center { margin-left: auto; margin-right: auto; }

/* ── layout ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container.narrow { max-width: 820px; }
.section { padding: 96px 0; }
.section.tight { padding: 64px 0; }
.section.roomy { padding: 128px 0; }
.bg-soft { background: var(--bg-soft); }
.bg-surface { background: var(--surface); }
.bg-sage { background: var(--sage-soft); }
.bg-dark { background: var(--dark); color: var(--on-dark); }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: var(--on-dark); }
.bg-dark p { color: var(--on-dark-dim); }
.center { text-align: center; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head p { color: var(--ink-2); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: .02em;
  padding: 15px 32px; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: var(--surface); }
.btn-primary:hover { background: var(--dark-2); }
.btn-bronze { background: var(--bronze); color: #fff; }
.btn-bronze:hover { background: var(--bronze-deep); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--ink); }
.btn-outline-light { background: transparent; color: var(--on-dark); border-color: rgba(243,238,228,.42); }
.btn-outline-light:hover { background: var(--on-dark); color: var(--ink); }
.btn-ghost {
  background: none; border: 0; padding: 0; color: var(--bronze); font-weight: 600; font-size: 14px;
  border-bottom: 1px solid var(--bronze-line); border-radius: 0; padding-bottom: 3px;
}
.btn-ghost:hover { border-color: var(--bronze); transform: none; }
.arrow::after { content: '→'; font-weight: 400; transition: transform .25s; }
.arrow:hover::after { transform: translateX(3px); }

/* ── top navigation ── */
nav.topnav {
  position: sticky; top: 0; z-index: 300;
  background: rgba(245,241,233,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  height: var(--nav-h);
}
.topnav-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 32px;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.wordmark { display: flex; flex-direction: column; line-height: 1.15; flex-shrink: 0; }
.wordmark-main {
  font-family: var(--serif); font-size: 21px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
}
.wordmark-main .amp { color: var(--bronze); }
.wordmark-sub {
  font-size: 9.5px; font-weight: 500; letter-spacing: .3em;
  text-transform: uppercase; color: var(--ink-3);
}
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  padding: 6px 0; position: relative; transition: color .2s;
}
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--ink); }
.nav-link.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--bronze);
}
.nav-cta {
  font-size: 13.5px; font-weight: 600; color: var(--surface);
  background: var(--ink); padding: 11px 22px; border-radius: var(--radius);
  transition: background .2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--bronze-deep); }

.nav-burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform .3s, opacity .3s; }
.nav-drawer {
  display: none; position: fixed; inset: var(--nav-h) 0 0 0; z-index: 290;
  background: var(--bg); padding: 36px 32px;
  flex-direction: column; gap: 6px; overflow-y: auto;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--ink);
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.nav-drawer a.drawer-cta { color: var(--bronze); font-weight: 500; }
.nav-drawer .drawer-contact { margin-top: 28px; font-size: 14px; color: var(--ink-3); line-height: 2.1; border: 0; }
.nav-drawer .drawer-contact a { font-family: var(--sans); font-size: 15px; color: var(--ink-2); border: 0; padding: 0; display: inline; }

@media (max-width: 920px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  body.drawer-open { overflow: hidden; }
  body.drawer-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.drawer-open .nav-burger span:nth-child(2) { opacity: 0; }
  body.drawer-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ── hero ── */
.hero {
  position: relative; min-height: calc(92vh - var(--nav-h));
  display: flex; align-items: flex-end; overflow: hidden; background: var(--dark);
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(24,20,14,.82) 0%, rgba(24,20,14,.28) 45%, rgba(24,20,14,.12) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; padding: 72px 0 88px; }
.hero-content .display, .hero-content h1 { color: #FBF8F1; }
.hero-content .eyebrow { color: #D8B36A; }
.hero-content p.lead { color: rgba(251,248,241,.86); max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }

/* quiet inner-page hero */
.page-head { padding: 84px 0 56px; }
.page-head p.lead { max-width: 640px; margin-top: 18px; }

/* ── breadcrumbs ── */
.crumbs { font-size: 13px; color: var(--ink-3); padding: 20px 0 0; }
.crumbs a:hover { color: var(--bronze); }
.crumbs span[aria-hidden] { margin: 0 8px; opacity: .55; }

/* ── cards ── */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: box-shadow .3s, transform .3s;
}
.card:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.card-media { aspect-ratio: 4 / 5; overflow: hidden; background: var(--bg-soft); }
.card-media.wide { aspect-ratio: 3 / 2; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .card-media img { transform: scale(1.035); }
.card-body { padding: 24px 26px 28px; }
.card-body h3 { margin-bottom: 6px; }
.card-meta { font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--bronze); margin-bottom: 10px; display: block; }
.card-body p { font-size: 14.5px; color: var(--ink-2); }
.card-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 18px; margin-top: 18px; border-top: 1px solid var(--line);
}
.price { font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--ink); }
.price small { font-family: var(--sans); font-size: 12px; color: var(--ink-3); font-weight: 400; display: block; letter-spacing: .04em; }

/* ── answer box (GEO: quotable direct answers) ── */
.answer-box {
  background: var(--surface); border-left: 3px solid var(--bronze);
  padding: 26px 30px; border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow); margin: 32px 0;
}
.answer-box p { font-size: 16.5px; line-height: 1.75; color: var(--ink); }
.answer-box strong { color: var(--bronze-deep); }

/* ── FAQ (native details/summary — crawlable, no JS) ── */
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
details.faq {
  border-bottom: 1px solid var(--line);
  background: transparent; transition: background .25s;
}
details.faq[open] { background: var(--surface); }
details.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  font-family: var(--serif); font-size: clamp(18px, 2vw, 22px); font-weight: 500; color: var(--ink);
  padding: 24px 26px; user-select: none;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: '+'; font-family: var(--sans); font-size: 22px; font-weight: 300; color: var(--bronze); flex-shrink: 0;
  transition: transform .3s;
}
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq .faq-a { padding: 0 26px 28px; max-width: 760px; }
details.faq .faq-a p { color: var(--ink-2); margin-bottom: 12px; }
details.faq .faq-a p:last-child { margin-bottom: 0; }
details.faq .faq-a a { color: var(--bronze-deep); border-bottom: 1px solid var(--bronze-line); }

/* ── spec table ── */
.spec { border-top: 1px solid var(--line); }
.spec-row { display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding: 15px 4px; border-bottom: 1px solid var(--line); }
.spec-row dt { font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); padding-top: 2px; }
.spec-row dd { font-size: 15.5px; color: var(--ink); }

/* ── process steps ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.step { padding: 40px 32px 44px; border-right: 1px solid var(--line); }
.step:last-child { border-right: 0; }
.step-num { font-family: var(--serif); font-size: 44px; font-weight: 300; font-style: italic; color: var(--bronze); opacity: .55; line-height: 1; margin-bottom: 16px; }
.step h4 { margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--ink-2); line-height: 1.7; }

/* ── quote / testimonial ── */
.quote {
  font-family: var(--serif); font-size: clamp(21px, 2.6vw, 30px); font-weight: 400; font-style: italic;
  line-height: 1.55; color: var(--ink); max-width: 740px; margin: 0 auto;
}
.quote-by { margin-top: 22px; font-family: var(--sans); font-size: 12.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--bronze); }
.bg-dark .quote { color: var(--on-dark); }

/* ── promise strip (soft trust, no salesy badges) ── */
.promises { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
.promise h4 { font-size: 15px; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.promise h4::before { content: ''; width: 18px; height: 1px; background: var(--bronze); flex-shrink: 0; }
.promise p { font-size: 13.5px; color: var(--ink-2); line-height: 1.65; }
.bg-dark .promise h4 { color: var(--on-dark); }
.bg-dark .promise p { color: var(--on-dark-dim); }

/* ── gallery ── */
.masonry { columns: 3; column-gap: 18px; }
.masonry a { display: block; margin-bottom: 18px; border-radius: var(--radius); overflow: hidden; background: var(--bg-soft); }
.masonry img { transition: transform .5s ease, opacity .4s; width: 100%; }
.masonry a:hover img { transform: scale(1.03); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 500; display: none;
  background: rgba(24,20,14,.94); align-items: center; justify-content: center; padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 92vh; width: auto; height: auto; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 22px; right: 28px; background: none; border: 0; color: #fff;
  font-size: 34px; font-weight: 200; cursor: pointer; line-height: 1; opacity: .8;
}
.lightbox-close:hover { opacity: 1; }

/* ── forms ── */
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 13px; font-weight: 600; letter-spacing: .05em; margin-bottom: 8px; color: var(--ink-2); }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; font: inherit; font-size: 15px; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--bronze); box-shadow: 0 0 0 3px var(--bronze-soft);
}
.field .hint { font-size: 12.5px; color: var(--ink-3); margin-top: 6px; }

/* ── contact strip ── */
.contact-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 44px; box-shadow: var(--shadow);
}
.contact-strip .who { display: flex; align-items: center; gap: 20px; }
.contact-strip .who p { font-size: 14.5px; color: var(--ink-2); max-width: 420px; }
.contact-ways { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── footer ── */
footer.site-footer { background: var(--dark); color: var(--on-dark); margin-top: 96px; }
.footer-inner { max-width: var(--container); margin: 0 auto; padding: 80px 32px 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.1fr; gap: 48px; margin-bottom: 64px; }
.footer-brand .wordmark-main { color: var(--on-dark); font-size: 20px; }
.footer-brand .wordmark-sub { color: rgba(243,238,228,.45); margin-top: 3px; }
.footer-brand p { font-size: 14px; color: var(--on-dark-dim); margin-top: 18px; max-width: 280px; line-height: 1.8; }
.footer-col h4 {
  font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: #C9A25B; margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 14px; color: var(--on-dark-dim); transition: color .2s; }
.footer-col a:hover { color: var(--on-dark); }
.footer-bottom {
  border-top: 1px solid rgba(243,238,228,.1); padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 12.5px; color: rgba(243,238,228,.4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12.5px; color: rgba(243,238,228,.5); }
.footer-legal a:hover { color: var(--on-dark); }

/* ── region tag cloud ── */
.region-links { display: flex; flex-wrap: wrap; gap: 10px; }
.region-links a {
  font-size: 13.5px; font-weight: 500; color: var(--ink-2);
  border: 1px solid var(--line-strong); border-radius: 99px; padding: 9px 20px;
  transition: border-color .2s, color .2s, background .2s;
}
.region-links a:hover { border-color: var(--bronze); color: var(--bronze-deep); background: var(--bronze-soft); }

/* ── .reveal is intentionally static ──
   No scroll-hiding: content must be visible without JS (AI crawlers,
   screenshots, reduced motion). Class kept in markup as a styling hook. */

/* ── responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .promises { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .masonry { columns: 2; }
}
@media (max-width: 720px) {
  .container { padding: 0 22px; }
  .topnav-inner { padding: 0 22px; }
  .section { padding: 64px 0; }
  .section.roomy { padding: 80px 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
  .hero-content { padding: 56px 0 64px; }
  .spec-row { grid-template-columns: 1fr; gap: 4px; padding: 13px 2px; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
  .contact-strip { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-inner { padding: 60px 22px 30px; }
}
@media (max-width: 520px) {
  .grid-4 { grid-template-columns: 1fr; }
  .promises { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .hero-actions .btn { width: 100%; }
}
