:root {
  color-scheme: light dark;
  --ink: #0c0b09;
  --ink-soft: #2d2923;
  --muted: #766c5f;
  --line: rgba(12, 11, 9, 0.11);
  --paper: #f7f1e8;
  --paper-soft: #fbf8f2;
  --cream: #fffaf0;
  --gold: #c8a064;
  --gold-deep: #8f6a35;
  --smoke: #15130f;
  --black: #080705;
  --white: #ffffff;
  --success: #267c52;
  --danger: #ac4038;
  --warning: #a86d1d;
  --shadow: 0 24px 80px rgba(27, 18, 7, 0.18);
  --shadow-strong: 0 35px 110px rgba(0, 0, 0, 0.45);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family:
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "Segoe UI",
    Inter,
    Helvetica,
    Arial,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(200, 160, 100, 0.13), transparent 34rem),
    linear-gradient(180deg, #0a0907 0%, #0d0b08 24rem, var(--paper) 24.1rem);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.dialog-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  color: var(--black);
  background: #e4c58d;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 16px;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--black);
  background: var(--cream);
  box-shadow: var(--shadow);
  transform: translateY(-140%);
  transition: transform 0.25s var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  pointer-events: none;
}

.nav-shell {
  width: 100%;
  min-height: 74px;
  margin: 0;
  padding: 10px max(20px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  gap: 24px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  color: #fff7e9;
  background:
    linear-gradient(180deg, rgba(12, 10, 8, 0.78), rgba(12, 10, 8, 0.52)),
    rgba(12, 10, 8, 0.58);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.16);
  pointer-events: auto;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.nav-shell-classic {
  justify-content: space-between;
}

.site-header.scrolled .nav-shell {
  background:
    linear-gradient(180deg, rgba(10, 8, 6, 0.92), rgba(10, 8, 6, 0.72)),
    rgba(10, 8, 6, 0.82);
  border-color: rgba(255, 255, 255, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #17110a;
  background:
    linear-gradient(145deg, #f8dfad, #b98945 70%),
    #c8a064;
  font-weight: 800;
  letter-spacing: -0.08em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 10px 30px rgba(0, 0, 0, 0.24);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: -0.03em;
}

.brand-copy small {
  color: rgba(255, 247, 233, 0.58);
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255, 247, 233, 0.74);
  font-size: 0.92rem;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform 0.25s var(--ease),
    opacity 0.2s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.primary-button,
.secondary-button,
.ghost-button,
.pill-button,
.icon-button {
  border: 0;
  border-radius: 999px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease);
}

.primary-button,
.pill-button {
  color: #151007;
  background: linear-gradient(135deg, #ffe8b9, #c99e5e 52%, #f2d393);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 15px 45px rgba(200, 160, 100, 0.22);
}

.primary-button {
  padding: 0 24px;
}

.pill-button {
  padding: 0 18px;
  min-height: 50px;
}

.primary-button.light {
  background: #fff6e7;
}

.secondary-button,
.ghost-button {
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.secondary-button {
  padding: 0 22px;
}

.ghost-button {
  min-height: 46px;
  padding: 0 16px;
}

.icon-button {
  width: 46px;
  min-width: 46px;
  height: 46px;
  padding: 0;
  font-size: 1.35rem;
  line-height: 1;
  color: inherit;
  background: rgba(255, 255, 255, 0.1);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.pill-button:hover,
.icon-button:hover {
  transform: translateY(-2px);
}

.primary-button:hover,
.pill-button:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 20px 60px rgba(200, 160, 100, 0.34);
}

.primary-button:disabled,
.secondary-button:disabled,
.ghost-button:disabled,
.pill-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff7e9;
  background: #090807;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.96), rgba(8, 7, 5, 0.62) 44%, rgba(8, 7, 5, 0.12)),
    url("https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&w=2200&q=86")
      center/cover;
  transform: scale(1.03);
  animation: heroDrift 18s var(--ease) infinite alternate;
}

.hero-gradient {
  position: absolute;
  inset: auto 0 0;
  height: 32vh;
  background: linear-gradient(180deg, transparent, #0d0b08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: 56px;
  padding: 154px 0 88px;
}

.hero-copy {
  max-width: 800px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

.hero h1,
.section-heading h2,
.cinema-content h2,
.booking-band h2,
.contact-copy h2 {
  margin: 14px 0 0;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(4.5rem, 11.5vw, 10.5rem);
  font-weight: 860;
}

.hero p {
  max-width: 640px;
  margin: 30px 0 0;
  color: rgba(255, 247, 233, 0.78);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  box-shadow: var(--shadow-strong);
}

.hero-card {
  padding: 24px;
  border-radius: var(--radius-xl);
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 247, 233, 0.62);
  font-size: 0.85rem;
}

.hero-card-top strong {
  color: #fff6e6;
}

.hero-service {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-service p {
  margin: 0;
  color: #fff8ec;
  font-size: 1rem;
  font-weight: 750;
}

.hero-service small {
  color: rgba(255, 247, 233, 0.58);
}

.service-orb {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 32% 26%, #fff1cd 0 12%, transparent 13%),
    linear-gradient(145deg, #f0cf91, #805820);
  box-shadow: 0 14px 40px rgba(200, 160, 100, 0.3);
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.hero-card-grid div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.22);
}

.hero-card-grid strong {
  display: block;
  color: #fff5df;
  font-size: 1.65rem;
  letter-spacing: -0.06em;
}

.hero-card-grid span {
  color: rgba(255, 247, 233, 0.55);
  font-size: 0.82rem;
}

.intro-strip {
  padding: 0 0 72px;
  color: #fff7e9;
  background: #0d0b08;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
}

.strip-grid div {
  padding: 28px;
  background: rgba(255, 255, 255, 0.045);
}

.strip-grid strong,
.strip-grid span {
  display: block;
}

.strip-grid strong {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.strip-grid span {
  color: rgba(255, 247, 233, 0.6);
}

.section {
  padding: 116px 0;
  background:
    radial-gradient(circle at 86% 10%, rgba(200, 160, 100, 0.12), transparent 30rem),
    var(--paper);
}

.section-light {
  background:
    radial-gradient(circle at 8% 12%, rgba(200, 160, 100, 0.16), transparent 25rem),
    var(--paper-soft);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 54px;
}

.section-heading h2,
.cinema-content h2,
.booking-band h2,
.contact-copy h2 {
  color: var(--ink);
  font-size: clamp(2.7rem, 6vw, 6.3rem);
  font-weight: 850;
}

.section-heading p,
.cinema-content p,
.booking-band p,
.contact-copy p {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.service-grid,
.pricing-grid,
.team-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card,
.price-card,
.team-card,
.testimonial-card,
.admin-card,
.portal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 22px 80px rgba(64, 47, 26, 0.08);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease);
}

.service-card:hover,
.price-card:hover,
.team-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 160, 100, 0.42);
  box-shadow: 0 32px 90px rgba(64, 47, 26, 0.14);
}

.service-card {
  min-height: 310px;
  padding: 28px;
}

.service-card::after,
.price-card::after {
  content: "";
  position: absolute;
  inset: -35% -35% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(200, 160, 100, 0.18), transparent 68%);
  pointer-events: none;
}

.service-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--gold-deep);
  background: rgba(200, 160, 100, 0.13);
  font-weight: 850;
}

