/* =============================================
   PACUCA SOFABI — VISUAL MERCHANDISING SEMINAR
   Design System: Layered Depth
   Palette: Deep Indigo + Warm Amber
   ============================================= */


:root {
  --ink-900: #0f0e1a;
  --ink-800: #1c1a2e;
  --ink-700: #2d2a45;
  --ink-600: #3e3a5c;
  --ink-400: #7b77a0;
  --ink-200: #c8c5de;
  --ink-100: #eae9f4;
  --ink-50: #f5f4fc;

  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --amber-300: #fcd34d;
  --amber-100: #fef3c7;

  --surface: #f7f6fe;
  --surface-card: #ffffff;
  --surface-dark: #13112a;
  --surface-dark-2: #1c1a2e;

  --text-primary: #1c1a2e;
  --text-secondary: #4a4668;
  --text-muted: #7b77a0;
  --text-on-dark: #f0effe;
  --text-on-dark-muted: #a09bc8;

  --border: rgba(60, 55, 100, 0.12);
  --border-dark: rgba(255, 255, 255, 0.1);

  --shadow-xs: 0 1px 3px rgba(15, 14, 26, 0.06), 0 1px 2px rgba(15, 14, 26, 0.04);
  --shadow-sm: 0 2px 8px rgba(15, 14, 26, 0.08), 0 1px 3px rgba(15, 14, 26, 0.06);
  --shadow-md: 0 4px 20px rgba(15, 14, 26, 0.1), 0 2px 8px rgba(15, 14, 26, 0.08);
  --shadow-lg: 0 8px 40px rgba(15, 14, 26, 0.14), 0 4px 16px rgba(15, 14, 26, 0.1);
  --shadow-xl: 0 20px 60px rgba(15, 14, 26, 0.18), 0 8px 24px rgba(15, 14, 26, 0.12);
  --shadow-amber: 0 4px 20px rgba(245, 158, 11, 0.3), 0 2px 8px rgba(245, 158, 11, 0.2);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  --nav-h: 72px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}


[data-theme="dark"] {
  --surface: #0f0e1a;
  --surface-card: #1c1a2e;
  --surface-dark: #0a0914;
  --surface-dark-2: #13112a;

  --text-primary: #eae9f4;
  --text-secondary: #c8c5de;
  --text-muted: #7b77a0;

  --border: rgba(255, 255, 255, 0.08);

  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35), 0 1px 3px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(0, 0, 0, 0.35);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6), 0 8px 24px rgba(0, 0, 0, 0.4);
}


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

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

body.canvas {
  font-family: 'Space Grotesk', sans-serif;
  background-color: var(--surface);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition), color var(--transition);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition), opacity var(--transition); }
a:hover { opacity: 0.85; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }


h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 600; line-height: 1.4; }
p { line-height: 1.7; color: var(--text-secondary); }


.label-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-500);
  background: rgba(245, 158, 11, 0.12);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.label-tag--light {
  color: var(--amber-300);
  background: rgba(252, 211, 77, 0.15);
  border-color: rgba(252, 211, 77, 0.25);
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--amber-500);
  color: var(--ink-900);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-amber);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.45), 0 4px 12px rgba(245, 158, 11, 0.3);
  opacity: 1;
  background: var(--amber-400);
}
.btn-primary--light {
  background: var(--amber-400);
  color: var(--ink-900);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 27px;
  border-radius: var(--radius-full);
  border: 2px solid var(--border);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.btn-ghost:hover {
  border-color: var(--ink-400);
  background: var(--ink-100);
  transform: translateY(-2px);
  opacity: 1;
}
.btn-ghost--light {
  color: var(--text-on-dark);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost--light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}
.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px 32px;
}


