:root {
  --color-limestone-cream: #FAF6EC;
  --color-limestone-cream-2: #F0E8D2;
  --color-limestone-cream-3: #E5DCC0;
  --color-card-calque: rgba(250, 246, 236, 0.92);
  --color-card-calque-hover: rgba(250, 246, 236, 0.99);
  --color-card-beige: #F0E8D2;
  --color-cream-lime: #E8D9B5;
  --color-sage-calque: #E0E5DD;
  --color-sand-caramel: #E8DCC0;
  --color-lavender-calque: #E8E0E8;
  --color-graphite-earth: #4A3F35;
  --color-graphite-cocoa: #3A322B;
  --color-sage-moss: #8A8070;
  --color-terracotta-clay: #B85C3C;
  --color-sage-eucalyptus: #7A8B7C;
  --color-sand-caramel-accent: #D4A574;
  --color-lavender-dust: #B5A3B8;
  --color-burnt-umber: #7A4A2F;
  --color-pastel-terracotta: #F0D4C0;
  --color-pastel-sage: #C8D4C5;
  --color-pastel-caramel: #F0DDB8;
  --color-pastel-lavender: #DDD0E0;
  --color-pastel-cream: #F0E5C8;
  --color-soft-shadow: rgba(74, 63, 53, 0.10);
  --color-soft-shadow-hover: rgba(74, 63, 53, 0.16);
  --color-mesh-1: rgba(184, 92, 60, 0.35);
  --color-mesh-2: rgba(122, 139, 124, 0.32);
  --color-mesh-3: rgba(212, 165, 116, 0.32);
  --color-mesh-4: rgba(181, 163, 184, 0.30);
  --shadow-warm: 0 16px 40px rgba(74, 63, 53, 0.10);
  --shadow-warm-hover: 0 24px 56px rgba(74, 63, 53, 0.16);
  --shadow-clay: 8px 8px 0px #B85C3C;
  --shadow-clay-hover: 14px 14px 0px #B85C3C;
  --font-editorial: "Cormorant Garamond", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --font-mono: "JetBrains Mono", "SF Mono", "Yu Gothic", monospace;
  --radius-soft: 8px;
  --radius-pill: 100px;
}

strong, p, span, h1, h2, h3, h4, h5, h6, li, a, button, label {
  color: inherit;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-graphite-earth);
  background: linear-gradient(135deg, #FAF6EC 0%, #F0E8D2 55%, #E5DCC0 100%);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

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

button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, .editorial-script {
  font-family: var(--font-editorial);
  font-weight: 500;
  color: var(--color-graphite-earth);
  letter-spacing: 0.005em;
}

h1 { font-size: clamp(2.5rem, 7vw, 5rem); line-height: 1.05; font-style: italic; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.15; }
h2.tech-heading { font-family: var(--font-mono); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; letter-spacing: -0.02em; text-transform: uppercase; font-style: normal; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); line-height: 1.25; font-style: italic; }
h4 { font-family: var(--font-mono); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; }

.tech-label, .tech-stamp, .tech-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-graphite-earth);
}

.tech-stamp-strong {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-graphite-earth);
  font-weight: 600;
}

.editorial-accent {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: var(--color-lavender-dust);
  line-height: 1.45;
}

.body-text {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-graphite-cocoa);
}

.body-text-lg {
  font-family: var(--font-mono);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-graphite-cocoa);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #B85C3C 0%, #D4A574 50%, #7A8B7C 100%);
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 9999;
  opacity: 0.65;
  transition: transform 0.15s ease-out;
}

.atelier-top-row {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.top-bar {
  background: var(--color-graphite-earth);
  border-bottom: 1.5px solid var(--color-graphite-earth);
  height: 36px;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--color-sand-caramel-accent);
}

