:root {
  --bg: #f5f1ea;
  --bg-soft: #fbf8f2;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: #ffffff;
  --surface-dark: #1f2329;
  --text: #1f2329;
  --muted: #61666d;
  --line: rgba(31, 35, 41, 0.1);
  --line-strong: rgba(31, 35, 41, 0.16);
  --brand: #1f2329;
  --accent: #a37b4e;
  --accent-soft: #c8b8a6;
  --green: #4e6656;
  --success: #2f7d5a;
  --danger: #b42318;
  --radius-xs: 14px;
  --radius-sm: 20px;
  --radius-md: 28px;
  --radius-lg: 38px;
  --shadow-sm: 0 14px 40px rgba(23, 26, 30, 0.07);
  --shadow-md: 0 22px 60px rgba(23, 26, 30, 0.09);
  --shadow-lg: 0 32px 90px rgba(23, 26, 30, 0.12);
  --container: min(1200px, calc(100% - 2rem));
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-head: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
  --page-accent-1: rgba(163, 123, 78, 0.14);
  --page-accent-2: rgba(78, 102, 86, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at 12% 8%, var(--page-accent-1), transparent 24rem),
    radial-gradient(circle at 88% 12%, var(--page-accent-2), transparent 26rem),
    linear-gradient(180deg, #faf7f2 0%, #f4efe7 45%, #f1ebe3 100%);
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(31,35,41,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,35,41,0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 95%);
  z-index: -2;
}

body.page-home { --page-accent-1: rgba(163, 123, 78, 0.18); --page-accent-2: rgba(78, 102, 86, 0.12); }
body.page-about { --page-accent-1: rgba(200, 184, 166, 0.2); --page-accent-2: rgba(78, 102, 86, 0.08); }
body.page-philosophy { --page-accent-1: rgba(78, 102, 86, 0.16); --page-accent-2: rgba(31, 35, 41, 0.08); }
body.page-services { --page-accent-1: rgba(163, 123, 78, 0.16); --page-accent-2: rgba(200, 184, 166, 0.14); }
body.page-gallery { --page-accent-1: rgba(200, 184, 166, 0.24); --page-accent-2: rgba(78, 102, 86, 0.1); }
body.page-faq,
body.page-contact,
body.page-legal { --page-accent-1: rgba(163, 123, 78, 0.12); --page-accent-2: rgba(31, 35, 41, 0.06); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin-top: 0; }

.container { width: var(--container); margin-inline: auto; }
.narrow { max-width: 820px; }
.center { text-align: center; margin-inline: auto; }

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-180%);
  background: var(--brand);
  color: #fff;
  padding: .8rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: .75rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled .nav-wrap {
  box-shadow: 0 14px 44px rgba(23,26,30,.08);
  background: rgba(255,255,255,.75);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
  padding: .8rem 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.6);
  background: rgba(255,255,255,.56);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
}
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.34), transparent 36%),
    linear-gradient(135deg, #a37b4e 0%, #4e6656 100%);
  box-shadow: 0 16px 30px rgba(78,102,86,.18);
}
.brand-copy { display: grid; gap: .15rem; line-height: 1.05; }
.brand-copy strong {
  font-family: var(--font-head);
  letter-spacing: -.03em;
  font-size: 1.06rem;
}
.brand-copy small { font-size: .78rem; color: var(--muted); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: .98rem;
  transition: color .2s ease;
}
.site-nav a:hover,
.site-nav a.is-active { color: var(--text); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.8);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 3px;
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 50px;
  padding: .92rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #1f2329 0%, #2c343e 100%);
  box-shadow: 0 16px 40px rgba(31,35,41,.16);
}
.btn-primary.light {
  color: var(--text);
  background: #fff;
}
.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,.56);
  border-color: var(--line);
}
.btn-nav { padding-inline: 1rem; }
.footer-cta { width: max-content; }

.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(163, 123, 78, .32);
  outline-offset: 2px;
}

main { overflow: hidden; }

.hero,
.page-hero {
  position: relative;
  padding: 3rem 0 1rem;
}
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 1.2rem 0 auto;
  height: calc(100% - 1.2rem);
  border-top: 1px solid rgba(255,255,255,.56);
  border-bottom: 1px solid rgba(31,35,41,.05);
  border-bottom-left-radius: 38px;
  border-bottom-right-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,.2)),
    radial-gradient(circle at 82% 18%, var(--page-accent-1), transparent 24%),
    radial-gradient(circle at 10% 16%, var(--page-accent-2), transparent 28%);
  z-index: -1;
}

