/* ============================================================
   232 Entertainment — stylesheet
   Premium dark theme · gold accents · responsive · animated
   ============================================================ */

:root {
  --bg: #0d0d10;
  --bg-alt: #141419;
  --bg-elev: #1b1b22;
  --line: rgba(255, 255, 255, 0.09);
  --text: #ececf1;
  --muted: #a2a2ad;
  --gold: #e0a458;
  --gold-2: #f5c26b;
  --gold-soft: rgba(224, 164, 88, 0.12);
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1200px;
  --shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 14px 40px -12px rgba(224, 164, 88, 0.45);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

/* Ensure the [hidden] attribute always wins over display rules below */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 { line-height: 1.12; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 0.5em; }
h1 { font-size: clamp(2.3rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.9rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 820px; }
.accent { color: var(--gold); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 2000;
  background: var(--gold); color: #1a1206; padding: 10px 16px; border-radius: 8px; font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 14px; --pad-x: 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px; font-weight: 600; font-size: 0.98rem; letter-spacing: 0.01em;
  cursor: pointer; border: 1px solid transparent; white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn-primary { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #201607; box-shadow: var(--shadow-gold); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 46px -12px rgba(224, 164, 88, 0.6); }
.btn-ghost { background: rgba(255,255,255,0.04); border-color: var(--line); color: var(--text); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }
.btn-sm { --pad-y: 10px; --pad-x: 18px; font-size: 0.9rem; }
.btn-lg { --pad-y: 17px; --pad-x: 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.eyebrow {
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.78rem; font-weight: 600;
  color: var(--gold); margin: 0 0 14px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(13, 13, 16, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  height: 64px;
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.8);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; }

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text); }
.brand-mark { color: var(--gold); display: inline-flex; }
.brand-text { font-size: 1.15rem; font-weight: 600; letter-spacing: -0.01em; }
.brand-text strong { color: var(--gold); font-weight: 700; }

.main-nav ul { display: flex; gap: 30px; }
.main-nav a { color: var(--muted); font-size: 0.95rem; font-weight: 500; position: relative; }
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--gold); transition: width 0.25s var(--ease);
}
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: calc(var(--header-h) + 40px) 0 70px; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1200px 600px at 70% 10%, rgba(224,164,88,0.14), transparent 60%),
    linear-gradient(180deg, rgba(13,13,16,0.55) 0%, rgba(13,13,16,0.78) 55%, var(--bg) 100%);
}
.hero-content { max-width: 820px; }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.3rem); color: #d7d7de; max-width: 640px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 54px; }

.hero-stats { display: grid; grid-template-columns: repeat(4, auto); gap: 40px; }
.hero-stats li { display: flex; flex-direction: column; }
.stat-num { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--white); letter-spacing: -0.02em; line-height: 1; }
.stat-label { font-size: 0.85rem; color: var(--muted); margin-top: 6px; letter-spacing: 0.02em; }

.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.35); border-radius: 20px; display: flex; justify-content: center; }
.scroll-cue span { width: 4px; height: 8px; background: var(--gold); border-radius: 2px; margin-top: 7px; animation: scrollcue 1.8s infinite; }
@keyframes scrollcue { 0% { opacity: 0; transform: translateY(-4px);} 40% {opacity:1;} 80%,100% { opacity: 0; transform: translateY(12px);} }

/* ---------- Trust bar ---------- */
.trust-bar { padding: 34px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.trust-label { text-align: center; color: var(--muted); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 20px; }
.trust-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px 48px; }
.trust-logos li { font-size: 1.15rem; font-weight: 700; letter-spacing: 0.04em; color: #7f7f8b; opacity: 0.85; transition: color 0.25s var(--ease), opacity 0.25s; font-family: Georgia, "Times New Roman", serif; }
.trust-logos li:hover { color: var(--text); opacity: 1; }

/* ---------- Sections ---------- */
.section { padding: clamp(70px, 10vw, 130px) 0; }
.section-head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 68px); text-align: center; }
.section-lead { color: var(--muted); font-size: 1.1rem; }
.about, .testimonials { background: var(--bg-alt); }