.top-bar-left { display: flex; align-items: center; gap: 12px; }
.top-bar-divider { width: 1px; height: 12px; background: var(--color-sand-caramel-accent); opacity: 0.5; }
.top-bar-domain { font-weight: 600; color: var(--color-sand-caramel-accent); }
.top-bar-name { font-family: var(--font-editorial); font-size: 0.7rem; letter-spacing: 0.08em; color: #FFFFFF; }
.top-bar-right { display: flex; align-items: center; gap: 16px; font-size: 0.55rem; }
.top-bar-status { display: flex; align-items: center; gap: 6px; }
.top-bar-dot { width: 6px; height: 6px; border-radius: 100px; background: var(--color-terracotta-clay); }
.top-bar-hours { font-family: var(--font-editorial); font-style: italic; font-size: 0.65rem; color: rgba(255,255,255,0.7); }
.top-bar-phone { font-weight: 600; opacity: 0.85; }

.main-bar {
  background: rgba(250, 246, 236, 0.95);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1.5px solid var(--color-graphite-earth);
  height: 76px;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  transition: height 0.3s ease;
}

.main-bar.compact { height: 64px; }

.brand-block { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 100px;
  border: 2px solid var(--color-graphite-earth);
  background: linear-gradient(135deg, #B85C3C 0%, #D4A574 100%);
  box-shadow: 5px 5px 0px var(--color-graphite-earth), 0 0 24px rgba(184, 92, 60, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: brandSway 6s ease-in-out infinite;
  flex-shrink: 0;
}

.brand-mark.compact { width: 44px; height: 44px; }

@keyframes brandSway {
  0%, 100% { transform: rotate(-1.5deg); }
  50% { transform: rotate(1.5deg); }
}

.brand-mark-svg { width: 32px; height: 32px; }
.brand-pigment {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: #FFFFFF;
  opacity: 0.4;
  animation: pigmentPulse 2.4s ease-in-out infinite;
}
@keyframes pigmentPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

.brand-text-block { display: flex; flex-direction: column; gap: 2px; line-height: 1.1; }
.brand-domain { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-graphite-earth); font-weight: 600; }
.brand-name { font-family: var(--font-editorial); font-size: 1rem; letter-spacing: 0.08em; color: var(--color-graphite-earth); font-weight: 500; }

.desktop-nav { display: flex; align-items: center; gap: 4px; }
.desktop-nav a {
  font-family: var(--font-editorial);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  font-style: italic;
  color: var(--color-graphite-earth);
  padding: 8px 16px;
  border-radius: 100px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}
.desktop-nav a:hover {
  background: rgba(184, 92, 60, 0.12);
  transform: translateY(-1px);
}
.desktop-nav a:hover::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 100px;
  background: var(--color-terracotta-clay);
}
.desktop-nav a.active::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 1.5px;
  background: var(--color-terracotta-clay);
}

