/* ============================================================
   PHOTO BOOTHS INC. — MAIN STYLESHEET
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
  --black-primary: #050505;
  --black-secondary: #111111;
  --black-card: #181818;
  --black-card-hover: #222222;
  --black-border: #2A2A2A;
  --white: #FFFFFF;
  --gray-soft: #D8D8D8;
  --gray-mid: #888888;
  --gray-dark: #d8d8d8;
  --yellow-main: #FFD100;
  --yellow-deep: #F2B705;
  --yellow-glow: rgba(255, 209, 0, 0.15);
  --yellow-glow-strong: rgba(255, 209, 0, 0.3);
  --ivory: #F7F4EC;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-full: 9999px;

  --t-fast: 150ms ease;
  --t-base: 300ms ease;
  --t-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);

  --max-w: 1280px;
  --max-w-md: 960px;
  --max-w-sm: 720px;

  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.5);
  --shadow-card-hover: 0 16px 60px rgba(0, 0, 0, 0.7);
  --shadow-yellow: 0 0 40px rgba(255, 209, 0, 0.18);
  --shadow-yellow-hover: 0 0 60px rgba(255, 209, 0, 0.35);

  --header-h: 76px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--black-primary);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-soft);
}

.text-lg { font-size: 1.125rem; line-height: 1.65; }
.text-xl { font-size: 1.25rem; line-height: 1.6; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; letter-spacing: 0.05em; }

.text-white { color: var(--white) !important; }
.text-yellow { color: var(--yellow-main) !important; }
.text-gray { color: var(--gray-soft) !important; }
.text-mid { color: var(--gray-mid) !important; }

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.container--md {
  max-width: var(--max-w-md);
}

.container--sm {
  max-width: var(--max-w-sm);
}

.section {
  padding-block: clamp(3rem, 6vw, 6rem);
}

.section--sm {
  padding-block: clamp(2rem, 4vw, 4rem);
}

.section--lg {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section--dark {
  background-color: var(--black-primary);
}

.section--secondary {
  background-color: var(--black-secondary);
}

.section--card {
  background-color: var(--black-card);
}

.section--yellow {
  background-color: var(--yellow-main);
  color: var(--black-primary);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.gap-2 { gap: var(--sp-2); }
.gap-4 { gap: var(--sp-4); }
.gap-6 { gap: var(--sp-6); }
.gap-8 { gap: var(--sp-8); }
.gap-12 { gap: var(--sp-12); }

.text-center { text-align: center; }
.text-left { text-align: left; }

.mt-2 { margin-top: var(--sp-2); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mt-12 { margin-top: var(--sp-12); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-8 { margin-bottom: var(--sp-8); }
.mb-12 { margin-bottom: var(--sp-12); }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.875rem 2rem;
  border-radius: var(--r-full);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--t-base);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--yellow-main);
  color: var(--black-primary);
  border-color: var(--yellow-main);
}

.btn--primary:hover {
  background: var(--yellow-deep);
  border-color: var(--yellow-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 209, 0, 0.4);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.btn--outline-yellow {
  background: transparent;
  color: var(--yellow-main);
  border-color: var(--yellow-main);
}

.btn--outline-yellow:hover {
  background: var(--yellow-main);
  color: var(--black-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 209, 0, 0.4);
}

.btn--dark {
  background: var(--black-secondary);
  color: var(--white);
  border-color: var(--black-border);
}

.btn--dark:hover {
  background: var(--black-card-hover);
  border-color: var(--yellow-main);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}

/* ============================================================
   6. LABELS & BADGES
   ============================================================ */
.label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow-main);
  margin-bottom: var(--sp-4);
}

.label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--yellow-main);
  flex-shrink: 0;
}

.label--center {
  justify-content: center;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge--yellow {
  background: var(--yellow-main);
  color: var(--black-primary);
}

.badge--outline {
  border: 1px solid var(--black-border);
  color: var(--gray-soft);
}

/* ============================================================
   7. SECTION HEADER (TITLE BLOCK)
   ============================================================ */
.section-header {
  margin-bottom: var(--sp-16);
}

.section-header--center {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--sp-16);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--sp-5);
}

.section-title span {
  color: var(--yellow-main);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-soft);
  line-height: 1.7;
  max-width: 600px;
}

.section-header--center .section-desc {
  margin-inline: auto;
}

/* ============================================================
   8. CARDS
   ============================================================ */
.card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: rgba(255, 209, 0, 0.3);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 209, 0, 0.1);
  transform: translateY(-4px);
}

.card--featured {
  border-color: var(--yellow-main);
  box-shadow: 0 0 40px rgba(255, 209, 0, 0.1);
}

.card__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow-main);
  margin-bottom: var(--sp-3);
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-4);
  line-height: 1.2;
}

.card__desc {
  color: var(--gray-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: var(--sp-6);
}

.card__price {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.card__price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-mid);
  margin-left: 2px;
}

