/*
  pointedcopywriter.com -- style.css
  Theme: Poppy Red #C9240F + Dark Charcoal #1A1614 + Ivory #FDFAF5
  Nav: SPLIT CENTERED LOGO (left links | center logo | right links+CTA) - unique in series
  Hero: DIAGONAL SPLIT (ivory left / image right with CSS clip-path diagonal)
  Packages: PRIMA / SECONDA / TERZA (Italian-named packages, first in series)
  Fonts: Cormorant Garamond (heading, editorial elegance) + Mulish (body)
  CSS prefix: pc-
  Multilingual: EN + IT (Italian)
*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,700&family=Mulish:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&display=swap');

/* ======================== TOKENS ======================== */
:root {
  --pc-red:    #C9240F;
  --pc-red2:   #A51E0C;
  --pc-redlt:  rgba(201,36,15,.08);
  --pc-redbd:  rgba(201,36,15,.2);
  --pc-redmid: rgba(201,36,15,.45);
  --pc-char:   #1A1614;
  --pc-coal:   #2C2824;
  --pc-steel:  #504640;
  --pc-muted:  #837568;
  --pc-dim:    #B5A898;
  --pc-ivory:  #FDFAF5;
  --pc-cream:  #F6F1E8;
  --pc-warm:   #EDE6D8;
  --pc-paper:  #E8E1D4;
  --pc-edge:   #DDD6C8;
  --pc-edge2:  #EAE4D8;

  --pc-max:  1100px;
  --pc-r:    4px;
  --pc-r2:   10px;
  --pc-r3:   18px;
  --pc-r4:   28px;
  --pc-nav:  72px;

  --pc-fh: 'Cormorant Garamond', 'Georgia', serif;
  --pc-fb: 'Mulish', system-ui, -apple-system, sans-serif;

  --pc-ease: all 0.22s cubic-bezier(.4,0,.2,1);
  --pc-sh1:  0 1px 6px rgba(26,22,20,.05);
  --pc-sh2:  0 4px 24px rgba(26,22,20,.10);
  --pc-sh3:  0 16px 56px rgba(26,22,20,.18);
}

/* ======================== RESET ======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--pc-ivory);
  color: var(--pc-char);
  font-family: var(--pc-fb);
  font-size: 1rem;
  line-height: 1.74;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
address { font-style: normal; }

/* ======================== TYPOGRAPHY ======================== */
h1 { font-family: var(--pc-fh); font-size: clamp(3.2rem, 6vw, 7.5rem); font-weight: 700; line-height: .9; letter-spacing: -.02em; }
h2 { font-family: var(--pc-fh); font-size: clamp(2rem, 3.5vw, 4rem); font-weight: 700; line-height: 1.0; letter-spacing: -.01em; }
h3 { font-family: var(--pc-fh); font-size: 1.3rem; font-weight: 700; }
p  { font-size: .9rem; line-height: 1.88; color: var(--pc-steel); }

/* ======================== SPLIT-CENTERED NAV (UNIQUE) ======================== */
/* Logo in center, links split left and right */
.pc-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900; height: var(--pc-nav);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 2.5rem;
  background: transparent;
  transition: background .25s, box-shadow .25s;
}
.pc-nav.pc-nav-solid {
  background: rgba(253,250,245,.96);
  box-shadow: 0 1px 20px rgba(26,22,20,.06);
  backdrop-filter: blur(10px);
}
/* Left nav links */
.pc-nav-left { display: flex; align-items: center; gap: 0; justify-content: flex-start; }
/* Centered logo */
.pc-nav-logo {
  font-family: var(--pc-fh); font-size: 1.05rem; font-weight: 700;
  color: var(--pc-char); white-space: nowrap;
  padding: 0 1.5rem; line-height: 1;
}
.pc-nav-logo em { color: var(--pc-red); font-style: italic; }
/* Right nav links + lang + CTA */
.pc-nav-right { display: flex; align-items: center; gap: 0; justify-content: flex-end; }

.pc-nav-lk {
  font-family: var(--pc-fb); font-size: .92rem; font-weight: 600;
  color: var(--pc-muted); padding: .28rem .72rem;
  border-radius: var(--pc-r); transition: color .14s;
  white-space: nowrap;
}
.pc-nav-lk:hover, .pc-nav-lk.pc-on { color: var(--pc-char); }

/* Lang switcher */
.pc-lang-sw { display: flex; align-items: center; gap: .18rem; margin: 0 .5rem; padding: .18rem; }
.pc-lang-opt {
  font-family: var(--pc-fb); font-size: .64rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--pc-dim); padding: .14rem .34rem; border-radius: 4px; cursor: pointer;
  transition: color .14s, background .14s;
}
.pc-lang-opt.pc-lang-on { color: var(--pc-red); background: var(--pc-redlt); }
.pc-lang-div { width: 1px; height: 10px; background: var(--pc-edge); }

/* CTA button */
.pc-nav-cta {
  font-family: var(--pc-fb); font-size: .82rem; font-weight: 700;
  color: var(--pc-ivory); background: var(--pc-char);
  padding: .4rem 1.1rem; border-radius: var(--pc-r); margin-left: .5rem;
  transition: background .15s; white-space: nowrap;
}
.pc-nav-cta:hover { background: var(--pc-red); }

