


:root {
  --ink-900: #1a1a2e;
  --ink-800: #2d2d44;
  --ink-700: #3f3f5c;
  --ink-600: #565678;
  --ink-400: #8888a8;
  --ink-200: #d4d4e4;
  --ink-100: #eeeef6;
  --ink-50: #f7f7fb;

  --canvas-bg: #f5f5f0;
  --surface-white: #fefefe;

  --primary: #1e3a5f;
  --primary-light: #2a5080;
  --primary-dark: #142840;
  --accent: #c8813a;
  --accent-light: #e0a060;
  --accent-dark: #a0621e;

  --text-body: #2d2d44;
  --text-muted: #6b6b8a;
  --text-light: #9898b8;

  --shadow-xs: 0 1px 3px rgba(30,58,95,0.06), 0 1px 2px rgba(30,58,95,0.04);
  --shadow-sm: 0 2px 8px rgba(30,58,95,0.08), 0 1px 3px rgba(30,58,95,0.06);
  --shadow-md: 0 4px 16px rgba(30,58,95,0.10), 0 2px 6px rgba(30,58,95,0.07);
  --shadow-lg: 0 8px 32px rgba(30,58,95,0.12), 0 4px 12px rgba(30,58,95,0.08);
  --shadow-xl: 0 16px 48px rgba(30,58,95,0.15), 0 8px 24px rgba(30,58,95,0.10);

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

  --nav-height: 88px;
  --nav-height-compact: 60px;

  --transition-fast: 0.18s ease;
  --transition-base: 0.28s ease;
  --transition-slow: 0.45s ease;

  --font-heading: 'Vollkorn', Georgia, serif;
  --font-body: 'Work Sans', system-ui, sans-serif;
}


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

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

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

main { flex: 1; }

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--accent); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--ink-900);
}

h1 { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

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

ul { list-style: none; }


.nav-frame {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(245,245,240,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(30,58,95,0.08);
  padding: clamp(12px, 2vw, 22px) 0;
  transition: padding var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
}

.nav-frame.scrolled {
  padding: 10px 0;
  background: rgba(245,245,240,0.98);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }

.logo-img {
  height: clamp(36px, 4vw, 48px);
  width: auto;
  transition: height var(--transition-base);
}

.nav-frame.scrolled .logo-img { height: 32px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-700);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(30,58,95,0.06);
}

.nav-link.active { color: var(--primary); font-weight: 600; }

.nav-chevron {
  font-size: 0.65rem;
  transition: transform var(--transition-fast);
}


.nav-mega-trigger { position: relative; }

.nav-mega-trigger:hover .nav-chevron { transform: rotate(180deg); }

.mega-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 680px;
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--ink-100);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
  pointer-events: none;
  z-index: 100;
}

.nav-mega-trigger:hover .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.mega-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  padding: 1.5rem;
}

.mega-col { padding: 0.5rem 1rem; }
.mega-col:not(:last-child) { border-right: 1px solid var(--ink-100); }

.mega-col--highlight { background: var(--ink-50); border-radius: var(--radius-md); }

.mega-heading {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0.5rem;
  border-radius: var(--radius-sm);
  color: var(--ink-800);
  transition: background var(--transition-fast), color var(--transition-fast);
  margin-bottom: 0.25rem;
}

.mega-item:hover { background: var(--ink-50); color: var(--primary); }

.mega-icon {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.mega-item strong { display: block; font-size: 0.875rem; font-weight: 600; color: inherit; }
.mega-item em { display: block; font-size: 0.75rem; font-style: normal; color: var(--text-muted); margin-top: 1px; }

.mega-list { list-style: none; }
.mega-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--ink-700);
  padding: 0.3rem 0;
}
.mega-list li i { color: var(--accent); font-size: 0.55rem; }


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

.nav-hamburger:hover { background: var(--ink-100); }

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink-800);
  border-radius: 2px;
  transition: transform var(--transition-base);
}


.drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--primary-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer-close {
  position: absolute;
  top: 24px; right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.drawer-close:hover { background: rgba(255,255,255,0.2); }

.drawer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.drawer-link {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition-fast), transform var(--transition-fast);
  padding: 0.25rem 1rem;
}

.drawer-link:hover {
  color: var(--accent-light);
  transform: translateX(4px);
}

.drawer-footer {
  position: absolute;
  bottom: 32px;
}

.drawer-contact {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition-fast);
}
.drawer-contact:hover { color: rgba(255,255,255,0.8); }


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn--large { padding: 16px 40px; font-size: 1rem; }
.btn--full { width: 100%; }
.btn--submit { padding: 14px 28px; }


.stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.stage-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.stage-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  transition: transform 8s ease;
}

.stage:hover .stage-photo { transform: scale(1.06); }