.card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow-main), var(--yellow-deep));
  opacity: 0;
  transition: opacity var(--t-base);
}

.card:hover .card__accent,
.card--featured .card__accent {
  opacity: 1;
}

/* ============================================================
   9. FEATURE LIST
   ============================================================ */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.9rem;
  color: var(--gray-soft);
  line-height: 1.5;
}

.feature-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--yellow-main);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M13.707 4.293a1 1 0 0 1 0 1.414l-7 7a1 1 0 0 1-1.414 0l-3-3a1 1 0 1 1 1.414-1.414L6 10.586l6.293-6.293a1 1 0 0 1 1.414 0z' fill='%23050505'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ============================================================
   10. HEADER & NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: all var(--t-base);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--black-border);
}

.header__inner {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}

.header__logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo-main {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.header__logo-main span {
  color: var(--yellow-main);
}

.header__logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-mid);
  line-height: 1;
  margin-top: 3px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__link {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--gray-soft);
  padding: 0.5rem 0.75rem;
  border-radius: var(--r-md);
  transition: color var(--t-fast);
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--white);
}

.nav__link.active {
  color: var(--yellow-main);
}

.header__cta {
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--sp-2);
  background: none;
  border: none;
  z-index: 1100;
}

.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t-base);
  transform-origin: center;
}

.hamburger.open .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black-secondary);
  z-index: 999;
  padding: calc(var(--header-h) + var(--sp-8)) var(--sp-6) var(--sp-8);
  flex-direction: column;
  gap: var(--sp-2);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--t-slow);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav__link {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--black-border);
  transition: color var(--t-fast);
  display: block;
}

.mobile-nav__link:hover {
  color: var(--yellow-main);
}

.mobile-nav__cta {
  margin-top: var(--sp-8);
}

/* ============================================================
   11. FOOTER
   ============================================================ */
.footer {
  background: var(--black-secondary);
  border-top: 1px solid var(--black-border);
  padding-top: var(--sp-20);
  padding-bottom: var(--sp-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-16);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-3);
}

.footer__brand-name span {
  color: var(--yellow-main);
}

.footer__brand-desc {
  font-size: 0.9rem;
  color: var(--gray-soft);
  line-height: 1.6;
  margin-bottom: var(--sp-6);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.9rem;
  color: var(--gray-soft);
  margin-bottom: var(--sp-3);
}

.footer__contact-item a {
  color: var(--gray-soft);
  transition: color var(--t-fast);
}

.footer__contact-item a:hover {
  color: var(--yellow-main);
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow-main);
  margin-bottom: var(--sp-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__link {
  font-size: 0.9rem;
  color: var(--gray-soft);
  transition: color var(--t-fast);
  line-height: 1;
}

.footer__link:hover {
  color: var(--white);
}

.footer__service-area {
  font-size: 0.9rem;
  color: var(--gray-soft);
  line-height: 1.6;
  margin-bottom: var(--sp-6);
}

.footer__note {
  font-size: 0.8rem;
  color: var(--gray-dark);
  font-style: italic;
  margin-top: var(--sp-3);
}

.footer__bottom {
  padding-top: var(--sp-6);
  border-top: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--gray-dark);
}

.footer__bottom-note {
  font-size: 0.8rem;
  color: var(--gray-dark);
}

/* ============================================================
   12. HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  background-color: var(--black-primary);
  overflow: hidden;
  padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 6rem));
  padding-bottom: clamp(3rem, 7vw, 6rem);
}

.hero--short {
  min-height: auto;
  padding-top: calc(var(--header-h) + clamp(2rem, 5vw, 4rem));
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.hero--medium {
  min-height: auto;
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem));
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Radial glow background */
.hero__glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 209, 0, 0.06) 0%, transparent 70%);
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
}

.hero__glow--left {
  right: auto;
  left: -200px;
}

/* Grid lines decoration */
.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Flash line effects */
.hero__flash {
  position: absolute;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 209, 0, 0.6), transparent);
  animation: flashLine 4s ease-in-out infinite;
  opacity: 0;
}

.hero__flash--1 {
  height: 200px;
  right: 20%;
  top: 10%;
  animation-delay: 0s;
}

.hero__flash--2 {
  height: 150px;
  right: 35%;
  top: 60%;
  animation-delay: 1.5s;
}

.hero__flash--3 {
  height: 100px;
  right: 10%;
  top: 40%;
  animation-delay: 3s;
}

@keyframes flashLine {
  0%, 100% { opacity: 0; transform: scaleY(0.3); }
  50% { opacity: 1; transform: scaleY(1); }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.hero__inner--centered {
  grid-template-columns: 1fr;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow-main);
  margin-bottom: var(--sp-5);
}

.hero__label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--yellow-main);
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-6);
}

.hero__title span {
  color: var(--yellow-main);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--gray-soft);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: var(--sp-10);
}

.hero__inner--centered .hero__subtitle {
  margin-inline: auto;
  max-width: 620px;
}

