/* ============================================================
   Grand Frame Media — Global Styles
   Mobile-first, dark/gold brand
   ============================================================ */

/* --- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #0A0A0A;
  --surface:  #111111;
  --surface2: #1A1A1A;
  --gold:     #F5971D;
  --gold-dim: #D97E10;
  --white:    #FFFFFF;
  --gray:     #888888;
  --light:    #CCCCCC;
  --border:   #222222;

  --font-head: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --max-w: 1100px;
  --pad: 1.25rem;
  --section-pad: 5rem 1.25rem;
  --section-pad-sm: 3rem 1.25rem;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.8rem, 10vw, 6rem); }
h2 { font-size: clamp(2rem, 6vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 4vw, 2rem); }
h4 { font-size: 1.1rem; letter-spacing: 0.08em; }

p { color: var(--light); font-size: 1rem; max-width: 64ch; }
.p-large { font-size: 1.15rem; }

.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --- Layout helpers --------------------------------------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: var(--section-pad); }
.section-sm { padding: var(--section-pad-sm); }

.grid-2 { display: grid; gap: 2rem; }
.grid-3 { display: grid; gap: 1.5rem; }

.center { text-align: center; }
.center p { margin: 0 auto; }

.gold { color: var(--gold); }
.muted { color: var(--gray); }

/* --- Divider ---------------------------------------------- */
.divider { width: 3rem; height: 3px; background: var(--gold); margin: 1.25rem 0; }
.divider.center { margin: 1.25rem auto; }

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background: var(--gold);
  color: #000;
}
.btn-primary:hover { background: #e0bc5a; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: #000; }

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-ghost:hover { background: var(--gold); color: #000; }

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

/* --- Nav -------------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-left, .nav-right {
  display: none;
  gap: 0.25rem;
  align-items: center;
  flex: 1;
}
.nav-right { justify-content: flex-end; }

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo .logo-mark {
  width: 160px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo .logo-mark img {
  width: 160px;
  height: 58px;
  object-fit: contain;
}

/* Fallback when no logo image — shows G badge */
.nav-logo .logo-mark .logo-fallback {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: #000;
  font-family: var(--font-head);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.nav-links {
  display: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-links a {
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-links .nav-cta {
  background: var(--gold);
  color: #000;
  padding: 0.5rem 1.1rem;
  font-weight: 700;
  border-radius: 2px;
  margin-left: 0.5rem;
}
.nav-links .nav-cta:hover { background: #e0bc5a; color: #000; }

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  display: block;
  transition: all 0.25s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem var(--pad);
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }

.mobile-menu a {
  padding: 0.75rem 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .nav-cta {
  margin-top: 0.5rem;
  background: var(--gold);
  color: #000;
  padding: 0.75rem 1rem;
  text-align: center;
  font-weight: 700;
  border-bottom: none;
}

/* --- Footer ----------------------------------------------- */
.site-footer {
  background: #0d0d0d;
  border-top: 1px solid rgba(245,151,29,0.15);
  padding: 3rem var(--pad) 1.5rem;
  text-align: center;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-brand { display: flex; flex-direction: column; align-items: center; }
.footer-brand .nav-logo { justify-content: center; }
.footer-brand p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; margin: 0.5rem auto 0; }
.footer-social { justify-content: center; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.5rem;
}
.footer-nav a {
  font-size: 0.82rem;
  color: var(--gray);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }

.footer-links { display: none; }

.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all 0.2s;
}
.footer-social a svg { width: 15px; height: 15px; fill: currentColor; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--gray);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* --- Page Hero (non-home pages) --------------------------- */
.page-hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,151,29,0.08) 0%, transparent 70%),
    linear-gradient(to bottom, #111111 0%, var(--bg) 100%);
  border-bottom: 1px solid rgba(245,151,29,0.1);
}

/* --- Hero ------------------------------------------------- */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem var(--pad);
  position: relative;
  overflow: hidden;
  min-height: 80vh;
}

.hero-inner {
  text-align: left;
  width: 100%;
  max-width: var(--max-w);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-video-split {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 0;
}

.hero-video-split video {
  width: 33.333%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 640px) {
  .hero-video-split video:nth-child(2),
  .hero-video-split video:nth-child(3) { display: none; }
  .hero-video-split video:nth-child(1) { width: 100%; }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.65) 50%,
    rgba(0,0,0,0.85) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero::after { display: none; }

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--gold); }
.hero .sub {
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: var(--light);
  margin-bottom: 2.5rem;
  max-width: 50ch;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

/* --- Section styles --------------------------------------- */
.section-dark { background: var(--surface); }
.section-darker { background: var(--bg); }
.section-surface2 { background: var(--surface2); }

/* --- Step cards ------------------------------------------- */
.steps { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.25rem;
  position: relative;
}

.step-number {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.step-card h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.step-card p { font-size: 0.85rem; }

/* --- Package cards ---------------------------------------- */
.packages { display: grid; gap: 1.5rem; }

.package-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  transition: border-color 0.2s;
}

.package-card:hover { border-color: #f5c97a; box-shadow: 0 0 28px rgba(245,151,29,0.45); }
.package-card.featured:hover { animation-play-state: paused; border-color: #f5c97a; box-shadow: 0 0 40px 8px rgba(245,151,29,0.55), 0 0 80px 16px rgba(245,151,29,0.2) !important; }

.package-card.featured {
  border-color: var(--gold);
  animation: featured-glow 2.5s ease-in-out infinite;
}

@keyframes featured-glow {
  0%, 100% { box-shadow: 0 0 10px 1px rgba(245,151,29,0.1), 0 0 24px 4px rgba(245,151,29,0.04); }
  50%       { box-shadow: 0 0 18px 3px rgba(245,151,29,0.2), 0 0 40px 8px rgba(245,151,29,0.08); }
}

.package-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--gold);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
}

.package-price {
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin: 0.75rem 0 0.25rem;
}

.package-price .strikethrough {
  font-size: 1.5rem;
  color: var(--gray);
  text-decoration: line-through;
  margin-left: 0.5rem;
  font-family: var(--font-body);
  vertical-align: middle;
}

.package-name-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.25rem;
}
.package-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}
.package-name { font-family: var(--font-head); font-size: 1.8rem; }
.package-best { font-size: 0.75rem; color: var(--gray); margin-bottom: 1rem; }