.stage-curtain {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 40, 64, 0.82) 0%,
    rgba(20, 40, 64, 0.55) 60%,
    rgba(20, 40, 64, 0.30) 100%
  );
}

.stage-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(120px, 15vw, 180px) clamp(16px, 5vw, 80px) clamp(80px, 10vw, 120px);
  width: 100%;
}

.stage-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 129, 58, 0.25);
  border: 1px solid rgba(200, 129, 58, 0.45);
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.stage-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 14ch;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.stage-subline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

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

.stage-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  animation: scrollBounce 2s ease-in-out infinite;
}

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


.page-stage {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.page-stage--short { min-height: 38vh; align-items: center; }

.page-stage__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-stage__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.page-stage__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) clamp(16px, 5vw, 80px);
  color: #fff;
}

.page-stage__content--centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-stage__content h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
  max-width: 20ch;
  margin-bottom: 1rem;
}

.page-stage__content p {
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  max-width: 55ch;
  margin-bottom: 0;
}

.page-stage--short .stage-curtain {
  background: linear-gradient(135deg, rgba(20,40,64,0.75) 0%, rgba(20,40,64,0.45) 100%);
}


.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(200,129,58,0.1);
  border: 1px solid rgba(200,129,58,0.25);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-tag--light {
  color: var(--accent-light);
  background: rgba(200,129,58,0.18);
  border-color: rgba(200,129,58,0.35);
}


.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-title {
  margin-bottom: 1rem;
}

.section-intro {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.7;
}


.bridge-section {
  background: var(--surface-white);
  padding: clamp(3rem, 8vw, 6rem) clamp(16px, 4vw, 48px);
}

.bridge-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.bridge-text h2 {
  margin-bottom: 1.25rem;
}