.nav-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--transition-slow), box-shadow var(--transition-slow), color var(--transition-slow);
}
.nav-shell.nav--light {
  background: rgba(247, 246, 254, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  color: var(--text-primary);
}
.nav-shell.nav--dark {
  background: rgba(15, 14, 26, 0.85);
  backdrop-filter: blur(16px);
  color: var(--text-on-dark);
}
[data-theme="dark"] .nav-shell.nav--light {
  background: rgba(28, 26, 46, 0.92);
  color: var(--text-on-dark);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.nav-links {
  display: none;
  gap: var(--space-6);
  flex: 1;
  justify-content: center;
}
@media (min-width: 900px) { .nav-links { display: flex; } }
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition), opacity var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber-500);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { opacity: 1; }
.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.cta-pill {
  display: none;
  background: var(--amber-500);
  color: var(--ink-900);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: var(--shadow-amber);
}
.cta-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
  opacity: 1;
  background: var(--amber-400);
}
@media (min-width: 640px) { .cta-pill { display: inline-block; } }
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  color: inherit;
}
.theme-toggle:hover {
  background: rgba(245, 158, 11, 0.15);
  transform: rotate(15deg);
}
.hamburger {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(245, 158, 11, 0.1); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 900px) { .hamburger { display: none; } }


.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  overflow: hidden;
}
.drawer.is-open { pointer-events: all; }
.drawer-circle {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--ink-800);
  transform: translate(50%, -50%);
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1), height 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.drawer.is-open .drawer-circle {
  width: 300vmax;
  height: 300vmax;
}
.drawer-nav {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  opacity: 0;
  transition: opacity 0.3s ease 0.3s;
}
.drawer.is-open .drawer-nav { opacity: 1; }
.drawer-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-on-dark);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease, color var(--transition);
}
.drawer.is-open .drawer-link {
  transform: translateY(0);
  opacity: 1;
}
.drawer.is-open .drawer-link:nth-child(1) { transition-delay: 0.35s; }
.drawer.is-open .drawer-link:nth-child(2) { transition-delay: 0.4s; }
.drawer.is-open .drawer-link:nth-child(3) { transition-delay: 0.45s; }
.drawer.is-open .drawer-link:nth-child(4) { transition-delay: 0.5s; }
.drawer.is-open .drawer-link:nth-child(5) { transition-delay: 0.55s; }
.drawer-link:hover { color: var(--amber-400); opacity: 1; }
.drawer-cta {
  margin-top: var(--space-4);
  background: var(--amber-500);
  color: var(--ink-900);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 1.1rem;
}
.drawer-cta:hover { background: var(--amber-400); color: var(--ink-900); }


.stage {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  overflow: hidden;
  background: var(--ink-900);
  padding-top: var(--nav-h);
}
@media (min-width: 1024px) {
  .stage {
    grid-template-columns: 1fr 1fr;
  }
}
.stage-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.stage-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.stage-blob--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #3d3580 0%, transparent 70%);
  top: -100px; left: -100px;
}
.stage-blob--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.35) 0%, transparent 70%);
  bottom: -50px; right: -50px;
}
.stage-blob--3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #1a1640 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.stage-curtain {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,14,26,0.7) 0%, rgba(15,14,26,0.3) 100%);
  z-index: 1;
}
.stage-content {
  position: relative;
  z-index: 2;
  padding: var(--space-24) var(--space-6) var(--space-16);
  max-width: 640px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .stage-content {
    padding: var(--space-16) var(--space-12) var(--space-16) var(--space-16);
    margin: 0;
    max-width: none;
  }
}
.stage-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-400);
  margin-bottom: var(--space-5);
  background: rgba(245,158,11,0.15);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(245,158,11,0.3);
}
.stage-headline {
  color: var(--text-on-dark);
  margin-bottom: var(--space-6);
}
.stage-sub {
  color: var(--text-on-dark-muted);
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: var(--space-10);
  max-width: 500px;
}
.stage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.stage-floats {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  display: none;
}
@media (min-width: 1024px) { .stage-floats { display: block; } }
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--text-on-dark);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  pointer-events: auto;
  animation: floatPulse 4s ease-in-out infinite;
}
.float-card i { color: var(--amber-400); font-size: 1.1rem; }
.float-card--a { top: 20%; right: 5%; animation-delay: 0s; }
.float-card--b { top: 42%; right: 2%; animation-delay: 1s; }
.float-card--c { bottom: 30%; right: 8%; animation-delay: 2s; }
.float-card--d { bottom: 15%; right: 3%; animation-delay: 0.5s; }
@keyframes floatPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.stage-image-wrap {
  position: relative;
  z-index: 2;
  height: 50vh;
  overflow: hidden;
  display: none;
}
@media (min-width: 1024px) {
  .stage-image-wrap {
    display: block;
    height: 100vh;
    position: sticky;
    top: 0;
  }
}
.stage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