.service-card h3,
.price-card h3,
.team-card h3,
.testimonial-card h3,
.contact-form h3,
.portal-card h3,
.admin-card h3 {
  margin: 24px 0 10px;
  color: var(--ink);
  font-size: 1.42rem;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.service-card p,
.team-card p,
.testimonial-card p,
.portal-card p,
.admin-card p {
  color: var(--muted);
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(200, 160, 100, 0.28);
  border-radius: 999px;
  color: var(--gold-deep);
  background: rgba(200, 160, 100, 0.09);
  font-size: 0.82rem;
  font-weight: 760;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.text-button::after {
  content: "→";
  transition: transform 0.22s var(--ease);
}

.text-button:hover::after {
  transform: translateX(5px);
}

.cinema-section {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff7e9;
  background: #090807;
}

.cinema-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 7, 5, 0.15), rgba(8, 7, 5, 0.88)),
    url("https://images.unsplash.com/photo-1621605815971-fbc98d665033?auto=format&fit=crop&w=2200&q=86")
      center/cover;
  transform: scale(1.02);
}

.cinema-content {
  position: relative;
  z-index: 1;
  padding: 0 0 90px;
}

.cinema-content h2,
.cinema-content p {
  color: #fff7e9;
}

.cinema-content p {
  color: rgba(255, 247, 233, 0.72);
}