.bridge-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.bridge-card {
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

.bridge-card-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.bridge-card h3 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.bridge-card p { color: var(--text-muted); }


.how-works {
  background: var(--canvas-bg);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.gallery {
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.shelf {
  display: grid;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.shelf--steps {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.shelf-card {
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.shelf-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.shelf-card--step .step-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--ink-100);
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: color var(--transition-base);
}

.shelf-card--step:hover .step-number { color: rgba(200,129,58,0.15); }

.step-icon-wrap {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.step-icon {
  font-size: 1.4rem;
  color: #fff;
}

.step-title {
  margin-bottom: 0.75rem;
  color: var(--ink-900);
}

.step-body {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}


.step-hover-reveal {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, var(--primary) 0%, var(--primary-light) 100%);
  color: rgba(255,255,255,0.9);
  padding: 1.25rem 1.5rem;
  font-size: 0.85rem;
  line-height: 1.6;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.shelf-card--step:hover .step-hover-reveal { transform: translateY(0); }


.photo-grid-section {
  background: var(--surface-white);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.photo-grid__item--large { grid-column: 1 / 8; grid-row: 1 / 2; }
.photo-grid__item--tall  { grid-column: 8 / 13; grid-row: 1 / 3; }
.photo-grid__item--wide  { grid-column: 1 / 6; grid-row: 2 / 3; }
.photo-grid__item        { grid-column: 6 / 8; grid-row: 2 / 3; }

.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 240px;
}

.photo-frame__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.photo-frame:hover .photo-frame__img { transform: scale(1.05); }

.photo-frame__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(20,40,64,0.85) 0%, transparent 100%);
  padding: 1.25rem 1rem 1rem;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.photo-frame:hover .photo-frame__overlay {
  opacity: 1;
  transform: translateY(0);
}

.photo-frame__overlay span {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}


.errors-section {
  background: var(--ink-900);
}

.errors-section .section-header { text-align: left; }
.errors-section .section-title { color: #fff; }
.errors-section .section-intro { color: rgba(255,255,255,0.65); text-align: left; margin: 0; }
.errors-section .section-tag {
  color: var(--accent-light);
  background: rgba(200,129,58,0.18);
  border-color: rgba(200,129,58,0.3);
}

.error-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  position: relative;
  transition: background var(--transition-base), border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.error-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(200,129,58,0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 4px 12px rgba(0,0,0,0.2);
}

.error-card__icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.error-card h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.error-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.7;
}

.error-card__tag {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(200,129,58,0.15);
  border: 1px solid rgba(200,129,58,0.25);
  padding: 2px 10px;
  border-radius: 100px;
}


.splide__pagination__page {
  background: rgba(255,255,255,0.3);
}
.splide__pagination__page.is-active {
  background: var(--accent);
  transform: scale(1.2);
}

.splide__arrow {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  transition: background var(--transition-fast);
}

.splide__arrow:hover { background: var(--accent); }
.splide__arrow svg { fill: #fff; }


.why-section {
  background: var(--surface-white);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.why-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.why-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.why-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.why-image:hover .why-img { transform: scale(1.04); }

.why-content .section-tag { margin-bottom: 1rem; }
.why-content h2 { margin-bottom: 1.25rem; }
.why-content p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1.25rem; }
.why-content .btn { margin-top: 0.5rem; }


.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  text-align: center;
}

.cta-content h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 55ch;
  margin: 0 auto 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-actions .btn--outline {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.cta-actions .btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  color: #fff;
}


.site-footer {
  background: var(--ink-900);
  color: rgba(255,255,255,0.65);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(16px, 4vw, 48px);
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
}

.footer-brand .footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 28ch;
  margin: 0;
}

.footer-links {
  display: contents;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col a,
.footer-col p {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  transition: color var(--transition-fast);
  line-height: 1.6;
}

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

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem clamp(16px, 4vw, 48px);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition-fast);
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }


.content-section {
  background: var(--canvas-bg);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.content-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.content-body { max-width: 900px; margin: 0 auto; }

.content-block {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.content-block h2 {
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.content-block p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.content-block--image-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 100%;
}

.content-block__text h2 { margin-bottom: 1rem; color: var(--primary); }
.content-block__text p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; }

.content-block__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.content-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.content-block__image:hover .content-img { transform: scale(1.04); }


.content-pillars { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.content-pillars h2 { margin-bottom: 2rem; color: var(--primary); }

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

.pillar-card {
  background: var(--surface-white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

.pillar-icon {
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.pillar-card h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.pillar-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin: 0; }


.pricing-section {
  background: var(--canvas-bg);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

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

.pricing-card {
  background: var(--surface-white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.pricing-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.pricing-card--featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-md), 0 0 0 2px rgba(30,58,95,0.15);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.pricing-name {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--ink-900);
}

.pricing-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-body);
}

.pricing-features li i {
  color: var(--primary);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.pricing-card__footer { margin-top: auto; }

.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.pricing-note i {
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.pricing-note p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}


.included-section { background: var(--surface-white); }

.shelf--included {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.shelf-card--included {
  text-align: center;
  padding: 2rem 1.5rem;
}

.shelf-card-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.shelf-card--included h3 { font-size: 1.05rem; margin-bottom: 0.75rem; color: var(--primary); }
.shelf-card--included p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin: 0; }


.roles-grid { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.roles-grid h2 { margin-bottom: 2rem; color: var(--primary); }

.shelf--roles {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.shelf-card--role { padding: 2rem 1.5rem; }

.role-icon {
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.shelf-card--role h3 { font-size: 1rem; margin-bottom: 0.75rem; color: var(--primary); }
.shelf-card--role p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin: 0; }


.fit-check {
  background: var(--surface-white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.fit-check h2 { margin-bottom: 1rem; color: var(--primary); }
.fit-check > p { color: var(--text-muted); margin-bottom: 1.5rem; }

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

.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

.fit-list li i {
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}


.contact-section {
  background: var(--canvas-bg);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: 3rem;
}

.contact-form-wrap h2, .contact-details h2 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.contact-form-wrap > p, .contact-details > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}


.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-field { display: flex; flex-direction: column; gap: 0.4rem; }

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

.form-input, .form-textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-body);
  background: var(--surface-white);
  border: 1.5px solid var(--ink-200);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  width: 100%;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30,58,95,0.1);
}

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

.form-field--checkbox .form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.form-checkbox {
  width: 18px; height: 18px;
  border: 1.5px solid var(--ink-200);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
  accent-color: var(--primary);
}

.form-checkbox-label a { color: var(--primary); text-decoration: underline; }

.form-error {
  color: #c0392b;
  font-size: 0.875rem;
  min-height: 1.2em;
}


.contact-info-block { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  font-size: 1.1rem;
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.contact-info-item strong { display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-item p { color: var(--text-body); font-size: 0.95rem; margin: 0; line-height: 1.6; }
.contact-info-item a { color: var(--text-body); font-size: 0.95rem; transition: color var(--transition-fast); }
.contact-info-item a:hover { color: var(--primary); }


.contact-methods h3 { margin-bottom: 1rem; font-size: 1rem; color: var(--primary); }

.method-card {
  background: var(--surface-white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition-base);
}

.method-card:hover { box-shadow: var(--shadow-md); }

.method-card__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.method-card__header i { color: var(--accent); }
.method-card__header strong { font-size: 0.9rem; color: var(--ink-800); }
.method-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin: 0; }


.map-wrap h2 { margin-bottom: 1.25rem; color: var(--primary); }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-100);
}

.map-frame iframe { display: block; }


.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(100px, 15vw, 160px) clamp(16px, 4vw, 48px) clamp(60px, 10vw, 100px);
}

.thanks-wrap {
  text-align: center;
  max-width: 520px;
}

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

.thanks-wrap h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  color: var(--primary);
}

.thanks-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.thanks-countdown {
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.thanks-countdown strong {
  color: var(--primary);
  font-size: 1.1rem;
}


.legal-main {
  padding-top: var(--nav-height);
  min-height: 100vh;
  background: var(--canvas-bg);
}

.legal-toc-mobile {
  display: none;
  background: var(--surface-white);
  border-bottom: 1px solid var(--ink-100);
  padding: 1rem clamp(16px, 4vw, 48px);
}

.toc-toggle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-700);
  cursor: pointer;
  transition: background var(--transition-fast);
  width: 100%;
  justify-content: space-between;
}

.toc-toggle:hover { background: var(--ink-50); }

.toc-chevron { transition: transform var(--transition-fast); }
.toc-toggle.is-open .toc-chevron { transform: rotate(180deg); }

.toc-dropdown {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 0.75rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.toc-dropdown.is-open { max-height: 600px; }

.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
  padding: 2rem 1.5rem 2rem 0;
}

.legal-sidebar__inner {
  background: var(--surface-white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-xs);
}

.sidebar-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.sidebar-toc, .toc-dropdown {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.toc-link {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  border-left: 2px solid transparent;
  transition: color var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
  line-height: 1.4;
}

.toc-link:hover { color: var(--primary); background: var(--ink-50); }
.toc-link.active { color: var(--primary); background: rgba(30,58,95,0.06); border-left-color: var(--primary); font-weight: 600; }

.legal-content {
  padding: 2.5rem 0 4rem;
}

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

.legal-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.legal-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.legal-intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 1.25rem;
  background: var(--ink-50);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 0;
}

.legal-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--ink-100);
}

