/* ============================================
   YICERA GEHARI – Custom CSS
   Design: Polaroid Nostalgia
   ============================================ */


:root {
  
  --color-bg: #faf6f0;
  --color-bg-warm: #f5ede0;
  --color-bg-card: #fffdf8;
  --color-primary: #3d2c1e;
  --color-primary-light: #5c4433;
  --color-accent: #c4713a;
  --color-accent-light: #e8956a;
  --color-accent-muted: #f0c9a8;
  --color-secondary: #7a9e8e;
  --color-secondary-dark: #4e7a6a;
  --color-text: #2e1f14;
  --color-text-muted: #6b5a4a;
  --color-text-light: #9a8070;
  --color-border: #e8ddd0;
  --color-white: #fffdf8;
  --color-polaroid: #fffcf5;

  
  --font-main: 'Instrument Sans', sans-serif;

  
  --space-xs: 0.375rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;

  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  
  --shadow-xs: 0 1px 3px rgba(61,44,30,0.06), 0 1px 2px rgba(61,44,30,0.04);
  --shadow-sm: 0 2px 8px rgba(61,44,30,0.08), 0 1px 3px rgba(61,44,30,0.06);
  --shadow-md: 0 4px 16px rgba(61,44,30,0.10), 0 2px 6px rgba(61,44,30,0.07);
  --shadow-lg: 0 8px 32px rgba(61,44,30,0.13), 0 3px 10px rgba(61,44,30,0.08);
  --shadow-xl: 0 16px 56px rgba(61,44,30,0.16), 0 6px 20px rgba(61,44,30,0.10);
  --shadow-polaroid: 0 6px 24px rgba(61,44,30,0.18), 0 2px 8px rgba(61,44,30,0.10), 0 0 0 1px rgba(61,44,30,0.04);

  
  --nav-height: 72px;
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body.canvas {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--color-primary);
}

ul { list-style: none; }


h1, h2, h3, h4 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary);
}

p {
  color: var(--color-text-muted);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  margin-bottom: 1em;
}

p:last-child { margin-bottom: 0; }


.nav-shell {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  padding: 12px 24px;
}

.nav-box {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255,253,248,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(61,44,30,0.06);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  transition: background 0.3s ease;
}

.nav-border-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: var(--color-border);
  transform-origin: center;
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.nav-border-line.visible {
  transform: scaleX(1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo:hover { color: var(--color-accent); }

.nav-logo-text {
  font-weight: 700;
  color: var(--color-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-accent);
  background: rgba(196,113,58,0.08);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.nav-hamburger:hover { background: rgba(196,113,58,0.08); }

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}


.stage-curtain {
  position: fixed;
  inset: 0;
  background: rgba(45,31,20,0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.stage-curtain.active {
  opacity: 1;
  pointer-events: all;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--color-polaroid);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  padding: var(--space-lg);
  overflow-y: auto;
}

.drawer.open {
  transform: translateX(0);
}

.drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--color-text-muted);
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-close:hover { color: var(--color-accent); background: rgba(196,113,58,0.08); }

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: var(--space-lg);
  flex: 1;
}

.drawer-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.drawer-link:hover,
.drawer-link.active {
  color: var(--color-accent);
  background: rgba(196,113,58,0.08);
}

.drawer-footer {
  margin-top: auto;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.drawer-footer p { margin: 0; }


.stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 60px) 24px 80px;
  overflow: hidden;
}

.stage-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 40%, rgba(240,201,168,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 75% 65%, rgba(122,158,142,0.15) 0%, transparent 60%),
    var(--color-bg);
  z-index: 0;
}

.stage-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  text-align: left;
}

.stage-kicker {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.stage-heading {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.stage-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-text-muted);
  max-width: 500px;
  margin-bottom: var(--space-lg);
}

.stage-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}


