/* ============================================================
   1stphotobooth — design system
   palette: ink (logo bg) / cream / red (logo accent) / gold
   ============================================================ */

:root {
  --ink: #0a0a0a;
  --ink-2: #1a1a1a;
  --ink-3: #2a2a2a;
  --cream: #ffffff;
  --cream-2: #f4f4f4;
  --paper: #ffffff;
  --red: #e3242b;
  --red-deep: #b81b21;
  --red-soft: #ff5a4d;
  --gold: #e9b14a;
  --line: rgba(21, 17, 14, 0.10);
  --line-dark: rgba(246, 241, 231, 0.12);

  --f-display: "Fraunces", "Times New Roman", serif;
  --f-body: "Inter", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  --shadow-1: 0 1px 0 rgba(21,17,14,0.06), 0 18px 40px -20px rgba(21,17,14,0.18);

  --container: 1240px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--red); color: var(--paper); }

/* ============================================================
   PROMO / ANNOUNCEMENT BAR — dashboard-toggled, dismissible
   ============================================================ */
.promobar {
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 9px var(--pad);
  position: relative;
  font-size: 14px;
  text-align: center;
}
.promobar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 14px;
  max-width: var(--container);
}
.promobar__text { font-weight: 500; }
.promobar__link {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.promobar__link:hover { opacity: 0.85; }
.promobar__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  padding: 0 6px;
  opacity: 0.8;
}
.promobar__close:hover { opacity: 1; }

/* ============================================================
   TOPBAR — phones above main nav
   ============================================================ */
.topbar {
  background: var(--ink);
  color: var(--cream);
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
}
.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 8px var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar__loc { color: rgba(246,241,231,0.65); }
.topbar__phones { display: inline-flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.topbar__phones a {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--cream);
  transition: color .2s;
}
.topbar__phones a:hover { color: var(--red-soft); }
.topbar__phones a::before {
  content: ""; display: inline-block;
  width: 12px; height: 12px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.05-.24c1.12.37 2.33.57 3.57.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.2 2.45.57 3.57a1 1 0 0 1-.24 1.05l-2.21 2.17z'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.05-.24c1.12.37 2.33.57 3.57.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.2 2.45.57 3.57a1 1 0 0 1-.24 1.05l-2.21 2.17z'/></svg>") no-repeat center / contain;
}

@media (max-width: 600px) {
  .topbar__inner { justify-content: center; }
  .topbar__loc { display: none; }
  .topbar__phones { gap: 14px; }
}