/* Burger (mobile) */
.pc-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; width: 36px; height: 36px; justify-content: center; align-items: center; flex-shrink: 0; }
.pc-burger span { width: 20px; height: 1.5px; background: var(--pc-char); display: block; border-radius: 2px; transition: transform .22s, opacity .2s; }
.pc-burger.pc-bx span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.pc-burger.pc-bx span:nth-child(2) { opacity: 0; }
.pc-burger.pc-bx span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
/* Fullscreen mobile overlay */
.pc-overlay { position: fixed; inset: 0; background: var(--pc-char); z-index: 850; transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1); }
.pc-overlay.pc-ov-on { transform: translateX(0); }
.pc-overlay-head { height: var(--pc-nav); display: flex; align-items: center; justify-content: space-between; padding: 0 1.8rem; }
.pc-overlay-logo { font-family: var(--pc-fh); font-size: 1rem; font-weight: 700; color: white; }
.pc-overlay-logo em { color: var(--pc-red); font-style: italic; }
.pc-overlay-x { color: rgba(255,255,255,.4); }
.pc-overlay-links { padding: 2rem 1.8rem; display: flex; flex-direction: column; gap: .2rem; }
.pc-overlay-lk { font-family: var(--pc-fh); font-size: 2.8rem; font-style: italic; color: rgba(255,255,255,.15); display: block; padding: .18rem 0; transition: color .14s; }
.pc-overlay-lk:hover { color: var(--pc-red); }
.pc-overlay-ft { padding: 1.2rem 1.8rem; border-top: 1px solid rgba(255,255,255,.06); display: flex; gap: 1rem; align-items: center; }
.pc-overlay-cta { background: var(--pc-red); color: white; font-family: var(--pc-fb); font-size: .88rem; font-weight: 700; padding: .65rem 1.4rem; border-radius: var(--pc-r); }
.pc-overlay-lang { display: flex; gap: .32rem; }
.pc-overlay-lang a { font-family: var(--pc-fb); font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.3); }
.pc-overlay-lang a.pc-lang-on { color: var(--pc-red); }

/* ======================== DIAGONAL SPLIT HERO (UNIQUE - first diagonal in series) ======================== */
.pc-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--pc-ivory);
  display: flex;
  align-items: center;
}
/* Image panel — right 52%, with diagonal clip on left edge */
.pc-hero-picture {
  position: absolute;
  right: 0;
  top: 0;
  width: 54%;
  height: 100%;
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  overflow: hidden;
}
.pc-hero-picture img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pc-hero-picture::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(26,22,20,.15), transparent); }
/* Red accent diagonal stripe */
.pc-hero-stripe {
  position: absolute;
  left: 45.5%;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--pc-red);
  transform: skewX(-1.8deg);
  z-index: 3;
  opacity: .85;
}
/* Text content */
.pc-hero-shell {
  position: relative;
  z-index: 4;
  max-width: var(--pc-max);
  margin: 0 auto;
  padding: calc(var(--pc-nav) + 3rem) 2.5rem 3rem;
  width: 100%;
}
.pc-hero-body { max-width: 560px; }
.pc-hero-tag { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--pc-fb); font-size: .54rem; font-weight: 700; text-transform: uppercase; letter-spacing: .28em; color: var(--pc-red); margin-bottom: 1.2rem; }
.pc-hero-tag::before { content: ''; width: 24px; height: 1.5px; background: var(--pc-red); }
.pc-hero-h1 { color: var(--pc-char); margin-bottom: .8rem; }
.pc-hero-h1 em { color: var(--pc-red); font-style: italic; }
.pc-hero-sub { max-width: 46ch; color: var(--pc-muted); font-size: .92rem; line-height: 1.84; margin-bottom: 2rem; }
.pc-hero-acts { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 3rem; }
.pc-hero-stats { display: flex; gap: 2.5rem; border-top: 1px solid var(--pc-edge); padding-top: 1.5rem; }
.pc-hero-stat-n { font-family: var(--pc-fh); font-size: 2.2rem; font-weight: 700; color: var(--pc-char); line-height: 1; }
.pc-hero-stat-l { font-family: var(--pc-fb); font-size: .6rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--pc-muted); margin-top: .18rem; max-width: 14ch; line-height: 1.52; }

/* ======================== LAYOUT ======================== */
.pc-shell { max-width: var(--pc-max); margin: 0 auto; padding: 0 2.5rem; }
.pc-slab { padding: 7rem 0; }
.pc-slab-sm { padding: 4rem 0; }
.pc-kicker { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--pc-fb); font-size: .54rem; font-weight: 700; text-transform: uppercase; letter-spacing: .26em; color: var(--pc-red); margin-bottom: .5rem; }
.pc-kicker::before { content: ''; width: 20px; height: 1.5px; background: var(--pc-red); }