.cta-pill {
  background: linear-gradient(135deg, #B85C3C 0%, #D4A574 100%);
  color: #FFFFFF;
  font-family: var(--font-editorial);
  font-size: 0.85rem;
  font-style: italic;
  letter-spacing: 0.04em;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1.5px solid var(--color-graphite-earth);
  box-shadow: 4px 4px 0px var(--color-graphite-earth);
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.cta-pill:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--color-graphite-earth), 0 0 0 4px rgba(122, 139, 124, 0.30);
  color: #FFFFFF;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 100px;
  border: 2px solid var(--color-graphite-earth);
  background: var(--color-limestone-cream);
  box-shadow: 4px 4px 0px var(--color-terracotta-clay);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  flex-shrink: 0;
}
.burger span { width: 22px; height: 2.5px; background: var(--color-graphite-earth); transition: all 0.3s ease; transform-origin: center; }
.burger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  height: calc(100vh - 100px);
  background: var(--color-limestone-cream);
  clip-path: polygon(0 0, 100% 0, 100% 96%, 96% 100%, 0 100%);
  transform: translateY(-150%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 900;
  overflow-y: auto;
  padding: 60px 32px 80px;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 30%, rgba(184, 92, 60, 0.18), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(122, 139, 124, 0.18), transparent 60%),
    radial-gradient(circle at 60% 50%, rgba(212, 165, 116, 0.18), transparent 60%),
    radial-gradient(circle at 40% 80%, rgba(181, 163, 184, 0.15), transparent 60%);
}
.mobile-menu-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(115deg, transparent 49.5%, rgba(74, 63, 53, 0.06) 49.5%, rgba(74, 63, 53, 0.06) 50.5%, transparent 50.5%);
  background-size: 48px 48px;
  z-index: -1;
  opacity: 0.6;
}
.mobile-menu-list { display: flex; flex-direction: column; gap: 14px; }
.mobile-menu-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(74, 63, 53, 0.20);
  font-family: var(--font-editorial);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--color-graphite-earth);
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mobile-menu.open .mobile-menu-item { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-menu-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu-item:nth-child(2) { transition-delay: 0.17s; }
.mobile-menu.open .mobile-menu-item:nth-child(3) { transition-delay: 0.24s; }
.mobile-menu.open .mobile-menu-item:nth-child(4) { transition-delay: 0.31s; }
.mobile-menu.open .mobile-menu-item:nth-child(5) { transition-delay: 0.38s; }
.mobile-menu.open .mobile-menu-item:nth-child(6) { transition-delay: 0.45s; }
.mobile-menu.open .mobile-menu-item:nth-child(7) { transition-delay: 0.52s; }
.mobile-menu-item-num { font-family: var(--font-mono); font-size: 0.85rem; color: var(--color-terracotta-clay); letter-spacing: 0.18em; font-style: normal; font-weight: 600; flex-shrink: 0; }
.mobile-menu-item-text { color: var(--color-graphite-earth); }

.hero-mesh-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: multiply;
  opacity: 0.85;
}
.hero-mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.hero-mesh-blob.b1 { width: 520px; height: 520px; background: var(--color-pastel-terracotta); opacity: 0.50; top: -15%; left: -10%; animation: meshDrift1 36s ease-in-out infinite; }
.hero-mesh-blob.b2 { width: 480px; height: 480px; background: var(--color-pastel-sage); opacity: 0.45; bottom: 5%; right: -8%; animation: meshDrift2 40s ease-in-out infinite; }
.hero-mesh-blob.b3 { width: 460px; height: 460px; background: var(--color-pastel-caramel); opacity: 0.42; top: 30%; right: 25%; animation: meshDrift3 32s ease-in-out infinite; }
.hero-mesh-blob.b4 { width: 440px; height: 440px; background: var(--color-pastel-lavender); opacity: 0.40; top: -10%; right: 35%; animation: meshDrift4 38s ease-in-out infinite; }
.hero-mesh-blob.b5 { width: 500px; height: 500px; background: var(--color-pastel-cream); opacity: 0.48; bottom: 10%; left: 30%; animation: meshDrift5 34s ease-in-out infinite; }

@keyframes meshDrift1 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(50px, 30px) scale(1.04); } }
@keyframes meshDrift2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-40px, -50px) scale(0.96); } }
@keyframes meshDrift3 { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes meshDrift4 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(60px, 40px) scale(0.94); } }
@keyframes meshDrift5 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-30px, 45px); } }

.hero-diagonal-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(-8deg, transparent 49.5%, rgba(74, 63, 53, 0.06) 49.5%, rgba(74, 63, 53, 0.06) 50.5%, transparent 50.5%);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 2;
}

.hero-corner-stamp {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--color-graphite-earth);
  opacity: 0.5;
  z-index: 4;
}
.hero-corner-stamp.tl { top: 130px; left: 80px; }
.hero-corner-stamp.tr { top: 130px; right: 80px; }
.hero-corner-stamp.bl { bottom: 100px; left: 80px; }
.hero-corner-stamp.br { bottom: 100px; right: 80px; }

.corner-bracket {
  position: absolute;
  width: 24px;
  height: 24px;
  z-index: 3;
  opacity: 0.5;
}
.corner-bracket.tl { top: 130px; left: 80px; border-top: 1.5px solid var(--color-graphite-earth); border-left: 1.5px solid var(--color-graphite-earth); }
.corner-bracket.tr { top: 130px; right: 80px; border-top: 1.5px solid var(--color-graphite-earth); border-right: 1.5px solid var(--color-graphite-earth); }
.corner-bracket.bl { bottom: 100px; left: 80px; border-bottom: 1.5px solid var(--color-graphite-earth); border-left: 1.5px solid var(--color-graphite-earth); }
.corner-bracket.br { bottom: 100px; right: 80px; border-bottom: 1.5px solid var(--color-graphite-earth); border-right: 1.5px solid var(--color-graphite-earth); }