/* ============================================================
   NAV — dark to support the logo
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink);
  color: var(--cream);
  border-bottom: 1px solid var(--line-dark);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.nav__logo { display: inline-flex; align-items: center; }
.nav__logo img { height: 48px; width: auto; display: block; }

.nav__links { display: flex; gap: 28px; justify-content: center; }
.nav__links a {
  font-size: 14px; font-weight: 500; letter-spacing: 0.01em;
  position: relative; padding: 4px 0;
  color: rgba(246,241,231,0.85);
  transition: color .2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px; background: var(--cream);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s cubic-bezier(.7,0,.3,1);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__links a.is-active { color: var(--red-soft); }
.nav__links a.is-active::after { background: var(--red-soft); transform: scaleX(1); transform-origin: left; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red); color: var(--paper);
  padding: 11px 20px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background .25s, transform .25s;
  border: 0;
}
.nav__cta:hover { background: var(--red-soft); transform: translateY(-1px); color: var(--paper); }

.nav__toggle { display: none; background: transparent; border: 0; padding: 8px; }
.nav__toggle span {
  display: block; width: 22px; height: 2px; background: var(--cream); margin: 4px 0;
  transition: transform .25s, opacity .25s;
}

@media (max-width: 900px) {
  .nav__inner { padding: 12px var(--pad); }
  .nav__logo img { height: 40px; }
  .nav__links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--ink); padding: 8px var(--pad) 24px;
    border-bottom: 1px solid var(--line-dark);
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--line-dark); font-size: 16px; color: var(--cream); }
  .nav__links a::after { display: none; }
  .nav__toggle { display: block; }
  .nav__cta { padding: 9px 14px; font-size: 12px; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 80px var(--pad) 64px;
  overflow: hidden;
  background: var(--cream);
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 80% 20%, rgba(227,36,43,0.16), transparent 70%),
    radial-gradient(40% 40% at 10% 90%, rgba(233,177,74,0.12), transparent 70%),
    var(--cream);
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 48px;
  align-items: end;
}
.eyebrow {
  font-family: var(--f-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--ink-2); margin: 0 0 24px;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--red);
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(48px, 8.5vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
}
.hero__title em { font-style: italic; font-weight: 500; color: var(--red); }
.hero__title-accent {
  display: inline-block; position: relative;
  font-style: italic; font-weight: 700;
}
.hero__title-accent::after {
  content: ""; position: absolute; left: -2%; bottom: 4%; width: 104%; height: 18%;
  background: var(--red); opacity: 0.22; z-index: -1;
  transform: skewX(-8deg);
}
.hero__lede {
  max-width: 56ch; font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-2); margin: 0 0 36px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  transition: transform .25s, background .25s, color .25s, border-color .25s;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn--primary { background: var(--red); color: var(--paper); }
.btn--primary:hover { background: var(--red-deep); transform: translateY(-2px); }
.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn--lg { padding: 18px 32px; font-size: 15px; }
.btn--block { display: flex; justify-content: center; width: 100%; }

.hero__strip { align-self: end; }
.strip {
  background: var(--ink); padding: 14px 14px 22px; border-radius: 6px;
  display: grid; gap: 8px; width: 240px;
  transform: rotate(4deg);
  box-shadow: var(--shadow-1);
}
.strip__frame {
  aspect-ratio: 4/3;
  border-radius: 2px;
  position: relative; overflow: hidden;
  background: #1a1a1a;
}
.strip__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.strip__caption {
  font-family: var(--f-mono); font-size: 9px;
  color: rgba(246,241,231,0.7); text-align: center; padding-top: 4px;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__strip { display: none; }
}

.hero__meta {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 80px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.hero__meta > div { display: flex; flex-direction: column; gap: 4px; padding-right: 24px; }
.hero__meta .num {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(32px, 4.5vw, 56px); font-weight: 700; line-height: 1;
  color: var(--ink);
}
.hero__meta .lbl {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink); color: var(--cream);
  padding: 22px 0; overflow: hidden;
  border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
}
.marquee__track {
  display: inline-flex; gap: 28px; white-space: nowrap;
  animation: marquee 50s linear infinite;
  font-family: var(--f-display); font-style: italic; font-weight: 500;
  font-size: clamp(24px, 3.5vw, 44px);
  letter-spacing: -0.02em;
}
.marquee__track span:nth-child(odd) { color: var(--red-soft); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTION HEAD
   ============================================================ */