.stage-badge {
  position: absolute;
  z-index: 2;
  background: var(--color-polaroid);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(61,44,30,0.06);
  animation: floatBadge 4s ease-in-out infinite;
}

.stage-badge i {
  color: var(--color-accent);
  font-size: 0.9rem;
}

.stage-badge--tl { top: 18%; left: 3%; animation-delay: 0s; }
.stage-badge--tr { top: 22%; right: 5%; animation-delay: 1s; }
.stage-badge--bl { bottom: 18%; left: 4%; animation-delay: 2s; }
.stage-badge--br { bottom: 22%; right: 4%; animation-delay: 0.5s; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}


.stage-polaroid {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}


.polaroid-frame {
  background: var(--color-polaroid);
  padding: 14px 14px 40px 14px;
  border-radius: 4px;
  box-shadow: var(--shadow-polaroid);
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.polaroid-frame:hover {
  box-shadow: var(--shadow-xl);
}

.polaroid-frame img {
  display: block;
  border-radius: 2px;
  object-fit: cover;
}

.polaroid-caption {
  position: absolute;
  bottom: 8px;
  left: 14px;
  right: 14px;
  text-align: center;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--color-text-light);
  margin: 0;
  line-height: 1.3;
}

.polaroid-frame--hero {
  width: min(340px, 38vw);
  transform: rotate(2deg);
}

.polaroid-frame--hero img {
  width: 100%;
  height: 260px;
}

.polaroid-frame--sm img {
  width: 200px;
  height: 160px;
}

.polaroid-frame--md img {
  width: 260px;
  height: 210px;
}

.polaroid-frame--about img {
  width: 320px;
  height: 240px;
}

.polaroid-frame--module img {
  width: 100%;
  height: 200px;
}

.polaroid-frame--module-lg img {
  width: 340px;
  height: 260px;
}

.polaroid-frame--team img {
  width: 240px;
  height: 180px;
}

.polaroid-frame--rotated {
  transform: rotate(2.5deg);
}

.polaroid-frame--rotated-neg {
  transform: rotate(-2deg);
}


.polaroid-ribbon {
  position: absolute;
  top: 18px;
  right: -6px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 14px 4px 10px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 8px 50%);
  z-index: 3;
  text-transform: uppercase;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  padding: 12px 26px;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
  min-height: 44px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: 0 4px 16px rgba(196,113,58,0.30);
}

.btn-primary:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 6px 24px rgba(61,44,30,0.25);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}

.btn-ghost:hover {
  background: var(--color-bg-warm);
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.btn-sm {
  font-size: 0.83rem;
  padding: 9px 18px;
  min-height: 36px;
}

.btn-lg {
  font-size: 1rem;
  padding: 16px 36px;
  min-height: 52px;
}

.btn-white {
  background: var(--color-white);
  color: var(--color-accent);
  border-color: var(--color-white);
  box-shadow: 0 4px 20px rgba(255,255,255,0.25);
}

.btn-white:hover {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
  transform: translateY(-2px);
}


.section-wrapper {
  padding: var(--space-xl) 24px;
}

.section-wrapper--warm {
  background: var(--color-bg-warm);
}

.section-card {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(61,44,30,0.04);
  overflow: visible;
}

.section-card-inner {
  padding: var(--space-2xl) var(--space-2xl);
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.section-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.section-intro {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}


.section-card-inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.section-card-inner--reversed {
  direction: rtl;
}

.section-card-inner--reversed > * {
  direction: ltr;
}

.split-text p {
  margin-bottom: var(--space-md);
}

.split-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}


.gallery--benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.benefit-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: background 0.2s;
}

.benefit-item:hover {
  background: rgba(196,113,58,0.05);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-md);
  background: rgba(196,113,58,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1rem;
  transition: background 0.2s;
}

.benefit-item:hover .benefit-icon {
  background: rgba(196,113,58,0.18);
}

.benefit-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.benefit-body p {
  font-size: 0.9rem;
  margin: 0;
}