/* ======================== SERVICES: NUMBERED EXPANDABLE LIST (UNIQUE) ======================== */
.pc-roster { margin-top: 2.5rem; }
.pc-roster-item { border-bottom: 1px solid var(--pc-edge2); }
.pc-roster-head {
  display: grid;
  grid-template-columns: 56px 1fr auto 32px;
  gap: 1rem;
  align-items: center;
  padding: 1.3rem 0;
  cursor: pointer;
  transition: var(--pc-ease);
}
.pc-roster-head:hover .pc-roster-nm { color: var(--pc-red); }
.pc-roster-idx { font-family: var(--pc-fh); font-size: 1.1rem; font-style: italic; color: var(--pc-paper); font-weight: 700; transition: color .18s; }
.pc-roster-item.pc-open .pc-roster-idx { color: var(--pc-red); }
.pc-roster-nm { font-family: var(--pc-fh); font-size: 1.4rem; font-weight: 700; color: var(--pc-char); transition: color .16s; }
.pc-roster-rate { font-family: var(--pc-fb); font-size: .72rem; font-weight: 700; color: var(--pc-red); white-space: nowrap; text-align: right; }
.pc-roster-tog { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--pc-edge); display: flex; align-items: center; justify-content: center; color: var(--pc-muted); flex-shrink: 0; transition: var(--pc-ease); }
.pc-roster-item.pc-open .pc-roster-tog { background: var(--pc-red); border-color: var(--pc-red); color: white; transform: rotate(45deg); }
.pc-roster-body { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
.pc-roster-item.pc-open .pc-roster-body { max-height: 280px; }
.pc-roster-bd { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; padding: 0 0 1.3rem 56px; }
.pc-roster-desc { font-size: .86rem; color: var(--pc-muted); line-height: 1.8; max-width: 52ch; }
.pc-roster-go { display: inline-flex; align-items: center; gap: .3rem; font-family: var(--pc-fb); font-size: .82rem; font-weight: 700; color: var(--pc-red); white-space: nowrap; flex-shrink: 0; }
.pc-roster-go svg { transition: transform .18s; }
.pc-roster-item.pc-open .pc-roster-go svg { transform: translateX(3px); }

/* ======================== CASE STUDIES: CINEMATIC STRIP ======================== */
.pc-cinema { background: var(--pc-char); padding: 0; }
.pc-cinema-list { }
.pc-cinema-item { display: grid; grid-template-columns: 1fr 40%; border-bottom: 1px solid rgba(255,255,255,.06); }
.pc-cinema-item:nth-child(even) { grid-template-columns: 40% 1fr; }
.pc-cinema-text { padding: 4.5rem 3.5rem; display: flex; flex-direction: column; justify-content: center; }
.pc-cinema-item:nth-child(even) .pc-cinema-text { order: 2; }
.pc-cinema-item:nth-child(even) .pc-cinema-pic { order: 1; }
.pc-cinema-tags { display: flex; gap: .22rem; flex-wrap: wrap; margin-bottom: .6rem; }
.pc-cinema-tag { font-family: var(--pc-fb); font-size: .48rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.3); border: 1px solid rgba(255,255,255,.12); padding: .1rem .4rem; border-radius: 20px; }
.pc-cinema-client { font-family: var(--pc-fh); font-size: clamp(1.8rem, 3vw, 3.2rem); font-weight: 700; color: white; margin-bottom: .12rem; }
.pc-cinema-type { font-family: var(--pc-fb); font-size: .68rem; color: rgba(255,255,255,.3); margin-bottom: 1.2rem; }
.pc-cinema-stat-n { font-family: var(--pc-fh); font-size: clamp(2.8rem, 5vw, 6rem); font-weight: 700; color: var(--pc-red); line-height: 1; letter-spacing: -.03em; }
.pc-cinema-stat-l { font-size: .74rem; color: rgba(255,255,255,.3); line-height: 1.55; max-width: 22ch; margin-top: .28rem; }
.pc-cinema-pic { position: relative; overflow: hidden; min-height: 320px; }
.pc-cinema-pic img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(.5) saturate(.7); }

/* ======================== TESTIMONIALS: LARGE ITALIC CENTERED QUOTE ======================== */
.pc-voices-wrap { background: var(--pc-cream); padding: 6rem 0; }
.pc-voices-inner { max-width: 800px; margin: 0 auto; padding: 0 2.5rem; text-align: center; }
.pc-voice-q {
  font-family: var(--pc-fh); font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  font-style: italic; font-weight: 600;
  color: var(--pc-char); line-height: 1.5;
  margin-bottom: 1.5rem;
  position: relative;
}
.pc-voice-q::before { content: '"'; font-size: 5rem; color: var(--pc-red); opacity: .12; position: absolute; top: -1.5rem; left: 50%; transform: translateX(-50%); line-height: 1; font-style: normal; }
.pc-voice-dots { display: flex; gap: .4rem; justify-content: center; margin-top: 1.5rem; }
.pc-voice-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pc-edge); cursor: pointer; transition: background .18s; }
.pc-voice-dot.pc-vd-on { background: var(--pc-red); }
.pc-voice-who { font-family: var(--pc-fb); font-size: .84rem; font-weight: 700; color: var(--pc-red); }
.pc-voice-co { font-family: var(--pc-fb); font-size: .7rem; color: var(--pc-muted); }

