
:root {
  --ink: #0f0f12;
  --ink-soft: #1e1e24;
  --chalk: #f5f4f0;
  --chalk-warm: #eceae3;
  --chalk-mid: #e0ddd5;
  --accent: #e8500a;
  --accent-hover: #c94008;
  --accent-muted: #f4d5c5;
  --mid: #6b6b78;
  --mid-light: #9b9ba8;
  --border-subtle: rgba(15,15,18,0.1);
  --border-strong: rgba(15,15,18,0.2);
  --shadow-sm: 0 2px 8px rgba(15,15,18,0.08), 0 1px 3px rgba(15,15,18,0.06);
  --shadow-md: 0 8px 24px rgba(15,15,18,0.12), 0 2px 8px rgba(15,15,18,0.08);
  --shadow-lg: 0 20px 48px rgba(15,15,18,0.16), 0 4px 16px rgba(15,15,18,0.1);
  --shadow-xl: 0 32px 64px rgba(15,15,18,0.2), 0 8px 24px rgba(15,15,18,0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Rubik', sans-serif;
  background: var(--chalk);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); transition: color 0.2s ease; }
a:hover { color: var(--accent-hover); }
ul { list-style: none; }


.stage {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 420px;
  position: relative;
  padding-top: 68px;
}
.stage-main {
  background: var(--ink);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.stage-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.stage-main-content {
  position: relative;
  z-index: 2;
  padding: 5rem 3rem 5rem 5rem;
  max-width: 780px;
}
.spotlight-label {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}
.hero-heading {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--chalk);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(245,244,240,0.75);
  line-height: 1.7;
  max-width: 560px;
}


.stage-panel {
  background: var(--chalk);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 2.5rem;
  border-left: 4px solid var(--accent);
  position: relative;
  z-index: 2;
  box-shadow: -8px 0 32px rgba(15,15,18,0.18);
}
.panel-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.875rem;
  border-bottom: 2px solid var(--accent-muted);
  padding-bottom: 0.5rem;
  width: fit-content;
}
.panel-heading {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.panel-text {
  font-size: 0.975rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.panel-list {
  margin-bottom: 1.75rem;
}
.panel-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.panel-list li:last-child { border-bottom: none; }
.panel-list li i { color: var(--accent); font-size: 0.8rem; }


.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 0.75rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(232,80,10,0.3);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232,80,10,0.4);
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--border-strong);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  text-align: center;
}
.btn-secondary:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--chalk);
}
.btn-accent {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(232,80,10,0.35);
}
.btn-accent:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
}
.btn-primary-lg {
  display: inline-block;
  background: var(--chalk);
  color: var(--ink);
  text-decoration: none;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-md);
}
.btn-primary-lg:hover {
  background: var(--chalk-warm);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-ghost-lg {
  display: inline-block;
  background: transparent;
  color: rgba(245,244,240,0.85);
  text-decoration: none;
  padding: 0.95rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(245,244,240,0.35);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.btn-ghost-lg:hover {
  border-color: rgba(245,244,240,0.7);
  color: var(--chalk);
  background: rgba(245,244,240,0.1);
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Rubik', sans-serif;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(232,80,10,0.3);
  width: 100%;
  justify-content: center;
}
.btn-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,80,10,0.4);
}


.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-light {
  background: var(--chalk);
  padding: 6rem 0;
}
.section-dark {
  background: var(--ink);
  padding: 6rem 0;
}
.section-accent-bg {
  background: var(--chalk-warm);
  padding: 6rem 0;
}
.section-overlap-top {
  position: relative;
  margin-top: -64px;
  padding-top: 8rem;
}
.section-overlap-top-sm {
  position: relative;
  margin-top: -40px;
  padding-top: 7rem;
}