.shelf {
  padding: var(--space-20) 0;
  position: relative;
}
.shelf-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (min-width: 900px) {
  .shelf-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}
.shelf-text h2 { margin-bottom: var(--space-6); }
.shelf-text p { margin-bottom: var(--space-4); }
.shelf-text p:last-child { margin-bottom: 0; }
.shelf-visual { position: relative; }
.shelf-img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 400px;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}
.shelf-accent-box {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--amber-500);
  color: var(--ink-900);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-md);
  max-width: 220px;
  box-shadow: var(--shadow-amber);
  z-index: 2;
}
.shelf-accent-box i { font-size: 1.4rem; margin-bottom: var(--space-2); display: block; }
.shelf-accent-box p { color: var(--ink-900); font-weight: 600; font-size: 0.9rem; line-height: 1.4; margin: 0; }
.shelf-accent-box--right {
  left: auto;
  right: -24px;
  bottom: -24px;
}


.gallery {
  padding: var(--space-20) 0;
  background: var(--ink-50);
  position: relative;
}
[data-theme="dark"] .gallery {
  background: var(--surface-dark-2);
}
.gallery-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.gallery-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-12);
}
.gallery-header h2 { margin-bottom: var(--space-4); }
.gallery-sub { font-size: 1.05rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .gallery-card--featured {
    grid-row: 1 / 3;
  }
}
.gallery-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery-card--featured {
  padding: 0;
  overflow: hidden;
}
.gallery-card--featured .card-body {
  padding: var(--space-6);
}
.card-img-wrap {
  height: 220px;
  overflow: hidden;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.gallery-card--featured:hover .card-img-wrap img { transform: scale(1.04); }
.card-icon {
  width: 44px;
  height: 44px;
  background: rgba(245,158,11,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-500);
  font-size: 1.1rem;
  margin-bottom: var(--space-4);
}
.gallery-card h3 { margin-bottom: var(--space-3); }
.gallery-card p { font-size: 0.92rem; }


.sticky-story {
  background: var(--ink-800);
  position: relative;
  overflow: hidden;
}
.sticky-story-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .sticky-story-inner {
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
  }
}
.sticky-visual {
  position: relative;
  height: 60vw;
  max-height: 500px;
}
@media (min-width: 900px) {
  .sticky-visual {
    position: sticky;
    top: var(--nav-h);
    height: calc(100vh - var(--nav-h));
    max-height: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.sticky-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
@media (min-width: 900px) {
  .sticky-img {
    border-radius: var(--radius-lg);
    width: calc(100% - 48px);
    height: calc(100% - 96px);
    margin: 48px 24px;
    box-shadow: var(--shadow-xl);
  }
}
.sticky-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: var(--amber-500);
  color: var(--ink-900);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  box-shadow: var(--shadow-amber);
}
.sticky-scroll {
  padding: var(--space-16) var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-12);
}
.sticky-block h2, .sticky-block h3 {
  color: var(--text-on-dark);
  margin-bottom: var(--space-4);
}
.sticky-block p { color: var(--text-on-dark-muted); }