/* ======================== PRICING: ELEVATED CENTER CARD (different layout) ======================== */
.pc-pkg-row { display: grid; grid-template-columns: 1fr 1.12fr 1fr; gap: 1rem; align-items: start; margin-top: 3rem; }
.pc-pkg-unit { border: 1.5px solid var(--pc-edge); border-radius: var(--pc-r4); padding: 2rem; background: var(--pc-ivory); display: flex; flex-direction: column; transition: var(--pc-ease); }
.pc-pkg-unit:hover { box-shadow: var(--pc-sh2); }
.pc-pkg-unit.pc-pkg-feat { border-color: var(--pc-red); background: var(--pc-char); position: relative; }
.pc-pkg-feat-badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); font-family: var(--pc-fb); font-size: .48rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; background: var(--pc-red); color: white; padding: .22rem .72rem; border-radius: 20px; white-space: nowrap; }
.pc-pkg-nm { font-family: var(--pc-fh); font-size: 1.9rem; font-weight: 700; font-style: italic; color: var(--pc-char); margin-bottom: .1rem; }
.pc-pkg-feat .pc-pkg-nm { color: white; }
.pc-pkg-sub { font-family: var(--pc-fb); font-size: .7rem; color: var(--pc-muted); margin-bottom: 1rem; }
.pc-pkg-feat .pc-pkg-sub { color: rgba(255,255,255,.4); }
.pc-pkg-price { font-family: var(--pc-fh); font-size: clamp(2rem, 4vw, 3.8rem); font-weight: 700; color: var(--pc-red); line-height: 1; letter-spacing: -.03em; margin-bottom: .3rem; }
.pc-pkg-price sup { font-size: 1.1rem; vertical-align: super; }
.pc-pkg-per { font-family: var(--pc-fb); font-size: .58rem; color: var(--pc-muted); margin-bottom: 1.2rem; }
.pc-pkg-feat .pc-pkg-per { color: rgba(255,255,255,.3); }
.pc-pkg-incs { display: flex; flex-direction: column; gap: .32rem; margin-bottom: 1.5rem; flex: 1; }
.pc-pkg-inc { display: flex; align-items: flex-start; gap: .42rem; font-size: .84rem; color: var(--pc-coal); }
.pc-pkg-feat .pc-pkg-inc { color: rgba(255,255,255,.65); }
.pc-pkg-inc svg { color: var(--pc-red); flex-shrink: 0; margin-top: .14rem; }

/* ======================== PROCESS ======================== */
.pc-steps-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: .5rem; margin-top: 3.5rem; }
.pc-step { padding: .5rem; }
.pc-step-n { width: 40px; height: 40px; border-radius: 50%; background: var(--pc-red); display: flex; align-items: center; justify-content: center; font-family: var(--pc-fh); font-size: .82rem; font-weight: 700; color: white; margin-bottom: .88rem; }
.pc-step-h { font-family: var(--pc-fh); font-size: 1rem; font-weight: 700; color: var(--pc-char); margin-bottom: .22rem; }
.pc-step-p { font-size: .76rem; color: var(--pc-muted); line-height: 1.72; }

/* ======================== INNER PAGE HEAD ======================== */
.pc-pagehead { background: var(--pc-char); text-align: center; padding: calc(var(--pc-nav) + 3.5rem) 2.5rem 4.5rem; position: relative; overflow: hidden; }
.pc-pagehead::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 90% at 50% 110%, rgba(201,36,15,.1) 0%, transparent 70%); }
.pc-pagehead-tag { display: inline-block; font-family: var(--pc-fb); font-size: .52rem; font-weight: 700; text-transform: uppercase; letter-spacing: .24em; color: rgba(255,255,255,.3); border: 1px solid rgba(255,255,255,.1); padding: .26rem .72rem; border-radius: 20px; margin-bottom: .65rem; position: relative; }
.pc-pagehead h1 { color: white; max-width: 22ch; margin: 0 auto; position: relative; }
.pc-pagehead h1 em { color: var(--pc-red); font-style: italic; }
.pc-pagehead-sub { color: rgba(255,255,255,.38); max-width: 50ch; margin: .65rem auto 0; font-size: .9rem; line-height: 1.86; position: relative; }

/* ======================== SERVICE PAGE ======================== */
.pc-svc-pg { max-width: var(--pc-max); margin: 0 auto; padding: 5rem 2.5rem; display: grid; grid-template-columns: 1fr 250px; gap: 4.5rem; align-items: start; }
.pc-svc-pg-body h2 { font-family: var(--pc-fh); font-size: 1.4rem; font-weight: 700; color: var(--pc-red); margin: 2.2rem 0 .4rem; }
.pc-svc-pg-body p { margin-bottom: .88rem; }
.pc-svc-inc-list { display: flex; flex-direction: column; gap: .36rem; margin-bottom: 1.4rem; }
.pc-svc-inc { display: flex; align-items: flex-start; gap: .48rem; font-size: .85rem; color: var(--pc-coal); }
.pc-svc-inc svg { color: var(--pc-red); flex-shrink: 0; margin-top: .14rem; }
.pc-svc-del { background: var(--pc-redlt); border-left: 3px solid var(--pc-red); padding: .7rem .9rem; border-radius: 0 var(--pc-r) var(--pc-r) 0; margin-bottom: 1.4rem; }
.pc-svc-del p { margin: 0; font-size: .84rem; color: var(--pc-coal); }
.pc-svc-aside { position: sticky; top: 82px; }
.pc-aside-box { background: var(--pc-char); border-radius: var(--pc-r3); overflow: hidden; }
.pc-aside-img img { width: 100%; height: 110px; object-fit: cover; filter: brightness(.25); }
.pc-aside-inner { padding: 1.1rem; }
.pc-aside-nm { font-size: .5rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.28); margin-bottom: .18rem; }
.pc-aside-rate { font-family: var(--pc-fh); font-size: .9rem; font-style: italic; color: var(--pc-red); margin-bottom: .72rem; }
.pc-aside-btns { display: flex; flex-direction: column; gap: .32rem; }
.pc-other-h { font-size: .46rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--pc-dim); margin: 1.2rem 0 .48rem; }
.pc-other-lk { display: flex; align-items: center; gap: .38rem; font-size: .8rem; color: var(--pc-muted); padding: .35rem 0; border-bottom: 1px solid var(--pc-edge); transition: color .14s; }
.pc-other-lk:hover { color: var(--pc-red); }