.hero-shell,
.page-shell {
  padding: clamp(1.2rem, 2vw, 1.8rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.65);
  background: linear-gradient(180deg, rgba(255,255,255,.56), rgba(255,255,255,.24));
  box-shadow: var(--shadow-sm);
}

.hero-grid,
.grid-two {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2.2rem;
  align-items: center;
}
.page-shell .grid-two,
.page-shell.grid-two { align-items: start; }

.hero-copy h1,
.page-hero h1,
.section-title {
  margin: 0;
  font-family: var(--font-head);
  line-height: .96;
  letter-spacing: -.07em;
}
.hero-copy h1 { font-size: clamp(2.85rem, 6vw, 5.6rem); max-width: 10ch; }
.page-hero h1 { font-size: clamp(2.3rem, 4.6vw, 4.6rem); max-width: 13ch; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 3.2rem); }

.hero-subline {
  margin: 1rem 0 0;
  max-width: 48rem;
  font-family: var(--font-head);
  font-size: clamp(1.18rem, 2vw, 1.72rem);
  line-height: 1.18;
  letter-spacing: -.04em;
  color: #30343a;
}
.lead {
  margin: 1rem 0 0;
  max-width: 46rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 .85rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  font-size: .77rem;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: .6;
}

.hero-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}
.hero-actions { margin: 1.8rem 0 1.2rem; }
.center-actions { justify-content: center; margin-top: 1.75rem; }

.micro-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
.micro-trust span,
.inline-chip {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .6rem .85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.74);
  color: #40454c;
  font-size: .92rem;
  font-weight: 700;
}
.micro-trust span::before,
.clean-list li::before,
.check-list li::before {
  content: "";
  width: .45rem;
  height: .45rem;
  border-radius: 999px;
  background: var(--accent);
  flex: 0 0 auto;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}
.hero-photo,
.rounded-image,
.gallery-card img,
.image-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}
.hero-photo-wrap {
  position: relative;
  height: 100%;
}
.hero-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 1.2rem -1rem -1rem 3rem;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(163,123,78,.15), rgba(78,102,86,.12));
  z-index: -1;
}

.floating-card,
.mini-panel,
.panel,
.card,
.stat-card,
.quote-card,
.step-card,
.timeline-item,
.split-panel,
.contact-benefits article,
.contact-card,
.faq-item,
.gallery-card,
.legal-copy,
.message,
.cta-box,
.portrait-note,
.quote-wide,
.objection-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.68);
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,250,243,.84));
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.floating-card {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: min(88%, 420px);
  padding: 1.2rem;
}
.floating-card h2,
.floating-card h3 { margin: 0 0 .45rem; font-family: var(--font-head); font-size: 1.36rem; line-height: 1.08; letter-spacing: -.03em; }
.floating-card p:last-child { margin-bottom: 0; color: var(--muted); }

.hero-metric {
  position: absolute;
  right: 1rem;
  top: 1rem;
  padding: .95rem 1rem;
  min-width: 170px;
}
.hero-metric strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: -.04em;
}
.hero-metric span { color: var(--muted); font-weight: 700; font-size: .94rem; }

.proof-strip {
  position: relative;
  z-index: 3;
  margin-top: -1rem;
  padding-bottom: 3rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.stat-card {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1.15rem 1.2rem;
}
.stat-card strong {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(163,123,78,.12);
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 1.2rem;
}
.stat-card span { font-weight: 800; }

.section { padding: 5rem 0; position: relative; }
.section-tight { padding-top: 2.5rem; }
.section-dark {
  margin-inline: clamp(.5rem, 1.5vw, 1rem);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 18%, rgba(163,123,78,.2), transparent 22%),
    radial-gradient(circle at 12% 90%, rgba(255,255,255,.08), transparent 20%),
    linear-gradient(145deg, #1b1f24 0%, #1f2c25 100%);
  box-shadow: 0 24px 80px rgba(23,26,30,.16);
}
.section-dark .section-head p,
.section-dark .lead,
.section-dark p,
.section-dark li,
.section-dark small,
.section-dark .eyebrow { color: rgba(255,255,255,.78); }
.section-dark .eyebrow::before { background: rgba(255,255,255,.6); }
.section-dark .panel,
.section-dark .quote-card,
.section-dark .split-panel,
.section-dark .card {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border-color: rgba(255,255,255,.12);
  box-shadow: none;
}

.section-soft {
  margin-inline: clamp(.25rem, 1vw, .75rem);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,.44), rgba(255,255,255,.22)),
    radial-gradient(circle at 90% 14%, rgba(78,102,86,.08), transparent 24%);
}
.section-accent {
  margin-inline: clamp(.25rem, 1vw, .75rem);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(200,184,166,.18), rgba(255,255,255,.18)),
    radial-gradient(circle at 10% 20%, rgba(163,123,78,.1), transparent 18%);
}