.package-features {
  border-top: 1px solid var(--border);
  margin: 1.25rem 0;
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.package-features li {
  font-size: 0.85rem;
  color: var(--light);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.package-features li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
}

/* --- Testimonials ----------------------------------------- */
.testimonials { display: grid; gap: 1.25rem; }

.testimonial-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--light);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
}

.testimonial-card cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  align-self: flex-start;
}

/* --- FAQ -------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 1px; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

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

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.25s;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 0;
}

.faq-item.open .faq-answer { max-height: 300px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* --- Table ------------------------------------------------ */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.pricing-table th {
  background: var(--surface2);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: left;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
}

.pricing-table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  color: var(--light);
}

.pricing-table tr:hover td { background: var(--surface2); }
.pricing-table td:last-child { color: var(--white); font-weight: 600; }

/* --- Package feature dropdowns ---------------------------- */
.feat-toggle {
  cursor: pointer;
  user-select: none;
  flex-wrap: wrap;
}
.feat-label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.feat-arrow {
  font-size: 0.85rem;
  color: var(--gold);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.feat-toggle.open .feat-arrow { transform: rotate(45deg); }
.feat-desc {
  display: none;
  width: 100%;
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 0.35rem;
  padding-left: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.feat-toggle.open .feat-desc { display: block; }

/* --- Add-ons grid ----------------------------------------- */
.addons { display: grid; gap: 1rem; }

.addon-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.addon-name { font-weight: 600; font-size: 0.95rem; }
.addon-price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--gold);
}

/* --- Content Club block ----------------------------------- */
@keyframes club-shake {
  0%, 100% { transform: translateX(0); }
  15%       { transform: translateX(-6px); }
  30%       { transform: translateX(6px); }
  45%       { transform: translateX(-4px); }
  60%       { transform: translateX(4px); }
  75%       { transform: translateX(-2px); }
  90%       { transform: translateX(2px); }
}

@keyframes club-shine {
  0%   { transform: translateX(-150%); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(150%); opacity: 0; }
}

@keyframes float-up {
  0%   { transform: translate(var(--tx), 0) scale(0.7); opacity: 0; }
  15%  { opacity: 1; }
  80%  { opacity: 0.8; }
  100% { transform: translate(var(--tx), -140px) scale(1.1); opacity: 0; }
}

@keyframes flame-pulse {
  0%, 100% { box-shadow: 0 0 12px 2px rgba(245,100,0,0.5), 0 0 28px 6px rgba(245,151,29,0.25); }
  50%       { box-shadow: 0 0 22px 6px rgba(245,100,0,0.7), 0 0 50px 12px rgba(245,151,29,0.35); }
}

.club-block-wrap {
  position: relative;
  padding: 2px;
  border-radius: 12px;
  background: #3a2200;
  box-shadow: 0 0 20px rgba(245,151,29,0.15);
  overflow: hidden;
}

