@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@300;400;500;600;700;800&display=swap');

:root {
  --ink: #1b2430;
  --ink-soft: #3d4a5c;
  --paper: #f7f5f1;
  --paper-dim: #eeece5;
  --blue-deep: #1c3455;
  --blue-mid: #2f5580;
  --blue-line: rgba(28,52,85,0.14);
  --accent: #b5652f;
  --accent-soft: #d9a679;
  --white: #fffdf9;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-1: 0 1px 2px rgba(28,52,85,0.06), 0 1px 1px rgba(28,52,85,0.04);
  --shadow-2: 0 6px 16px rgba(28,52,85,0.1), 0 2px 6px rgba(28,52,85,0.06);
  --shadow-3: 0 20px 45px rgba(28,52,85,0.16), 0 6px 16px rgba(28,52,85,0.08);
  --ease: cubic-bezier(.22,.9,.32,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: 'Epilogue', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-weight: 700; margin: 0 0 .5em; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--ink-soft); }
ul { padding: 0; margin: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: 1.5px solid var(--blue-line);
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 4px rgba(47,85,128,0.12);
}
label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: 1rem; }

.canvas { position: relative; overflow-x: hidden; }

.spotlight-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(181,101,47,0.1);
  padding: .35rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.6rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: .95rem;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  min-height: 44px;
}
.btn-primary { background: var(--blue-deep); color: var(--white); box-shadow: var(--shadow-2); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-3); background: #16283f; }
.btn-outline { background: transparent; border-color: var(--blue-deep); color: var(--blue-deep); }
.btn-outline:hover { background: var(--blue-deep); color: var(--white); }
.btn-ghost { background: transparent; color: var(--ink-soft); }
.btn-ghost:hover { color: var(--ink); }
.btn-large { padding: 1.05rem 2.2rem; font-size: 1.05rem; }


.stage-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--blue-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--blue-line) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at top, black 40%, transparent 90%);
}


.stage-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 1.6rem 0;
  transition: padding .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
  background: rgba(247,245,241,0.7);
  backdrop-filter: blur(10px);
}
.stage-nav.scrolled {
  padding: .7rem 0;
  background: rgba(247,245,241,0.96);
  box-shadow: var(--shadow-2);
}
.stage-nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.stage-logo { display: flex; align-items: center; gap: .6rem; font-weight: 800; font-size: 1.3rem; color: var(--blue-deep); }
.stage-logo img { height: 42px; transition: height .35s var(--ease); }
.stage-nav.scrolled .stage-logo img { height: 30px; }
.stage-logo em { color: var(--accent); font-style: normal; }
.stage-links { display: flex; gap: 2.2rem; }
.stage-links a {
  font-weight: 600; font-size: .95rem; color: var(--ink-soft);
  position: relative; padding-bottom: 4px;
  transition: color .25s var(--ease);
}
.stage-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--accent); transition: width .3s var(--ease);
}
.stage-links a:hover, .stage-links a.active { color: var(--blue-deep); }
.stage-links a:hover::after, .stage-links a.active::after { width: 100%; }

.stage-burger { display: none; width: 44px; height: 44px; border: none; background: transparent; flex-direction: column; justify-content: center; align-items: center; gap: 5px; z-index: 600; position: relative; }
.stage-burger span { width: 26px; height: 2.5px; background: var(--blue-deep); border-radius: 2px; transition: all .3s var(--ease); }
.stage-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.stage-burger.open span:nth-child(2) { opacity: 0; }
.stage-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.drawer-mobile {
  position: fixed; inset: 0; z-index: 450;
  background: var(--blue-deep);
  clip-path: circle(0px at calc(100% - 45px) 45px);
  transition: clip-path .55s var(--ease);
  pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.drawer-mobile.open { clip-path: circle(150% at calc(100% - 45px) 45px); pointer-events: all; }
.drawer-mobile-links { display: flex; flex-direction: column; gap: 1.8rem; text-align: center; opacity: 0; transition: opacity .4s var(--ease) .25s; }
.drawer-mobile.open .drawer-mobile-links { opacity: 1; }
.drawer-mobile-links a { color: var(--white); font-size: 1.6rem; font-weight: 700; }


.stage {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 9rem 1.5rem 0;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-dim) 100%);
}
.stage-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 3.5rem;
  align-items: center;
  position: relative; z-index: 2;
  padding-bottom: 3rem;
}
.stage-copy h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1.08; color: var(--blue-deep); }
.stage-lead { font-size: 1.12rem; max-width: 52ch; }
.stage-benefits { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.8rem; }
.stage-benefits li { display: flex; align-items: center; gap: .85rem; font-weight: 600; color: var(--ink); }
.stage-benefits i { width: 42px; height: 42px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-md); background: var(--white); color: var(--accent); box-shadow: var(--shadow-1); }