.section-head {
  margin-bottom: 2rem;
}
.section-head p {
  max-width: 760px;
  color: var(--muted);
}

.cards-grid {
  display: grid;
  gap: 1rem;
}
.cards-grid.two { grid-template-columns: repeat(2, 1fr); }
.cards-grid.three { grid-template-columns: repeat(3, 1fr); }
.cards-grid.four { grid-template-columns: repeat(4, 1fr); }
.card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--green));
  opacity: .85;
}
.card h3 {
  margin: 0 0 .7rem;
  font-family: var(--font-head);
  font-size: 1.24rem;
  line-height: 1.14;
  letter-spacing: -.03em;
}
.card p:last-child { margin-bottom: 0; color: var(--muted); }
.card-number {
  display: inline-block;
  margin-bottom: .8rem;
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 900;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.step-card { padding: 1.45rem; }
.step-card span {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: rgba(163,123,78,.12);
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 900;
}
.step-card h3 {
  margin: 0 0 .45rem;
  font-family: var(--font-head);
  font-size: 1.2rem;
  line-height: 1.14;
}
.step-card p { margin-bottom: 0; color: var(--muted); }

.image-feature {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.66);
  background: linear-gradient(180deg, rgba(255,255,255,.5), rgba(255,255,255,.18));
}
.image-feature.reverse { grid-template-columns: 1.05fr .95fr; }
.image-feature.reverse .image-feature-media { order: 2; }
.image-feature-media { position: relative; min-height: 320px; }
.image-feature-media::after {
  content: "";
  position: absolute;
  inset: auto -1.2rem -1rem 3rem;
  height: 70%;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(163,123,78,.12), rgba(78,102,86,.1));
  z-index: -1;
}
.image-feature-copy { padding: 1rem; }
.image-feature-copy h3 {
  margin: 0 0 .65rem;
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.03;
  letter-spacing: -.05em;
}
.image-feature-copy p:last-child { margin-bottom: 0; color: var(--muted); }

.clean-list,
.check-list,
.bare-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: .8rem;
}
.clean-list li,
.check-list li { display: flex; align-items: flex-start; gap: .65rem; }

.timeline {
  display: grid;
  gap: 1rem;
}
.timeline-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 1rem;
  padding: 1.3rem;
}
.timeline-index {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--accent);
}
.timeline-item h3 {
  margin: 0 0 .4rem;
  font-family: var(--font-head);
  font-size: 1.18rem;
}
.timeline-item p { margin-bottom: 0; color: var(--muted); }

.portrait-stack { position: relative; }
.portrait-note {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem;
}
.portrait-note strong {
  display: block;
  margin-bottom: .2rem;
  font-family: var(--font-head);
  font-size: 1.05rem;
}
.portrait-note span { color: var(--muted); font-size: .95rem; }