.section__head { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.section__title {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(36px, 5.5vw, 76px);
  line-height: 0.96; letter-spacing: -0.03em;
  margin: 0 0 16px;
}
.section__title em { font-style: italic; color: var(--red); }
.section__sub { color: var(--ink-2); font-size: 16px; }
.section__sub a { color: var(--red); border-bottom: 1px solid var(--red); }

/* ============================================================
   FEATURES
   ============================================================ */
.features { padding: 120px 0 80px; }
.features__grid {
  max-width: var(--container); margin: 56px auto 0;
  padding: 0 var(--pad);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.feat {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  transition: background .35s;
  position: relative;
}
.feat:hover { background: var(--paper); }
.feat__num {
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 0.16em; color: var(--red);
  margin-bottom: 32px;
}
.feat h3 {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(20px, 2vw, 26px); line-height: 1.15;
  letter-spacing: -0.01em; margin: 0 0 10px;
}
.feat p { color: var(--ink-2); margin: 0; font-size: 15px; }

@media (max-width: 900px) {
  .features__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--paper);
  padding: 120px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px;
}
.about__body {
  font-size: 17px; color: var(--ink-2); margin: 0 0 18px;
  max-width: 60ch;
}
.about__body strong { color: var(--ink); }
.about__checklist {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px;
}
.about__checklist li {
  font-size: 15px; padding-left: 24px; position: relative;
}
.about__checklist li::before {
  content: "✦"; position: absolute; left: 0; top: 0;
  color: var(--red); font-size: 14px;
}

.about__card {
  background: var(--ink); color: var(--cream);
  padding: 40px 36px; border-radius: 8px;
  align-self: start;
  position: relative; overflow: hidden;
}
.about__card::before {
  content: "“"; position: absolute; top: -20px; left: 12px;
  font-family: var(--f-display); font-style: italic;
  font-size: 200px; color: var(--red); opacity: 0.4; line-height: 1;
}
.about__quote {
  font-family: var(--f-display); font-weight: 500; font-style: italic;
  font-size: clamp(20px, 2vw, 24px); line-height: 1.3;
  margin: 0 0 24px; position: relative;
}
.about__sig {
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin: 0;
}

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__checklist { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: 120px 0; }
.pricing__grid {
  max-width: var(--container); margin: 56px auto 0;
  padding: 0 var(--pad);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.plan {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 22px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .35s, box-shadow .35s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); }
.plan--featured {
  background: var(--ink); color: var(--cream); border-color: var(--ink);
  transform: translateY(-8px);
}
.plan--featured:hover { transform: translateY(-12px); }
.plan__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: var(--paper);
  padding: 6px 14px; border-radius: 999px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.plan__head { padding-bottom: 20px; border-bottom: 1px solid var(--line); margin-bottom: 20px; }
.plan--featured .plan__head { border-color: rgba(246,241,231,0.18); }
.plan__head h3 {
  font-family: var(--f-display); font-weight: 500;
  font-size: 20px; margin: 0 0 6px;
}
.plan__price {
  font-family: var(--f-display); font-style: italic; font-weight: 700;
  font-size: 52px; line-height: 1; margin: 0;
  letter-spacing: -0.03em;
}
.plan__price span { font-size: 26px; vertical-align: top; margin-right: 4px; opacity: 0.7; }
.plan--featured .plan__price { color: var(--red-soft); }
.plan__list { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.plan__list li {
  padding: 7px 0 7px 18px; position: relative;
  font-size: 13px; line-height: 1.4;
  border-bottom: 1px solid var(--line);
}
.plan__list li:last-child { border-bottom: 0; }
.plan--featured .plan__list li { border-color: rgba(246,241,231,0.12); }
.plan__list li::before {
  content: "+"; position: absolute; left: 0; top: 7px;
  color: var(--red); font-weight: 700;
}
.plan__list li em { font-style: italic; color: var(--red); }
.plan--featured .plan__list li::before { color: var(--red-soft); }
.plan--featured .plan__list li em { color: var(--red-soft); }

@media (max-width: 1100px) {
  .pricing__grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-4px); }
}
@media (max-width: 600px) {
  .pricing__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BOOTH PREVIEW CARDS
   ============================================================ */
.booths {
  max-width: var(--container);
  margin: 0 auto; padding: 0 var(--pad) 120px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.booth-card {
  padding: 56px 40px;
  border-radius: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  position: relative; overflow: hidden;
  min-height: 320px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.booth-card--alt {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--cream); border-color: var(--ink);
}
.booth-card__tag {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red); margin: 0 0 16px;
  position: absolute; top: 24px; left: 40px;
}
.booth-card h3 {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 0.96; letter-spacing: -0.03em;
  margin: 0 0 12px;
}
.booth-card p { margin: 0 0 24px; max-width: 32ch; color: var(--ink-2); }
.booth-card--alt p { color: rgba(246,241,231,0.8); }
.booth-card--alt .btn--ghost { color: var(--cream); border-color: var(--cream); }
.booth-card--alt .btn--ghost:hover { background: var(--cream); color: var(--ink); }

.booth-card:not(.booth-card--alt)::before {
  content: ""; position: absolute; top: 24px; right: 24px;
  width: 100px; height: 200px; background: linear-gradient(180deg, var(--red), var(--gold));
  border-radius: 4px; opacity: 0.9;
  transform: rotate(8deg);
}
.booth-card:not(.booth-card--alt)::after {
  content: ""; position: absolute; top: 28px; right: 132px;
  width: 70px; height: 140px; background: linear-gradient(180deg, var(--ink-2), #4a3a2a);
  border-radius: 4px; opacity: 0.85;
  transform: rotate(-6deg);
}
.booth-card--alt::before {
  content: "360°"; position: absolute; top: 50%; right: -40px;
  transform: translateY(-50%);
  font-family: var(--f-display); font-style: italic; font-weight: 700;
  font-size: 240px; color: var(--red); opacity: 0.18;
  line-height: 1;
}

@media (max-width: 900px) {
  .booths { grid-template-columns: 1fr; }
}

/* ============================================================
   TESTIMONIALS — Google reviews container
   ============================================================ */
.testimonials {
  background: var(--ink); color: var(--cream);
  padding: 120px 0;
  position: relative;
}
.testimonials .section__title { color: var(--cream); }
.testimonials .eyebrow { color: var(--gold); }
.testimonials .eyebrow::before { background: var(--gold); }

.reviews-wrap {
  max-width: var(--container); margin: 56px auto 0;
  padding: 0 var(--pad);
}

.google-reviews-embed {
  min-height: 200px;
  position: relative;
}

/* Featurable / similar review widgets ship with light-themed text on a transparent
   background, which can disappear against our dark testimonials section.
   Force any direct text descendants to be light, while leaving the white review
   cards alone (they style their own internals). */
.google-reviews-embed > div { color: var(--cream); }
.google-reviews-embed a:not([class]) { color: var(--gold); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 120px 0; background: var(--cream); }
.faq__list {
  max-width: 880px; margin: 56px auto 0;
  padding: 0 var(--pad);
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  transition: padding .25s;
}
.faq summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.01em;
  cursor: pointer;
  padding-right: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--f-display); font-weight: 500;
  font-size: 28px; color: var(--red);
  transition: transform .25s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin: 14px 0 0; color: var(--ink-2); max-width: 70ch;
  font-size: 16px;
}
.faq details p a {
  color: var(--red); border-bottom: 1px solid currentColor;
  transition: color .15s;
}
.faq details p a:hover { color: var(--red-soft); }
.faq__section {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red); font-weight: 500;
  margin: 56px 0 4px;
  padding-top: 24px;
  border-top: 2px solid var(--ink);
}
.faq__section:first-child { margin-top: 0; padding-top: 0; border-top: 0; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta {
  padding: 120px var(--pad);
  text-align: center;
  background: var(--red);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='8'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.4; mix-blend-mode: overlay; pointer-events: none;
}
.cta h2 {
  font-family: var(--f-display); font-weight: 500; font-style: italic;
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.92; letter-spacing: -0.04em;
  margin: 0 0 16px;
  position: relative;
}
.cta p {
  max-width: 50ch; margin: 0 auto 36px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(255,255,255,0.9);
  position: relative;
}
.cta__btns { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; position: relative; }
.cta .btn--primary { background: var(--ink); }
.cta .btn--primary:hover { background: var(--paper); color: var(--ink); }
.cta .btn--ghost { color: var(--paper); border-color: var(--paper); }
.cta .btn--ghost:hover { background: var(--paper); color: var(--red); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink); color: var(--cream);
  padding: 80px 0 32px;
}
.footer__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-dark);
}
.footer__brand img { height: 56px; width: auto; margin-bottom: 18px; }
.footer__brand p { color: rgba(246,241,231,0.65); font-size: 15px; max-width: 38ch; }
.footer__col h4 {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 18px; font-weight: 500;
}
.footer__col a {
  display: block; padding: 6px 0;
  color: rgba(246,241,231,0.85); font-size: 15px;
  transition: color .2s, padding-left .25s;
}
.footer__col a:hover { color: var(--red-soft); padding-left: 6px; }