/* ============================================================
   13. FLOATING PHOTO CARDS (Homepage Hero Visual)
   ============================================================ */
.photo-cards {
  position: relative;
  height: 500px;
}

.photo-card {
  position: absolute;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.photo-card__inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: var(--sp-4);
}

.photo-card__frame {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-card--1 {
  width: 200px;
  height: 280px;
  right: 40px;
  top: 40px;
  background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 1px solid var(--black-border);
  animation: floatCard1 6s ease-in-out infinite;
  z-index: 3;
}

.photo-card--2 {
  width: 180px;
  height: 240px;
  right: 200px;
  top: 140px;
  background: linear-gradient(145deg, #1d1a00 0%, #111100 100%);
  border: 1px solid rgba(255, 209, 0, 0.2);
  animation: floatCard2 7s ease-in-out infinite;
  z-index: 2;
}

.photo-card--3 {
  width: 160px;
  height: 220px;
  right: 60px;
  bottom: 30px;
  background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 1px solid var(--black-border);
  animation: floatCard3 8s ease-in-out infinite;
  z-index: 1;
}

@keyframes floatCard1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(-1deg); }
}

@keyframes floatCard2 {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

@keyframes floatCard3 {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-20px) rotate(-2deg); }
}

/* Real photo inside floating cards */
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.photo-card__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    transparent 40%,
    rgba(255, 209, 0, 0.04) 50%,
    transparent 60%
  );
  background-size: 200% 200%;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 200%; }
  100% { background-position: -200% -200%; }
}

.photo-card__placeholder {
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  margin: 8px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, #1f1f1f, #0d0d0d);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
}

.photo-card__icon {
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255, 209, 0, 0.4);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-card__icon::after {
  content: '';
  width: 12px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 209, 0, 0.4);
}

.photo-card__text {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 209, 0, 0.5);
  font-weight: 600;
}

/* Yellow dot accent on card */
.photo-card--1::before {
  content: '';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow-main);
  z-index: 4;
  box-shadow: 0 0 12px rgba(255, 209, 0, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 6px rgba(255, 209, 0, 0.6); transform: scale(1); }
  50% { box-shadow: 0 0 20px rgba(255, 209, 0, 0.9); transform: scale(1.2); }
}

/* ============================================================
   14. TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--black-secondary);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: var(--sp-6) 0;
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-12);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  white-space: nowrap;
}

.trust-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow-main);
  flex-shrink: 0;
}

.trust-item__text {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gray-soft);
}

/* ============================================================
   15. IMAGE PLACEHOLDER BLOCKS
   ============================================================ */
.img-block {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}

.img-block--tall {
  aspect-ratio: 3/4;
}

.img-block--wide {
  aspect-ratio: 16/9;
}

.img-block--square {
  aspect-ratio: 1/1;
}

.img-block--portrait {
  aspect-ratio: 2/3;
}

.img-block__fill {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
}

.img-block--dark {
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
  border: 1px solid var(--black-border);
}

.img-block--dark-yellow {
  background: linear-gradient(145deg, #1d1a00, #111100);
  border: 1px solid rgba(255, 209, 0, 0.15);
}

.img-block--gradient-v {
  background: linear-gradient(180deg, #1a1a1a 0%, var(--black-primary) 100%);
  border: 1px solid var(--black-border);
}

.img-block__label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 209, 0, 0.5);
}

.img-block__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  border: 2px solid rgba(255, 209, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Booth frame visual */
.booth-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booth-frame {
  position: relative;
  background: linear-gradient(160deg, #1e1e1e, #0a0a0a);
  border: 2px solid var(--black-border);
  border-radius: var(--r-xl);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.booth-frame--signature {
  width: 200px;
  height: 340px;
  border-top: 4px solid var(--yellow-main);
}

.booth-frame--legacy {
  width: 240px;
  height: 280px;
  border-top: 4px solid var(--yellow-deep);
}

.booth-frame__screen {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, #111, #000);
  border: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.booth-frame--signature .booth-frame__screen {
  height: 220px;
}

.booth-frame--legacy .booth-frame__screen {
  height: 160px;
}

.booth-frame__base {
  width: 100%;
  height: 60px;
  background: linear-gradient(180deg, #1a1a1a, #111);
  border-top: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.booth-frame__btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow-main);
  opacity: 0.7;
}

.booth-frame__btn--sm {
  width: 8px;
  height: 8px;
  background: var(--black-border);
  opacity: 1;
}

/* ============================================================
   16. STEPS / HOW IT WORKS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--yellow-main), var(--yellow-main));
  border-top: 1px dashed rgba(255, 209, 0, 0.3);
  pointer-events: none;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--black-card);
  border: 2px solid rgba(255, 209, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: var(--sp-5);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--yellow-main);
  transition: all var(--t-base);
}

.step:hover .step__number {
  background: var(--yellow-main);
  border-color: var(--yellow-main);
  color: var(--black-primary);
  box-shadow: 0 0 30px rgba(255, 209, 0, 0.4);
}

.step__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-2);
}

.step__desc {
  font-size: 0.875rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* ============================================================
   17. EVENT TYPE GRID
   ============================================================ */
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}

.event-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--r-lg);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  transition: all var(--t-base);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--yellow-main);
  transform: scaleX(0);
  transition: transform var(--t-base);
}