.split-panel {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 2rem;
  padding: 1.8rem;
}
.objection-list,
.contrast-list { display: grid; gap: .85rem; }
.objection-item,
.objection-list article,
.contrast-row {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.54);
}
.objection-list h3 { margin: 0 0 .35rem; font-family: var(--font-head); font-size: 1.05rem; }
.objection-list p { margin-bottom: 0; color: var(--muted); }
.contrast-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  align-items: center;
}
.contrast-row span { color: rgba(255,255,255,.52); text-decoration: line-through; }
.contrast-row strong { color: #fff; }
.section:not(.section-dark) .contrast-row span { color: var(--muted); }
.section:not(.section-dark) .contrast-row strong { color: var(--text); }

.quote-card,
.quote-wide {
  position: relative;
  overflow: hidden;
}
.quote-card::after,
.quote-wide::after,
.cta-box::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(163,123,78,.12), rgba(163,123,78,0));
  pointer-events: none;
}
.quote-card::after { top: -100px; right: -60px; }
.quote-wide::after { right: -70px; bottom: -110px; }
.cta-box::after { left: -100px; bottom: -120px; background: radial-gradient(circle, rgba(255,255,255,.12), rgba(255,255,255,0)); }
.quote-card { padding: 1.8rem; }
.quote-card p {
  margin: 0 0 .75rem;
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.3vw, 1.95rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -.03em;
}
.quote-card small { font-weight: 800; }
.quote-wide {
  padding: clamp(1.5rem, 4vw, 2.8rem);
  text-align: center;
}
.quote-wide p {
  max-width: 900px;
  margin: 0 auto .9rem;
  font-family: var(--font-head);
  font-size: clamp(1.45rem, 3vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -.05em;
}
.quote-wide span { color: var(--accent); font-weight: 900; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery-card {
  overflow: hidden;
  margin: 0;
  height: 100%;
}
.gallery-card img { aspect-ratio: 4 / 5; transition: transform .35s ease; }
.gallery-card:hover img { transform: scale(1.03); }
.gallery-card figcaption { padding: 1rem; display: grid; gap: .35rem; }
.gallery-card span {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 900;
}
.gallery-card strong {
  font-family: var(--font-head);
  line-height: 1.1;
  font-size: 1rem;
}
.gallery-card p { margin-bottom: 0; color: var(--muted); font-size: .94rem; }

.faq-list {
  display: grid;
  gap: .95rem;
  max-width: 920px;
}
.faq-item { padding: 1rem 1.15rem; }
.faq-item summary {
  position: relative;
  padding-right: 2rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.25;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.45rem;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: .85rem 0 0; color: var(--muted); }

.contact-grid { align-items: start; }
.contact-benefits {
  display: grid;
  gap: .8rem;
  margin: 1.5rem 0;
}
.contact-benefits article { padding: 1rem; }
.contact-benefits strong { display: block; margin-bottom: .2rem; font-family: var(--font-head); }
.contact-benefits span { color: var(--muted); }
.contact-direct { color: var(--muted); margin-top: 1rem; }
.contact-direct a,
.footer-contact a,
.legal-copy a { text-decoration: underline; text-underline-offset: .14em; }
.contact-card { padding: clamp(1.2rem, 3vw, 1.8rem); }
.contact-card h2 { margin-bottom: .9rem; }
.contact-form {
  display: grid;
  gap: 1rem;
}
.form-group { display: grid; gap: .45rem; }
.form-group label { font-weight: 800; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .95rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.82);
  color: var(--text);
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(163,123,78,.6);
  box-shadow: 0 0 0 4px rgba(163,123,78,.1);
  outline: none;
}
.checkbox-group {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: .75rem;
}
.checkbox-group input { margin-top: .3rem; width: 18px; height: 18px; }
.hp-field { display: none; }
.form-error { color: var(--danger); font-size: .92rem; }
.mini-note { margin-bottom: 0; color: var(--muted); font-size: .92rem; }

.legal-copy {
  padding: clamp(1.3rem, 3vw, 2rem);
}
.legal-copy h2 {
  margin: 1.5rem 0 .5rem;
  font-family: var(--font-head);
  font-size: 1.2rem;
  line-height: 1.2;
}
.legal-copy p { color: var(--muted); }

.cta-section { padding-top: 1rem; }
.cta-box {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  color: #fff;
  background:
    radial-gradient(circle at 85% 18%, rgba(163,123,78,.22), transparent 20%),
    linear-gradient(135deg, #1b1f24 0%, #23322b 100%);
}
.cta-box .eyebrow,
.cta-box p { color: rgba(255,255,255,.8); }
.cta-box .eyebrow::before { background: rgba(255,255,255,.6); }
.cta-box h2 { margin-bottom: .55rem; }
.cta-box p { max-width: 720px; margin-bottom: 0; }

.message-stack { padding-top: 1rem; }
.message { padding: 1rem 1.1rem; }
.message.success { border-left: 4px solid var(--success); }

.site-footer {
  margin-top: 2.5rem;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(31,35,41,.06);
  background: linear-gradient(180deg, rgba(235,228,219,.82), rgba(229,222,213,.96));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .8fr .85fr;
  gap: 2rem;
}
.footer-brand {
  display: inline-block;
  margin-bottom: .5rem;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -.03em;
}
.site-footer h4 { margin-top: 0; font-family: var(--font-head); }
.site-footer p,
.site-footer li,
.footer-bottom { color: var(--muted); }
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .45rem;
}
.legal-links { margin-top: 1rem !important; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(31,35,41,.08);
  font-size: .92rem;
}
.mobile-cta { display: none; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }

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

@media (max-width: 1100px) {
  .hero-grid,
  .grid-two,
  .image-feature,
  .image-feature.reverse,
  .split-panel,
  .footer-grid,
  .gallery-grid,
  .cards-grid.three,
  .cards-grid.four,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid.four { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { min-height: 520px; }
}

@media (max-width: 820px) {
  body { padding-bottom: 78px; }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + .6rem);
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: .65rem;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.7);
    background: rgba(255,255,255,.92);
    box-shadow: var(--shadow-md);
  }
  .site-nav.is-open { display: flex; }
  .site-nav .btn { width: 100%; }

  .hero,
  .page-hero { padding-top: 1.8rem; }
  .hero::before,
  .page-hero::before {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }

  .hero-grid,
  .grid-two,
  .page-shell .grid-two,
  .page-shell.grid-two,
  .image-feature,
  .image-feature.reverse,
  .split-panel,
  .footer-grid,
  .cards-grid.two,
  .cards-grid.three,
  .cards-grid.four,
  .gallery-grid,
  .stats-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-shell,
  .page-shell,
  .section-dark,
  .section-soft,
  .section-accent { border-radius: 28px; }

  .hero-copy h1,
  .page-hero h1 { max-width: none; }
  .hero-visual { min-height: auto; }
  .hero-photo-wrap { min-height: 420px; }
  .hero-photo-wrap::before { inset: 1rem -.7rem -.8rem 1.4rem; }
  .floating-card { position: static; width: 100%; margin-top: 1rem; }
  .hero-metric { right: auto; left: 1rem; top: 1rem; }
  .proof-strip { margin-top: 0; }
  .section { padding: 3.8rem 0; }
  .section-dark { margin-inline: 0; }
  .cta-box { flex-direction: column; align-items: flex-start; }
  .timeline-item { grid-template-columns: 1fr; gap: .4rem; }
  .image-feature.reverse .image-feature-media { order: 0; }
  .image-feature-media::after { inset: auto -.6rem -.7rem 1.2rem; }
  .footer-bottom { flex-direction: column; }

  .mobile-cta {
    display: inline-flex;
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 35;
    justify-content: center;
    padding: .95rem 1rem;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, #1f2329 0%, #2c343e 100%);
    box-shadow: var(--shadow-md);
  }
}