.club-block-wrap::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg, transparent 20%, rgba(245,151,29,0.12) 50%, transparent 80%);
  animation: club-shine 7s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  pointer-events: none;
  z-index: 2;
}

.float-icon {
  position: absolute;
  bottom: 10%;
  left: 50%;
  font-size: 1.1rem;
  animation: float-up 2.5s ease-out infinite;
  animation-delay: var(--delay);
  pointer-events: none;
  filter: drop-shadow(0 0 4px rgba(245,151,29,0.6));
}

.stat-flame-wrap {
  border-radius: 12px;
  animation: flame-pulse 2s ease-in-out infinite;
}

.club-block {
  background: radial-gradient(ellipse at 0% 100%, #2a1a00 0%, #1a1000 30%, #0d0d0d 70%, #0a0a0a 100%);
  border-radius: 10px;
  padding: 2.5rem 2rem;
}

.club-block-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 767px) {
  .reel-float-wrap { display: none; }
  .stat-flame-wrap { width: 100%; }
}

@media (min-width: 768px) {
  .club-block-inner {
    grid-template-columns: 1fr auto;
    gap: 3rem;
  }
}

.club-features { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0; }
.club-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--light);
}
.club-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.club-price {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.club-price small {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray);
}

/* --- Portfolio reel grid ---------------------------------- */
.reel-grid { display: flex; gap: 1rem; justify-content: center; }
.reel-thumb { width: 220px; flex-shrink: 0; }

.reel-thumb {
  position: relative;
  display: block;
  aspect-ratio: 9/16;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
}

.reel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.reel-thumb:hover img { transform: scale(1.04); }

.reel-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.reel-thumb:hover .reel-play { opacity: 1; }

.reel-placeholder {
  aspect-ratio: 9/16;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--gray);
  font-size: 0.8rem;
  text-align: center;
  padding: 1rem;
}

.reel-placeholder .play-icon {
  width: 52px;
  height: 52px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
}

/* --- About photo ------------------------------------------ */
.about-photo {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.8rem;
  max-height: 420px;
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 900px) {
  .about-photo {
    max-height: none;
    aspect-ratio: 3/4;
  }
}

/* --- Contact / Book forms --------------------------------- */

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: left;
}

.form-card + p, .form-card ~ p {
  text-align: center;
  width: 100%;
  display: block;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #444; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option { background: var(--surface); }

/* Checkboxes */
.checkbox-group { display: flex; flex-direction: column; gap: 0.75rem; }

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--light);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--gold);
  cursor: pointer;
  padding: 0;
  margin: 0;
}

/* Book form sections */
.book-section {
  display: none;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}
.book-section.active-step { display: block; }

.step-progress {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.step-dot {
  height: 3px;
  flex: 1;
  background: var(--border);
  border-radius: 2px;
  transition: background 0.3s;
}
.step-dot.active { background: var(--gold); }

.book-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--gold);
  color: #000;
  font-family: var(--font-head);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-section-header h3 {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

/* --- Referral banner -------------------------------------- */
.referral-block {
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 2rem;
}

/* --- CTA band --------------------------------------------- */
.cta-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem var(--pad);
  text-align: center;
}
.cta-band h2 { margin-bottom: 1.5rem; }

/* --- Design services ------------------------------------- */
.design-grid { display: grid; gap: 1.5rem; }

.design-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.75rem;
}
.design-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.design-card ul { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.4rem; }
.design-card li {
  font-size: 0.85rem;
  color: var(--gray);
  padding-left: 1rem;
  position: relative;
}
.design-card li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* --- Why section ------------------------------------------ */
.why-block {
  background: var(--surface2);
  border-left: 3px solid var(--gold);
  padding: 2rem;
  font-size: 1.05rem;
  color: var(--light);
  line-height: 1.8;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .reel-grid { grid-template-columns: repeat(2, 1fr); }
  .packages { grid-template-columns: repeat(2, 1fr); }
  .addons { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .design-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  :root { --pad: 2rem; }

  .nav-left, .nav-right { display: flex; }
  .nav-toggle { display: none; }

  .footer-inner { grid-template-columns: 2fr 1fr 1fr; justify-items: start; text-align: left; }
  .footer-brand p { margin: 0; }
  .footer-brand .nav-logo { justify-content: flex-start; }
  .footer-social { justify-content: flex-start; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 900px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .reel-grid { grid-template-columns: repeat(2, 1fr); }
  .packages { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .testimonials { grid-template-columns: repeat(3, 1fr); }
  .design-grid { grid-template-columns: repeat(3, 1fr); }

  .about-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: center; }
}

@media (min-width: 1100px) {
  :root { --pad: 2.5rem; }
}