.price-card {
  padding: 30px;
}

.price-card.featured {
  color: #fff7e9;
  background:
    linear-gradient(145deg, rgba(33, 28, 21, 0.96), rgba(13, 11, 8, 0.98)),
    var(--black);
  border-color: rgba(200, 160, 100, 0.38);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.23);
}

.price-card.featured h3,
.price-card.featured .price,
.price-card.featured li {
  color: #fff7e9;
}

.price-card.featured p,
.price-card.featured .price-note {
  color: rgba(255, 247, 233, 0.62);
}

.price {
  margin: 20px 0 8px;
  font-size: 3.8rem;
  font-weight: 860;
  letter-spacing: -0.08em;
}

.price sup {
  font-size: 1.05rem;
  vertical-align: super;
  letter-spacing: 0;
}

.price-note {
  color: var(--muted);
}

.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.price-card li {
  color: var(--ink-soft);
}

.price-card li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--gold-deep);
  font-weight: 900;
}

.team-card {
  padding: 12px;
  background: #fffaf2;
}

.team-image {
  aspect-ratio: 4 / 4.35;
  overflow: hidden;
  border-radius: 28px;
  background: #ded0bd;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
  transition: transform 0.7s var(--ease);
}

.team-card:hover img {
  transform: scale(1.045);
}

.team-content {
  padding: 12px 14px 18px;
}

.team-role {
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-band {
  padding: 92px 0;
  color: #fff7e9;
  background:
    linear-gradient(135deg, rgba(8, 7, 5, 0.94), rgba(33, 24, 13, 0.92)),
    url("https://images.unsplash.com/photo-1512690459411-b9245aed614b?auto=format&fit=crop&w=2200&q=86")
      center/cover;
}

.booking-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
}

.booking-band h2,
.booking-band p {
  color: #fff7e9;
}

.booking-band p {
  color: rgba(255, 247, 233, 0.7);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 280px;
  grid-column: span 4;
  overflow: hidden;
  border-radius: 32px;
  background: #ddd1c1;
  box-shadow: 0 26px 80px rgba(48, 36, 19, 0.11);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 7;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(5) {
  grid-column: span 5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition:
    transform 0.8s var(--ease),
    filter 0.8s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.055);
  filter: contrast(1.04) saturate(0.92);
}

.gallery-caption {
  position: absolute;
  inset: auto 16px 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  color: #fff7e9;
  background: rgba(8, 7, 5, 0.52);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.gallery-caption strong {
  display: block;
  letter-spacing: -0.03em;
}

.gallery-caption span {
  color: rgba(255, 247, 233, 0.62);
  font-size: 0.82rem;
}

.testimonial-card {
  padding: 30px;
}

.quote-mark {
  color: rgba(200, 160, 100, 0.45);
  font-size: 4.2rem;
  line-height: 0.75;
  font-family: Georgia, serif;
}

.stars {
  color: var(--gold-deep);
  letter-spacing: 0.08em;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

.sticky-heading {
  position: sticky;
  top: 130px;
  align-self: start;
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.52);
}

.faq-question {
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-size: 1.06rem;
  font-weight: 800;
}

.faq-question span:last-child {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--gold-deep);
  background: rgba(200, 160, 100, 0.12);
  transition: transform 0.25s var(--ease);
}