.legal-section:last-child { border-bottom: none; }

.legal-section h2 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.legal-section p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-section a { color: var(--primary); text-decoration: underline; }
.legal-section a:hover { color: var(--accent); }


.cookie-table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--ink-100);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.cookie-table th {
  background: var(--ink-50);
  color: var(--ink-700);
  font-weight: 600;
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--ink-100);
  white-space: nowrap;
}

.cookie-table td {
  padding: 0.75rem 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--ink-100);
  vertical-align: top;
  line-height: 1.5;
}

.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:nth-child(even) td { background: rgba(238,238,246,0.3); }


.consent-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,40,64,0.45);
  z-index: 9000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.consent-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.consent-panel {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--surface-white);
  z-index: 9001;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 32px rgba(30,58,95,0.15), -1px 0 8px rgba(30,58,95,0.08);
  transition: right var(--transition-slow);
  overflow-y: auto;
}

.consent-panel.is-visible { right: 0; }

.consent-panel__header {
  padding: 1.5rem 1.25rem 1rem;
  border-bottom: 1px solid var(--ink-100);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.consent-shield {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.consent-panel__header h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.consent-panel__header p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.consent-panel__body { padding: 1.25rem; flex: 1; }

.consent-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--ink-100);
}

.consent-category:last-child { border-bottom: none; }

.consent-category__info strong {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-800);
  margin-bottom: 2px;
}

.consent-category__info span {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

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

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

.consent-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--ink-200);
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--transition-base);
}

.consent-toggle-slider::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition-base);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

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

.consent-panel__footer {
  padding: 1.25rem;
  border-top: 1px solid var(--ink-100);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.consent-btn {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition-fast);
  text-align: center;
}

.consent-btn--accept {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.consent-btn--accept:hover { background: var(--primary-light); border-color: var(--primary-light); }

.consent-btn--reject {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--ink-200);
}
.consent-btn--reject:hover { border-color: var(--ink-400); color: var(--ink-700); }

.consent-links {
  text-align: center;
  margin-top: 0.5rem;
}

.consent-links a {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-decoration: underline;
  margin: 0 0.25rem;
}



@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand { grid-column: 1 / -1; }

  .why-inner { gap: 3rem; }
}

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

  .bridge-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .photo-grid__item--large { grid-column: 1 / 3; grid-row: 1; }
  .photo-grid__item--tall  { grid-column: 1 / 2; grid-row: 2; }
  .photo-grid__item--wide  { grid-column: 2 / 3; grid-row: 2; }
  .photo-grid__item        { grid-column: 1 / 3; grid-row: 3; }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why-img { height: 360px; }

  .content-block--image-right {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar { display: none; }
  .legal-toc-mobile { display: block; }

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

@media (max-width: 680px) {
  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .photo-grid__item--large,
  .photo-grid__item--tall,
  .photo-grid__item--wide,
  .photo-grid__item {
    grid-column: 1;
    grid-row: auto;
  }

  .photo-frame { min-height: 220px; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1; }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  .stage-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }

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

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

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

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

@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr; }
  .shelf--steps { grid-template-columns: 1fr; }
  .shelf--included { grid-template-columns: 1fr; }
}


.spotlight {
  position: relative;
}