.stage-form-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 2.2rem; box-shadow: var(--shadow-3);
  border: 1px solid var(--blue-line);
}
.stage-form-card:has(:focus) { border-color: var(--blue-mid); }
.stage-form-card h2 { font-size: 1.4rem; color: var(--blue-deep); }
.stage-form-sub { font-size: .92rem; margin-bottom: 1.4rem; }

.wizard-steps { display: flex; gap: .6rem; margin-bottom: 1.6rem; }
.wizard-dot {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper-dim); color: var(--ink-soft); font-weight: 700; font-size: .85rem;
  transition: all .3s var(--ease);
}
.wizard-dot.active { background: var(--blue-deep); color: var(--white); }
.wizard-panels { position: relative; overflow: hidden; }
.wizard-panel { display: none; animation: slideIn .4s var(--ease); }
.wizard-panel.active { display: block; }
@keyframes slideIn { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }
.wizard-btn-row { display: flex; gap: .8rem; margin-top: .5rem; }
.wizard-next { width: 100%; justify-content: center; margin-top: .3rem; }
.wizard-checkbox { display: flex; align-items: flex-start; gap: .6rem; font-weight: 500; font-size: .88rem; color: var(--ink-soft); }
.wizard-checkbox input { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }

.stage-stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--blue-line);
  margin-top: 2rem;
}
.stage-stat {
  display: flex; align-items: center; gap: .7rem;
  padding: 1.3rem 1rem;
  border-right: 1px solid var(--blue-line);
  font-weight: 600; font-size: .88rem; color: var(--blue-deep);
}
.stage-stat:last-child { border-right: none; }
.stage-stat i { color: var(--accent); font-size: 1.1rem; }


.wave-divider { display: block; width: 100%; height: 90px; }
.wave-divider path { fill: var(--paper-dim); }
.wave-divider-alt path { fill: var(--white); }


.gallery { padding: 5.5rem 1.5rem; position: relative; }
.gallery-intro { background: var(--paper-dim); }
.gallery-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.gallery-text h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); color: var(--blue-deep); }
.gallery-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-3); width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.gallery-services { background: var(--white); }
.gallery-inner-wide { max-width: 1280px; margin: 0 auto; }
.gallery-heading { max-width: 700px; margin-bottom: 3rem; }
.gallery-heading h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); color: var(--blue-deep); }

.shelf-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.drawer-card {
  background: var(--paper);
  border: 1px solid var(--blue-line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  cursor: pointer;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.drawer-card:hover { box-shadow: var(--shadow-2); transform: translateY(-3px); background: var(--white); }
.drawer-card-head { display: flex; align-items: center; gap: .9rem; }
.drawer-card-head i:first-child { font-size: 1.3rem; color: var(--accent); width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; background: rgba(181,101,47,0.1); border-radius: var(--radius-md); flex-shrink: 0; }
.drawer-card-head h3 { font-size: 1.05rem; margin: 0; flex: 1; color: var(--ink); }
.drawer-card-icon { transition: transform .3s var(--ease); color: var(--ink-soft); }
.drawer-card-body { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), margin-top .4s var(--ease); }
.drawer-card-body p { padding-top: .9rem; margin: 0; font-size: .92rem; }
.drawer-card.open .drawer-card-body { max-height: 200px; }
.drawer-card.open .drawer-card-icon { transform: rotate(180deg); }
.drawer-card:focus-visible { outline: 2px solid var(--blue-mid); outline-offset: 2px; }

.gallery-process { background: var(--paper-dim); }
.shelf-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.6rem; }
.step-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.8rem 1.5rem; box-shadow: var(--shadow-1); transition: box-shadow .3s var(--ease), transform .3s var(--ease); }
.step-card:hover { box-shadow: var(--shadow-2); transform: translateY(-4px); }
.step-num { font-size: 1.7rem; font-weight: 800; color: var(--accent-soft); display: block; margin-bottom: .5rem; }
.step-card h3 { font-size: 1.1rem; color: var(--blue-deep); }
.step-card p { font-size: .9rem; margin: 0; }