.event-card:hover {
  border-color: rgba(255, 209, 0, 0.2);
  transform: translateY(-3px);
}

.event-card:hover::before {
  transform: scaleX(1);
}

.event-card__icon {
  font-size: 2rem;
  margin-bottom: var(--sp-4);
  display: block;
}

.event-card__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-2);
}

.event-card__note {
  font-size: 0.8rem;
  color: var(--gray-mid);
}

/* ============================================================
   18. PRICING CARDS
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

.pricing-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--r-xl);
  padding: var(--sp-10) var(--sp-8);
  position: relative;
  overflow: hidden;
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: rgba(255, 209, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.pricing-card--featured {
  border-color: var(--yellow-main);
  background: linear-gradient(160deg, #1d1a00 0%, var(--black-card) 60%);
}

.pricing-card__badge {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
}

.pricing-card__top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--black-border);
}

.pricing-card--featured .pricing-card__top-line {
  background: linear-gradient(90deg, var(--yellow-main), var(--yellow-deep));
}

.pricing-card:hover .pricing-card__top-line {
  background: linear-gradient(90deg, var(--yellow-main), var(--yellow-deep));
}

.pricing-card__booth {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow-main);
  margin-bottom: var(--sp-2);
}

.pricing-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-6);
  line-height: 1.25;
}

.pricing-card__price-block {
  margin-bottom: var(--sp-8);
}

.pricing-card__starting {
  font-size: 0.75rem;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-1);
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.pricing-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-mid);
}

.pricing-card__features {
  flex: 1;
  margin-bottom: var(--sp-8);
}

.pricing-card__note {
  font-size: 0.8rem;
  color: var(--gray-soft);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--black-border);
  margin-top: auto;
}

/* ============================================================
   19. ADDON CARDS
   ============================================================ */
.addon-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  transition: all var(--t-base);
}

.addon-card:hover {
  border-color: rgba(255, 209, 0, 0.2);
}

.addon-card__price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--yellow-main);
  white-space: nowrap;
  flex-shrink: 0;
}

.addon-card__content {}

.addon-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-1);
}

.addon-card__desc {
  font-size: 0.875rem;
  color: var(--gray-mid);
}

/* ============================================================
   19a. PAGE PHOTO COMPONENTS (split-grid photos, strips)
   ============================================================ */

/* Stacked photo pair for split-grid reveal-right/left sections */
.page-photo-stack {
  position: relative;
  height: 380px;
}

.page-photo-stack__main {
  position: absolute;
  right: 0;
  top: 0;
  width: 75%;
  height: 85%;
  object-fit: cover;
  object-position: center 25%;
  border-radius: var(--r-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.page-photo-stack__accent {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  object-position: center 25%;
  border-radius: var(--r-lg);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  border: 3px solid var(--black-secondary);
}

/* Single full photo */
.page-photo-single {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 380px;
}

.page-photo-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Horizontal photo strip (5-across) */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.photo-strip__item {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--r-md);
}

.photo-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.photo-strip__item:hover img {
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .page-photo-stack { height: 260px; }
  .page-photo-single { height: 240px; }
  .photo-strip { grid-template-columns: repeat(3, 1fr); }
  .photo-strip__item:nth-child(n+4) { display: none; }
}

/* ============================================================
   19b. PHOTO GALLERY GRID
   ============================================================ */

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 8px;
}

.photo-gallery__item {
  overflow: hidden;
  border-radius: var(--r-md);
}

.photo-gallery__item--tall {
  grid-row: span 2;
}

.photo-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.photo-gallery__item:hover img {
  transform: scale(1.04);
}

@media (max-width: 767px) {
  .photo-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .photo-gallery__item--tall {
    grid-row: span 1;
  }
}

/* ============================================================
   20. CTA SECTIONS
   ============================================================ */
.cta-section {
  background: var(--black-secondary);
  position: relative;
  overflow: hidden;
}

.cta-section__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 209, 0, 0.08) 0%, transparent 70%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.cta-section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--sp-5);
}

.cta-section__title span {
  color: var(--yellow-main);
}

.cta-section__desc {
  color: var(--gray-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--sp-10);
}

.cta-section--yellow {
  background: var(--yellow-main);
}

.cta-section--yellow .cta-section__title {
  color: var(--black-primary);
}

.cta-section--yellow .cta-section__desc {
  color: rgba(0, 0, 0, 0.6);
}