/* ---------- Cards / Services ---------- */
.cards { display: grid; gap: 26px; }
.services-grid { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(224,164,88,0.5); box-shadow: var(--shadow); }
.card-media { aspect-ratio: 4 / 3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.service-card:hover .card-media img { transform: scale(1.07); }
.card-body { padding: 22px 22px 26px; }
.card-body h3 { margin-bottom: 8px; }
.card-body p { color: var(--muted); font-size: 0.97rem; margin: 0; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 76px); align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-badge {
  position: absolute; right: -14px; bottom: -22px; background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #201607; padding: 18px 22px; border-radius: var(--radius-sm); box-shadow: var(--shadow-gold); max-width: 190px;
}
.about-badge-num { display: block; font-size: 1.9rem; font-weight: 800; line-height: 1; }
.about-badge-text { font-size: 0.82rem; font-weight: 600; }
.checklist { margin: 22px 0 30px; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 34px; color: #d7d7de; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold-soft); color: var(--gold-2); display: grid; place-items: center; font-size: 0.8rem; font-weight: 700;
}

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 18px 16px; font-size: 0.9rem; font-weight: 600;
  background: linear-gradient(transparent, rgba(0,0,0,0.85)); transform: translateY(8px); opacity: 0; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 30px 24px; background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius); }
.step-num { font-size: 2.4rem; font-weight: 800; color: transparent; -webkit-text-stroke: 1.4px var(--gold); display: block; margin-bottom: 12px; letter-spacing: 0.02em; }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.96rem; margin: 0; }

