:root {
  --cream: #faf6f0;
  --warm-white: #fff9f2;
  --parchment: #f5ede0;
  --amber: #c8842a;
  --amber-light: #e8a84a;
  --amber-dark: #9a5f1a;
  --rust: #b85c38;
  --sienna: #8b4513;
  --charcoal: #2c2416;
  --dark-brown: #3d2b1f;
  --mid-brown: #6b4c30;
  --text-primary: #2c2416;
  --text-secondary: #5a4030;
  --text-muted: #8a6a50;
  --border-warm: rgba(200, 132, 42, 0.2);
  --shadow-sm: 0 2px 8px rgba(44,36,22,0.08), 0 1px 3px rgba(44,36,22,0.05);
  --shadow-md: 0 8px 24px rgba(44,36,22,0.12), 0 3px 8px rgba(44,36,22,0.07);
  --shadow-lg: 0 20px 48px rgba(44,36,22,0.15), 0 8px 16px rgba(44,36,22,0.08);
  --shadow-polaroid: 6px 8px 24px rgba(44,36,22,0.18), 2px 3px 8px rgba(44,36,22,0.10);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --nav-h: 72px;
  --gradient-warm: linear-gradient(135deg, #9a5f1a 0%, #c8842a 40%, #b85c38 70%, #8b4513 100%);
  --gradient-subtle: linear-gradient(135deg, #f5ede0 0%, #faf6f0 50%, #f0e8d8 100%);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cream);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 1rem;
  overflow-x: hidden;
}

/* Progress Bar */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient-warm);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  color: var(--text-primary);
}

.hero-heading {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  line-height: 1.15;
}

.section-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section-heading.light { color: #fff9f2; }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 52ch;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 60ch;
  line-height: 1.75;
}

.section-sub.light { color: rgba(255,249,242,0.82); }

p { color: var(--text-secondary); line-height: 1.75; }

a { color: var(--amber); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--amber-dark); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navigation */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-warm);
  height: var(--nav-h);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

#main-nav.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(250, 246, 240, 0.97);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img { width: 36px; height: 36px; }

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color 0.25s ease, background 0.25s ease;
  text-decoration: none;
}

.nav-link:hover, .nav-link.active {
  color: var(--amber);
  background: rgba(200, 132, 42, 0.08);
}

.nav-cta {
  background: var(--gradient-warm);
  color: #fff9f2;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  text-decoration: none;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: #fff9f2;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.25s ease;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger:hover { background: rgba(200,132,42,0.08); }

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 90vw);
  height: 100vh;
  background: var(--warm-white);
  z-index: 1100;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu.open { right: 0; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,36,22,0.45);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-overlay.open { opacity: 1; pointer-events: all; }

.mobile-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background 0.25s ease, color 0.25s ease;
}

.mobile-close:hover { background: rgba(200,132,42,0.08); color: var(--amber); }

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.mobile-menu ul li a {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: background 0.25s ease, color 0.25s ease;
  text-decoration: none;
}

.mobile-menu ul li a:hover { background: rgba(200,132,42,0.08); color: var(--amber); }

.mobile-cta {
  display: block;
  background: var(--gradient-warm);
  color: #fff9f2;
  padding: 1rem;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: opacity 0.25s ease;
  text-decoration: none;
}

.mobile-cta:hover { opacity: 0.9; color: #fff9f2; }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-warm);
  color: #fff9f2;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  opacity: 0.92;
  color: #fff9f2;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--amber-dark);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--amber);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-secondary:hover {
  background: rgba(200,132,42,0.08);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  color: var(--amber-dark);
}

.btn-full { width: 100%; justify-content: center; }

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
  background: var(--gradient-subtle);
}

.hero-left {
  display: flex;
  align-items: center;
  padding: 5rem 3rem 5rem 0;
}

.hero-left .container { padding: 0; }

.hero-content {
  max-width: 560px;
  padding-left: 1.5rem;
}

.hero-tag {
  display: inline-block;
  background: rgba(200, 132, 42, 0.12);
  color: var(--amber-dark);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(200,132,42,0.25);
}

.hero-heading { margin-bottom: 1.25rem; }