.faq-item.open .faq-question span:last-child {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s var(--ease);
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 24px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer > p {
  padding-bottom: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin: 34px 0;
}

.contact-cards a,
.contact-cards div {
  display: grid;
  gap: 2px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
}

.contact-cards span {
  color: var(--muted);
  font-size: 0.85rem;
}

.contact-cards strong {
  color: var(--ink);
  letter-spacing: -0.03em;
}

.contact-form {
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 28px 90px rgba(54, 40, 21, 0.1);
}

.contact-form h3 {
  margin-top: 0;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(12, 11, 9, 0.16);
  border-radius: 17px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

input,
select {
  min-height: 50px;
  padding: 0 15px;
}

textarea {
  resize: vertical;
  padding: 14px 15px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(143, 106, 53, 0.62);
  box-shadow: 0 0 0 4px rgba(200, 160, 100, 0.16);
  background: #fff;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.map-card {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #ded0bd;
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 650px;
  border: 0;
  filter: saturate(0.7) contrast(1.05);
}

.map-link {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 13px 17px;
  border-radius: 999px;
  color: #fff7e9;
  background: rgba(8, 7, 5, 0.68);
  backdrop-filter: blur(14px);
}

.site-footer {
  padding: 60px 0 32px;
  color: rgba(255, 247, 233, 0.7);
  background: #090807;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr auto;
  gap: 32px;
  align-items: start;
}

.footer-brand {
  color: #fff7e9;
}

.site-footer p {
  max-width: 340px;
  margin: 22px 0 0;
}

.site-footer nav,
.socials {
  display: grid;
  gap: 12px;
}

.site-footer a:hover {
  color: #fff7e9;
}

.footer-admin {
  color: #fff7e9;
}

.portfolio-credit {
  color: rgba(255, 247, 233, 0.5);
  font-size: 0.92rem;
}

.portfolio-credit a,
.portfolio-contacts a {
  color: #ffe2ad;
}

.portfolio-contacts {
  display: grid;
  gap: 12px;
  min-width: 230px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.app-dialog {
  width: min(920px, calc(100vw - 28px));
  max-height: min(860px, calc(100svh - 28px));
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 34px;
  color: #fff7e9;
  background: rgba(10, 9, 7, 0.82);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(34px) saturate(145%);
  -webkit-backdrop-filter: blur(34px) saturate(145%);
}

.app-dialog::backdrop {
  background:
    radial-gradient(circle at top, rgba(200, 160, 100, 0.16), transparent 35rem),
    rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(10px);
}

.dialog-shell {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  max-height: min(860px, calc(100svh - 28px));
}

.dialog-shell.wide {
  width: min(1180px, calc(100vw - 28px));
}

.admin-dialog {
  width: min(1180px, calc(100vw - 28px));
}

.dialog-header,
.dialog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dialog-header h2 {
  margin: 6px 0 0;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.dialog-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 0;
}

.dialog-body {
  overflow: auto;
  padding: 24px;
}

.stepper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 0 24px 22px;
}

.step-dot {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 247, 233, 0.56);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 800;
}

.step-dot strong {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #151007;
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
}

.step-dot.active {
  color: #fff8ec;
  border-color: rgba(200, 160, 100, 0.55);
  background: rgba(200, 160, 100, 0.14);
}

.step-dot.active strong,
.step-dot.complete strong {
  background: linear-gradient(135deg, #ffe8b9, #c99e5e);
}

.booking-layout,
.portal-layout,
.admin-layout {
  display: grid;
  gap: 18px;
}

.selection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.choice-card {
  position: relative;
  min-height: 128px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  color: #fff7e9;
  background: rgba(255, 255, 255, 0.07);
  text-align: left;
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s ease,
    background 0.25s ease;
}

.choice-card:hover,
.choice-card.selected {
  transform: translateY(-3px);
  border-color: rgba(200, 160, 100, 0.62);
  background: rgba(200, 160, 100, 0.13);
}

.choice-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
}

.choice-card p,
.choice-card small {
  color: rgba(255, 247, 233, 0.62);
}

.choice-card .choice-price {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #ffe5af;
  font-weight: 850;
}

.date-time-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 18px;
  align-items: start;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.time-slot {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #fff7e9;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
}

.time-slot:hover,
.time-slot.selected {
  border-color: rgba(200, 160, 100, 0.62);
  background: rgba(200, 160, 100, 0.16);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.dialog-body input,
.dialog-body textarea,
.dialog-body select {
  color: #fff7e9;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.dialog-body input:focus,
.dialog-body textarea:focus,
.dialog-body select:focus {
  background: rgba(255, 255, 255, 0.12);
}

.dialog-body label {
  color: rgba(255, 247, 233, 0.82);
}

.dialog-body option {
  color: var(--ink);
}

.review-card,
.notice-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.07);
}

.review-card dl {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 14px;
  margin: 0;
}

.review-card dt {
  color: rgba(255, 247, 233, 0.52);
}

.review-card dd {
  margin: 0;
  color: #fff7e9;
  font-weight: 800;
}

.success-card {
  padding: 34px;
  border-radius: 30px;
  color: #fff7e9;
  background:
    radial-gradient(circle at top right, rgba(200, 160, 100, 0.28), transparent 18rem),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 160, 100, 0.38);
}

