:root {
  --ink: #1a1a2e;
  --ink-light: #2d2d4a;
  --accent: #e84c1e;
  --accent-light: #ff6b3d;
  --gold: #c9a84c;
  --paper: #f5f3ee;
  --paper-warm: #ede9e0;
  --muted: #6b6880;
  --white: #fdfcfa;
  --shadow-sm: 0 2px 8px rgba(26,26,46,0.08), 0 1px 3px rgba(26,26,46,0.05);
  --shadow-md: 0 8px 32px rgba(26,26,46,0.12), 0 2px 8px rgba(26,26,46,0.06);
  --shadow-lg: 0 24px 64px rgba(26,26,46,0.18), 0 8px 24px rgba(26,26,46,0.08);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--paper); color: var(--ink); overflow-x: hidden; line-height: 1.6; }
.canvas { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { transition: color 0.2s ease, opacity 0.2s ease; }


.heading-display {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--white);
}
.heading-display em {
  font-style: normal;
  color: var(--accent);
}
.heading-xl {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.heading-lg {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}
.heading-md {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.heading-lg em, .heading-xl em {
  font-style: normal;
  color: var(--accent);
}
.label-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232,76,30,0.1);
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.label-light {
  color: var(--gold);
  background: rgba(201,168,76,0.15);
}


.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 5%; }
.container-narrow { max-width: 840px; margin: 0 auto; padding: 0 5%; }


.nav-stage { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all 0.4s cubic-bezier(0.4,0,0.2,1); }
.nav-full { background: rgba(26,26,46,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 0 5%; border-bottom: 1px solid rgba(245,243,238,0.08); transition: all 0.4s ease; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; max-width: 1400px; margin: 0 auto; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--paper); letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: rgba(245,243,238,0.75); text-decoration: none; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.01em; transition: color 0.2s ease; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--paper); }
.nav-cta { background: var(--accent) !important; color: var(--white) !important; padding: 10px 22px !important; border-radius: var(--radius-sm) !important; font-weight: 600 !important; transition: background 0.2s ease, transform 0.2s ease !important; }
.nav-cta:hover { background: var(--accent-light) !important; transform: translateY(-1px); }
.nav-progress { position: absolute; bottom: 0; left: 0; height: 2px; background: linear-gradient(90deg, var(--accent), var(--gold)); width: 0%; transition: width 0.1s linear; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--paper); min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.nav-hamburger svg { width: 24px; height: 24px; }
.drawer { display: none; background: var(--ink); overflow: hidden; max-height: 0; transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1); }
.drawer.open { max-height: 400px; }
.drawer-links { padding: 16px 5% 24px; list-style: none; display: flex; flex-direction: column; gap: 4px; }
.drawer-links a { display: block; color: rgba(245,243,238,0.8); text-decoration: none; font-size: 1rem; font-weight: 500; padding: 12px 0; border-bottom: 1px solid rgba(245,243,238,0.06); transition: color 0.2s ease; min-height: 44px; display: flex; align-items: center; }
.drawer-links a:hover { color: var(--paper); }
.nav-pill { display: none; position: fixed; top: 20px; right: 20px; z-index: 1001; background: var(--accent); border-radius: 50px; padding: 10px 16px; box-shadow: var(--shadow-md); cursor: pointer; align-items: center; gap: 8px; border: none; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); }
.nav-pill:hover { background: var(--accent-light); transform: scale(1.04); }
.nav-pill svg { width: 18px; height: 18px; color: var(--white); }
.nav-pill-text { font-size: 0.75rem; font-weight: 600; color: var(--white); font-family: 'Space Grotesk', sans-serif; letter-spacing: 0.05em; }


.stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
  padding: 120px 5% 80px;
}
.stage-bg-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 40%, #2d1a0e 100%);
  z-index: 0;
}
.stage-bg-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("../images/magazzino-organizzato-scaffali.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.stage-mid-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.stage-word {
  position: absolute;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(8rem, 18vw, 22rem);
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,243,238,0.04);
  line-height: 1;
  user-select: none;
}
.stage-word-1 { top: -2%; left: -2%; }
.stage-word-2 { bottom: -5%; right: -2%; }
.stage-curtain {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--paper), transparent);
  z-index: 2;
}
.stage-glass-card {
  position: relative;
  z-index: 3;
  background: rgba(253,252,250,0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(253,252,250,0.12);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 5vw, 5rem);
  max-width: 860px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
}
.stage-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.stage-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.stage-headline em {
  font-style: normal;
  color: var(--accent);
}
.stage-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(253,252,250,0.72);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.stage-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(232,76,30,0.3), 0 1px 4px rgba(232,76,30,0.2);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,76,30,0.4); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(253,252,250,0.8);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid rgba(253,252,250,0.2);
  transition: all 0.2s ease;
}
.btn-ghost:hover { background: rgba(253,252,250,0.08); color: var(--white); border-color: rgba(253,252,250,0.4); }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(253,252,250,0.85);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  border: 1px solid rgba(253,252,250,0.3);
  transition: all 0.2s ease;
}
.btn-ghost-white:hover { background: rgba(253,252,250,0.1); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }


.section-intro { padding: clamp(4rem,8vw,8rem) 0; background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5%; align-items: start; }
.intro-question { }
.intro-body { padding-top: 0.5rem; }
.intro-body p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; font-size: 1.05rem; }
.intro-body p:last-child { margin-bottom: 0; }

.section-services { padding: clamp(4rem,8vw,8rem) 0; background: var(--ink); }
.section-header { margin-bottom: clamp(2.5rem,5vw,4rem); }
.section-header .heading-display, .section-header .heading-lg { color: var(--white); }
.shelf { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card.spotlight {
  background: rgba(253,252,250,0.04);
  border: 1px solid rgba(253,252,250,0.1);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.service-card.spotlight:hover {
  background: rgba(253,252,250,0.08);
  border-color: rgba(232,76,30,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.service-card-featured {
  border-color: rgba(232,76,30,0.25) !important;
  background: rgba(232,76,30,0.06) !important;
}
.service-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(232,76,30,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  color: var(--accent);
  transition: background 0.2s ease;
}
.service-card:hover .service-card-icon { background: rgba(232,76,30,0.25); }
.service-card-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.1rem; color: var(--white); margin-bottom: 0.75rem; line-height: 1.3; }
.service-card-preview { color: rgba(253,252,250,0.6); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
.service-card-detail { color: rgba(253,252,250,0.65); font-size: 0.875rem; line-height: 1.7; display: none; margin-bottom: 1rem; border-top: 1px solid rgba(253,252,250,0.08); padding-top: 1rem; }
.service-card-detail.open { display: block; }
.service-toggle {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
  font-family: 'Inter', sans-serif;
}
.service-toggle:hover { color: var(--accent-light); }
.service-toggle .fa-chevron-down { transition: transform 0.3s ease; font-size: 0.7rem; }
.service-toggle.open .fa-chevron-down { transform: rotate(180deg); }

.section-image-break { padding: clamp(3rem,6vw,6rem) 0; background: var(--paper-warm); overflow: hidden; }
.image-break-grid { display: grid; grid-template-columns: 1fr 1fr; max-width: 1320px; margin: 0 auto; padding: 0 5%; gap: 5%; align-items: center; }
.image-break-main img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.image-break-side { display: flex; flex-direction: column; gap: 2rem; }
.image-break-text { }
.image-break-text .heading-lg { color: var(--ink); margin-bottom: 1.25rem; }
.image-break-text p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.image-break-img-sm img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }

.section-why { padding: clamp(4rem,8vw,8rem) 0; background: var(--white); }
.gallery.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.why-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid rgba(26,26,46,0.06);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(232,76,30,0.15); }
.why-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(232,76,30,0.12), rgba(232,76,30,0.06));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.why-card h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1rem; color: var(--ink); margin-bottom: 0.75rem; line-height: 1.3; }
.why-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

.section-process { padding: clamp(4rem,8vw,8rem) 0; background: var(--paper); }
.process-steps { display: flex; flex-direction: column; gap: 4rem; margin-top: 3rem; }
.process-step { display: grid; grid-template-columns: 80px 1fr 1fr; gap: 3rem; align-items: center; }
.process-step-reverse { grid-template-columns: 80px 1fr 1fr; }
.process-step-reverse .process-img { order: -1; grid-column: 2; }
.process-step-reverse .process-num { grid-column: 1; }
.process-step-reverse .process-content { grid-column: 3; }
.process-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  color: rgba(232,76,30,0.15);
  line-height: 1;
  letter-spacing: -0.04em;
}
.process-content h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.3rem; color: var(--ink); margin-bottom: 0.75rem; }
.process-content p { color: var(--muted); line-height: 1.8; font-size: 0.95rem; }
.process-img img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }

.section-cta-band { padding: clamp(4rem,7vw,7rem) 0; background: linear-gradient(135deg, var(--ink) 0%, var(--ink-light) 100%); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.cta-band-text h2 { margin-bottom: 0.75rem; }
.cta-band-text p { max-width: 520px; }
.cta-band-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

.section-gallery-strip { padding: clamp(3rem,6vw,6rem) 0; background: var(--paper-warm); }
.gallery-strip-header { margin-bottom: 2.5rem; }
.gallery-strip-header .heading-lg { color: var(--ink); margin-top: 0.5rem; }
.gallery-strip-images { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 0 5%; max-width: 1320px; margin: 0 auto; }
.gallery-strip-item { position: relative; overflow: hidden; border-radius: var(--radius-md); }
.gallery-strip-item img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.4s ease; }
.gallery-strip-item:hover img { transform: scale(1.05); }
.gallery-strip-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(26,26,46,0.85), transparent);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
}

.section-faq { padding: clamp(4rem,8vw,8rem) 0; background: var(--white); }
.section-faq .section-header { margin-bottom: 3rem; }
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(26,26,46,0.08); }
.faq-item { border-bottom: 1px solid rgba(26,26,46,0.08); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  text-align: left;
  transition: color 0.2s ease;
  min-height: 44px;
}
.faq-question:hover { color: var(--accent); }
.faq-icon { color: var(--accent); font-size: 0.875rem; transition: transform 0.3s ease; flex-shrink: 0; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 0 1.5rem; }
.faq-answer.open { display: block; }
.faq-answer p { color: var(--muted); line-height: 1.8; font-size: 0.95rem; }


.mega-footer { background: var(--ink); margin-top: auto; }
.footer-newsletter { background: rgba(253,252,250,0.04); border-bottom: 1px solid rgba(253,252,250,0.08); padding: 2.5rem 0; }
.newsletter-row { display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.newsletter-text h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.1rem; color: var(--white); margin-bottom: 0.25rem; }
.newsletter-text p { color: rgba(253,252,250,0.55); font-size: 0.875rem; }
.newsletter-form { display: flex; gap: 8px; flex-shrink: 0; }
.newsletter-input { background: rgba(253,252,250,0.08); border: 1px solid rgba(253,252,250,0.15); color: var(--white); padding: 10px 16px; border-radius: var(--radius-sm); font-size: 0.875rem; font-family: 'Inter', sans-serif; width: 260px; transition: border-color 0.2s ease; }
.newsletter-input::placeholder { color: rgba(253,252,250,0.35); }
.newsletter-input:focus { outline: none; border-color: var(--accent); }
.newsletter-btn { background: var(--accent); color: var(--white); border: none; padding: 10px 20px; border-radius: var(--radius-sm); font-size: 0.875rem; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif; transition: background 0.2s ease; white-space: nowrap; }
.newsletter-btn:hover { background: var(--accent-light); }
.footer-body { padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-logo { height: 36px; width: auto; margin-bottom: 1rem; }
.footer-desc { color: rgba(253,252,250,0.5); font-size: 0.875rem; line-height: 1.7; margin-bottom: 0.75rem; }
.footer-tagline { color: var(--gold); font-size: 0.8rem; font-weight: 500; font-style: italic; }
.footer-col-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(253,252,250,0.4); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(253,252,250,0.6); text-decoration: none; font-size: 0.875rem; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--white); }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; color: rgba(253,252,250,0.6); font-size: 0.875rem; line-height: 1.5; }
.footer-contact i { color: var(--accent); margin-top: 2px; flex-shrink: 0; width: 16px; }
.footer-contact a { color: rgba(253,252,250,0.6); text-decoration: none; transition: color 0.2s ease; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(253,252,250,0.08); padding: 1.5rem 0; }
.footer-bottom-row { display: flex; flex-direction: column; gap: 6px; }
.footer-legal-text { color: rgba(253,252,250,0.35); font-size: 0.75rem; line-height: 1.6; }
.footer-legal-sub { color: rgba(253,252,250,0.25); font-size: 0.7rem; }