@media (max-width: 520px) {
  :root { --container: min(100% - 1rem, 1200px); }
  .nav-wrap { min-height: 72px; padding: .65rem .8rem; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-copy small { display: none; }
  .hero-shell,
  .page-shell,
  .card,
  .stat-card,
  .step-card,
  .quote-card,
  .faq-item,
  .contact-card,
  .split-panel,
  .legal-copy,
  .gallery-card,
  .cta-box { border-radius: 22px; }
  .hero-actions .btn,
  .center-actions .btn { width: 100%; }
  .micro-trust span { width: 100%; justify-content: flex-start; }
  .hero-photo-wrap { min-height: 340px; }
}


/* Reviews page */
body.page-reviews {
  --page-accent-1: rgba(163, 123, 78, 0.15);
  --page-accent-2: rgba(78, 102, 86, 0.11);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review-card {
  position: relative;
  min-height: 280px;
  padding: 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.68);
  background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,250,243,.86));
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--green));
  opacity: .85;
}

.review-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.review-top strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.08rem;
  letter-spacing: -.02em;
}

.review-top span,
.review-card small {
  color: var(--muted);
  font-size: .9rem;
}

.stars {
  white-space: nowrap;
  color: var(--accent);
  letter-spacing: .05em;
  font-size: .95rem;
}

.review-card p {
  color: #333840;
  margin-bottom: 1rem;
}

.form-group select {
  width: 100%;
  padding: .95rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.82);
  color: var(--text);
  font: inherit;
}