.section-bridge {
  background: var(--ink-soft);
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  z-index: 2;
}
.bridge-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem 2.5rem;
  border-right: 1px solid rgba(245,244,240,0.1);
}
.bridge-card:last-child { border-right: none; }
.bridge-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: #fff;
}
.bridge-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--chalk);
  margin-bottom: 0.4rem;
}
.bridge-card p {
  font-size: 0.875rem;
  color: rgba(245,244,240,0.6);
  line-height: 1.6;
}


.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header-light {
  text-align: center;
  margin-bottom: 3.5rem;
}
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.875rem;
}
.eyebrow-light {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232,80,10,0.9);
  margin-bottom: 0.875rem;
}
.section-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.section-heading-light {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--chalk);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-sub-light {
  font-size: 1.05rem;
  color: rgba(245,244,240,0.65);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}


.gallery { display: grid; gap: 1.5rem; }
.gallery-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-bordered .service-card { border: 1px solid var(--border-subtle); }


.shelf-card-dark {
  background: rgba(245,244,240,0.04);
  border: 1px solid rgba(245,244,240,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.shelf-card-dark:hover {
  background: rgba(245,244,240,0.08);
  border-color: rgba(232,80,10,0.4);
  transform: translateY(-3px);
}
.shelf-card-dark h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--chalk);
  margin-bottom: 0.75rem;
}
.shelf-card-dark p {
  font-size: 0.9rem;
  color: rgba(245,244,240,0.6);
  line-height: 1.65;
}
.card-icon-accent {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}


.shelf-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.shelf-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--accent), rgba(232,80,10,0.3));
}
.shelf-step {
  padding: 0 2rem;
  position: relative;
}
.shelf-step:first-child { padding-left: 0; }
.shelf-step:last-child { padding-right: 0; }
.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.step-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.625rem;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.65;
}


.carousel-swiper { padding-bottom: 3.5rem !important; }
.carousel-card {
  background: var(--chalk);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid var(--border-subtle);
}
.carousel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.carousel-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.carousel-card-body {
  padding: 1.5rem;
}
.carousel-tag {
  display: inline-block;
  background: var(--accent-muted);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}
.carousel-card-body h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}
.carousel-card-body p {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.6;
}
.swiper-pagination-bullet-active { background: var(--accent) !important; }
.swiper-button-next,
.swiper-button-prev {
  color: var(--accent) !important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.25rem !important;
}


.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.split-content .eyebrow-light { margin-bottom: 0.875rem; display: block; }
.body-light {
  font-size: 1rem;
  color: rgba(245,244,240,0.7);
  line-height: 1.75;
}


.section-cta-band {
  background: var(--ink-soft);
  padding: 4.5rem 0;
  border-top: 1px solid rgba(245,244,240,0.08);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-band-heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--chalk);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.cta-band-sub {
  color: rgba(245,244,240,0.6);
  font-size: 1rem;
}
.cta-band-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}


.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.375rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  transition: background 0.2s ease;
}
.faq-trigger:hover { background: var(--chalk-warm); }
.faq-trigger[aria-expanded="true"] { background: var(--chalk-warm); color: var(--accent); }
.faq-icon {
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-size: 0.875rem;
}
.faq-trigger[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-body.open { max-height: 400px; }
.faq-body p {
  padding: 0 1.5rem 1.375rem;
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.7;
}
.faq-body p + p { padding-top: 0; margin-top: -0.5rem; }


.spotlight-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.spotlight-text .section-heading { margin-bottom: 1.25rem; }
.spotlight-text p {
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.75;
}
.spotlight-image img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 5/4;
}


.principle-card {
  background: rgba(245,244,240,0.04);
  border: 1px solid rgba(245,244,240,0.1);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  transition: border-color 0.25s ease, background 0.25s ease;
  border-left: 4px solid var(--accent);
}
.principle-card:hover {
  border-color: rgba(232,80,10,0.5);
  background: rgba(245,244,240,0.06);
}
.principle-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(232,80,10,0.3);
  line-height: 1;
  margin-bottom: 0.875rem;
}
.principle-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--chalk);
  margin-bottom: 0.75rem;
}
.principle-card p {
  font-size: 0.9rem;
  color: rgba(245,244,240,0.6);
  line-height: 1.65;
}