.hero-sub { margin-bottom: 2.5rem; }

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0e4cc 0%, #e8d4b4 50%, #dfc8a0 100%);
  position: relative;
  overflow: hidden;
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-deco-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,132,42,0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Polaroid Styles */
.polaroid {
  background: #fff;
  padding: 14px 14px 44px 14px;
  box-shadow: var(--shadow-polaroid);
  border-radius: 2px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.polaroid:hover {
  box-shadow: 8px 12px 32px rgba(44,36,22,0.22), 3px 4px 10px rgba(44,36,22,0.12);
}

.polaroid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: sepia(15%) saturate(1.1) brightness(0.97);
  transition: filter 0.35s ease;
}

.polaroid:hover img { filter: sepia(5%) saturate(1.15) brightness(1.02); }

.polaroid-caption {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--mid-brown);
  letter-spacing: 0.02em;
}

.polaroid-stack {
  position: relative;
  width: 320px;
  height: 340px;
}

.polaroid-back {
  position: absolute;
  width: 260px;
  height: 280px;
  top: 20px;
  left: 30px;
  transform: rotate(-6deg);
}

.polaroid-front {
  position: absolute;
  width: 260px;
  height: 280px;
  top: 0;
  left: 0;
  transform: rotate(3deg);
  z-index: 2;
}

.polaroid-back img, .polaroid-front img { height: 220px; }

.rotate-neg { transform: rotate(-4deg); }
.rotate-pos { transform: rotate(4deg); }

/* Problem Section */
.problem-section {
  padding: 7rem 0;
  background: var(--warm-white);
}

.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.polaroid-problem {
  width: 280px;
  height: 300px;
  transform: rotate(-3deg);
  margin-bottom: 1.5rem;
}

.polaroid-problem img { height: 240px; }

.problem-stat-card {
  background: rgba(200,132,42,0.08);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  backdrop-filter: blur(8px);
}

.problem-icon {
  font-size: 1.8rem;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.problem-stat-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
  padding: 7rem 0;
  background: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-sub { margin: 0 auto; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: var(--warm-white);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-icon-wrap {
  font-size: 1.6rem;
  color: var(--amber);
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--charcoal);
}

.benefit-card p { font-size: 0.92rem; }

/* Gradient Section */
.gradient-section {
  padding: 7rem 0;
  background: var(--gradient-warm);
  position: relative;
  overflow: hidden;
}

.gradient-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.process-card {
  background: rgba(255,249,242,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,249,242,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.process-card:hover {
  background: rgba(255,249,242,0.18);
  transform: translateY(-3px);
}

.process-number {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,249,242,0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff9f2;
  margin-bottom: 0.75rem;
}

.process-content p { color: rgba(255,249,242,0.82); font-size: 0.93rem; }

.process-image-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.polaroid-process {
  width: 220px;
  height: 240px;
  background: #fff;
}

.polaroid-process img { height: 180px; }

/* Services Section */
.services-section {
  padding: 7rem 0;
  background: var(--parchment);
}

.services-inner { max-width: 800px; margin: 0 auto; }

.services-header { margin-bottom: 3rem; }

.accordion { display: flex; flex-direction: column; gap: 0.75rem; }

.accordion-item {
  background: var(--warm-white);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}

.accordion-item.active { box-shadow: var(--shadow-md); }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.25s ease;
}

.accordion-trigger:hover { background: rgba(200,132,42,0.05); }

.accordion-icon-wrap {
  width: 40px;
  height: 40px;
  background: rgba(200,132,42,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.25s ease;
}

.accordion-item.active .accordion-icon-wrap {
  background: var(--amber);
  color: #fff9f2;
}

.accordion-trigger span {
  flex: 1;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--charcoal);
}

.accordion-arrow {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: transform 0.3s ease, color 0.25s ease;
  flex-shrink: 0;
}

.accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
  color: var(--amber);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.accordion-content p {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 0 1.5rem;
}

/* Approach Section */
.approach-section {
  padding: 7rem 0;
  background: var(--warm-white);
}

.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.approach-visuals {
  position: relative;
  height: 400px;
}

.polaroid-approach {
  position: absolute;
  width: 280px;
  height: 300px;
  top: 0;
  left: 0;
  transform: rotate(-3deg);
}

.polaroid-approach img { height: 240px; }

.polaroid-approach-small {
  position: absolute;
  width: 200px;
  height: 220px;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.polaroid-approach-small img { height: 165px; }

/* Location Section */
.location-section {
  padding: 7rem 0;
  background: var(--cream);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.location-card {
  background: var(--warm-white);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.location-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}

.location-item:last-of-type { margin-bottom: 0; }

.location-item i {
  font-size: 1.2rem;
  color: var(--amber);
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 20px;
}

.location-item strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.location-item p, .location-item a {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.location-item a:hover { color: var(--amber); }

/* Footer */
.site-footer {
  background: var(--dark-brown);
  padding: 5rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,249,242,0.1);
}

.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand .logo-text { color: var(--parchment); }

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,249,242,0.55);
  line-height: 1.6;
  max-width: 28ch;
}

.footer-nav h4, .footer-legal h4, .footer-contact h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--amber-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-nav ul, .footer-legal ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer-nav a, .footer-legal a {
  font-size: 0.9rem;
  color: rgba(255,249,242,0.65);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-nav a:hover, .footer-legal a:hover { color: var(--amber-light); }

.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255,249,242,0.65);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.footer-contact a {
  color: rgba(255,249,242,0.65);
  transition: color 0.25s ease;
}

.footer-contact a:hover { color: var(--amber-light); }

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,249,242,0.35);
}