.page-hero { padding: clamp(4rem,8vw,8rem) 0 clamp(3rem,5vw,5rem); }
.page-hero-dark { background: var(--ink); }
.page-hero-light { background: var(--white); }
.page-hero-content { max-width: 760px; }
.page-hero .heading-display { margin-bottom: 1.25rem; }
.page-hero-sub { font-size: clamp(0.95rem, 1.5vw, 1.1rem); line-height: 1.7; max-width: 580px; }
.page-hero-dark .page-hero-sub { color: rgba(253,252,250,0.65); }


.section-detail { padding: clamp(4rem,8vw,8rem) 0; background: var(--paper); }
.detail-intro { max-width: 760px; margin-bottom: 4rem; }
.detail-intro h2 { color: var(--ink); margin-bottom: 1rem; }
.detail-intro p { color: var(--muted); line-height: 1.8; font-size: 1.05rem; }
.detail-phases { display: flex; flex-direction: column; gap: 5rem; }
.detail-phase { }
.detail-phase-alt { }
.phase-header { margin-bottom: 2rem; }
.phase-num { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.phase-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(1.4rem,2.5vw,2rem); color: var(--ink); margin-top: 0.5rem; letter-spacing: -0.02em; }
.phase-body { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.phase-text p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.phase-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 1.25rem; }
.phase-list li { display: flex; align-items: center; gap: 10px; color: var(--ink); font-size: 0.875rem; font-weight: 500; }
.phase-list li i { color: var(--accent); font-size: 0.8rem; }
.phase-img img { width: 100%; height: 320px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }


.section-pricing-explain { padding: clamp(4rem,8vw,8rem) 0; background: var(--white); }
.pricing-intro { max-width: 760px; margin-bottom: 3.5rem; }
.pricing-intro h2 { color: var(--ink); margin-bottom: 1rem; }
.pricing-intro p { color: var(--muted); line-height: 1.8; font-size: 1.05rem; }
.pricing-factors { display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(26,26,46,0.08); }
.pricing-factor { display: flex; gap: 2rem; align-items: flex-start; padding: 2rem 0; border-bottom: 1px solid rgba(26,26,46,0.08); }
.pricing-factor-icon { width: 52px; height: 52px; background: linear-gradient(135deg, rgba(232,76,30,0.1), rgba(232,76,30,0.05)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--accent); flex-shrink: 0; }
.pricing-factor-content h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.05rem; color: var(--ink); margin-bottom: 0.5rem; }
.pricing-factor-content p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
.section-included { padding: clamp(3rem,6vw,6rem) 0; background: var(--paper); }
.included-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.included-text .heading-lg { color: var(--ink); margin-bottom: 1.25rem; }
.included-text p { color: var(--muted); line-height: 1.8; font-size: 0.95rem; }
.included-list { display: flex; flex-direction: column; gap: 0; }
.included-item { display: flex; gap: 1.25rem; align-items: flex-start; padding: 1.25rem 0; border-bottom: 1px solid rgba(26,26,46,0.06); }
.included-item:first-child { border-top: 1px solid rgba(26,26,46,0.06); }
.included-item i { color: var(--accent); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.included-item strong { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.95rem; color: var(--ink); margin-bottom: 2px; }
.included-item span { color: var(--muted); font-size: 0.875rem; line-height: 1.5; }
.section-transparency-note { padding: clamp(3rem,6vw,6rem) 0; background: var(--white); }
.transparency-box { background: linear-gradient(135deg, var(--ink), var(--ink-light)); border-radius: var(--radius-lg); padding: 3rem; text-align: center; box-shadow: var(--shadow-lg); }
.transparency-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 1.5rem; }
.transparency-box h2 { color: var(--white); margin-bottom: 1.25rem; }
.transparency-box p { color: rgba(253,252,250,0.65); line-height: 1.8; max-width: 600px; margin: 0 auto 1rem; font-size: 0.95rem; }