.stamp-dot {
  width: 3px;
  height: 3px;
  background: var(--color-terracotta-clay);
  opacity: 0.7;
  border-radius: 100px;
}

.section-base {
  position: relative;
  padding: 120px 80px;
  z-index: 1;
}

.section-base.tight { padding: 80px 80px; }

.section-paper-cream { background: linear-gradient(135deg, rgba(250, 246, 236, 0.6), rgba(240, 232, 210, 0.6)); }
.section-paper-lime { background: var(--color-cream-lime); }
.section-paper-sage { background: var(--color-sage-calque); }
.section-paper-sand { background: var(--color-sand-caramel); }
.section-paper-lavender { background: var(--color-lavender-calque); }
.section-paper-cocoa { background: linear-gradient(135deg, #4A3F35 0%, #3A322B 100%); color: var(--color-sand-caramel-accent); }
.section-paper-cocoa h1, .section-paper-cocoa h2, .section-paper-cocoa h3, .section-paper-cocoa p { color: #FAF6EC; }
.section-paper-cocoa .tech-label { color: var(--color-sand-caramel-accent); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--color-graphite-earth);
  background: rgba(250, 246, 236, 0.94);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-graphite-earth);
  font-weight: 600;
  box-shadow: 3px 3px 0px var(--color-terracotta-clay);
}

.divider-rule {
  width: 80px;
  height: 3px;
  background: var(--color-terracotta-clay);
  border-radius: 100px;
  margin: 24px 0;
}

.stamp-card {
  position: relative;
  background: var(--color-card-calque);
  border: 1.5px solid var(--color-graphite-earth);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-warm), var(--shadow-clay);
  padding: 32px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}
.stamp-card:hover {
  background: var(--color-card-calque-hover);
  transform: translateY(-4px) scale(1.04);
  z-index: 35;
  box-shadow: var(--shadow-warm-hover), var(--shadow-clay-hover);
  outline: 2.5px solid var(--color-sage-eucalyptus);
  outline-offset: 6px;
}

.stamp-card .corner-dot {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 100px;
  background: var(--color-terracotta-clay);
  opacity: 0.7;
}

.btn-clay {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  background: linear-gradient(135deg, #B85C3C 0%, #D4A574 100%);
  color: #FFFFFF;
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--color-graphite-earth);
  box-shadow: 5px 5px 0px var(--color-graphite-earth);
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}
.btn-clay:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0px var(--color-graphite-earth), 0 0 0 4px rgba(122, 139, 124, 0.30);
  color: #FFFFFF;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  background: rgba(250, 246, 236, 0.94);
  color: var(--color-graphite-earth);
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--color-graphite-earth);
  box-shadow: 5px 5px 0px var(--color-sage-eucalyptus);
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}
.btn-ghost:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0px var(--color-sage-eucalyptus), 0 0 0 4px rgba(184, 92, 60, 0.25);
  background: #FFFFFF;
  color: var(--color-graphite-earth);
}