/* Page Hero */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  background: var(--gradient-subtle);
  text-align: center;
}

.page-hero-content { max-width: 700px; margin: 0 auto; }
.page-hero-content .hero-sub { margin: 1.25rem auto 0; }

/* About Section */
.about-section { padding: 7rem 0; background: var(--warm-white); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual { display: flex; justify-content: center; }

.polaroid-about {
  width: 300px;
  height: 320px;
  transform: rotate(2deg);
}

.polaroid-about img { height: 260px; }

/* Values Section */
.values-section { }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: rgba(255,249,242,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,249,242,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.value-card:hover {
  background: rgba(255,249,242,0.18);
  transform: translateY(-3px);
}

.value-icon {
  font-size: 1.8rem;
  color: rgba(255,249,242,0.75);
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff9f2;
  margin-bottom: 0.6rem;
}

.value-card p { color: rgba(255,249,242,0.78); font-size: 0.93rem; }

/* Approach Detail Section */
.approach-detail-section { padding: 7rem 0; background: var(--cream); }

.approach-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.polaroid-detail {
  width: 300px;
  height: 320px;
  transform: rotate(-3deg);
}

.polaroid-detail img { height: 260px; }

/* Dienstleister */
.dienstleister-intro { padding: 7rem 0; background: var(--warm-white); }

.dienstleister-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.polaroid-dienstleister {
  width: 300px;
  height: 320px;
  transform: rotate(3deg);
}

.polaroid-dienstleister img { height: 260px; }

.coop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.coop-card {
  background: rgba(255,249,242,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,249,242,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.coop-card:hover {
  background: rgba(255,249,242,0.18);
  transform: translateY(-3px);
}

.coop-icon {
  font-size: 1.6rem;
  color: rgba(255,249,242,0.75);
  margin-bottom: 1rem;
}

.coop-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff9f2;
  margin-bottom: 0.5rem;
}

.coop-card p { color: rgba(255,249,242,0.78); font-size: 0.92rem; }

.dienstleister-cta-section { padding: 7rem 0; background: var(--parchment); }

.dienstleister-cta-inner { max-width: 680px; margin: 0 auto; text-align: center; }

.dienstleister-cta-inner p { margin-top: 1rem; }

/* Praxisbeispiele */
.scenarios-section { padding: 5rem 0; background: var(--warm-white); }

.scenario-card-large {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 6rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid var(--border-warm);
}

.scenario-card-large:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.scenario-card-large.reverse { grid-template-columns: 1.6fr 1fr; }

.scenario-card-large.reverse .scenario-visual { order: 2; }
.scenario-card-large.reverse .scenario-content { order: 1; }

.polaroid-scenario {
  width: 280px;
  height: 300px;
}

.polaroid-scenario img { height: 240px; }

.scenario-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,132,42,0.1);
  color: var(--amber-dark);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1rem;
  border: 1px solid rgba(200,132,42,0.2);
}

.scenario-content h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.scenario-outputs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.output-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--parchment);
  color: var(--mid-brown);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid var(--border-warm);
}

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