.shelf--process { background: var(--surface); }
.shelf-inner--process {
  display: block;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.process-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--space-12);
}
.process-header h2 { margin-bottom: var(--space-4); }
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 640px) { .process-steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .process-steps { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  position: relative;
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.step-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink-100);
  line-height: 1;
  margin-bottom: var(--space-4);
  letter-spacing: -0.03em;
}
[data-theme="dark"] .step-num { color: var(--ink-700); }
.step-line {
  display: none;
}
@media (min-width: 1024px) {
  .step-line {
    display: block;
    position: absolute;
    top: 50%;
    right: -24px;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--amber-500), transparent);
    z-index: 1;
  }
  .process-step:last-child .step-line { display: none; }
}
.step-icon {
  width: 48px;
  height: 48px;
  background: rgba(245,158,11,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-500);
  font-size: 1.2rem;
  margin-bottom: var(--space-4);
}
.process-step h4 { margin-bottom: var(--space-2); }
.process-step p { font-size: 0.9rem; }


.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 640px) { .info-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .info-grid { grid-template-columns: repeat(3, 1fr); } }
.info-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.info-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.info-card:hover img { transform: scale(1.04); }
.info-card-body { padding: var(--space-6); }
.info-card-body h3 { margin-bottom: var(--space-3); }
.info-card-body p { font-size: 0.92rem; }


.shelf--cta {
  background: var(--ink-900);
  overflow: hidden;
}
.shelf-inner--cta {
  display: block;
  text-align: center;
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-20) var(--space-6);
}
.cta-bg-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  color: var(--text-on-dark);
  margin-bottom: var(--space-5);
}
.cta-content p {
  color: var(--text-on-dark-muted);
  max-width: 520px;
  margin: 0 auto var(--space-8);
  font-size: 1.05rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}


.page-hero {
  position: relative;
  background: var(--ink-900);
  padding: calc(var(--nav-h) + var(--space-16)) var(--space-6) var(--space-16);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.page-hero-content h1 {
  color: var(--text-on-dark);
  margin-bottom: var(--space-5);
}
.page-hero-content p {
  color: var(--text-on-dark-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}


.shelf--form { background: var(--surface); }
.shelf-inner--form {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-20) var(--space-6);
}
@media (min-width: 900px) {
  .shelf-inner--form {
    grid-template-columns: 380px 1fr;
    align-items: start;
  }
}
.form-info-col { display: flex; flex-direction: column; gap: var(--space-5); }
.form-info-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-info-card h3 { margin-bottom: var(--space-4); font-size: 1rem; }
.form-info-list { display: flex; flex-direction: column; gap: var(--space-3); }
.form-info-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.form-info-list li i { color: var(--amber-500); flex-shrink: 0; }
.form-info-card--secondary { background: var(--ink-900); }
.form-info-card--secondary h3 { color: var(--text-on-dark); }
.form-info-card--secondary p {
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.form-info-card--secondary p:last-child { margin-bottom: 0; }
.form-info-card--secondary p i { color: var(--amber-400); }
.form-info-card--secondary a { color: var(--amber-400); }
.booking-form {
  background: var(--surface-card);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form-group { margin-bottom: var(--space-4); }
.form-group:last-child { margin-bottom: 0; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}
.req { color: var(--amber-500); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--surface);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group--check { display: flex; align-items: flex-start; gap: var(--space-3); }
.check-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.check-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--amber-500);
  cursor: pointer;
}
.check-label a { color: var(--amber-500); text-decoration: underline; }
.form-error {
  color: #dc2626;
  font-size: 0.875rem;
  min-height: 20px;
  margin-bottom: var(--space-3);
}


.shelf-inner--story {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.story-image-col { position: relative; }
.story-img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 450px;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}
.story-text-col h2 { margin-bottom: var(--space-5); }
.story-text-col p { margin-bottom: var(--space-4); }
.story-text-col p:last-child { margin-bottom: 0; }


.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
@media (min-width: 1024px) {
  .values-grid { grid-template-columns: repeat(4, 1fr); }
}
.value-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.value-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber-500);
  margin-bottom: var(--space-4);
  line-height: 1;
}
.value-card h3 { margin-bottom: var(--space-3); font-size: 1rem; }
.value-card p { font-size: 0.88rem; }