/* ============================================================
   21. COMPARISON TABLE
   ============================================================ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--r-xl);
  overflow: hidden;
}

.compare-table th {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: var(--sp-5) var(--sp-6);
  background: var(--black-card);
  color: var(--white);
  text-align: left;
  border-bottom: 2px solid var(--black-border);
}

.compare-table th:first-child {
  color: var(--gray-mid);
  font-weight: 500;
}

.compare-table th.highlight {
  background: linear-gradient(160deg, #1d1a00, var(--black-card));
  color: var(--yellow-main);
}

.compare-table td {
  padding: var(--sp-4) var(--sp-6);
  font-size: 0.9rem;
  color: var(--gray-soft);
  border-bottom: 1px solid var(--black-border);
  background: var(--black-card);
}

.compare-table td:first-child {
  color: var(--white);
  font-weight: 500;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table tr:hover td {
  background: var(--black-card-hover);
}

.check { color: var(--yellow-main); font-weight: 700; }
.cross { color: var(--gray-dark); }

/* ============================================================
   22. FAQ
   ============================================================ */
.faq-item {
  border-bottom: 1px solid var(--black-border);
  padding: var(--sp-6) 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--black-border);
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  transition: color var(--t-fast);
}

.faq-question:hover {
  color: var(--yellow-main);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--yellow-main);
  flex-shrink: 0;
  transition: transform var(--t-base);
}

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

.faq-answer {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow), padding var(--t-base);
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-top: var(--sp-4);
}

/* ============================================================
   23. CONTACT FORM
   ============================================================ */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-soft);
}

.form-input,
.form-select,
.form-textarea {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  width: 100%;
  transition: border-color var(--t-base), box-shadow var(--t-base);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--yellow-main);
  box-shadow: 0 0 0 3px rgba(255, 209, 0, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-dark);
}

/* ============================================================
   24. NOTE BOXES
   ============================================================ */
.note-box {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-left: 3px solid var(--yellow-main);
  border-radius: var(--r-md);
  padding: var(--sp-5) var(--sp-6);
}

.note-box__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow-main);
  margin-bottom: var(--sp-2);
}

.note-box__text {
  font-size: 0.9rem;
  color: var(--gray-soft);
  line-height: 1.6;
}

/* Booking notes list */
.booking-notes {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.booking-note {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  font-size: 0.9rem;
  color: var(--gray-soft);
  line-height: 1.5;
}

.booking-note__num {
  width: 28px;
  height: 28px;
  background: rgba(255, 209, 0, 0.1);
  border: 1px solid rgba(255, 209, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--yellow-main);
  flex-shrink: 0;
}

/* ============================================================
   25. STAT BLOCKS
   ============================================================ */
.stat-block {
  text-align: center;
}

.stat-block__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--yellow-main);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.stat-block__label {
  font-size: 0.85rem;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   26. DIVIDERS
   ============================================================ */
.divider {
  height: 1px;
  background: var(--black-border);
  margin: var(--sp-12) 0;
}

.divider--yellow {
  background: linear-gradient(90deg, transparent, var(--yellow-main), transparent);
  height: 1px;
}

/* ============================================================
   27. SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   28. YELLOW ACCENT LINE
   ============================================================ */
.yellow-line {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--yellow-main);
  border-radius: var(--r-full);
}

.yellow-line--center {
  margin-inline: auto;
  margin-bottom: var(--sp-8);
}

/* ============================================================
   29. PAGE HERO VARIANTS
   ============================================================ */
.page-hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  background: var(--black-primary);
  overflow: hidden;
  padding-top: calc(var(--header-h) + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 209, 0, 0.07) 0%, transparent 70%);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

/* ============================================================
   30. BOOTH SHOWCASE
   ============================================================ */
.booth-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}

.booth-showcase__text {}

.booth-showcase__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-12);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--r-xl);
  min-height: 400px;
}

.booth-showcase__visual--yellow-glow {
  background: radial-gradient(circle at center, rgba(255, 209, 0, 0.05) 0%, var(--black-card) 70%);
  box-shadow: inset 0 0 60px rgba(255, 209, 0, 0.03);
}

/* ============================================================
   31. RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    margin-inline: auto;
  }

  .hero__inner .btn-group {
    justify-content: center;
  }

  .photo-cards {
    display: none;
  }

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

  .steps::before {
    display: none;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }

  .booth-showcase {
    grid-template-columns: 1fr;
  }

  .booth-showcase__visual {
    order: -1;
    min-height: 260px;
  }
}

/* ============================================================
   32. RESPONSIVE — MOBILE
   ============================================================ */
/* Nav hides at 960px for tablets — prevents cramped 9-link nav */
@media (max-width: 960px) {
  :root {
    --header-h: 68px;
  }

  .header__nav,
  .header__cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }
}