/* ======================== LEGAL ======================== */
.pc-legal { max-width: 800px; margin: 0 auto; padding: 5rem 2.5rem 7rem; }
.pc-legal h2 { font-family: var(--pc-fh); font-size: 1.4rem; font-weight: 700; color: var(--pc-red); margin: 2.5rem 0 .5rem; }
.pc-legal h3 { font-family: var(--pc-fh); font-size: 1rem; font-weight: 700; color: var(--pc-char); margin: 1.3rem 0 .28rem; }
.pc-legal p { margin-bottom: .88rem; font-size: .88rem; }
.pc-legal ul { padding-left: 1.2rem; margin: .4rem 0 .88rem; display: flex; flex-direction: column; gap: .3rem; }
.pc-legal li { font-size: .88rem; list-style: disc; color: var(--pc-steel); line-height: 1.72; }
.pc-legal a { color: var(--pc-red); }
.pc-legal table { width: 100%; border-collapse: collapse; font-size: .82rem; margin: .88rem 0 1.1rem; }
.pc-legal th { background: var(--pc-char); color: white; padding: .48rem .88rem; text-align: left; font-size: .58rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 700; }
.pc-legal td { padding: .48rem .88rem; border: 1px solid var(--pc-edge); color: var(--pc-steel); }
.pc-legal address { background: var(--pc-redlt); border-left: 3px solid var(--pc-red); padding: .88rem 1.1rem; font-size: .86rem; color: var(--pc-coal); line-height: 1.86; margin: .88rem 0; border-radius: 0 var(--pc-r) var(--pc-r) 0; }
.pc-legal-eff { display: inline-block; font-size: .7rem; color: var(--pc-dim); background: var(--pc-cream); border: 1px solid var(--pc-edge); padding: .26rem .68rem; border-radius: 20px; margin-bottom: 1.4rem; }