.gallery-carousel { background: var(--white); }
.workSwiper, .bizSwiper { padding-bottom: 2.5rem; }
.swiper-slide img { border-radius: var(--radius-lg); box-shadow: var(--shadow-2); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.swiper-slide p { text-align: center; margin-top: .8rem; font-weight: 600; color: var(--ink-soft); font-size: .92rem; }
.swiper-pagination-bullet { background: var(--blue-mid); opacity: .3; }
.swiper-pagination-bullet-active { opacity: 1; }

.gallery-faq { background: var(--paper-dim); }
.shelf-faq { display: flex; flex-direction: column; gap: 1rem; max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-1); overflow: hidden; border: 1px solid var(--blue-line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 1.2rem 1.4rem; font-size: 1rem; font-weight: 600; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q i { transition: transform .3s var(--ease); color: var(--accent); flex-shrink: 0; }
.faq-item.active .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item.active .faq-a { max-height: 260px; }
.faq-a p { padding: 0 1.4rem 1.2rem; margin: 0; font-size: .94rem; }
.shelf-faq-small { max-width: 100%; }

.gallery-cta { background: var(--blue-deep); text-align: center; }
.gallery-cta h2, .gallery-cta p { color: var(--white); }
.gallery-cta p { opacity: .85; }
.gallery-inner-narrow { max-width: 640px; margin: 0 auto; }
.gallery-inner-narrow h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.gallery-cta .btn-primary { background: var(--white); color: var(--blue-deep); margin-top: 1rem; }
.gallery-cta .btn-primary:hover { background: var(--paper-dim); }


.page-hero { position: relative; padding: 10rem 1.5rem 4.5rem; background: linear-gradient(180deg, var(--paper) 0%, var(--paper-dim) 100%); }
.page-hero-small { padding: 8.5rem 1.5rem 3rem; }
.page-hero-inner { max-width: 780px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.page-hero-inner h1 { font-size: clamp(1.9rem, 4vw, 3rem); color: var(--blue-deep); }
.page-hero-inner p { font-size: 1.08rem; }


.gallery-detail { padding: 4rem 1.5rem 6rem; background: var(--white); }
.gallery-detail-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 250px 1fr; gap: 3.5rem; align-items: start; }
.drawer-toc { position: sticky; top: 110px; display: flex; flex-direction: column; gap: .3rem; border-left: 2px solid var(--blue-line); padding-left: 1.2rem; }
.drawer-toc-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--ink-soft); margin-bottom: .6rem; }
.drawer-toc a { padding: .5rem 0; font-size: .92rem; font-weight: 600; color: var(--ink-soft); transition: color .25s var(--ease); border-left: 2px solid transparent; margin-left: -1.25rem; padding-left: 1.2rem; }
.drawer-toc a.active { color: var(--blue-deep); border-left-color: var(--accent); }
.content-section { margin-bottom: 3.5rem; scroll-margin-top: 110px; }
.content-section h2 { color: var(--blue-deep); font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.content-image { margin-top: 1.5rem; }
.content-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-2); width: 100%; aspect-ratio: 16/9; object-fit: cover; }


.facts-strip { background: var(--blue-deep); padding: 1.6rem 1.5rem; }
.facts-strip-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.fact { display: flex; align-items: center; gap: .7rem; color: var(--white); font-weight: 600; font-size: .9rem; }
.fact i { color: var(--accent-soft); font-size: 1.15rem; }


.gallery-contact { padding: 5rem 1.5rem; background: var(--paper-dim); }
.gallery-contact-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.5rem; align-items: start; }
.contact-card { background: var(--white); border-radius: var(--radius-xl); padding: 2.2rem; box-shadow: var(--shadow-2); }
.contact-card h2 { color: var(--blue-deep); }
.contact-list { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 1.6rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list i { width: 42px; height: 42px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-md); background: rgba(181,101,47,0.1); color: var(--accent); }
.contact-list strong { display: block; font-size: .85rem; color: var(--ink); }
.contact-list span { font-size: .92rem; color: var(--ink-soft); }
.contact-map iframe { border-radius: var(--radius-md); width: 100%; }
.contact-form-card { margin: 0; }


.thanks-section { position: relative; padding: 10rem 1.5rem 6rem; min-height: 80vh; background: linear-gradient(180deg, var(--paper) 0%, var(--paper-dim) 100%); }
.thanks-inner { max-width: 640px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.thanks-inner h1 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--blue-deep); }
.timeline { margin-top: 3.5rem; display: flex; flex-direction: column; gap: 0; text-align: left; }
.timeline-item { display: flex; gap: 1.2rem; padding: 1.2rem 0; position: relative; }
.timeline-item:not(:last-child)::before { content:''; position: absolute; left: 21px; top: 54px; width: 2px; height: calc(100% - 20px); background: var(--blue-line); }
.timeline-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; background: var(--paper-dim); color: var(--ink-soft); }
.timeline-item.done .timeline-icon { background: var(--blue-deep); color: var(--white); }
.timeline-item.highlighted .timeline-icon { background: var(--accent); box-shadow: 0 0 0 6px rgba(181,101,47,0.15); }
.timeline-item div strong { display: block; font-size: 1.05rem; color: var(--ink); margin-bottom: .2rem; }
.timeline-item div p { margin: 0; font-size: .92rem; }
.timeline-item.upcoming { opacity: .55; }