/* Grid stacking and layout adjustments for mobile */
@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .trust-strip__inner {
    gap: var(--sp-6);
  }

  .hero__title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .section {
    padding-block: clamp(2.5rem, 5vw, 4rem);
  }

  .section--lg {
    padding-block: clamp(3rem, 6vw, 5rem);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .compare-table {
    font-size: 0.8rem;
    min-width: 100%;
    width: max-content;
  }

  .compare-table th,
  .compare-table td {
    padding: var(--sp-3) var(--sp-4);
  }

  .compare-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .reveal-left,
  .reveal-right {
    transform: translateY(24px);
  }

  .reveal-left.revealed,
  .reveal-right.revealed {
    transform: translateY(0);
  }
}

@media (max-width: 1280px) {
  .reveal-left,
  .reveal-right {
    transform: translateY(24px);
  }

  .reveal-left.revealed,
  .reveal-right.revealed {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .event-grid {
    grid-template-columns: 1fr;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-group .btn {
    text-align: center;
    justify-content: center;
  }

  .trust-strip__inner {
    gap: var(--sp-4);
    justify-content: flex-start;
    overflow-x: auto;
    padding-inline: var(--sp-4);
    flex-wrap: nowrap;
  }
}

/* ============================================================
   33. ICON CARD COMPONENT
   ============================================================ */
.icon-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--r-xl);
  transition: border-color var(--t-base), transform var(--t-base);
}

.icon-card:hover {
  border-color: rgba(255, 209, 0, 0.2);
  transform: translateY(-2px);
}

.icon-card--lg {
  padding: 2.5rem 2rem;
}

.icon-card--pad {
  padding: 2rem;
}

.icon-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

.icon-card__icon--lg {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.icon-card__icon--xl {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
}

.icon-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.icon-card__title--sm {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.icon-card__note {
  font-size: 0.875rem;
  color: var(--gray-mid);
  line-height: 1.5;
}

/* ============================================================
   34. SPLIT GRID (TWO-COLUMN LAYOUT)
   ============================================================ */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .split-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ============================================================
   35. UTILITY ADDITIONS
   ============================================================ */

/* Full-width centered button */
.btn--block {
  width: 100%;
  justify-content: center;
}

/* AI / gold-gradient card variant */
.card--ai {
  background: linear-gradient(160deg, #1d1a00, var(--black-card));
  border-color: rgba(255, 209, 0, 0.2);
}

/* Centered note box */
.note-box--centered {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

/* Footer dynamic year span */
.footer-year {
  /* purely semantic wrapper — inherits parent styles */
}

/* AI highlight card — gold-tinted feature callout block */
.ai-highlight-card {
  background: linear-gradient(160deg, #1d1a00, var(--black-card));
  border: 1px solid rgba(255, 209, 0, 0.22);
  border-radius: var(--r-xl);
  padding: 3rem;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.ai-highlight-card--sm {
  min-height: 260px;
  gap: 1rem;
}

/* icon-card--ai: icon card with subtle gold tint */
.icon-card--ai {
  background: linear-gradient(160deg, #1d1a00, var(--black-card));
  border-color: rgba(255, 209, 0, 0.2);
}

/* Pricing preview card on homepage */
.pricing-preview-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.pricing-preview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow-main), var(--yellow-deep));
}

.pricing-preview-card__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow-main);
  margin-bottom: 0.5rem;
}

.pricing-preview-card__price {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.pricing-preview-card__price span {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gray-mid);
}

.pricing-preview-card__note {
  font-size: 0.8rem;
  color: var(--gray-dark);
  font-style: italic;
}

/* btn-group centered */
.btn-group--center {
  justify-content: center;
}

/* hero label centered variant */
.hero__label--center {
  justify-content: center;
}

/* card__label flex variant (for inline badge + text) */
.card__label--flex {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* AI highlight card heading */
.ai-highlight-card__heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

/* pricing-card top line gold gradient variant */
.pricing-card__top-line--gold {
  background: linear-gradient(90deg, var(--yellow-main), var(--yellow-deep));
}

/* pricing-card--ai: subtle gold tier */
.pricing-card--ai .pricing-card__top-line {
  background: linear-gradient(90deg, var(--yellow-main), var(--yellow-deep));
}

/* pricing-card--ai: subtle gold accent for AI pricing tier */
.pricing-card--ai {
  background: linear-gradient(160deg, #1d1a00 0%, var(--black-card) 60%);
  border-color: rgba(255, 209, 0, 0.2);
}

/* ============================================================
   36. NAV OVERFLOW FIX FOR "CORPORATE EVENTS" LABEL
   ============================================================ */
/* With Blog added (9 nav items) tighten slightly more */
@media (max-width: 1200px) {
  .nav__link {
    padding: 0.5rem 0.55rem;
    font-size: 0.80rem;
  }
}

/* ============================================================
   37. BLOG — INDEX CARDS & ARTICLE PROSE
   ============================================================ */

/* Blog card grid item */
.blog-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}

.blog-card:hover {
  border-color: rgba(255, 209, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5);
}

.blog-card__img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.04);
}

.blog-card__body {
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}

.blog-card__date {
  font-size: 0.75rem;
  color: var(--gray-mid);
  letter-spacing: 0.05em;
}

.blog-card__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow-main);
  background: rgba(255, 209, 0, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(255, 209, 0, 0.2);
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: var(--sp-4);
  transition: color var(--t-fast);
}