.form-group select:focus {
  border-color: rgba(163,123,78,.6);
  box-shadow: 0 0 0 4px rgba(163,123,78,.1);
  outline: none;
}

@media (max-width: 1100px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}


/* Reviews refinements */
.review-hero-shell {
  max-width: 1200px;
}

.review-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2rem;
  align-items: center;
}

.rating-summary {
  position: relative;
  overflow: hidden;
  padding: clamp(1.3rem, 3vw, 2rem);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.72);
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,250,243,.9));
  box-shadow: var(--shadow-sm);
}

.rating-summary::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  top: -90px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(163,123,78,.14), rgba(163,123,78,0));
}

.rating-kicker {
  display: block;
  margin-bottom: .8rem;
  color: var(--muted);
  font-weight: 800;
  font-size: .92rem;
}

.rating-main {
  display: flex;
  align-items: baseline;
  gap: .55rem;
}

.rating-main strong {
  font-family: var(--font-head);
  font-size: clamp(3.1rem, 7vw, 5rem);
  line-height: .9;
  letter-spacing: -.08em;
}

.rating-main span {
  color: var(--muted);
  font-weight: 800;
}

.rating-stars {
  position: relative;
  display: inline-block;
  margin-top: .7rem;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: .08em;
  color: rgba(31,35,41,.14);
}

.rating-stars::before {
  content: "★★★★★";
  position: absolute;
  inset: 0;
  width: var(--rating-percent);
  overflow: hidden;
  white-space: nowrap;
  color: var(--accent);
}

.rating-summary p {
  margin: .75rem 0 .9rem;
  color: var(--muted);
  font-weight: 700;
}

.rating-bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(31,35,41,.08);
}

.rating-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--green));
}

.review-card {
  min-height: 245px;
}

.review-card small {
  display: none;
}

.review-form .star-rating-group {
  gap: .6rem;
}

.star-picker {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: .35rem;
  padding: .85rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.82);
}

.star-picker input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.star-picker label {
  cursor: pointer;
  font-size: 2.1rem;
  line-height: 1;
  color: rgba(31,35,41,.18);
  transition: transform .16s ease, color .16s ease;
}

.star-picker label:hover,
.star-picker label:hover ~ label,
.star-picker input:checked ~ label {
  color: var(--accent);
}

.star-picker label:hover {
  transform: translateY(-2px) scale(1.04);
}

.star-picker input:focus-visible + label {
  outline: 3px solid rgba(163, 123, 78, .32);
  outline-offset: 4px;
  border-radius: 10px;
}

.star-hint {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}

@media (max-width: 820px) {
  .review-hero-grid {
    grid-template-columns: 1fr;
  }

  .star-picker label {
    font-size: 1.85rem;
  }
}


/* Navbar CTA readability */
.site-nav a.btn-nav,
.site-nav .btn-nav,
.site-nav a.btn-primary {
  color: #fff !important;
}

.site-nav a.btn-nav:hover,
.site-nav .btn-nav:hover,
.site-nav a.btn-primary:hover {
  color: #fff !important;
  background: linear-gradient(135deg, #4e6656 0%, #1f2329 100%);
}

/* Philosophie: Premium-Kontrastzeilen */
.section-dark .contrast-row {
  background: linear-gradient(135deg, rgba(31, 35, 41, 0.72), rgba(78, 102, 86, 0.36));
  border-color: rgba(214, 192, 163, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.section-dark .contrast-row strong {
  color: #D6C0A3;
}

.section-dark .contrast-row span {
  color: rgba(255, 255, 255, 0.5);
  text-decoration-color: rgba(255, 255, 255, 0.32);
}

/* Mitarbeit page */
body.page-join {
  --page-accent-1: rgba(78, 102, 86, 0.16);
  --page-accent-2: rgba(163, 123, 78, 0.12);
}

.page-join .quote-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-join .section-soft .split-panel {
  align-items: center;
}

.page-join .contact-card {
  border-top: 4px solid rgba(214, 192, 163, 0.35);
}


/* Lumen Assistent */
.chatbot-widget {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  font-family: var(--font-body);
}

.chatbot-launcher {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-height: 54px;
  padding: .85rem 1.05rem;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 999px;
  background: linear-gradient(135deg, #1f2329 0%, #4e6656 100%);
  color: #fff;
  box-shadow: 0 18px 52px rgba(31,35,41,.22);
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  letter-spacing: -.01em;
}

.chatbot-launcher-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(214, 192, 163, .18);
  color: #D6C0A3;
}

.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + .9rem);
  width: min(390px, calc(100vw - 2rem));
  max-height: min(680px, calc(100vh - 7rem));
  overflow: hidden;
  display: none;
  flex-direction: column;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.72);
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,250,243,.96));
  box-shadow: 0 28px 80px rgba(31,35,41,.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.chatbot-widget.is-open .chatbot-panel {
  display: flex;
}

.chatbot-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem .9rem;
  background: linear-gradient(135deg, rgba(31,35,41,.98), rgba(78,102,86,.96));
  color: #fff;
}