.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.checklist-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.checklist-item i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.checklist-item p {
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.55;
}


.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--ink);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--chalk);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.service-card-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.service-card > p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.service-list li {
  font-size: 0.875rem;
  color: var(--ink);
  padding: 0.375rem 0;
  padding-left: 1.25rem;
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}


.challenge-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.challenge-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-subtle);
  align-items: start;
}
.challenge-item:last-child { border-bottom: none; }
.challenge-item-alt { background: transparent; }
.challenge-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  padding-top: 0.25rem;
}
.challenge-icon {
  width: 64px;
  height: 64px;
  background: var(--ink);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--chalk);
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
}
.challenge-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-muted);
  padding: 0.2rem 0.625rem;
  border-radius: var(--radius-sm);
}
.challenge-right h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.875rem;
  letter-spacing: -0.02em;
}
.challenge-right p {
  font-size: 0.975rem;
  color: var(--mid);
  line-height: 1.7;
}


.page-hero-compact {
  padding: 5rem 0 4rem;
}
.page-hero-dark { background: var(--ink); }
.page-hero-accent { background: var(--ink-soft); }
.page-hero-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--chalk);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(245,244,240,0.65);
  max-width: 640px;
  line-height: 1.7;
}


.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-side-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.contact-address-text {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}
.contact-info-item i {
  color: var(--accent);
  width: 20px;
  text-align: center;
}
.contact-info-item a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}
.contact-info-item a:hover { color: var(--accent); }


.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-md);
  font-family: 'Rubik', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,80,10,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-checkbox {
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 0.75rem !important;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  accent-color: var(--accent);
  cursor: pointer;
}
.form-checkbox label {
  font-size: 0.875rem;
  font-weight: 400 !important;
  color: var(--mid);
  line-height: 1.55;
}
.form-checkbox label a { color: var(--accent); }
.required-star { color: var(--accent); }
.form-error {
  background: #fef2f0;
  border: 1px solid rgba(232,80,10,0.3);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--accent-hover);
}


.office-gallery {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.25rem;
}
.office-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.office-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.office-gallery-item img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.office-gallery-large { min-height: 350px; }
.office-gallery-col .office-gallery-item { flex: 1; min-height: 160px; overflow: hidden; border-radius: var(--radius-lg); }


.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 60vh;
}
.legal-sidebar {
  background: var(--chalk-warm);
  padding: 3rem 2rem;
  border-right: 1px solid var(--border-subtle);
  position: sticky;
  top: 68px;
  max-height: calc(100vh - 68px);
  overflow-y: auto;
  align-self: start;
}
.legal-nav h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-light);
  margin-bottom: 1rem;
}
.legal-nav a {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease;
}
.legal-nav a:hover { color: var(--accent); }
.legal-content {
  padding: 3rem 3.5rem;
  flex: 1;
}
.legal-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-subtle);
}
.legal-header h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.legal-updated {
  font-size: 0.875rem;
  color: var(--mid-light);
}
.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.875rem;
  padding-left: 0.875rem;
  border-left: 3px solid var(--accent);
}
.legal-section p,
.legal-section li {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.75;
}
.legal-section a { color: var(--accent); }


.cookie-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
}
.cookie-block:last-child { border-bottom: none; }
.cookie-block h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.875rem;
  border-bottom: 2px solid var(--chalk-mid);
  padding-bottom: 0.5rem;
}
.cookie-block p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.75;
}
.cookie-table-wrapper {
  overflow-x: auto;
  margin: 1.25rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.cookie-table th {
  background: var(--ink);
  color: var(--chalk);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
}
.cookie-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--mid);
}
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:nth-child(even) td { background: var(--chalk-warm); }