.blog-card:hover .blog-card__title {
  color: var(--yellow-main);
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--gray-soft);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--sp-6);
}

.blog-card__read-more {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--yellow-main);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  transition: gap var(--t-fast);
  text-decoration: none;
}

.blog-card__read-more::after {
  content: '→';
}

.blog-card:hover .blog-card__read-more {
  gap: var(--sp-3);
}

/* Article page layout */
.article-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2.5rem, 5vw, 4rem));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  background: var(--black-primary);
  overflow: hidden;
}

.article-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.article-hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 209, 0, 0.05) 0%, transparent 70%);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.article-hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.article-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-size: 0.78rem;
  color: var(--gray-mid);
  margin-bottom: var(--sp-6);
}

.article-hero__breadcrumb a {
  color: var(--gray-mid);
  transition: color var(--t-fast);
}

.article-hero__breadcrumb a:hover {
  color: var(--yellow-main);
}

.article-hero__breadcrumb span {
  color: var(--gray-dark);
}

.article-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow-main);
  background: rgba(255, 209, 0, 0.08);
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(255, 209, 0, 0.2);
  margin-bottom: var(--sp-5);
}

.article-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-6);
}

.article-hero__title span {
  color: var(--yellow-main);
}

.article-hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--gray-mid);
}

.article-hero__meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gray-dark);
  flex-shrink: 0;
}

/* Article featured image */
.article-feature-img {
  width: 100%;
  max-width: 860px;
  margin: 0 auto var(--sp-16);
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16 / 7;
}

.article-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Article prose body */
.article-wrap {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.article-body {
  color: var(--gray-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-body h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--black-border);
}

.article-body h2:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.article-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 1.75rem;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.article-body p {
  margin-bottom: 1.25rem;
  color: var(--gray-soft);
}

.article-body ul,
.article-body ol {
  list-style: none;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.article-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding-left: 0;
}

.article-body ul li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--yellow-main);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M13.707 4.293a1 1 0 0 1 0 1.414l-7 7a1 1 0 0 1-1.414 0l-3-3a1 1 0 1 1 1.414-1.414L6 10.586l6.293-6.293a1 1 0 0 1 1.414 0z' fill='%23050505'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.article-body ol {
  counter-reset: ol-counter;
}

.article-body ol li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  counter-increment: ol-counter;
}

.article-body ol li::before {
  content: counter(ol-counter);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--black-primary);
  background: var(--yellow-main);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.article-body strong {
  color: var(--white);
  font-weight: 600;
}

.article-body a {
  color: var(--yellow-main);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}

.article-body a:hover {
  color: var(--yellow-deep);
}

/* Pull quote / callout box */
.article-callout {
  border-left: 3px solid var(--yellow-main);
  background: rgba(255, 209, 0, 0.04);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: var(--sp-5) var(--sp-6);
  margin: var(--sp-8) 0;
  font-size: 1rem;
  color: var(--gray-soft);
  font-style: italic;
  line-height: 1.7;
}

.article-callout strong {
  color: var(--yellow-main);
  font-style: normal;
}

/* Inline CTA block within article */
.article-inline-cta {
  background: linear-gradient(160deg, #1d1a00, var(--black-card));
  border: 1px solid rgba(255, 209, 0, 0.22);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  text-align: center;
  margin: var(--sp-12) 0;
}

.article-inline-cta__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}

.article-inline-cta__desc {
  font-size: 0.9rem;
  color: var(--gray-mid);
  margin-bottom: var(--sp-6);
  line-height: 1.6;
}

/* Article bottom: related posts row */
.related-posts {
  border-top: 1px solid var(--black-border);
  padding-top: var(--sp-12);
  margin-top: var(--sp-16);
}

.related-posts__title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow-main);
  margin-bottom: var(--sp-6);
}

/* ============================================================ */
@media (max-width: 1100px) {
  .nav__link {
    padding: 0.5rem 0.5rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 960px) {
  .nav__link {
    font-size: 0.72rem;
    padding: 0.5rem 0.4rem;
  }
}

/* ============================================================
   38. FORM VALIDATION STATES + SUCCESS PANEL
   ============================================================ */

.form-error {
  display: block;
  color: #ef4444;
  font-size: 0.73rem;
  margin-top: 0.35rem;
  line-height: 1.3;
}

.form-input[aria-invalid="true"],
.form-select[aria-invalid="true"],
.form-textarea[aria-invalid="true"] {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
}

.form-success {
  text-align: center;
  padding: 3rem 1.5rem;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  border: 2px solid #22c55e;
  color: #22c55e;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  line-height: 1;
}

.form-success__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.form-success__desc {
  font-size: 1rem;
  color: var(--gray-light);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.form-success__note {
  font-size: 0.875rem;
  color: var(--gray-mid);
  line-height: 1.5;
}

/* ============================================================
   39. PRICE ESTIMATOR CALCULATOR
   ============================================================ */

.price-calc {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--r-xl);
  padding: 3rem;
}

.price-calc__group {
  margin-bottom: 1.75rem;
}

.price-calc__group:last-child {
  margin-bottom: 0;
}

.price-calc__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 0.65rem;
}