.btn-clay-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 100px;
  background: linear-gradient(135deg, #B85C3C 0%, #D4A574 100%);
  color: #FFFFFF;
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--color-graphite-earth);
  box-shadow: 4px 4px 0px var(--color-graphite-earth);
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}
.btn-clay-sm:hover { transform: translate(-2px, -2px); color: #FFFFFF; }

.accordion-item {
  background: var(--color-card-calque);
  border: 1.5px solid var(--color-graphite-earth);
  border-radius: var(--radius-soft);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 4px 4px 0px var(--color-sand-caramel-accent);
}
.accordion-trigger {
  width: 100%;
  padding: 24px 32px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--color-graphite-earth);
  cursor: pointer;
  text-align: left;
  border: none;
  min-height: 44px;
}
.accordion-trigger:hover { background: rgba(184, 92, 60, 0.06); }
.accordion-toggle {
  width: 36px;
  height: 36px;
  border-radius: 100px;
  border: 1.5px solid var(--color-graphite-earth);
  background: var(--color-limestone-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-graphite-earth);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.accordion-item.open .accordion-toggle { background: var(--color-terracotta-clay); color: #FFFFFF; transform: rotate(45deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion-item.open .accordion-content { max-height: 800px; }
.accordion-body { padding: 0 32px 28px; }

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 8000;
  max-width: 380px;
  background: var(--color-graphite-earth);
  color: var(--color-sand-caramel-accent);
  border: 1.5px solid var(--color-sand-caramel-accent);
  border-radius: var(--radius-soft);
  box-shadow: 6px 6px 0px var(--color-terracotta-clay);
  padding: 24px;
}
.cookie-title { font-family: var(--font-editorial); font-style: italic; font-size: 1.1rem; color: #FAF6EC; margin-bottom: 8px; }
.cookie-text { font-family: var(--font-mono); font-size: 0.75rem; line-height: 1.65; color: rgba(250, 246, 236, 0.85); margin-bottom: 16px; }
.cookie-buttons { display: flex; gap: 10px; }
.cookie-btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--color-sand-caramel-accent);
  background: transparent;
  color: var(--color-sand-caramel-accent);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  min-height: 44px;
  transition: all 0.2s ease;
}
.cookie-btn.accept { background: linear-gradient(135deg, #B85C3C 0%, #D4A574 100%); color: #FFFFFF; border-color: var(--color-graphite-earth); }
.cookie-btn:hover { transform: translate(-1px, -1px); }

.atelier-footer {
  background: linear-gradient(135deg, #4A3F35 0%, #3A322B 100%);
  color: #FAF6EC;
  padding: 80px 80px 32px;
  position: relative;
  overflow: hidden;
}
.footer-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 25%, rgba(184, 92, 60, 0.18), transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(122, 139, 124, 0.16), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(212, 165, 116, 0.12), transparent 60%);
}
.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-col h4 { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-sand-caramel-accent); margin-bottom: 16px; font-weight: 700; }
.footer-col p, .footer-col a, .footer-col address { font-family: var(--font-mono); font-size: 0.8rem; line-height: 1.85; color: rgba(250, 246, 236, 0.85); display: block; }
.footer-col a:hover { color: var(--color-terracotta-clay); }
.footer-brand-name { font-family: var(--font-editorial); font-size: 1.6rem; font-style: italic; color: #FAF6EC; margin-bottom: 16px; line-height: 1.2; }
.footer-tagline { color: rgba(250, 246, 236, 0.7) !important; margin-bottom: 20px; }
.footer-divider { width: 60px; height: 2px; background: var(--color-terracotta-clay); margin: 16px 0; border-radius: 100px; }
.footer-bottom { position: relative; z-index: 2; border-top: 1px solid rgba(250, 246, 236, 0.2); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.05em; color: rgba(250, 246, 236, 0.65); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { color: rgba(250, 246, 236, 0.7); }
.footer-legal a:hover { color: var(--color-terracotta-clay); }

.hero-3d-stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}
.chair-render {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(8px 8px 0px rgba(122, 74, 47, 0.45)) drop-shadow(0 24px 36px rgba(74, 63, 53, 0.35));
  animation: chairFloat 7s ease-in-out infinite;
}
@keyframes chairFloat {
  0%, 100% { transform: rotateY(-8deg) rotateX(2deg) translateY(0); }
  50% { transform: rotateY(8deg) rotateX(-2deg) translateY(-12px); }
}

.process-node {
  background: var(--color-card-calque);
  border: 1.5px solid rgba(74, 63, 53, 0.85);
  border-radius: 100px;
  width: 260px;
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 24px;
  box-shadow: var(--shadow-warm);
  position: relative;
  backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}
.process-node:hover {
  background: var(--color-card-calque-hover);
  transform: scale(1.10);
  z-index: 35;
  border: 2.5px solid var(--color-graphite-earth);
  outline: 2.5px solid var(--color-sage-eucalyptus);
  outline-offset: 6px;
  box-shadow: var(--shadow-warm-hover);
}
.process-node.active {
  border: 2.5px solid var(--color-terracotta-clay);
}

.diptych-frame {
  background: var(--color-card-calque);
  border: 1.5px solid var(--color-graphite-earth);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-warm), 6px 6px 0px var(--color-sage-eucalyptus);
  overflow: hidden;
  transition: all 0.4s ease;
}
.diptych-frame:hover {
  transform: translateY(-4px) rotate(0deg);
  z-index: 35;
  box-shadow: var(--shadow-warm-hover), 12px 12px 0px var(--color-sage-eucalyptus);
  outline: 2.5px solid var(--color-sage-eucalyptus);
  outline-offset: 6px;
}
.diptych-images { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.diptych-img-wrap { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.diptych-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.diptych-img-tag {
  position: absolute;
  top: 12px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(74, 63, 53, 0.85);
  color: #FAF6EC;
  font-weight: 700;
}
.diptych-img-tag.before { left: 12px; }
.diptych-img-tag.after { right: 12px; background: var(--color-terracotta-clay); }
.diptych-info { padding: 20px 24px; border-top: 1.5px solid var(--color-graphite-earth); }
.diptych-info-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.diptych-title { font-family: var(--font-editorial); font-style: italic; font-size: 1.15rem; color: var(--color-graphite-earth); line-height: 1.25; }
.diptych-meta { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-graphite-earth); opacity: 0.7; }
.diptych-desc { font-family: var(--font-mono); font-size: 0.78rem; color: var(--color-graphite-cocoa); line-height: 1.7; margin-top: 8px; }

.epoch-panel {
  position: relative;
  flex-shrink: 0;
  width: 80px;
  background: rgba(250, 246, 236, 0.85);
  backdrop-filter: blur(20px);
  border: 1.5px solid var(--color-graphite-earth);
  border-radius: var(--radius-soft);
  padding: 24px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  min-height: 520px;
}
.epoch-panel.cat-1 { box-shadow: 6px 6px 0px var(--color-terracotta-clay); }
.epoch-panel.cat-2 { box-shadow: 6px 6px 0px var(--color-sand-caramel-accent); }
.epoch-panel.cat-3 { box-shadow: 6px 6px 0px var(--color-sage-eucalyptus); }
.epoch-panel.cat-4 { box-shadow: 6px 6px 0px var(--color-lavender-dust); }
.epoch-panel.cat-5 { box-shadow: 6px 6px 0px var(--color-burnt-umber); }
.epoch-panel.cat-6 { box-shadow: 6px 6px 0px var(--color-graphite-earth); }
.epoch-panel.active {
  width: 50%;
  padding: 48px 40px;
  align-items: flex-start;
  background: var(--color-card-calque);
  z-index: 35;
  outline: 2.5px solid var(--color-sage-eucalyptus);
  outline-offset: 6px;
}
.epoch-num {
  font-family: var(--font-mono);
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  opacity: 0.85;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 1;
}
.epoch-num.cat-1 { color: var(--color-terracotta-clay); }
.epoch-num.cat-2 { color: var(--color-sand-caramel-accent); }
.epoch-num.cat-3 { color: var(--color-sage-eucalyptus); }
.epoch-num.cat-4 { color: var(--color-lavender-dust); }
.epoch-num.cat-5 { color: var(--color-burnt-umber); }
.epoch-num.cat-6 { color: var(--color-graphite-earth); }
.epoch-panel.active .epoch-num { writing-mode: horizontal-tb; font-size: 0.85rem; letter-spacing: 0.18em; font-weight: 600; opacity: 1; margin-bottom: 16px; }
.epoch-stripe { width: 8px; height: 60%; border-radius: 100px; opacity: 0.85; }
.epoch-stripe.cat-1 { background: var(--color-terracotta-clay); }
.epoch-stripe.cat-2 { background: var(--color-sand-caramel-accent); }
.epoch-stripe.cat-3 { background: var(--color-sage-eucalyptus); }
.epoch-stripe.cat-4 { background: var(--color-lavender-dust); }
.epoch-stripe.cat-5 { background: var(--color-burnt-umber); }
.epoch-stripe.cat-6 { background: var(--color-graphite-earth); }
.epoch-mini { font-family: var(--font-mono); font-size: 0.55rem; letter-spacing: 0.18em; color: var(--color-graphite-earth); text-transform: uppercase; }
.epoch-content { display: none; flex-direction: column; gap: 14px; align-items: flex-start; width: 100%; }
.epoch-panel.active .epoch-content { display: flex; }
.epoch-panel.active .epoch-stripe, .epoch-panel.active .epoch-mini { display: none; }
.epoch-title { font-family: var(--font-editorial); font-style: italic; font-size: 1.7rem; color: var(--color-graphite-earth); line-height: 1.15; }
.epoch-desc { font-family: var(--font-mono); font-size: 0.85rem; line-height: 1.75; color: var(--color-graphite-cocoa); max-width: 78%; }
.epoch-price { font-family: var(--font-mono); font-size: 1rem; color: var(--color-terracotta-clay); letter-spacing: 0.04em; font-weight: 700; text-transform: uppercase; }
.epoch-tech-row { display: flex; flex-wrap: wrap; gap: 10px; font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.7; color: var(--color-graphite-earth); }

.form-field { margin-bottom: 18px; }
.form-label { display: block; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-graphite-earth); margin-bottom: 8px; font-weight: 700; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--color-graphite-earth);
  border-radius: var(--radius-soft);
  background: rgba(250, 246, 236, 0.94);
  color: var(--color-graphite-earth);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s ease;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  background: #FFFFFF;
  border-color: var(--color-terracotta-clay);
  box-shadow: 0 0 0 3px rgba(184, 92, 60, 0.25);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--color-sage-moss); opacity: 0.75; }