.section-card--polaroid .section-card-inner {
  overflow: hidden;
}

.gallery--polaroids {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-xl);
  padding-bottom: var(--space-md);
}


.spotlight {
  position: relative;
}


.shelf--steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.step-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: default;
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-muted);
}

.step-card--featured {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.step-card--featured .step-number,
.step-card--featured .step-title,
.step-card--featured p {
  color: var(--color-white);
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent-muted);
  line-height: 1;
  margin-bottom: var(--space-sm);
  font-variant-numeric: tabular-nums;
}

.step-card--featured .step-number {
  color: rgba(255,253,248,0.5);
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.step-card p {
  font-size: 0.88rem;
  margin: 0;
}


.gallery--modules {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  margin-top: var(--space-xl);
}

.module-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: center;
}

.module-card--reversed {
  direction: rtl;
}

.module-card--reversed > * {
  direction: ltr;
}

.module-img-wrap {
  display: flex;
  justify-content: center;
}

.module-content .module-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(196,113,58,0.10);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}

.module-title {
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
}

.module-content p {
  margin-bottom: var(--space-md);
}


.module-list {
  list-style: none;
  margin-bottom: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.module-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.module-list li i {
  color: var(--color-secondary-dark);
  margin-top: 3px;
  flex-shrink: 0;
}

.module-meta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.module-meta span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.module-meta i { color: var(--color-accent); }


.section-card--cta {
  background: var(--color-primary);
}

.cta-inner {
  padding: var(--space-3xl) var(--space-2xl);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta-sub {
  color: rgba(255,253,248,0.7);
  font-size: 1rem;
  margin-bottom: var(--space-xl);
}


.shelf--contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.contact-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.contact-icon {
  width: 52px;
  height: 52px;
  background: rgba(196,113,58,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 1.2rem;
  color: var(--color-accent);
  transition: background 0.2s;
}

.contact-card:hover .contact-icon {
  background: rgba(196,113,58,0.18);
}

.contact-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.contact-detail {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.contact-detail a {
  color: var(--color-accent);
}

.contact-detail a:hover {
  color: var(--color-primary);
}

.contact-note {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin: 0;
}


.page-stage {
  padding: calc(var(--nav-height) + 60px) 24px 60px;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(240,201,168,0.3) 0%, transparent 60%),
    var(--color-bg);
  text-align: center;
}

.page-stage--legal {
  padding-bottom: 40px;
}

.page-stage-content {
  max-width: 720px;
  margin: 0 auto;
}

.page-stage-heading {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.page-stage-sub {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--color-text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}


.gallery--values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.value-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

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

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(196,113,58,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1rem;
  margin-bottom: var(--space-md);
  transition: background 0.2s;
}

.value-card:hover .value-icon {
  background: rgba(196,113,58,0.18);
}

.value-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.value-card p {
  font-size: 0.9rem;
  margin: 0;
}

.polaroid-scatter {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  margin-top: var(--space-xl);
}


.week-header {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.week-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent-muted);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.shelf--days {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.day-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.day-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.day-card--featured {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.day-card--featured .day-label,
.day-card--featured .day-title,
.day-card--featured p,
.day-card--featured .day-duration {
  color: var(--color-white);
}

.day-card--featured .day-duration i {
  color: rgba(255,253,248,0.7);
}

.day-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.day-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.day-card p {
  font-size: 0.85rem;
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

.day-duration {
  font-size: 0.78rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.day-duration i { color: var(--color-accent); font-size: 0.75rem; }

.shelf--items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.item-card {
  text-align: center;
}

.item-card .polaroid-frame {
  margin: 0 auto var(--space-md);
}

.item-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.item-card p {
  font-size: 0.88rem;
  margin: 0;
}


.shelf--methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.method-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid var(--color-border);
  transition: transform 0.25s, box-shadow 0.25s;
}

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

.method-card--featured {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.method-card--featured .method-title,
.method-card--featured p,
.method-card--featured .method-detail {
  color: var(--color-white);
}

.method-card--featured .method-detail a {
  color: var(--color-accent-light);
}

.method-card--featured .method-detail a:hover {
  color: var(--color-white);
}

.method-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  transition: background 0.2s;
}

.method-icon--phone { background: rgba(122,158,142,0.15); color: var(--color-secondary-dark); }
.method-icon--email { background: rgba(196,113,58,0.15); color: var(--color-accent); }
.method-icon--form { background: rgba(61,44,30,0.10); color: var(--color-primary-light); }

.method-card--featured .method-icon {
  background: rgba(255,253,248,0.15);
  color: var(--color-white);
}

.method-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.method-card p {
  font-size: 0.88rem;
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.method-detail {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.method-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.method-tag-pill {
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(196,113,58,0.10);
  color: var(--color-accent);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.method-card--featured .method-tag-pill {
  background: rgba(255,253,248,0.15);
  color: rgba(255,253,248,0.85);
}


.contact-form {
  margin-top: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.form-row--bottom {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-md);
}

.form-group--half { margin-bottom: 0; }

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
}

.req { color: var(--color-accent); }

.form-input {
  font-family: var(--font-main);
  font-size: 0.92rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 11px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  min-height: 44px;
  outline: none;
  appearance: none;
}

.form-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(196,113,58,0.12);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

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

.checkbox-label {
  font-size: 0.83rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.checkbox-label a {
  color: var(--color-accent);
}

.form-error {
  font-size: 0.85rem;
  color: #c0392b;
  margin-top: var(--space-sm);
  min-height: 1.2em;
}


.contact-info-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  border: 1px solid var(--color-border);
  height: 100%;
}

.contact-info-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.contact-address {
  font-style: normal;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.contact-address p { margin: 0; }

.contact-divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--space-md) 0;
}

.contact-detail-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.contact-detail-row i {
  color: var(--color-accent);
  width: 18px;
  text-align: center;
}

.contact-detail-row a {
  color: var(--color-accent);
}

.contact-detail-row a:hover {
  color: var(--color-primary);
}


.section-card--map {
  overflow: hidden;
  background: none;
  box-shadow: var(--shadow-lg);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 400px;
}


.thanks-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  padding: var(--space-3xl) 24px;
  min-height: 60vh;
}

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

.thanks-icon {
  font-size: 3rem;
  color: rgba(255,253,248,0.6);
  margin-bottom: var(--space-lg);
}

.thanks-heading {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.thanks-sub {
  font-size: 1.05rem;
  color: rgba(255,253,248,0.8);
  margin-bottom: var(--space-xl);
}


.legal-body {
  padding: var(--space-2xl);
  max-width: 820px;
  margin: 0 auto;
}

.legal-body h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--color-border);
}

.legal-body p {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.legal-body a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-body--impressum .impressum-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

.impressum-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}

.impressum-table td:first-child {
  font-weight: 600;
  color: var(--color-primary);
  width: 38%;
  white-space: nowrap;
}

.impressum-table td:last-child {
  color: var(--color-text-muted);
}

.impressum-table a { color: var(--color-accent); }


.footer-shell {
  background: var(--color-primary);
  margin-top: auto;
}

.footer-row {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-xl) 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-white);
}

.footer-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,253,248,0.7);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.footer-links a:hover {
  color: var(--color-white);
  background: rgba(255,253,248,0.08);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.footer-contact span {
  font-size: 0.83rem;
  color: rgba(255,253,248,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact i { color: var(--color-accent-light); font-size: 0.8rem; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-md) 24px;
  border-top: 1px solid rgba(255,253,248,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-bottom > span {
  font-size: 0.8rem;
  color: rgba(255,253,248,0.45);
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,253,248,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--color-accent-light);
}


.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  display: flex;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 -4px 32px rgba(61,44,30,0.15);
}

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

.cookie-left {
  flex: 1;
  background: var(--color-primary);
  padding: var(--space-xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cookie-left h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}

.cookie-left p {
  font-size: 0.85rem;
  color: rgba(255,253,248,0.7);
  margin: 0;
  line-height: 1.6;
}

.cookie-left a {
  color: var(--color-accent-light);
}

.cookie-right {
  flex: 1;
  background: var(--color-polaroid);
  padding: var(--space-xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
  border-left: 1px solid var(--color-border);
}

.cookie-toggles {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-toggle-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
}

.cookie-toggle-sublabel {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

.cookie-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

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

.cookie-switch-slider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.25s;
}

.cookie-switch-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.25s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.cookie-switch input:checked + .cookie-switch-slider {
  background: var(--color-accent);
}

.cookie-switch input:checked + .cookie-switch-slider::before {
  transform: translateX(20px);
}

.cookie-switch input:disabled + .cookie-switch-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-btn-all {
  flex: 1;
  background: var(--color-accent);
  color: var(--color-white);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 44px;
}

.cookie-btn-all:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.cookie-btn-save {
  flex: 1;
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 44px;
}

.cookie-btn-save:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}


.module-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(196,113,58,0.10);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}


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

  .stage {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 60px;
  }

  .stage-content { max-width: 100%; }

  .stage-polaroid {
    position: static;
    transform: none;
    margin-top: var(--space-xl);
  }

  .polaroid-frame--hero {
    width: min(280px, 80vw);
  }

  .polaroid-frame--hero img {
    height: 200px;
  }

  .stage-actions { justify-content: center; }

  .stage-badge--tl,
  .stage-badge--bl { display: none; }

  .stage-badge--tr { top: 12%; right: 2%; font-size: 0.75rem; padding: 8px 12px; }
  .stage-badge--br { bottom: 8%; right: 2%; font-size: 0.75rem; padding: 8px 12px; }

  .section-card-inner { padding: var(--space-xl) var(--space-lg); }

  .section-card-inner--split {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .section-card-inner--reversed { direction: ltr; }

  .shelf--contact {
    grid-template-columns: 1fr;
  }

  .shelf--methods {
    grid-template-columns: 1fr;
  }

  .module-card {
    grid-template-columns: 1fr;
  }

  .module-card--reversed { direction: ltr; }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-row--bottom {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .gallery--polaroids {
    flex-direction: column;
    align-items: center;
  }

  .polaroid-frame--about img {
    width: min(320px, 80vw);
    height: 200px;
  }

  .polaroid-frame--module-lg img {
    width: min(300px, 80vw);
    height: 220px;
  }

  .footer-row {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact { align-items: center; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner {
    flex-direction: column;
  }

  .cookie-left, .cookie-right {
    padding: var(--space-lg);
  }

  .cookie-right { border-left: none; border-top: 1px solid var(--color-border); }
}

@media (max-width: 600px) {
  .section-card-inner { padding: var(--space-lg) var(--space-md); }

  .cta-inner { padding: var(--space-2xl) var(--space-lg); }

  .legal-body { padding: var(--space-lg) var(--space-md); }

  .shelf--days {
    grid-template-columns: 1fr;
  }

  .shelf--steps {
    grid-template-columns: 1fr;
  }

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

  .gallery--values {
    grid-template-columns: 1fr;
  }

  .stage-badge--tr,
  .stage-badge--br { display: none; }

  .polaroid-frame--sm img {
    width: 160px;
    height: 130px;
  }

  .polaroid-frame--md img {
    width: 200px;
    height: 160px;
  }

  .footer-links { justify-content: center; }

  .week-header { flex-direction: column; gap: 0; }

  .week-number { font-size: 2rem; }
}

@media (min-width: 901px) {
  .section-wrapper { padding: var(--space-2xl) 40px; }
}