.chatbot-header strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  letter-spacing: -.02em;
}

.chatbot-header span {
  display: block;
  margin-top: .1rem;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
}

.chatbot-close {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.chatbot-body {
  display: grid;
  gap: .65rem;
  padding: 1rem;
  max-height: 330px;
  overflow-y: auto;
}

.chat-message {
  max-width: 88%;
  padding: .78rem .9rem;
  border-radius: 18px;
  font-size: .94rem;
  line-height: 1.45;
}

.chat-message p {
  margin: 0;
}

.chat-message.bot {
  justify-self: start;
  background: rgba(31,35,41,.06);
  color: var(--text);
  border-bottom-left-radius: 6px;
}

.chat-message.bot.small {
  color: var(--muted);
  font-size: .86rem;
}

.chat-message.user {
  justify-self: end;
  background: linear-gradient(135deg, #1f2329, #4e6656);
  color: #fff;
  border-bottom-right-radius: 6px;
}

.chat-message .chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .7rem;
}

.chat-message .chat-actions a,
.chat-message .chat-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: .45rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(31,35,41,.12);
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: .86rem;
  font-weight: 800;
  cursor: pointer;
}

.chatbot-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: .5rem;
  padding: 0 1rem 1rem;
}

.chatbot-options button {
  min-height: 42px;
  padding: .65rem .8rem;
  border: 1px solid rgba(31,35,41,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.chatbot-options button:hover {
  border-color: rgba(163,123,78,.28);
  background: rgba(255,255,255,.94);
}

.chatbot-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .5rem;
  padding: .9rem 1rem 1rem;
  border-top: 1px solid rgba(31,35,41,.08);
  background: rgba(255,255,255,.42);
}

.chatbot-input-row input {
  min-width: 0;
  border: 1px solid rgba(31,35,41,.14);
  border-radius: 999px;
  padding: .75rem .9rem;
  font: inherit;
  background: rgba(255,255,255,.88);
}

.chatbot-input-row button {
  border: 0;
  border-radius: 999px;
  padding: .75rem .9rem;
  background: var(--brand);
  color: #fff;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

@media (max-width: 820px) {
  .chatbot-widget {
    right: 1rem;
    left: 1rem;
    bottom: 5.4rem;
  }

  .chatbot-launcher {
    margin-left: auto;
    min-height: 50px;
  }

  .chatbot-panel {
    right: 0;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 10rem);
  }
}

@media (max-width: 520px) {
  .chatbot-launcher-text {
    display: none;
  }

  .chatbot-launcher {
    width: 54px;
    padding: .7rem;
    justify-content: center;
  }

  .chatbot-launcher-icon {
    width: 32px;
    height: 32px;
  }
}


/* Mitarbeit: hochwertige Step-Cards im dunklen Bereich */
.page-join .section-dark .step-card {
  background: linear-gradient(135deg, rgba(31, 35, 41, 0.78), rgba(78, 102, 86, 0.38));
  border-color: rgba(214, 192, 163, 0.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 18px 50px rgba(0,0,0,.16);
}

.page-join .section-dark .step-card span {
  background: rgba(214, 192, 163, 0.14);
  color: #D6C0A3;
}

.page-join .section-dark .step-card h3 {
  color: #fff;
}

.page-join .section-dark .step-card p {
  color: rgba(255,255,255,.76);
}

/* Chatbot: Vorschläge nach Start ausblenden */
.chatbot-options.is-hidden {
  display: none;
}

/* Brand logo image in navbar */
.brand-mark.brand-mark-image {
  padding: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 14px 34px rgba(31, 35, 41, 0.12);
}

.brand-mark.brand-mark-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}