.templates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 640px) { .templates-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .templates-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .template-card:first-child { grid-row: 1 / 3; }
}
.template-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.template-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.template-icon {
  width: 52px;
  height: 52px;
  background: rgba(245,158,11,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-500);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.template-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-500);
  background: rgba(245,158,11,0.1);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-2);
}
.template-body h3 { margin-bottom: var(--space-2); }
.template-body p { font-size: 0.9rem; margin-bottom: var(--space-3); }
.template-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.template-points li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: var(--space-4);
  position: relative;
}
.template-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber-500);
}


.shelf--contact-form { background: var(--surface); }
.contact-info-block {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-info-block h3 { margin-bottom: var(--space-6); }
.contact-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  margin-bottom: var(--space-5);
}
.contact-item:last-child { margin-bottom: 0; }
.contact-item i {
  width: 40px;
  height: 40px;
  background: rgba(245,158,11,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-500);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item div { display: flex; flex-direction: column; gap: 2px; }
.contact-item strong { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); }
.contact-item span, .contact-item a { font-size: 0.95rem; font-weight: 500; color: var(--text-primary); }
.contact-item a:hover { color: var(--amber-500); }


.shelf--map { background: var(--ink-50); }
[data-theme="dark"] .shelf--map { background: var(--surface-dark-2); }
.shelf-inner--map {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-20) var(--space-6);
}
.map-header { text-align: center; margin-bottom: var(--space-8); }
.map-header h2 { margin-bottom: var(--space-2); }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}


.shelf--office-gallery { background: var(--surface); }
.office-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 640px) {
  .office-gallery {
    grid-template-columns: 1fr 2fr 1fr;
  }
}
.office-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.office-photo img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.office-photo:hover img { transform: scale(1.04); }


.thanks-main { display: flex; align-items: center; flex: 1; }
.thanks-section {
  width: 100%;
  padding: calc(var(--nav-h) + var(--space-16)) var(--space-6) var(--space-20);
}
.thanks-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.thanks-inner h1 { margin-bottom: var(--space-4); }
.thanks-sub {
  font-size: 1.1rem;
  margin-bottom: var(--space-8);
}
.timeline-wrap {
  margin-top: var(--space-12);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-item {
  display: grid;
  grid-template-columns: 48px 2px 1fr;
  gap: 0 var(--space-5);
  align-items: start;
  padding-bottom: var(--space-8);
}
.timeline-item:last-child { padding-bottom: 0; }
.tl-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: var(--ink-100);
  color: var(--text-muted);
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}
[data-theme="dark"] .tl-icon { background: var(--ink-700); }
.timeline-item--done .tl-icon {
  background: rgba(245,158,11,0.15);
  color: var(--amber-500);
}
.timeline-item--active .tl-icon {
  background: var(--amber-500);
  color: var(--ink-900);
  box-shadow: var(--shadow-amber);
}
.tl-line {
  width: 2px;
  background: var(--border);
  margin: 0 auto;
  height: 100%;
  min-height: 40px;
}
.timeline-item--done .tl-line { background: rgba(245,158,11,0.3); }
.timeline-item:last-child .tl-line { display: none; }
.tl-body { padding-top: 12px; }
.tl-body h4 { margin-bottom: var(--space-1); }
.tl-body p { font-size: 0.9rem; }
.timeline-item--upcoming .tl-icon { opacity: 0.5; }
.timeline-item--upcoming .tl-body { opacity: 0.6; }