.footer__base {
  max-width: var(--container); margin: 0 auto; padding: 24px var(--pad) 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.1em; color: rgba(246,241,231,0.45);
}
.footer__base p { margin: 0; }

@media (max-width: 800px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ============================================================
   PAGE-HERO + shared
   ============================================================ */
.page-hero {
  padding: 100px var(--pad) 80px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.page-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 50% at 90% 10%, rgba(227,36,43,0.16), transparent 70%),
    radial-gradient(40% 50% at 0% 100%, rgba(233,177,74,0.14), transparent 70%);
}
.page-hero__inner { max-width: var(--container); margin: 0 auto; position: relative; }
.page-hero__title {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(48px, 9vw, 140px);
  line-height: 0.92; letter-spacing: -0.04em;
  margin: 0 0 24px;
}
.page-hero__title em { font-style: italic; color: var(--red); }
.page-hero__lede {
  max-width: 60ch; font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-2); margin: 0;
}
.crumbs {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-2); margin: 0 0 24px;
}
.crumbs a { color: var(--red); }
.crumbs span { color: rgba(21,17,14,0.4); margin: 0 10px; }

.embed-section { padding: 80px 0 120px; background: var(--cream); }
.embed-section__inner { max-width: 1080px; margin: 0 auto; padding: 0 var(--pad); }
.embed-section__inner--wide { max-width: 1400px; }
.embed-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 24px 60px -20px rgba(10,10,10,0.18);
  overflow: hidden;
  position: relative;
}
.embed-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(227,36,43,0.06);
}
.embed-frame iframe {
  width: 100%; min-height: 720px;
  border: 0; display: block;
  background: #fff;
  border-radius: 10px;
}
.embed-frame--tall iframe { min-height: 700px; }
.embed-frame--templates iframe { min-height: 1400px; max-height: 80vh; }
.embed-note {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.1em; color: var(--ink-2);
  margin: 16px 4px 0; text-align: center;
}