.form-textarea { min-height: 140px; resize: vertical; }

.marquee-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.04;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 3rem;
  letter-spacing: 0.05em;
  color: var(--color-graphite-earth);
  animation: marqueeSlide 90s linear infinite;
}
@keyframes marqueeSlide { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.testimonial-card {
  background: var(--color-card-calque);
  border: 1.5px solid var(--color-graphite-earth);
  border-radius: var(--radius-soft);
  padding: 32px;
  box-shadow: var(--shadow-warm), 6px 6px 0px var(--color-lavender-dust);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-quote { font-family: var(--font-editorial); font-style: italic; font-size: 1.05rem; line-height: 1.6; color: var(--color-graphite-earth); }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 56px; height: 56px; border-radius: 100px; overflow: hidden; border: 1.5px solid var(--color-graphite-earth); flex-shrink: 0; box-shadow: 3px 3px 0px var(--color-terracotta-clay); }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-family: var(--font-editorial); font-style: italic; font-size: 1.05rem; color: var(--color-graphite-earth); }
.testimonial-meta { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.7; }

.team-card {
  background: var(--color-card-calque);
  border: 1.5px solid var(--color-graphite-earth);
  border-radius: var(--radius-soft);
  overflow: hidden;
  box-shadow: var(--shadow-warm), 6px 6px 0px var(--color-sage-eucalyptus);
  transition: all 0.4s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  z-index: 35;
  box-shadow: var(--shadow-warm-hover), 12px 12px 0px var(--color-sage-eucalyptus);
  outline: 2.5px solid var(--color-sage-eucalyptus);
  outline-offset: 6px;
}
.team-photo { aspect-ratio: 4/5; overflow: hidden; position: relative; background: var(--color-card-beige); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 24px; }
.team-name { font-family: var(--font-editorial); font-style: italic; font-size: 1.4rem; color: var(--color-graphite-earth); line-height: 1.2; }
.team-role { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-terracotta-clay); margin-top: 4px; font-weight: 700; }
.team-bio { font-family: var(--font-mono); font-size: 0.85rem; color: var(--color-graphite-cocoa); line-height: 1.7; margin-top: 12px; }