.legal-section { padding: 3rem 1.5rem 6rem; background: var(--white); }
.legal-inner { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.legal-accordion { border: 1px solid var(--blue-line); border-radius: var(--radius-md); overflow: hidden; background: var(--paper); }
.legal-q { width: 100%; text-align: left; background: none; border: none; padding: 1.3rem 1.5rem; font-size: 1.02rem; font-weight: 700; color: var(--blue-deep); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.legal-q i { transition: transform .3s var(--ease); flex-shrink: 0; color: var(--accent); }
.legal-accordion.active .legal-q i { transform: rotate(180deg); }
.legal-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); background: var(--white); }
.legal-accordion.active .legal-a { max-height: 600px; }
.legal-a p { padding: 0 1.5rem 1.4rem; margin: 0; font-size: .95rem; }


.stage-curtain { position: fixed; inset: 0; background: rgba(20,28,40,0.55); backdrop-filter: blur(3px); z-index: 900; opacity: 0; pointer-events: none; transition: opacity .35s var(--ease); }
.stage-curtain.show { opacity: 1; pointer-events: all; }
.drawer { position: fixed; inset: 0; z-index: 950; display: flex; align-items: center; justify-content: center; padding: 1.5rem; opacity: 0; pointer-events: none; transition: opacity .35s var(--ease); }
.drawer.show { opacity: 1; pointer-events: all; }
.drawer-box { background: var(--white); border-radius: var(--radius-xl); padding: 2.2rem; max-width: 520px; width: 100%; box-shadow: var(--shadow-3); transform: scale(.94); transition: transform .35s var(--ease); max-height: 90vh; overflow-y: auto; }
.drawer.show .drawer-box { transform: scale(1); }
.drawer-box h3 { color: var(--blue-deep); display: flex; align-items: center; gap: .6rem; }
.drawer-box p { font-size: .92rem; }
.drawer-toggles { display: flex; flex-direction: column; gap: 1rem; margin: 1.4rem 0; }
.drawer-toggle { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 1rem; background: var(--paper); border-radius: var(--radius-md); font-size: .88rem; }
.drawer-toggle span { display: flex; flex-direction: column; gap: .2rem; font-weight: 600; color: var(--ink); }
.drawer-toggle small { font-weight: 400; color: var(--ink-soft); }
.drawer-toggle input { width: 20px; height: 20px; flex-shrink: 0; }
.drawer-actions { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: flex-end; }


.canvas-footer { background: var(--blue-deep); color: var(--white); margin-top: auto; }
.canvas-footer-inner { max-width: 1280px; margin: 0 auto; padding: 4rem 1.5rem 2.5rem; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-brand img { height: 38px; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: .9rem; }
.footer-col h4 { color: var(--white); font-size: .95rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .05em; }
.footer-col a { display: block; color: rgba(255,255,255,0.75); font-size: .9rem; margin-bottom: .7rem; transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--accent-soft); }
.footer-col p { color: rgba(255,255,255,0.75); font-size: .9rem; display: flex; align-items: center; gap: .5rem; margin-bottom: .7rem; }
.canvas-footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 1.3rem 1.5rem; text-align: center; font-size: .85rem; color: rgba(255,255,255,0.6); }


.gallery:has(.highlighted) { background: var(--paper-dim); }
.stage-form-card:has(input:invalid:not(:placeholder-shown)) { border-color: #b5652f; }
.drawer-card:has(.drawer-card-body:hover) { box-shadow: var(--shadow-2); }


@media (max-width: 1024px) {
  .stage-inner { grid-template-columns: 1fr; }
  .gallery-inner, .gallery-contact-inner { grid-template-columns: 1fr; }
  .gallery-detail-inner { grid-template-columns: 1fr; }
  .drawer-toc { position: static; border-left: none; padding-left: 0; flex-direction: row; flex-wrap: wrap; gap: .8rem; margin-bottom: 2rem; }
  .drawer-toc a { margin-left: 0; padding-left: .8rem; }
  .canvas-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .stage-links { display: none; }
  .stage-burger { display: flex; }
  .stage-stats { grid-template-columns: repeat(2, 1fr); }
  .stage-stat:nth-child(2) { border-right: none; }
  .stage-stat { border-bottom: 1px solid var(--blue-line); }
}
@media (max-width: 640px) {
  .stage { padding-top: 7.5rem; }
  .stage-copy h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .canvas-footer-inner { grid-template-columns: 1fr; }
  .stage-stats { grid-template-columns: 1fr; }
  .stage-stat { border-right: none; }
  .facts-strip-inner { grid-template-columns: 1fr 1fr; }
  .gallery { padding: 3.5rem 1.2rem; }
  .drawer-box { padding: 1.6rem; }
}