/* ======================== BUILDER / CHECKOUT ======================== */
.pc-builder-pg { max-width: var(--pc-max); margin: 0 auto; padding: 4rem 2.5rem 7rem; display: grid; grid-template-columns: 1fr 260px; gap: 4rem; align-items: start; }
.pc-build-sec { margin-bottom: 2.5rem; }
.pc-build-lbl { display: block; font-family: var(--pc-fb); font-size: .52rem; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; color: var(--pc-red); margin-bottom: .88rem; }
.pc-build-items { display: flex; flex-direction: column; gap: .38rem; }
.pc-build-row { background: white; border: 1.5px solid var(--pc-edge); border-radius: var(--pc-r2); padding: .78rem .92rem; display: flex; align-items: center; gap: .65rem; cursor: pointer; user-select: none; transition: var(--pc-ease); }
.pc-build-row:hover { border-color: var(--pc-redbd); background: var(--pc-redlt); }
.pc-build-row.pc-picked { border-color: var(--pc-red); background: var(--pc-redlt); }
.pc-pick-mark { width: 17px; height: 17px; border: 1.5px solid var(--pc-dim); border-radius: var(--pc-r); flex-shrink: 0; transition: var(--pc-ease); }
.pc-build-row.pc-picked .pc-pick-mark { background: var(--pc-red); border-color: var(--pc-red); }
.pc-build-row-nm { font-size: .86rem; color: var(--pc-muted); flex: 1; }
.pc-build-row.pc-picked .pc-build-row-nm { color: var(--pc-char); font-weight: 600; }
.pc-build-row-pr { font-size: .64rem; font-weight: 700; color: var(--pc-red); text-align: right; min-width: 5rem; }
.pc-addon-chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.pc-addon-chip { background: white; border: 1.5px solid var(--pc-edge); border-radius: var(--pc-r); padding: .48rem .88rem; cursor: pointer; user-select: none; transition: var(--pc-ease); }
.pc-addon-chip:hover { border-color: var(--pc-redbd); }
.pc-addon-chip.pc-chip-on { border-color: var(--pc-red); background: var(--pc-redlt); }
.pc-chip-nm { font-size: .8rem; font-weight: 600; color: var(--pc-muted); }
.pc-addon-chip.pc-chip-on .pc-chip-nm { color: var(--pc-char); }
.pc-chip-pr { font-size: .6rem; color: var(--pc-dim); }
.pc-addon-chip.pc-chip-on .pc-chip-pr { color: var(--pc-red); }
.pc-hrs-block { background: white; border: 1.5px solid var(--pc-edge); border-radius: var(--pc-r2); padding: .9rem; }
.pc-hrs-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: .42rem; }
.pc-hrs-lbl { font-size: .86rem; color: var(--pc-muted); }
.pc-hrs-cnt { font-family: var(--pc-fh); font-size: 2rem; font-weight: 700; color: var(--pc-red); line-height: 1; }
.pc-hrs-slider { -webkit-appearance: none; width: 100%; height: 3px; background: var(--pc-edge); border-radius: 2px; cursor: pointer; margin-top: .42rem; }
.pc-hrs-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--pc-red); cursor: pointer; box-shadow: 0 2px 8px rgba(201,36,15,.35); }
.pc-hrs-note { font-size: .66rem; color: var(--pc-dim); margin-top: .42rem; line-height: 1.6; }
/* Tally */
.pc-tally { background: var(--pc-char); border-radius: var(--pc-r3); overflow: hidden; position: sticky; top: 82px; }
.pc-tally-hd { background: rgba(255,255,255,.04); padding: .8rem 1.1rem; }
.pc-tally-hl { font-family: var(--pc-fb); font-size: .5rem; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: rgba(255,255,255,.5); }
.pc-tally-mid { padding: .8rem 1.1rem; min-height: 60px; }
.pc-tally-blank { font-size: .76rem; color: rgba(255,255,255,.22); font-style: italic; }
.pc-tally-ln { display: flex; justify-content: space-between; gap: .5rem; font-size: .74rem; margin-bottom: .35rem; }
.pc-tally-lnm { color: rgba(255,255,255,.38); }
.pc-tally-lpr { font-weight: 700; color: white; }
.pc-tally-ft { border-top: 1px solid rgba(255,255,255,.06); padding: .8rem 1.1rem; }
.pc-tally-tot { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: .8rem; }
.pc-tally-totlbl { font-size: .46rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.28); }
.pc-tally-totamt { font-family: var(--pc-fh); font-size: 2.5rem; font-weight: 700; color: var(--pc-red); line-height: 1; letter-spacing: -.03em; }
.pc-tally-go { display: block; width: 100%; background: var(--pc-red); color: white; font-family: var(--pc-fb); font-size: .86rem; font-weight: 700; padding: .72rem; border-radius: var(--pc-r2); border: none; cursor: pointer; transition: background .16s; }
.pc-tally-go:hover:not(:disabled) { background: var(--pc-red2); }
.pc-tally-go:disabled { opacity: .22; cursor: not-allowed; }
/* Checkout */
.pc-co-layout { max-width: 860px; margin: 0 auto; padding: 5rem 2.5rem; display: grid; grid-template-columns: 1fr 240px; gap: 4rem; align-items: start; }
.pc-fg { margin-bottom: .65rem; }
.pc-fl { display: block; font-size: .5rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--pc-dim); margin-bottom: .24rem; }
.pc-fi { width: 100%; background: var(--pc-cream); border: 1.5px solid var(--pc-edge); border-radius: var(--pc-r2); padding: .6rem .85rem; color: var(--pc-char); font-size: .9rem; transition: border-color .15s; }
.pc-fi:focus { outline: none; border-color: var(--pc-red); background: white; box-shadow: 0 0 0 3px rgba(201,36,15,.1); }
.pc-fi::placeholder { color: var(--pc-dim); }
.pc-agree-row { display: flex; align-items: flex-start; gap: .5rem; font-size: .82rem; color: var(--pc-coal); line-height: 1.6; margin: .9rem 0; }
.pc-agree-row input { margin-top: .12rem; accent-color: var(--pc-red); }
.pc-agree-row a { color: var(--pc-red); }
.pc-co-sum { background: var(--pc-char); border-radius: var(--pc-r3); overflow: hidden; position: sticky; top: 82px; }
.pc-co-sum-hd { background: rgba(255,255,255,.04); padding: .72rem 1rem; }
.pc-co-sum-hl { font-size: .48rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.5); }
.pc-co-sum-body { padding: .8rem 1rem; }
.pc-co-sum-ln { display: flex; justify-content: space-between; gap: 1rem; font-size: .76rem; margin-bottom: .35rem; }
.pc-co-sum-lnm { color: rgba(255,255,255,.38); }
.pc-co-sum-lpr { font-weight: 700; color: white; }
.pc-co-sum-div { border: none; border-top: 1px solid rgba(255,255,255,.05); margin: .5rem 0; }
.pc-co-sum-tot { display: flex; justify-content: space-between; align-items: flex-end; }
.pc-co-sum-totl { font-size: .46rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.28); }
.pc-co-sum-totv { font-family: var(--pc-fh); font-size: 2rem; font-weight: 700; color: var(--pc-red); line-height: 1; letter-spacing: -.03em; }

/* ======================== RESULT PAGES ======================== */
.pc-result-pg { min-height: 75vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 5rem 2.5rem; background: var(--pc-char); }
.pc-result-inner { max-width: 460px; }