.legal-page {
  padding: calc(var(--nav-h) + var(--space-12)) 0 var(--space-20);
}
.legal-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.legal-header {
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-8);
  border-bottom: 2px solid var(--border);
}
.legal-header h1 { margin-bottom: var(--space-3); }
.legal-meta { font-size: 0.875rem; color: var(--text-muted); }
.legal-body h2 {
  font-size: 1.15rem;
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}
.legal-body p {
  margin-bottom: var(--space-4);
  font-size: 0.95rem;
  line-height: 1.75;
}
.legal-body a { color: var(--amber-500); text-decoration: underline; }


.footer-shell {
  background: var(--ink-900);
  color: var(--text-on-dark);
  padding: var(--space-16) 0 var(--space-8);
  margin-top: auto;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  text-align: center;
}
.footer-brand { max-width: 300px; }
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  margin-top: var(--space-3);
}
.footer-logo { margin: 0 auto; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-6);
  justify-content: center;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--amber-400); opacity: 1; }
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-6);
  justify-content: center;
}
.footer-contact a,
.footer-contact span {
  font-size: 0.875rem;
  color: var(--text-on-dark-muted);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--amber-400); opacity: 1; }
.footer-contact i { color: var(--amber-500); font-size: 0.8rem; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-5);
  justify-content: center;
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-dark);
  width: 100%;
}
.footer-legal span,
.footer-legal a {
  font-size: 0.8rem;
  color: var(--ink-400);
}
.footer-legal a:hover { color: var(--amber-400); opacity: 1; }


#cookie-bar {
  background: var(--ink-800);
  border-bottom: 1px solid var(--border-dark);
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
}
#cookie-bar.hidden {
  max-height: 0;
  padding: 0;
  opacity: 0;
}
.cookie-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px var(--space-6);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3) var(--space-6);
  justify-content: space-between;
}
.cookie-bar-text {
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
  flex: 1;
  min-width: 200px;
}
.cookie-bar-text a { color: var(--amber-400); text-decoration: underline; }
.cookie-bar-actions {
  display: flex;
  gap: var(--space-2);
  flex-shrink: 0;
}
.cookie-btn {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.cookie-btn--accept {
  background: var(--amber-500);
  color: var(--ink-900);
}
.cookie-btn--accept:hover { background: var(--amber-400); transform: translateY(-1px); }
.cookie-btn--decline {
  background: transparent;
  color: var(--text-on-dark-muted);
  border: 1px solid var(--border-dark);
}
.cookie-btn--decline:hover { background: rgba(255,255,255,0.05); transform: translateY(-1px); }


.spotlight {
  position: relative;
}
.spotlight::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(245,158,11,0.3), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.spotlight:hover::before { opacity: 1; }


.shelf--story { background: var(--surface); }


.shelf--approach { background: var(--ink-50); }
[data-theme="dark"] .shelf--approach { background: var(--surface-dark-2); }


::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--ink-200); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-400); }


::selection { background: rgba(245,158,11,0.25); color: var(--text-primary); }


:focus-visible {
  outline: 2px solid var(--amber-500);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}


@media (max-width: 639px) {
  .shelf { padding: var(--space-12) 0; }
  .gallery { padding: var(--space-12) 0; }
  .shelf-inner--cta { padding: var(--space-12) var(--space-6); }
  .stage-content { padding: calc(var(--nav-h) + var(--space-10)) var(--space-5) var(--space-10); }
  .shelf-accent-box { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .templates-grid { grid-template-columns: 1fr; }
  .office-gallery { grid-template-columns: 1fr; }
  .booking-form { padding: var(--space-5); }
  .process-steps { grid-template-columns: 1fr; }
  .sticky-story-inner { grid-template-columns: 1fr; }
  .sticky-scroll { padding: var(--space-10) var(--space-5); }
}

@media (max-width: 899px) {
  .shelf-inner { grid-template-columns: 1fr; }
  .story-image-col { order: -1; }
}