.impressum-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
}
.impressum-section:last-of-type { border-bottom: none; }
.impressum-section h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
  padding-left: 0.875rem;
  border-left: 3px solid var(--accent);
}
.impressum-section p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.7;
}
.impressum-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
.impressum-table tr { border-bottom: 1px solid var(--border-subtle); }
.impressum-table tr:last-child { border-bottom: none; }
.impressum-table td {
  padding: 0.625rem 0.5rem;
  vertical-align: top;
  line-height: 1.5;
}
.impressum-table td:first-child {
  font-weight: 600;
  color: var(--ink);
  width: 240px;
  padding-right: 1.5rem;
}
.impressum-table td:last-child {
  color: var(--mid);
}
.impressum-table a { color: var(--accent); }


.site-footer {
  background: var(--ink);
  margin-top: auto;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand {}
.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1rem;
}
.footer-logo-link img { height: 32px; width: auto; }
.footer-logo-link span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--chalk);
  letter-spacing: -0.02em;
}
.footer-tagline {
  font-size: 0.875rem;
  color: rgba(245,244,240,0.5);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 280px;
}
.footer-address {
  font-style: normal;
  font-size: 0.8rem;
  color: rgba(245,244,240,0.45);
  line-height: 1.8;
}
.footer-address a {
  color: rgba(245,244,240,0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-address a:hover { color: var(--accent); }
.footer-nav-group h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,244,240,0.4);
  margin-bottom: 1rem;
}
.footer-nav-group a {
  display: block;
  font-size: 0.875rem;
  color: rgba(245,244,240,0.65);
  text-decoration: none;
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}
.footer-nav-group a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(245,244,240,0.08);
}
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
}
.footer-legal {
  font-size: 0.8rem;
  color: rgba(245,244,240,0.35);
}
.footer-a11y {
  font-size: 0.8rem;
  color: rgba(245,244,240,0.35);
  margin-top: 0.5rem;
  line-height: 1.6;
}
.footer-a11y a { color: rgba(245,244,240,0.5); }
.footer-a11y a:hover { color: var(--accent); }


@media (max-width: 1024px) {
  .stage { grid-template-columns: 1fr; min-height: auto; }
  .stage-main { min-height: 60vh; }
  .stage-main-content { padding: 4rem 2rem; }
  .stage-panel {
    border-left: none;
    border-top: 4px solid var(--accent);
    padding: 2.5rem 2rem;
  }
  .section-bridge { grid-template-columns: 1fr; }
  .bridge-card { border-right: none; border-bottom: 1px solid rgba(245,244,240,0.1); }
  .bridge-card:last-child { border-bottom: none; }
  .gallery-3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-2 { grid-template-columns: 1fr; }
  .shelf-row { grid-template-columns: 1fr; gap: 2rem; }
  .shelf-row::before { display: none; }
  .split-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .spotlight-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .challenge-item { grid-template-columns: 1fr; gap: 1.5rem; }
  .challenge-left { flex-direction: row; align-items: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; max-height: none; border-right: none; border-bottom: 1px solid var(--border-subtle); }
  .legal-content { padding: 2rem; }
}

@media (max-width: 768px) {
  .gallery-3 { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .office-gallery { grid-template-columns: 1fr; }
  .office-gallery-col { flex-direction: row; }
  .cta-band-actions { flex-direction: column; width: 100%; }
  .cta-band-actions .btn-primary-lg,
  .cta-band-actions .btn-ghost-lg { text-align: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .section-bridge { padding: 0; }
  .section-overlap-top { margin-top: 0; padding-top: 5rem; }
  .section-overlap-top-sm { margin-top: 0; padding-top: 5rem; }
  .shelf-step { padding: 0; }
}

@media (max-width: 480px) {
  .stage-main-content { padding: 3rem 1.25rem; }
  .stage-panel { padding: 2rem 1.25rem; }
  .section-inner { padding: 0 1.25rem; }
  .nav-inner { padding: 0 1.25rem; }
  .drawer-menu-inner { padding: 1rem 1.25rem 1.5rem; }
  .section-light,
  .section-dark,
  .section-accent-bg { padding: 4rem 0; }
  .office-gallery-col { flex-direction: column; }
}