/* ======================== BUTTONS ======================== */
.pc-btn-red { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--pc-fb); font-size: .86rem; font-weight: 700; color: white; background: var(--pc-red); padding: .72rem 1.8rem; border-radius: var(--pc-r); transition: background .15s; border: none; cursor: pointer; white-space: nowrap; }
.pc-btn-red:hover { background: var(--pc-red2); }
.pc-btn-dark { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--pc-fb); font-size: .86rem; font-weight: 700; color: white; background: var(--pc-char); padding: .72rem 1.8rem; border-radius: var(--pc-r); transition: background .15s; border: none; cursor: pointer; white-space: nowrap; }
.pc-btn-dark:hover { background: var(--pc-red); }
.pc-btn-outline { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--pc-fb); font-size: .86rem; font-weight: 700; color: var(--pc-char); background: transparent; padding: .7rem 1.78rem; border-radius: var(--pc-r); border: 1.5px solid var(--pc-edge); transition: var(--pc-ease); white-space: nowrap; }
.pc-btn-outline:hover { border-color: var(--pc-char); }
.pc-btn-outline-w { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--pc-fb); font-size: .86rem; font-weight: 700; color: white; background: transparent; padding: .7rem 1.78rem; border-radius: var(--pc-r); border: 1.5px solid rgba(255,255,255,.22); transition: var(--pc-ease); white-space: nowrap; }
.pc-btn-outline-w:hover { border-color: rgba(255,255,255,.65); }
.pc-btn-pkg { display: block; width: 100%; text-align: center; font-family: var(--pc-fb); font-size: .86rem; font-weight: 700; color: var(--pc-red); background: transparent; padding: .7rem; border-radius: var(--pc-r); border: 1.5px solid var(--pc-redbd); transition: var(--pc-ease); }
.pc-btn-pkg:hover { background: var(--pc-redlt); }
.pc-btn-pkg-w { display: block; width: 100%; text-align: center; font-family: var(--pc-fb); font-size: .86rem; font-weight: 700; color: rgba(255,255,255,.6); background: transparent; padding: .7rem; border-radius: var(--pc-r); border: 1.5px solid rgba(255,255,255,.16); transition: var(--pc-ease); }
.pc-btn-pkg-w:hover { border-color: rgba(255,255,255,.45); color: white; }

/* ======================== FAQ ACCORDION ======================== */
.pc-faq-list { max-width: 700px; margin: 2rem auto 0; }
.pc-faq-item { border-bottom: 1px solid var(--pc-edge2); }
.pc-faq-btn { width: 100%; text-align: left; padding: 1.1rem 0; display: flex; align-items: center; justify-content: space-between; gap: .8rem; cursor: pointer; background: none; border: none; }
.pc-faq-q { font-family: var(--pc-fh); font-size: 1.05rem; font-weight: 700; color: var(--pc-char); line-height: 1.42; }
.pc-faq-ic { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--pc-edge); display: flex; align-items: center; justify-content: center; color: var(--pc-red); flex-shrink: 0; transition: var(--pc-ease); }
.pc-faq-item.pc-faq-open .pc-faq-ic { background: var(--pc-red); border-color: var(--pc-red); color: white; transform: rotate(45deg); }
.pc-faq-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.pc-faq-item.pc-faq-open .pc-faq-body { max-height: 260px; }
.pc-faq-a { padding: 0 0 1.1rem; font-size: .86rem; color: var(--pc-steel); line-height: 1.88; }

/* ======================== COOKIE + CHAT ======================== */
.pc-ck-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--pc-char); border-top: 3px solid var(--pc-red); z-index: 9999; padding: .88rem 2rem; display: none; gap: 1rem; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.pc-ck-bar p { font-size: .78rem; color: rgba(255,255,255,.5); margin: 0; }
.pc-ck-bar a { color: var(--pc-red); }
.pc-ck-btns { display: flex; gap: .38rem; flex-shrink: 0; }
.pc-ck-yes { background: var(--pc-red); color: white; font-size: .76rem; font-weight: 700; padding: .38rem .92rem; border: none; border-radius: var(--pc-r); cursor: pointer; }
.pc-ck-no  { background: transparent; color: rgba(255,255,255,.4); font-size: .76rem; padding: .38rem .92rem; border: 1px solid rgba(255,255,255,.12); border-radius: var(--pc-r); cursor: pointer; }
.pc-chat-fab { position: fixed; bottom: 4.5rem; right: 1.5rem; z-index: 9990; width: 50px; height: 50px; background: var(--pc-red); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(201,36,15,.45); cursor: pointer; border: none; transition: var(--pc-ease); }
.pc-chat-fab:hover { background: var(--pc-red2); transform: scale(1.06); }
.pc-chatpop { position: fixed; bottom: 7.8rem; right: 1.5rem; z-index: 9989; width: 268px; background: var(--pc-ivory); border: 1px solid var(--pc-edge); border-radius: var(--pc-r3); box-shadow: var(--pc-sh3); opacity: 0; pointer-events: none; transform: translateY(10px) scale(.97); transition: opacity .2s, transform .22s; overflow: hidden; }
.pc-chatpop.pc-chat-open { opacity: 1; pointer-events: auto; transform: none; }
.pc-chatpop-hd { background: var(--pc-char); padding: .88rem 1rem; display: flex; align-items: center; justify-content: space-between; }
.pc-chatpop-title { font-family: var(--pc-fh); font-size: .96rem; font-style: italic; color: white; }
.pc-chatpop-sub { font-size: .54rem; color: rgba(255,255,255,.5); }
.pc-chatpop-x { color: rgba(255,255,255,.5); background: none; border: none; cursor: pointer; }
.pc-chatpop-bd { padding: .88rem; }
.pc-chat-done { display: none; text-align: center; padding: .8rem; font-size: .8rem; color: var(--pc-red); font-weight: 700; }
.pc-chat-inp { width: 100%; background: white; border: 1px solid var(--pc-edge); border-radius: var(--pc-r2); padding: .44rem .72rem; font-size: .8rem; color: var(--pc-char); margin-bottom: .36rem; resize: none; font-family: var(--pc-fb); }
.pc-chat-inp:focus { outline: none; border-color: var(--pc-redbd); }
.pc-chat-inp::placeholder { color: var(--pc-dim); }
.pc-chat-send { width: 100%; background: var(--pc-red); color: white; font-size: .78rem; font-weight: 700; padding: .46rem; border-radius: var(--pc-r2); border: none; cursor: pointer; font-family: var(--pc-fb); }