.strength-card {
  background: var(--color-card-calque);
  border: 1.5px solid var(--color-graphite-earth);
  border-radius: var(--radius-soft);
  padding: 28px;
  box-shadow: var(--shadow-warm), 6px 6px 0px var(--color-sand-caramel-accent);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}
.strength-card:hover {
  transform: translateY(-4px) scale(1.03);
  z-index: 35;
  box-shadow: var(--shadow-warm-hover), 14px 14px 0px var(--color-sand-caramel-accent);
  outline: 2.5px solid var(--color-sage-eucalyptus);
  outline-offset: 6px;
}
.strength-number { font-family: var(--font-mono); font-size: 3rem; font-weight: 700; color: var(--color-terracotta-clay); line-height: 1; letter-spacing: -0.02em; }
.strength-title { font-family: var(--font-editorial); font-style: italic; font-size: 1.25rem; color: var(--color-graphite-earth); line-height: 1.25; }
.strength-text { font-family: var(--font-mono); font-size: 0.85rem; color: var(--color-graphite-cocoa); line-height: 1.7; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.stamp-image-wrap {
  border-radius: var(--radius-soft);
  overflow: hidden;
  border: 1.5px solid var(--color-graphite-earth);
  box-shadow: var(--shadow-warm), 8px 8px 0px var(--color-terracotta-clay);
  position: relative;
}
.stamp-image-wrap img { width: 100%; height: auto; display: block; }

.legal-prose { max-width: 880px; margin: 0 auto; }
.legal-prose h2 { font-family: var(--font-editorial); font-style: italic; font-size: 1.6rem; margin: 36px 0 14px; color: var(--color-graphite-earth); }
.legal-prose h3 { font-family: var(--font-mono); font-size: 0.95rem; letter-spacing: 0.18em; text-transform: uppercase; margin: 24px 0 10px; color: var(--color-graphite-earth); font-weight: 700; }
.legal-prose p { font-family: var(--font-mono); font-size: 0.9rem; line-height: 1.85; color: var(--color-graphite-cocoa); margin-bottom: 14px; }
.legal-prose ul { margin: 12px 0 16px 24px; }
.legal-prose li { font-family: var(--font-mono); font-size: 0.9rem; line-height: 1.85; color: var(--color-graphite-cocoa); margin-bottom: 6px; }

.thanks-hero { text-align: center; padding: 160px 80px 120px; position: relative; }

@media (max-width: 1024px) {
  .top-bar { padding: 0 24px; font-size: 0.55rem; }
  .top-bar-name { font-size: 0.6rem; }
  .main-bar { padding: 0 24px; height: 64px; }
  .desktop-nav { display: none; }
  .burger { display: flex; }
  .section-base { padding: 80px 24px; }
  .hero-corner-stamp.tl, .hero-corner-stamp.tr { top: 110px; }
  .hero-corner-stamp.bl, .hero-corner-stamp.br { bottom: 60px; }
  .corner-bracket.tl, .corner-bracket.tr { top: 110px; }
  .corner-bracket.bl, .corner-bracket.br { bottom: 60px; }
  .hero-corner-stamp.tl, .corner-bracket.tl { left: 24px; }
  .hero-corner-stamp.tr, .corner-bracket.tr { right: 24px; }
  .hero-corner-stamp.bl, .corner-bracket.bl { left: 24px; }
  .hero-corner-stamp.br, .corner-bracket.br { right: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .atelier-footer { padding: 60px 24px 24px; }
  .epoch-panel { width: 60px; min-height: 420px; padding: 16px 8px; }
  .epoch-num { font-size: 2.5rem; }
  .epoch-panel.active { width: 90%; padding: 32px 24px; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-node { width: 220px; height: 220px; }
  .thanks-hero { padding: 120px 24px 80px; }
}

@media (max-width: 600px) {
  .top-bar-left .top-bar-divider, .top-bar-left .top-bar-name { display: none; }
  .top-bar-right { gap: 8px; }
  .top-bar-hours { display: none; }
  .main-bar { padding: 0 16px; gap: 12px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-domain { font-size: 0.65rem; }
  .brand-name { font-size: 0.85rem; }
  .cta-pill { display: none; }
  .burger { width: 40px; height: 40px; }
  .section-base { padding: 60px 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .atelier-footer { padding: 48px 16px 20px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .cookie-banner { left: 16px; right: 16px; max-width: none; bottom: 16px; padding: 18px; }
  .epoch-panel { width: 100%; min-height: auto; padding: 24px; flex-direction: row; }
  .epoch-num { writing-mode: horizontal-tb; font-size: 1rem; }
  .epoch-stripe { display: none; }
  .epoch-mini { display: none; }
  .epoch-panel.active { width: 100%; padding: 24px; }
  .epoch-title { font-size: 1.3rem; }
  .epoch-desc { max-width: 100%; font-size: 0.78rem; }
  .process-node { width: 180px; height: 180px; padding: 20px; }
  .process-node h3 { font-size: 0.95rem; }
  .thanks-hero { padding: 100px 16px 60px; }
}