.not-covered-card {
  background: rgba(255,249,242,0.1);
  border: 1px solid rgba(255,249,242,0.15);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.not-covered-card i {
  color: rgba(255,249,242,0.5);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.not-covered-card p { color: rgba(255,249,242,0.78); font-size: 0.92rem; }

.praxis-cta-section { padding: 7rem 0; background: var(--parchment); }
.praxis-cta-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.praxis-cta-inner p { margin-top: 1rem; }

/* Contact */
.contact-section { padding: 5rem 0 7rem; background: var(--warm-white); }

.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-form-wrap h2, .contact-info-wrap h2 { margin-bottom: 2rem; }

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

.required-mark { color: var(--rust); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: var(--cream);
  border: 1.5px solid var(--border-warm);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  color: var(--text-primary);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(200,132,42,0.12);
  background: var(--warm-white);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.form-checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 0.15rem;
  accent-color: var(--amber);
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  cursor: pointer;
}

.form-checkbox a { color: var(--amber); }

.contact-details { margin-bottom: 2rem; }

.contact-detail-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-warm);
}

.contact-detail-item:last-child { border-bottom: none; }

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,132,42,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-item strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-detail-item p, .contact-detail-item a {
  font-size: 0.97rem;
  color: var(--text-secondary);
}

/* Thanks */
.thanks-section {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 3rem) 0 5rem;
  background: var(--gradient-subtle);
}

.thanks-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.thanks-icon {
  font-size: 4rem;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.thanks-inner .hero-sub { margin: 1rem auto 0; }

/* Legal Pages */
.legal-section {
  padding: calc(var(--nav-h) + 4rem) 0 6rem;
  background: var(--warm-white);
}

.legal-content { max-width: 760px; margin: 0 auto; }

.legal-date {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 1.75rem;
  margin-bottom: 0.6rem;
}

.legal-content p { margin-bottom: 1rem; font-size: 0.95rem; }

.legal-content ul {
  margin: 0.75rem 0 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.legal-content ul li { font-size: 0.95rem; color: var(--text-secondary); }

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.88rem;
}

.cookie-table th, .cookie-table td {
  border: 1px solid var(--border-warm);
  padding: 0.6rem 0.85rem;
  text-align: left;
  color: var(--text-secondary);
}

.cookie-table th {
  background: rgba(200,132,42,0.08);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--charcoal);
}

/* Cookie Consent Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--dark-brown);
  border-top: 2px solid var(--amber);
  padding: 1.5rem;
  box-shadow: 0 -8px 32px rgba(44,36,22,0.25);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

#cookie-banner.visible { transform: translateY(0); }

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.cookie-banner-text { flex: 1; min-width: 280px; }

.cookie-banner-text h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 0.5rem;
}

.cookie-banner-text p {
  font-size: 0.88rem;
  color: rgba(255,249,242,0.7);
  line-height: 1.6;
}

.cookie-banner-text a { color: var(--amber-light); }

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  min-height: 44px;
}

.cookie-btn-accept {
  background: var(--amber);
  color: #fff9f2;
}

.cookie-btn-accept:hover { background: var(--amber-dark); }

.cookie-btn-reject {
  background: transparent;
  color: rgba(255,249,242,0.7);
  border: 1px solid rgba(255,249,242,0.25);
}

.cookie-btn-reject:hover {
  background: rgba(255,249,242,0.08);
  color: var(--parchment);
}

.cookie-btn-customize {
  background: transparent;
  color: var(--amber-light);
  border: 1px solid var(--amber-light);
}

.cookie-btn-customize:hover { background: rgba(200,132,42,0.12); }

/* Cookie Customize Modal */
#cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(44,36,22,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#cookie-modal.visible {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-box {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.cookie-modal-box h2 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-warm);
  gap: 1rem;
}

.cookie-category:last-of-type { border-bottom: none; }