.section-waste-intro { padding: clamp(4rem,8vw,8rem) 0; background: var(--white); }
.waste-intro { max-width: 760px; margin-bottom: 3.5rem; }
.waste-intro h2 { color: var(--ink); margin-bottom: 1rem; }
.waste-intro p { color: var(--muted); line-height: 1.8; font-size: 1.05rem; }
.waste-categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.waste-cat { background: var(--paper); border-radius: var(--radius-md); padding: 2rem; border: 1px solid rgba(26,26,46,0.06); transition: all 0.3s ease; box-shadow: var(--shadow-sm); }
.waste-cat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.waste-cat-icon { width: 52px; height: 52px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 1.25rem; }
.waste-cat h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1rem; color: var(--ink); margin-bottom: 0.75rem; }
.waste-cat p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; }
.section-waste-process { padding: clamp(3rem,6vw,6rem) 0; background: var(--paper); }
.waste-process-steps { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; border-top: 1px solid rgba(26,26,46,0.08); }
.waste-step { display: flex; gap: 2rem; align-items: flex-start; padding: 2rem 0; border-bottom: 1px solid rgba(26,26,46,0.08); }
.waste-step-num { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--accent); min-width: 40px; }
.waste-step-text h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1.05rem; color: var(--ink); margin-bottom: 0.5rem; }
.waste-step-text p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }


.section-contact-main { padding: clamp(3rem,6vw,6rem) 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.contact-form-col h2 { color: var(--ink); margin-bottom: 0.5rem; }
.contact-form-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; line-height: 1.6; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--ink); margin-bottom: 0.5rem; }
.form-input, .form-textarea {
  width: 100%;
  background: var(--paper);
  border: 1.5px solid rgba(26,26,46,0.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 44px;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,76,30,0.08);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-privacy { display: flex; align-items: flex-start; gap: 12px; }
.privacy-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.privacy-checkbox { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; cursor: pointer; accent-color: var(--accent); }
.privacy-label a { color: var(--accent); }
.contact-info-col { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-card { background: var(--paper); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(26,26,46,0.06); }
.contact-info-card h2 { color: var(--ink); margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 1.25rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail-icon { width: 40px; height: 40px; background: rgba(232,76,30,0.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; font-size: 0.9rem; }
.contact-detail strong { display: block; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.875rem; color: var(--ink); margin-bottom: 4px; }
.contact-detail p, .contact-detail a { color: var(--muted); font-size: 0.875rem; line-height: 1.5; text-decoration: none; }
.contact-detail a:hover { color: var(--accent); }
.contact-area-card { background: var(--ink); border-radius: var(--radius-md); padding: 1.75rem; }
.contact-area-card h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1rem; color: var(--white); margin-bottom: 0.75rem; }
.contact-area-card p { color: rgba(253,252,250,0.6); font-size: 0.875rem; line-height: 1.7; }
.section-map { padding: 0 0 clamp(3rem,6vw,6rem); background: var(--white); }
.section-map h2 { color: var(--ink); }
.map-container { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.section-accessibility { padding: clamp(3rem,5vw,5rem) 0; background: var(--paper); }
.accessibility-card { display: flex; gap: 2rem; align-items: flex-start; background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(26,26,46,0.06); }
.accessibility-icon { width: 56px; height: 56px; background: rgba(201,168,76,0.12); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--gold); flex-shrink: 0; }
.accessibility-content h2 { color: var(--ink); margin-bottom: 1rem; }
.accessibility-content p { color: var(--muted); line-height: 1.8; font-size: 0.95rem; }


.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: 4rem; max-width: 1100px; margin: 0 auto; padding: 4rem 5%; }
.legal-sidebar { position: sticky; top: 100px; height: fit-content; }
.legal-nav-title { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.legal-nav-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.legal-nav-list li a, .legal-nav-list a { color: var(--muted); text-decoration: none; font-size: 0.85rem; padding: 6px 0; display: block; transition: color 0.2s ease; border-left: 2px solid transparent; padding-left: 12px; }
.legal-nav-list li a:hover, .legal-nav-list a:hover { color: var(--accent); border-left-color: var(--accent); }
.legal-header { margin-bottom: 3rem; }
.legal-header .heading-lg { color: var(--ink); margin-bottom: 0.5rem; }
.legal-date { color: var(--muted); font-size: 0.85rem; margin-bottom: 1.25rem; }
.legal-header p { color: var(--muted); line-height: 1.8; font-size: 0.95rem; }
.legal-section { margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(26,26,46,0.08); }
.legal-section:last-child { border-bottom: none; }
.legal-section h2 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--ink);
margin-bottom: 1rem; }
.legal-section h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1rem; color: var(--ink); margin-bottom: 0.75rem; margin-top: 1.5rem; }
.legal-section p { color: var(--muted); line-height: 1.8; font-size: 0.9rem; margin-bottom: 1rem; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul, .legal-section ol { color: var(--muted); font-size: 0.9rem; line-height: 1.8; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-section ul li, .legal-section ol li { margin-bottom: 0.4rem; }
.legal-section a { color: var(--accent); }
.legal-box { background: var(--paper); border-radius: var(--radius-sm); padding: 1.5rem; border-left: 3px solid var(--accent); margin: 1rem 0; }
.legal-box p { color: var(--ink); font-size: 0.875rem; line-height: 1.8; margin: 0; }


.cookie-table-wrap { overflow-x: auto; margin: 1.25rem 0; }
.cookie-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.cookie-table th { background: var(--ink); color: var(--white); padding: 10px 16px; text-align: left; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.05em; }
.cookie-table td { padding: 10px 16px; border-bottom: 1px solid rgba(26,26,46,0.08); color: var(--muted); vertical-align: top; }
.cookie-table tr:nth-child(even) td { background: var(--paper); }


#cookie-bar { background: var(--ink); color: var(--paper); padding: 10px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 0.78rem; line-height: 1.4; flex-wrap: wrap; transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease; position: fixed; bottom: 0; width: 100%; z-index: 123; }
#cookie-bar.hidden { max-height: 0; padding: 0; overflow: hidden; opacity: 0; pointer-events: none; }
#cookie-bar a { color: var(--gold); text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn { padding: 6px 14px; border: none; border-radius: 4px; font-size: 0.76rem; font-family: 'Inter', sans-serif; cursor: pointer; transition: all 0.2s ease; font-weight: 500; min-height: 32px; }
.cookie-btn-accept { background: var(--accent); color: var(--white); }
.cookie-btn-accept:hover { background: var(--accent-light); }
.cookie-btn-reject { background: transparent; color: var(--paper); border: 1px solid rgba(245,243,238,0.3); }
.cookie-btn-reject:hover { background: rgba(245,243,238,0.1); }


@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .process-step, .process-step-reverse { grid-template-columns: 60px 1fr; gap: 1.5rem; }
  .process-step .process-img, .process-step-reverse .process-img { display: none; }
  .process-step-reverse .process-num { grid-column: 1; }
  .process-step-reverse .process-content { grid-column: 2; }
  .included-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .image-break-grid { grid-template-columns: 1fr; gap: 3rem; }
  .image-break-main img { height: 320px; }
  .image-break-img-sm { display: none; }
  .gallery-strip-images { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .phase-body { grid-template-columns: 1fr; gap: 2rem; }
  .phase-img { display: none; }
  .legal-layout { grid-template-columns: 1fr; gap: 2rem; }
  .legal-sidebar { position: static; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-row { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .newsletter-input { width: 100%; }
  .newsletter-form { width: 100%; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .drawer { display: block; }
  .shelf { grid-template-columns: 1fr; }
  .gallery.why-grid { grid-template-columns: 1fr; }
  .waste-categories { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stage-word { display: none; }
  .stage-glass-card { padding: 2rem 1.5rem; }
  .stage-actions { flex-direction: column; align-items: center; }
  .cta-band-actions { flex-direction: column; width: 100%; }
  .cta-band-actions a { text-align: center; justify-content: center; }
  .gallery-strip-images { grid-template-columns: repeat(2, 1fr); }
  .pricing-factor { flex-direction: column; gap: 1rem; }
  .accessibility-card { flex-direction: column; gap: 1.5rem; }
}

@media (max-width: 480px) {
  .gallery-strip-images { grid-template-columns: 1fr; }
  .process-step, .process-step-reverse { grid-template-columns: 1fr; }
  .process-num { font-size: 2.5rem; }
  .newsletter-form { flex-direction: column; }
  .stage-glass-card { border-radius: var(--radius-lg); }
  .contact-info-card { padding: 1.75rem; }
  .transparency-box { padding: 2rem 1.5rem; }
  .footer-bottom-row { gap: 8px; }
}


.nav-pill { display: none; }
.nav-pill.visible { display: flex; }


[data-aos] { transition-property: transform, opacity; }