.success-card h3 {
  margin: 0 0 10px;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.reference {
  display: inline-flex;
  margin: 18px 0;
  padding: 12px 16px;
  border-radius: 999px;
  color: #151007;
  background: #ffe8b9;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tab-button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 247, 233, 0.72);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.tab-button.active,
.tab-button:hover {
  color: #151007;
  background: #ffe8b9;
}

.portal-card,
.admin-card {
  padding: 22px;
  color: #fff7e9;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.portal-card h3,
.admin-card h3 {
  color: #fff7e9;
  margin-top: 0;
}

.portal-card p,
.admin-card p {
  color: rgba(255, 247, 233, 0.63);
}

.auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.mini-form {
  display: grid;
  gap: 12px;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.reservation-list,
.admin-list {
  display: grid;
  gap: 12px;
}

.reservation-row,
.admin-row {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.reservation-row header,
.admin-row header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.reservation-row strong,
.admin-row strong {
  color: #fff7e9;
}

.reservation-row small,
.admin-row small,
.muted {
  color: rgba(255, 247, 233, 0.58);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #10100d;
  background: #e8d3a2;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: capitalize;
}

.status-pill.canceled {
  color: #fff;
  background: var(--danger);
}

.status-pill.completed {
  color: #fff;
  background: var(--success);
}

.status-pill.no-show {
  color: #fff;
  background: var(--warning);
}

.admin-table {
  display: grid;
  gap: 10px;
}

.admin-editor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.admin-editor-grid .full {
  grid-column: 1 / -1;
}

.danger-button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff;
  background: rgba(172, 64, 56, 0.78);
  font-weight: 800;
}

.small-button {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #fff7e9;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.email-outbox {
  max-height: 300px;
  overflow: auto;
}

.field-error {
  color: #ffb6ad;
  font-size: 0.84rem;
  font-weight: 700;
}

.toast-region {
  position: fixed;
  z-index: 1000;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.toast {
  width: min(380px, calc(100vw - 36px));
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  color: #fff7e9;
  background: rgba(10, 9, 7, 0.86);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-strong);
  animation: toastIn 0.35s var(--ease);
}

.toast strong {
  display: block;
  margin-bottom: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(1.5%, -1%, 0);
  }
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-shell {
    display: grid;
    grid-template-columns: 1fr auto;
    border-radius: 0;
    padding-inline: 20px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links,
  .nav-actions {
    display: none;
    grid-column: 1 / -1;
  }

  .nav-open .nav-links,
  .nav-open .nav-actions {
    display: grid;
  }

  .nav-links {
    justify-content: stretch;
    gap: 4px;
    padding-top: 8px;
  }

  .nav-links a {
    padding: 13px 10px;
  }

  .nav-actions {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .contact-grid,
  .faq-grid,
  .booking-band-grid,
  .date-time-grid,
  .auth-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 146px;
  }

  .hero-card {
    max-width: 460px;
  }

  .service-grid,
  .pricing-grid,
  .team-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sticky-heading {
    position: static;
  }

  .map-card,
  .map-card iframe {
    min-height: 470px;
    height: 470px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  body {
    background:
      radial-gradient(circle at top left, rgba(200, 160, 100, 0.13), transparent 26rem),
      linear-gradient(180deg, #0a0907 0%, #0d0b08 24rem, var(--paper) 24.1rem);
  }

  .section-wrap {
    width: min(100% - 28px, var(--max));
  }

  .nav-shell {
    min-height: 66px;
    padding: 10px 14px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 15px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 18vw, 5.8rem);
  }

  .hero-grid {
    gap: 30px;
    padding-bottom: 50px;
  }

  .hero-actions,
  .nav-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions > *,
  .booking-band .primary-button {
    width: 100%;
  }

  .strip-grid,
  .service-grid,
  .pricing-grid,
  .team-grid,
  .testimonial-grid,
  .selection-grid,
  .form-grid,
  .admin-editor-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 84px 0;
  }

  .section-heading h2,
  .cinema-content h2,
  .booking-band h2,
  .contact-copy h2 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .cinema-section {
    min-height: 560px;
  }

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

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) {
    grid-column: auto;
  }

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

  .step-dot {
    min-height: 38px;
    font-size: 0.76rem;
  }

  .time-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dialog-header,
  .dialog-body,
  .dialog-footer {
    padding: 18px;
  }

  .dialog-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .review-card dl {
    grid-template-columns: 1fr;
  }
}