.cookie-cat-info h4 {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

.cookie-cat-info p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 26px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch input:checked + .toggle-slider { background: var(--amber); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(22px); }
.toggle-switch input:disabled + .toggle-slider { opacity: 0.6; cursor: not-allowed; }

.cookie-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Animate */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-section { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 4rem 0 2rem; }
  .hero-right { min-height: 400px; padding: 3rem 0; }
  .hero-content { padding-left: 0; max-width: 100%; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .scenario-card-large { grid-template-columns: 1fr; gap: 2rem; }
  .scenario-card-large.reverse .scenario-visual { order: 0; }
  .scenario-card-large.reverse .scenario-content { order: 0; }
  .not-covered-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-section { padding-top: var(--nav-h); }
  .hero-left { padding: 3rem 0 2rem; }
  .hero-right { min-height: 340px; }
  .polaroid-stack { width: 260px; height: 280px; }
  .polaroid-back { width: 210px; height: 230px; }
  .polaroid-front { width: 210px; height: 230px; }
  .polaroid-back img, .polaroid-front img { height: 175px; }

  .problem-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .approach-inner { grid-template-columns: 1fr; gap: 3rem; }
  .approach-detail-inner { grid-template-columns: 1fr; gap: 3rem; }
  .dienstleister-inner { grid-template-columns: 1fr; gap: 3rem; }
  .location-inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid { grid-template-columns: 1fr; }
  .coop-grid { grid-template-columns: 1fr; }

  .process-image-row { gap: 1rem; }
  .polaroid-process { width: 160px; height: 180px; }
  .polaroid-process img { height: 130px; }

  .approach-visuals { height: 280px; }
  .polaroid-approach { width: 220px; height: 240px; }
  .polaroid-approach img { height: 185px; }
  .polaroid-approach-small { width: 160px; height: 180px; }
  .polaroid-approach-small img { height: 130px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; justify-content: center; }

  .benefits-grid { grid-template-columns: 1fr; }

  .cookie-banner-inner { flex-direction: column; gap: 1rem; }
  .cookie-banner-actions { width: 100%; justify-content: flex-start; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .polaroid-problem { width: 220px; height: 240px; }
  .polaroid-problem img { height: 185px; }
  .polaroid-about { width: 240px; height: 260px; }
  .polaroid-about img { height: 205px; }
  .polaroid-detail { width: 240px; height: 260px; }
  .polaroid-detail img { height: 205px; }
  .polaroid-dienstleister { width: 240px; height: 260px; }
  .polaroid-dienstleister img { height: 205px; }
  .polaroid-scenario { width: 220px; height: 240px; }
  .polaroid-scenario img { height: 185px; }
  .cookie-modal-box { padding: 1.5rem; }
  .cookie-banner-actions { flex-direction: column; width: 100%; }
  .cookie-btn { width: 100%; text-align: center; }
}

/* ── Disclaimer Bar ───────────────────────────────────────────── */
.disclaimer-bar {
  width: 100%;
  margin-top: var(--nav-h);
  position: sticky;
  top: var(--nav-h);
  z-index: 999;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-brown) 55%, #4a2f1a 100%);
  border-bottom: 2px solid var(--amber);
  box-shadow: 0 3px 16px rgba(44,36,22,0.35);
}

.disclaimer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.55rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.disclaimer-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1;
  min-width: 0;
}

.disclaimer-icon {
  color: var(--amber-light);
  font-size: 0.9rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(232,168,74,0.5));
}

.disclaimer-text {
  font-size: 0.78rem;
  color: rgba(255,249,242,0.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.01em;
}

.disclaimer-text strong {
  color: var(--amber-light);
  font-weight: 600;
}

.disclaimer-right {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.disclaimer-link {
  font-size: 0.78rem;
  color: var(--amber-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s, text-decoration 0.2s;
  white-space: nowrap;
}

.disclaimer-link:hover {
  color: #fff;
  text-decoration: underline;
}

.disclaimer-sep {
  color: rgba(255,249,242,0.3);
  font-size: 0.75rem;
  user-select: none;
}

/* Reduce section top padding when disclaimer bar is in flow above */
.disclaimer-bar + .hero-section    { padding-top: 3rem; }
.disclaimer-bar + .page-hero       { padding-top: 3rem !important; }
.disclaimer-bar + .legal-section   { padding-top: 3.5rem !important; }

@media (max-width: 768px) {
  .disclaimer-inner { padding: 0.5rem 1rem; }
  .disclaimer-text  { font-size: 0.73rem; }
  .disclaimer-link  { font-size: 0.73rem; }
}

@media (max-width: 540px) {
  .disclaimer-right { display: none; }
  .disclaimer-text  { white-space: normal; line-height: 1.45; }
}