/* ======================== RED CTA BAND ======================== */
.pc-redband { background: var(--pc-red); }
.pc-redband-inner { max-width: 700px; margin: 0 auto; padding: 6rem 2.5rem; text-align: center; }
.pc-redband-inner h2 { color: white; margin-bottom: .5rem; }
.pc-redband-inner p { color: rgba(255,255,255,.65); margin-bottom: 2rem; font-size: .96rem; max-width: 44ch; margin-left: auto; margin-right: auto; }
.pc-band-acts { display: flex; gap: .65rem; justify-content: center; flex-wrap: wrap; }

/* ======================== ANIMATIONS ======================== */
.pc-rise { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.pc-rise.pc-vis { opacity: 1; transform: none; }
.pc-rise-l { opacity: 0; transform: translateX(-16px); transition: opacity .5s ease, transform .5s ease; }
.pc-rise-l.pc-vis { opacity: 1; transform: none; }
.pc-rise-r { opacity: 0; transform: translateX(16px); transition: opacity .5s ease, transform .5s ease; }
.pc-rise-r.pc-vis { opacity: 1; transform: none; }

/* ======================== FOOTER ======================== */
.pc-foot { background: var(--pc-char); }
.pc-foot-top { max-width: var(--pc-max); margin: 0 auto; padding: 5rem 2.5rem 2.5rem; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 3rem; }
.pc-foot-logo { font-family: var(--pc-fh); font-size: 1.15rem; font-weight: 700; font-style: italic; color: white; margin-bottom: .3rem; }
.pc-foot-logo em { color: var(--pc-red); }
.pc-foot-tag { font-size: .72rem; color: rgba(255,255,255,.28); max-width: 26ch; line-height: 1.72; margin-bottom: .5rem; }
.pc-foot-vat { font-size: .6rem; color: rgba(255,255,255,.18); margin-bottom: 1rem; }
.pc-foot-soc { display: flex; gap: .35rem; }
.pc-foot-soc a { width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--pc-r); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.28); transition: var(--pc-ease); }
.pc-foot-soc a:hover { border-color: var(--pc-red); color: var(--pc-red); }
.pc-foot-col-h { font-size: .46rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.2); margin-bottom: .78rem; }
.pc-foot-links { display: flex; flex-direction: column; gap: .4rem; }
.pc-foot-links a { font-size: .78rem; color: rgba(255,255,255,.38); transition: color .14s; }
.pc-foot-links a:hover { color: var(--pc-red); }
.pc-foot-ct { display: flex; flex-direction: column; gap: .5rem; }
.pc-foot-ct a { font-size: .76rem; color: rgba(255,255,255,.38); display: flex; align-items: flex-start; gap: .4rem; line-height: 1.52; transition: color .14s; }
.pc-foot-ct a:hover { color: var(--pc-red); }
.pc-foot-ct svg { flex-shrink: 0; color: var(--pc-red); opacity: .55; margin-top: .04rem; }
.pc-foot-btm { border-top: 1px solid rgba(255,255,255,.05); max-width: var(--pc-max); margin: 0 auto; padding: 1.3rem 2.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.pc-foot-copy { font-size: .58rem; color: rgba(255,255,255,.2); }
.pc-foot-leg { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.pc-foot-leg a { font-size: .58rem; color: rgba(255,255,255,.28); transition: color .14s; }
.pc-foot-leg a:hover { color: var(--pc-red); }

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
  .pc-nav-left, .pc-nav-right { display: none; }
  .pc-burger { display: flex; }
  .pc-nav { grid-template-columns: auto 1fr auto; }
  .pc-nav-logo { padding-left: 0; }
  .pc-hero-picture { width: 48%; }
  .pc-cinema-item { grid-template-columns: 1fr; }
  .pc-cinema-item:nth-child(even) { grid-template-columns: 1fr; }
  .pc-cinema-item:nth-child(even) .pc-cinema-text, .pc-cinema-item:nth-child(even) .pc-cinema-pic { order: unset; }
  .pc-cinema-pic { min-height: 240px; }
  .pc-pkg-row { grid-template-columns: 1fr; }
  .pc-steps-row { grid-template-columns: 1fr 1fr 1fr; }
  .pc-foot-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .pc-svc-pg, .pc-builder-pg, .pc-co-layout { grid-template-columns: 1fr; }
  .pc-roster-bd { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .pc-hero-picture { display: none; }
  .pc-hero-stripe { display: none; }
  .pc-steps-row { grid-template-columns: 1fr 1fr; }
  .pc-foot-top { grid-template-columns: 1fr; }
  .pc-shell { padding: 0 1.2rem; }
}
