
/* === Cinematic Single-Page — Paradigm E === */
:root {
  --void: #000;
  --void-soft: #0a0a0a;
  --char: #1a1a1a;
  --grey-1: #888;
  --grey-2: #444;
  --paper: #fafafa;
  --amber: #ffaa00;
  --amber-soft: #ff8800;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-snap-type: y proximity; background: var(--void); }
body {
  background: var(--void);
  color: var(--paper);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }

/* NAV — glass-blur sticky */
.nav-cine {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 56px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-cine .brand {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.nav-cine .brand span { color: var(--amber); }
.nav-cine ul {
  list-style: none;
  display: flex;
  gap: 36px;
}
.nav-cine ul a {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--grey-1);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-cine ul a:hover, .nav-cine ul a.active { color: var(--paper); }
.nav-cta-cine {
  background: var(--amber);
  color: var(--void);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.2s;
}
.nav-cta-cine:hover { background: var(--paper); transform: translateY(-1px); }

/* SCROLL PROGRESS */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--amber);
  z-index: 200;
  width: 0;
  transition: width 0.05s linear;
}

/* SECTION — fullscreen scroll-snap */
.section-cine {
  min-height: 100vh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 80px 56px;
  overflow: hidden;
}
.section-cine.with-bg::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 0;
}

/* HERO */
.hero-cine {
  background: var(--void);
}
.hero-cine .bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?w=1800&q=85');
  background-size: cover;
  background-position: center;
  filter: brightness(0.6) contrast(1.05);
  animation: cine-zoom 18s ease-out infinite alternate;
}
@keyframes cine-zoom {
  from { transform: scale(1.0); }
  to { transform: scale(1.08); }
}
.hero-cine .grad {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.85) 100%),
    radial-gradient(ellipse at 30% 60%, rgba(255,170,0,0.18), transparent 60%);
}
.hero-cine .content {
  position: relative; z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-cine .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  border: 1px solid rgba(255,170,0,0.4);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 32px;
  background: rgba(255,170,0,0.05);
  backdrop-filter: blur(10px);
}
.hero-cine .eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--amber);
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-cine h1 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  background: linear-gradient(180deg, var(--paper) 0%, #e0e0e0 70%, var(--grey-1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-cine h1 span.amber {
  -webkit-text-fill-color: initial;
  background: none;
  color: var(--amber);
}
.hero-cine .sub {
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.5;
}
.hero-cine .cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-cine {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-cine.primary {
  background: var(--amber);
  color: var(--void);
}
.btn-cine.primary:hover {
  background: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255,170,0,0.25);
}
.btn-cine.ghost {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--paper);
}
.btn-cine.ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--paper);
}
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%; transform: translateX(-50%);
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-1);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.scroll-cue::after {
  content: '';
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scroll-pulse 2s ease infinite;
}
@keyframes scroll-pulse { 0%,100% { opacity: 0.3; height: 32px; } 50% { opacity: 1; height: 48px; } }

/* STATS — fullscreen */
.stats-cine {
  background: var(--void-soft);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: stretch;
}
.stats-cine .stat {
  padding: 100px 40px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.04);
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.stats-cine .stat:last-child { border-right: 0; }
.stats-cine .stat::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,170,0,0.06), transparent 70%);
  z-index: 0;
}
.stats-cine .num {
  position: relative;
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(5rem, 9vw, 9rem);
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, var(--amber), var(--amber-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.stats-cine .label {
  position: relative;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-1);
}

/* WORKSHOP STAGE — sticky photo + scrolling text */
.workshop-stage {
  position: relative;
  background: var(--void);
}
.workshop-card-cine {
  min-height: 100vh;
  scroll-snap-align: start;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.workshop-card-cine.flip { grid-template-columns: 1fr 1fr; }
.workshop-card-cine .photo {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.workshop-card-cine .photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.7) contrast(1.05);
  transition: transform 5s ease;
}
.workshop-card-cine:hover .photo img { transform: scale(1.05); }
.workshop-card-cine .photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 50%, var(--void) 100%);
}
.workshop-card-cine.flip .photo { order: 2; }
.workshop-card-cine.flip .photo::after {
  background: linear-gradient(270deg, transparent 50%, var(--void) 100%);
}
.workshop-card-cine .text {
  padding: 60px 80px;
  z-index: 2;
}
.workshop-card-cine .num-big {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  line-height: 1;
  color: rgba(255,170,0,0.18);
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.workshop-card-cine .kicker {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid rgba(255,170,0,0.3);
  border-radius: 999px;
}
.workshop-card-cine h3 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.workshop-card-cine .lede {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 18px;
  line-height: 1.5;
}
.workshop-card-cine p {
  font-size: 1rem;
  color: var(--grey-1);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}
.workshop-card-cine .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.workshop-card-cine .meta-item {
  flex: 1;
  min-width: 140px;
  padding: 18px 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.workshop-card-cine .meta-item:last-child { border-right: 0; }
.workshop-card-cine .meta-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-2);
  margin-bottom: 4px;
}
.workshop-card-cine .meta-val {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--paper);
}
.workshop-card-cine .meta-val.amber { color: var(--amber); }