.price-calc__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.price-calc__pill {
  padding: 0.45rem 1rem;
  border-radius: var(--r-full);
  border: 1px solid var(--black-border);
  background: transparent;
  color: var(--gray-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
  line-height: 1;
}

.price-calc__pill:hover {
  border-color: rgba(255, 209, 0, 0.5);
  color: var(--white);
}

.price-calc__pill.active {
  background: var(--yellow-main);
  border-color: var(--yellow-main);
  color: var(--black-bg);
  font-weight: 700;
}

.price-calc__checks {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.price-calc__check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--gray-light);
  cursor: pointer;
  user-select: none;
}

.price-calc__check input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--yellow-main);
  cursor: pointer;
  flex-shrink: 0;
}

.price-calc__miles {
  width: 120px;
  padding: 0.55rem 0.875rem;
  background: var(--black-bg);
  border: 1px solid var(--black-border);
  border-radius: var(--r-md);
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: border-color var(--t-fast);
}

.price-calc__miles:focus {
  outline: none;
  border-color: var(--yellow-main);
}

.price-calc__result {
  background: var(--black-bg);
  border: 1px solid var(--black-border);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: calc(var(--header-h, 76px) + 1.5rem);
}

.price-calc__result-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow-main);
  margin-bottom: 0.5rem;
}

.price-calc__result-price {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
  transition: opacity 0.15s ease;
}

.price-calc__result-note {
  font-size: 0.78rem;
  color: var(--gray-mid);
  line-height: 1.55;
  margin-bottom: 0;
}

.price-calc__disclaimer {
  font-size: 0.72rem;
  color: var(--gray-dark);
  margin-top: 1.25rem;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .price-calc {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }

  .price-calc__result {
    position: static;
    order: -1;
  }
}

/* ============================================================
   AI EXPERIENCE — HERO SPLIT LAYOUT
   ============================================================ */

.page-hero__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.page-hero__visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-booth-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
  aspect-ratio: 4 / 3;
}

.hero-booth-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-booth-card__label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: var(--r-sm);
  border-left: 3px solid var(--yellow-main);
  backdrop-filter: blur(4px);
}

@media (max-width: 900px) {
  .page-hero__split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-hero__visual {
    justify-content: center;
  }

  .hero-booth-card {
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
}

/* ============================================================
   AI EXPERIENCE — BOOTH CHOICE SECTION
   ============================================================ */

.booth-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.booth-choice-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

.booth-choice-card:hover {
  border-color: rgba(255, 209, 0, 0.28);
  box-shadow: 0 0 40px rgba(255, 209, 0, 0.07);
}

.booth-choice-card__img-wrap {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
}

.booth-choice-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.45s ease;
}

.booth-choice-card:hover .booth-choice-card__img {
  transform: scale(1.04);
}

.booth-choice-card__body {
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.booth-choice-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.25;
}

.booth-choice-card__desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-soft);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.booth-choice-note {
  text-align: center;
  color: var(--gray-mid);
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-md);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .booth-choice-grid {
    grid-template-columns: 1fr;
  }

  .booth-choice-card__body {
    padding: 1.25rem 1.25rem 1.5rem;
  }
}

/* ============================================================
   TABLER ICONS — GLOBAL SIZING & COLOR
   ============================================================ */

/* Icon containers inherit font-size; ensure icons render inline-block */
.event-card__icon .ti,
.icon-card__icon .ti {
  font-size: inherit;
  line-height: 1;
  color: var(--yellow-main);
}

.icon-card__icon--lg .ti {
  font-size: inherit;
}

/* Footer contact icons */
.footer__contact-item .ti {
  font-size: 1.1rem;
  color: var(--gray-soft);
  flex-shrink: 0;
}

/* Ensure <i> inside icon wrappers doesn't add extra space */
.event-card__icon i,
.icon-card__icon i {
  display: block;
}

/* ============================================================
   STAT GRID — location pages 2-col stat blocks
   ============================================================ */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 480px) {
  .stat-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   GOOGLE REVIEWS STRIP — mobile
   ============================================================ */
@media (max-width: 600px) {
  .reviews-strip-inner {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .reviews-strip-divider {
    display: none;
  }
}

/* ============================================================
   FOOTER SOCIAL ICONS — ensure wrap on very small screens
   ============================================================ */
@media (max-width: 380px) {
  .footer__social-row {
    flex-wrap: wrap;
  }
}