.prose-section { padding: 80px 0 120px; background: var(--cream); }
.prose-section__inner {
  max-width: 980px; margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px;
}
.prose-section__inner.is-narrow { display: block; max-width: 760px; }
.prose-section h2 {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05; letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.prose-section h3 {
  font-family: var(--f-display); font-weight: 500;
  font-size: 22px; margin: 36px 0 12px;
}
.prose-section p { margin: 0 0 18px; color: var(--ink-2); font-size: 17px; }
.prose-section ul { padding: 0 0 0 20px; color: var(--ink-2); }
.prose-section ul li { margin-bottom: 10px; }
.prose-aside {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 28px;
  align-self: start;
  position: sticky; top: 100px;
}
.prose-aside h4 {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red); margin: 0 0 16px; font-weight: 500;
}
.prose-aside p { font-size: 15px; }
.prose-aside .btn { margin-top: 8px; }

@media (max-width: 800px) {
  .prose-section__inner { grid-template-columns: 1fr; gap: 32px; }
  .prose-aside { position: static; }
}

.backdrop-grid {
  max-width: var(--container); margin: 80px auto;
  padding: 0 var(--pad);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.backdrop {
  aspect-ratio: 4/5;
  border-radius: 8px; overflow: hidden;
  position: relative; padding: 20px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--paper);
  border: 1px solid var(--line);
  transition: transform .35s;
}
.backdrop:hover { transform: translateY(-4px); }
.backdrop h4 {
  font-family: var(--f-display); font-weight: 500;
  font-size: 24px; margin: 0; letter-spacing: -0.01em;
  position: relative; z-index: 2;
}
.backdrop p {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin: 0 0 8px; opacity: 0.85; position: relative; z-index: 2;
}
.backdrop::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
}
.backdrop--sequin { background: linear-gradient(135deg, #d4af37, #fff5d6, #c89b1c); }
.backdrop--floral { background: linear-gradient(135deg, #f7c5d6, #d68aa3, #fff0f3); }
.backdrop--velvet { background: linear-gradient(135deg, #5a1f2e, #2a0d15); }
.backdrop--white { background: linear-gradient(135deg, #ffffff, #ebe2d0); }
.backdrop--white::before { background: linear-gradient(to top, rgba(21,17,14,0.5) 0%, transparent 60%); }
.backdrop--black { background: linear-gradient(135deg, #1a1a1a, #0a0a0a); }
.backdrop--starlight { background: radial-gradient(circle at 30% 30%, #6877ff 0%, #1a1a4a 60%, #0a0a2a 100%); }
.backdrop--gold { background: linear-gradient(135deg, #f0c75e, #d6a020, #b88410); }
.backdrop--silver { background: linear-gradient(135deg, #d4d4d4, #909090, #d4d4d4); }
.backdrop--silver::before { background: linear-gradient(to top, rgba(21,17,14,0.55) 0%, transparent 60%); }
.backdrop--blush { background: linear-gradient(135deg, #f5d5cc, #e8a89a); }
.backdrop--blush::before { background: linear-gradient(to top, rgba(21,17,14,0.5) 0%, transparent 60%); }
.backdrop--green { background: linear-gradient(135deg, #4a7c50, #2e5234, #1a3a20); }
.backdrop--custom {
  background: var(--cream); color: var(--ink); border: 2px dashed var(--red);
  display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
}
.backdrop--custom::before { display: none; }
.backdrop--custom h4 { color: var(--red); }
.backdrop--custom p { color: var(--ink-2); }

@media (max-width: 800px) {
  .backdrop-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .backdrop-grid { grid-template-columns: 1fr; }
}

.contact-grid {
  max-width: var(--container); margin: 80px auto;
  padding: 0 var(--pad);
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px;
}
.contact-info h3 {
  font-family: var(--f-display); font-weight: 500;
  font-size: 28px; margin: 0 0 24px;
}
.contact-info dl { margin: 0; }
.contact-info dt {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red); margin-top: 24px;
}
.contact-info dd { margin: 6px 0 0; font-size: 17px; }
.contact-info dd a { border-bottom: 1px solid var(--line); padding-bottom: 1px; }
.contact-info dd a:hover { color: var(--red); border-color: var(--red); }

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

.spin-band {
  background: var(--ink); color: var(--cream);
  padding: 80px 0; overflow: hidden; position: relative;
}
.spin-band::before {
  content: "360 · 360 · 360 · 360 · 360 · 360 · 360 · 360 ·";
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-display); font-style: italic; font-weight: 700;
  font-size: 200px; color: rgba(227,36,43,0.12);
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.spin-band__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--pad);
  position: relative;
}
.spin-band h2 { color: var(--cream); }
.spin-band em { color: var(--red-soft); }
.spin-band p { color: rgba(246,241,231,0.8); max-width: 60ch; }

.feat-list {
  max-width: var(--container); margin: 56px auto;
  padding: 0 var(--pad);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 32px;
}
.feat-list li {
  list-style: none; padding: 16px 0 16px 32px; position: relative;
  font-size: 17px;
  border-bottom: 1px solid var(--line);
}
.feat-list li::before {
  content: "→"; position: absolute; left: 0; top: 16px;
  color: var(--red); font-weight: 700;
}
@media (max-width: 800px) { .feat-list { grid-template-columns: 1fr; } }

/* ============================================================
   BOOK NOW chooser modal
   ============================================================ */
.book-modal {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.book-modal.is-open { display: flex; animation: bm-fade .25s ease; }
@keyframes bm-fade { from { opacity: 0; } to { opacity: 1; } }
.book-modal__card {
  background: var(--cream); border-radius: 16px;
  max-width: 720px; width: 100%; padding: 48px 40px;
  position: relative;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
  animation: bm-rise .3s cubic-bezier(.2,.7,.3,1);
}
@keyframes bm-rise { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.book-modal__close {
  position: absolute; top: 16px; right: 20px;
  background: transparent; border: 0;
  font-size: 32px; line-height: 1; color: var(--ink-2);
  cursor: pointer; transition: color .2s, transform .2s;
}
.book-modal__close:hover { color: var(--red); transform: rotate(90deg); }
.book-modal__title {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(28px, 4vw, 40px); line-height: 1; letter-spacing: -0.02em;
  text-align: center; margin: 6px 0 32px;
}
.book-modal__title em { font-style: italic; color: var(--red); }
.book-modal__options { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.book-opt {
  display: flex; flex-direction: column; gap: 6px;
  padding: 28px 24px; border-radius: 12px;
  background: var(--paper); border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative; overflow: hidden;
}
.book-opt:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); border-color: var(--red); }
.book-opt--alt { background: linear-gradient(135deg, var(--ink), var(--ink-2)); border-color: var(--ink); }
.book-opt__tag {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red);
}
.book-opt--alt .book-opt__tag { color: var(--gold); }
.book-opt__name {
  font-family: var(--f-display); font-weight: 500; font-size: 28px; letter-spacing: -0.02em;
  margin-bottom: 2px;
}
.book-opt--alt .book-opt__name { color: var(--cream); }
.book-opt__desc { font-size: 14px; color: var(--ink-2); margin-bottom: 14px; flex: 1; }
.book-opt--alt .book-opt__desc { color: rgba(246,241,231,0.75); }
.book-opt__cta {
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em; color: var(--red);
}
.book-opt--alt .book-opt__cta { color: var(--gold); }

@media (max-width: 600px) {
  .book-modal__card { padding: 36px 24px; }
  .book-modal__options { grid-template-columns: 1fr; }
}

/* ============================================================
   HOME GALLERY
   ============================================================ */
.gallery-section { padding: 120px 0; background: var(--cream); }
.gallery-grid {
  max-width: var(--container); margin: 56px auto 0; padding: 0 var(--pad);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.gallery-item {
  aspect-ratio: 1; overflow: hidden; border-radius: 8px;
  background: var(--cream-2);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-more { text-align: center; margin-top: 32px; }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: auto; aspect-ratio: 16/9; }
}

/* ============================================================
   WHATSAPP buttons (topbar + footer)
   ============================================================ */
.topbar__whatsapp {
  display: inline-flex; align-items: center; gap: 6px;
  background: #25D366; color: #fff !important;
  padding: 5px 14px; border-radius: 999px;
  margin-left: 8px; font-weight: 600; font-size: 12px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background .2s;
}
.topbar__whatsapp:hover { background: #1ebd5a; }
.topbar__whatsapp svg { flex: none; }
/* WhatsApp pill inside .topbar__phones must NOT get the phone-icon ::before */
.topbar__phones a.topbar__whatsapp::before { display: none; content: none; }
.footer__col a.footer__whatsapp,
.footer__whatsapp {
  display: inline-flex !important;
  align-items: center; gap: 8px;
  background: #25D366; color: #fff !important;
  padding: 10px 20px; border-radius: 999px;
  font-weight: 600; font-size: 13px;
  margin-top: 8px;
  transition: background .2s;
  width: fit-content;
  white-space: nowrap;
  line-height: 1;
}
.footer__col a.footer__whatsapp:hover,
.footer__whatsapp:hover { background: #1ebd5a; padding-left: 20px; }
.footer__whatsapp svg { flex: none; }

/* ============================================================
   PROCESS infographic
   ============================================================ */
.process { padding: 120px 0; background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.process::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(227,36,43,0.12), transparent 60%);
  pointer-events: none;
}
.process .section__head { position: relative; z-index: 1; }
.process .section__title { color: var(--cream); }
.process .section__title em { color: var(--red-soft); }
.process .section__sub { color: rgba(246,241,231,0.7); }
.process .eyebrow { color: var(--gold); }
.process__grid {
  max-width: 1080px; margin: 64px auto 0; padding: 0 var(--pad);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  position: relative; z-index: 1;
}
.process__step {
  position: relative;
  padding: 36px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(246,241,231,0.08);
  border-radius: 14px;
  transition: transform .25s, border-color .25s;
}
.process__step:hover {
  transform: translateY(-4px);
  border-color: rgba(227,36,43,0.4);
}
.process__icon {
  font-family: var(--f-mono);
  font-size: 13px; letter-spacing: 0.18em;
  color: var(--gold);
  width: 48px; height: 48px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.process__step h3 {
  font-family: var(--f-display); font-weight: 500;
  font-size: 22px; letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.2;
}
.process__step p {
  color: rgba(246,241,231,0.7);
  font-size: 14px; line-height: 1.6;
}
@media (max-width: 800px) {
  .process__grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================================================
   PAGE HERO photo banner (Our Booth, 360 Booth)
   ============================================================ */
.page-hero__photo {
  padding: 32px var(--pad) 0;
  text-align: center;
  background: transparent;
}
.page-hero__photo img {
  display: block;
  max-width: min(720px, 100%);
  max-height: 70vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 24px 60px -20px rgba(10,10,10,0.25);
}

/* ============================================================
   OUR BOOTH — check grid + booth styles grid
   ============================================================ */
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.check-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 22px 18px;
  transition: transform .2s, border-color .2s;
}
.check-card:hover { transform: translateY(-2px); border-color: var(--red); }
.check-card h3 {
  font-family: var(--f-display); font-weight: 500;
  font-size: 18px; letter-spacing: -0.01em;
  margin: 0 0 8px;
  line-height: 1.25;
}
.check-card p { font-size: 13.5px; line-height: 1.55; margin: 0; color: var(--ink-2); }

.styles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.style-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 6px;
  padding: 14px 18px;
  display: flex; flex-direction: column; gap: 2px;
}
.style-card strong { font-weight: 600; font-size: 14px; }
.style-card span { font-size: 13px; color: var(--ink-2); }
.style-card a { color: var(--red); font-weight: 500; }
.style-card a:hover { color: var(--red-soft); }

@media (max-width: 760px) {
  .check-grid, .styles-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   360 — small booth gallery (2 photos under the feat-list)
   ============================================================ */
.booth-gallery { padding: 0 0 80px; background: var(--cream); }
.booth-gallery__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.booth-gallery__item {
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 5;
  background: var(--ink);
}
.booth-gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.booth-gallery__item:hover img { transform: scale(1.04); }
@media (max-width: 720px) {
  .booth-gallery__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICING TABS — switch between Photobooth and 360 packages
   ============================================================ */
.pricing-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 6px;
  margin: 32px auto 28px;
  background: var(--cream-2);
  border-radius: 999px;
  position: relative;
  z-index: 2;
}
.pricing .pricing-tabs {
  display: flex;
  max-width: 360px;
  margin: 32px auto 28px;
  justify-content: center;
}
.pricing-tab {
  flex: 1;
  padding: 11px 24px;
  border: 0;
  background: transparent;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s;
  white-space: nowrap;
}
.pricing-tab:hover { color: var(--ink); }
.pricing-tab.is-active {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 4px 12px -4px rgba(10,10,10,0.3);
}
.pricing-panel { display: none; }
.pricing-panel.is-active { display: block; animation: pp-fade .25s ease; }
@keyframes pp-fade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