/* QUOTE BREAK — fullscreen */
.quote-cine {
  background: var(--void);
  position: relative;
  text-align: center;
  padding: 0;
}
.quote-cine .bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1800&q=85');
  background-size: cover;
  background-position: center;
  filter: brightness(0.4) contrast(1.1) saturate(0.8);
}
.quote-cine .content {
  position: relative; z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 40px;
}
.quote-cine blockquote {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 200;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.quote-cine blockquote em { color: var(--amber); font-style: normal; font-weight: 400; }
.quote-cine cite {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--grey-1);
}

/* SHOP — product-grid Apple-style */
.shop-cine {
  background: var(--void-soft);
}
.shop-cine .container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.shop-cine .header {
  text-align: center;
  margin-bottom: 80px;
}
.shop-cine .header .label {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.shop-cine .header h2 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.03em;
}
.shop-cine .header h2 em { color: var(--amber); font-style: normal; }
.shop-grid-cine {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.shop-card-cine {
  background: linear-gradient(160deg, var(--char) 0%, var(--void) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}
.shop-card-cine:hover {
  border-color: rgba(255,170,0,0.35);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.shop-card-cine::before {
  content: '';
  position: absolute; top: -50%; right: -50%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,170,0,0.1), transparent 70%);
  z-index: 0;
}
.shop-card-cine .num-tiny {
  position: relative;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.shop-card-cine h4 {
  position: relative;
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.shop-card-cine p {
  position: relative;
  font-size: 0.95rem;
  color: var(--grey-1);
  line-height: 1.55;
  margin-bottom: 28px;
  min-height: 80px;
}
.shop-card-cine .price-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
}
.shop-card-cine .price {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--amber);
}
.shop-card-cine .weight {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-2);
}

/* CTA section — fullscreen */
.cta-cine {
  background: var(--void);
  text-align: center;
  position: relative;
}
.cta-cine .bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1606728035253-49e8a23146de?w=1800&q=85');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}
.cta-cine .content {
  position: relative; z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}
.cta-cine .label {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}
.cta-cine h2 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.cta-cine h2 em { color: var(--amber); font-style: normal; }
.cta-cine p {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
  line-height: 1.55;
}

/* FOOTER */
footer.cine-foot {
  background: var(--void);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 56px 56px 24px;
  font-size: 0.85rem;
  color: var(--grey-1);
}
footer.cine-foot .grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
footer.cine-foot h5 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
footer.cine-foot a { color: var(--grey-1); }
footer.cine-foot a:hover { color: var(--paper); }
footer.cine-foot .bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--grey-2);
}

/* PAGE INNER (workshops, catering, contact) */
.page-cine {
  padding: 120px 56px 80px;
  background: var(--void);
  min-height: 100vh;
}
.page-cine h1 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.page-cine h1 em { color: var(--amber); font-style: normal; }
.page-cine .dek {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.7);
  max-width: 720px;
  margin-bottom: 56px;
  line-height: 1.55;
}

/* Catering grid */
.cater-grid-cine {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}
.cater-card-cine {
  background: linear-gradient(160deg, var(--char), var(--void));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 36px;
}
.cater-card-cine h3 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.cater-card-cine .meta {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-1);
  margin-bottom: 24px;
}
.cater-card-cine .price {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--amber);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
}
.cater-includes-cine {
  background: var(--void-soft);
  border-radius: 18px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}
.cater-includes-cine h4 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}
.cater-includes-cine ul { list-style: none; }
.cater-includes-cine li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; gap: 14px; align-items: center;
  color: rgba(255,255,255,0.78);
}
.cater-includes-cine li::before {
  content: '+'; color: var(--amber);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
}

/* Contact form */
.contact-cine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-cine .info dl { margin-top: 24px; }
.contact-cine .info dt {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 18px;
}
.contact-cine .info dd { font-size: 1.15rem; color: var(--paper); }
.contact-cine form {
  background: linear-gradient(160deg, var(--char), var(--void));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 36px;
}
.contact-cine label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-1);
  margin: 14px 0 6px;
}
.contact-cine input, .contact-cine textarea, .contact-cine select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--paper);
  font-family: inherit;
  font-size: 0.98rem;
  outline: none;
  transition: border-color 0.2s;
}
.contact-cine input:focus, .contact-cine textarea:focus, .contact-cine select:focus { border-color: var(--amber); }
.contact-cine select option { background: var(--void); }
.contact-cine textarea { min-height: 120px; resize: vertical; }
.contact-cine button {
  margin-top: 22px;
  background: var(--amber);
  color: var(--void);
  border: 0;
  border-radius: 999px;
  padding: 16px 32px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s;
}
.contact-cine button:hover { background: var(--paper); transform: translateY(-2px); }

@media (max-width: 900px) {
  .nav-cine { padding: 14px 20px; }
  .nav-cine ul { display: none; }
  .section-cine, .page-cine { padding-left: 20px; padding-right: 20px; }
  .stats-cine { grid-template-columns: 1fr; }
  .stats-cine .stat { padding: 60px 20px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .workshop-card-cine { grid-template-columns: 1fr; min-height: auto; }
  .workshop-card-cine .photo { height: 60vh; order: 0 !important; }
  .workshop-card-cine .text { padding: 50px 20px; }
  .shop-grid-cine, .cater-grid-cine { grid-template-columns: 1fr; }
  .cater-includes-cine, .contact-cine { grid-template-columns: 1fr; gap: 24px; }
  footer.cine-foot { padding: 40px 20px 20px; }
  footer.cine-foot .grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