/* ---------- Testimonials ---------- */
.rating-summary { display: inline-flex; align-items: center; gap: 12px; margin-top: 10px; color: var(--muted); font-size: 0.95rem; }
.stars { color: var(--gold-2); letter-spacing: 3px; font-size: 1.1rem; }
.testimonial-grid { grid-template-columns: repeat(3, 1fr); }
.testimonial { padding: 30px 28px; margin: 0; display: flex; flex-direction: column; gap: 20px; }
.testimonial p { color: #e4e4ea; font-size: 1.02rem; font-style: italic; margin: 0; }
.testimonial footer { display: flex; align-items: center; gap: 14px; }
.testimonial footer span:not(.avatar) { display: flex; flex-direction: column; }
.testimonial small { color: var(--muted); font-style: normal; }
.avatar {
  width: 46px; height: 46px; flex: 0 0 46px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #201607; font-weight: 700; font-size: 0.95rem;
}

/* ---------- CTA banner ---------- */
.cta-banner { position: relative; padding: clamp(70px, 9vw, 120px) 0; overflow: hidden; text-align: center; }
.cta-bg { position: absolute; inset: 0; background: url("/images/cta-bg.webp") center/cover no-repeat; }
.cta-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,13,16,0.82), rgba(13,13,16,0.92)); }
.cta-inner { position: relative; max-width: 720px; }
.cta-inner p { color: #d7d7de; font-size: 1.15rem; margin-bottom: 30px; }

/* ---------- FAQ ---------- */
.accordion { display: grid; gap: 14px; }
.accordion details { background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: border-color 0.25s var(--ease); }
.accordion details[open] { border-color: rgba(224,164,88,0.4); }
.accordion summary {
  list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 600; font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; color: var(--gold); font-size: 1.5rem; font-weight: 400; transition: transform 0.3s var(--ease); line-height: 1; }
.accordion details[open] summary::after { transform: rotate(45deg); }
.acc-body { padding: 0 24px 22px; color: var(--muted); }
.acc-body p { margin: 0; }
.acc-body a { color: var(--gold-2); text-decoration: underline; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(34px, 6vw, 72px); align-items: start; }
.contact-details { display: grid; gap: 16px; margin: 26px 0; }
.contact-details li { display: flex; align-items: center; gap: 14px; color: #d7d7de; }
.contact-details a:hover { color: var(--gold-2); }
.ci { width: 40px; height: 40px; flex: 0 0 40px; border-radius: 12px; background: var(--gold-soft); color: var(--gold-2); display: grid; place-items: center; font-size: 1.1rem; }
.assurances { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.assurances li { position: relative; padding-left: 22px; color: var(--muted); font-size: 0.9rem; }
.assurances li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.contact-form { background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow); }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; color: #d7d7de; }
.field .opt { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-sm);
  color: var(--text); font-family: inherit; font-size: 0.98rem; transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23e0a458' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.field .error { color: #ff8f8f; font-size: 0.82rem; margin-top: 6px; min-height: 0; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #ff8f8f; }
.form-note { font-size: 0.82rem; color: var(--muted); margin: 14px 0 0; text-align: center; }
.form-note a { color: var(--gold-2); text-decoration: underline; }
.form-success { margin-top: 18px; padding: 18px; border-radius: var(--radius-sm); background: var(--gold-soft); border: 1px solid rgba(224,164,88,0.4); display: flex; flex-direction: column; gap: 4px; }
.form-success span { color: var(--muted); font-size: 0.92rem; }

/* ---------- Footer ---------- */
.site-footer { background: #08080a; border-top: 1px solid var(--line); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 44px; }
.footer-brand p { color: var(--muted); font-size: 0.95rem; max-width: 320px; margin: 16px 0 20px; }
.footer-col h3 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: #c4c4cd; font-size: 0.95rem; }
.footer-col a:hover { color: var(--gold-2); }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.socials a:hover { border-color: var(--gold); color: var(--gold-2); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding: 22px 24px; border-top: 1px solid var(--line); }
.footer-bottom p { margin: 0; color: var(--muted); font-size: 0.88rem; }
.footer-bottom nav { display: flex; gap: 22px; }
.footer-bottom a { color: var(--muted); font-size: 0.88rem; }
.footer-bottom a:hover { color: var(--gold-2); }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--line); background: rgba(27,27,34,0.9); backdrop-filter: blur(8px); color: var(--gold-2);
  font-size: 1.2rem; cursor: pointer; box-shadow: var(--shadow); transition: transform 0.25s var(--ease), opacity 0.25s, background 0.25s;
  opacity: 0; transform: translateY(12px);
}
.to-top.show { opacity: 1; transform: translateY(0); }
.to-top:hover { transform: translateY(-3px); background: var(--gold); color: #201607; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1100; max-width: 560px; margin: 0 auto;
  background: rgba(20,20,25,0.96); backdrop-filter: blur(12px); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  transform: translateY(140%); transition: transform 0.5s var(--ease);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { margin: 0; font-size: 0.9rem; color: var(--muted); flex: 1 1 260px; }
.cookie-banner a { color: var(--gold-2); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; margin-left: auto; }

/* ---------- Legal pages ---------- */
.legal { padding: calc(var(--header-h) + 60px) 0 90px; }
.legal .container { max-width: 820px; }
.legal h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 10px; }
.legal .updated { color: var(--muted); font-size: 0.9rem; margin-bottom: 40px; }
.legal h2 { font-size: 1.4rem; margin: 40px 0 12px; }
.legal p, .legal li { color: #cfcfd6; }
.legal ul { list-style: disc; padding-left: 22px; margin: 0 0 1rem; display: grid; gap: 6px; }
.legal a { color: var(--gold-2); text-decoration: underline; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw); background: var(--bg-alt);
    border-left: 1px solid var(--line); transform: translateX(100%); transition: transform 0.35s var(--ease);
    padding: calc(var(--header-h) + 20px) 30px 30px; z-index: 999;
  }
  .nav-open .main-nav { transform: translateX(0); box-shadow: -20px 0 60px -20px rgba(0,0,0,0.8); }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { display: block; padding: 12px 0; font-size: 1.1rem; border-bottom: 1px solid var(--line); }
  .main-nav a::after { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 520px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 26px 34px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .gallery { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-actions { margin-left: 0; }
  .cookie-actions .btn { flex: 1; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ---------- Motion / print preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
