/* Snap Happy ABQ shared base styles. Responsive rules live in responsive.css. */
:root {
  --navy: #09273b;
  --navy-deep: #041722;
  --teal: #60c8d5;
  --orange: #e96123;
  --gold: #fbb03b;
  --cream: #fffaf0;
  --ink: #15252f;
  --muted: #66747c;
  --white: #ffffff;
  --line: rgba(9, 39, 59, .13);
  --shadow: 0 24px 70px rgba(9, 39, 59, .14);
  --radius-lg: 34px;
  --radius-md: 24px;
  --content: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  width: min(calc(100% - 32px), var(--content));
  min-height: 72px;
  padding: 10px 12px 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 35px rgba(9,39,59,.08);
  transform: translateX(-50%);
  transition: background .25s ease, box-shadow .25s ease, top .25s ease;
}
.site-header.is-scrolled {
  top: 10px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 15px 38px rgba(9,39,59,.14);
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand img { width: 124px; height: 48px; object-fit: contain; }
.primary-nav { display: flex; align-items: center; gap: 27px; }
.primary-nav a {
  color: var(--navy);
  font-size: .79rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.primary-nav a:not(.nav-cta):hover { color: var(--orange); }
.primary-nav .nav-cta {
  padding: 14px 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(233,97,35,.22);
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100vh;
  padding: 148px max(24px, calc((100vw - var(--content)) / 2)) 78px;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(96,200,213,.22), transparent 31%),
    radial-gradient(circle at 92% 80%, rgba(233,97,35,.16), transparent 28%),
    linear-gradient(145deg, #fff 0%, #f9fbfb 56%, #fff6ed 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -25% 42%;
  height: 52%;
  border-radius: 50%;
  background: rgba(96,200,213,.08);
  transform: rotate(-6deg);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-orb--one { width: 110px; height: 110px; top: 22%; left: 44%; border: 22px solid rgba(251,176,59,.24); }
.hero-orb--two { width: 35px; height: 35px; bottom: 16%; left: 7%; background: var(--teal); opacity: .18; }
.hero-copy { position: relative; z-index: 2; max-width: 650px; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.hero h1, .section h2, .contact h2, .footer h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.25rem, 6.5vw, 6.8rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .93;
}
.hero h1 span, .section h2 span, .contact h2 span, .footer h2 span {
  color: var(--teal);
  font-family: "Pacifico", cursive;
  font-weight: 400;
  letter-spacing: -.025em;
}
.hero-lede {
  max-width: 590px;
  margin: 30px 0 0;
  color: #4b5d66;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button {
  min-height: 54px;
  padding: 15px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { color: #fff; background: var(--orange); box-shadow: 0 16px 30px rgba(233,97,35,.25); }
.button--ghost { color: var(--navy); border: 1px solid rgba(9,39,59,.18); background: rgba(255,255,255,.7); }
.button--light { color: var(--navy); background: #fff; box-shadow: 0 14px 30px rgba(0,0,0,.16); }
.hero-proof {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  color: var(--muted);
  font-size: .84rem;
}
.hero-proof span::before { content: "✦"; margin-right: 8px; color: var(--gold); }
.hero-visual { position: relative; z-index: 2; min-height: 610px; }
.hero-card { position: absolute; margin: 0; overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card--main { inset: 3% 10% 4% 6%; border-radius: 45% 45% 30px 30px; transform: rotate(2deg); }
.hero-card--main figcaption {
  position: absolute;
  left: 28px;
  bottom: 24px;
  padding: 14px 19px;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
  color: var(--navy);
}
.hero-card--main figcaption span { display: block; font-size: .76rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.hero-card--main figcaption strong { color: var(--orange); font-family: "Pacifico", cursive; font-size: 1.55rem; font-weight: 400; }
.hero-card--small { width: 205px; height: 245px; border: 9px solid #fff; border-radius: 28px; }
.hero-card--top { top: 2%; right: -2%; transform: rotate(7deg); }
.hero-card--bottom { bottom: 1%; left: -3%; transform: rotate(-8deg); }
.spark { position: absolute; color: var(--gold); font-size: 2.4rem; }
.spark--one { top: 11%; left: 1%; }
.spark--two { bottom: 19%; right: 2%; color: var(--teal); }
.hero-scroll {
  position: absolute;
  left: max(24px, calc((100vw - var(--content)) / 2));
  bottom: 30px;
  color: var(--navy);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}
.hero-scroll span { margin-left: 8px; color: var(--orange); }

.section {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
  padding: clamp(90px, 10vw, 145px) 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.section.is-visible, .contact.is-visible, .footer-newsletter.is-visible { opacity: 1; transform: none; }
.section-heading { max-width: 800px; margin-bottom: 48px; }
.section-heading h2 { font-size: clamp(2.7rem, 5.4vw, 5.4rem); }
.section-heading--split { max-width: none; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .55fr); align-items: end; gap: 60px; }
.section-heading--split > p { margin: 0 0 5px; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.section-heading--center { margin-inline: auto; text-align: center; }

.experience { padding-top: 120px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  position: relative;
  min-height: 390px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.feature-card::before { content: ""; position: absolute; inset: 0; opacity: .14; background: radial-gradient(circle at 80% 10%, #fff, transparent 34%); }
.feature-card img { position: absolute; width: 130px; height: 130px; top: 28px; right: 28px; opacity: .85; }
.feature-card--teal { background: #dff5f7; }
.feature-card--orange { background: #fff0e7; }
.feature-card--gold { background: #fff6db; }
.feature-number { margin: 0 0 auto; color: rgba(9,39,59,.38); font-weight: 800; }
.feature-card h3 { position: relative; margin: 0 0 14px; color: var(--navy); font-size: 1.55rem; }
.feature-card > p:last-child { position: relative; margin: 0; color: #50636d; line-height: 1.65; }

.events {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--content)) / 2));
  color: #fff;
  background:
    radial-gradient(circle at 90% 15%, rgba(96,200,213,.18), transparent 30%),
    linear-gradient(145deg, var(--navy-deep), var(--navy));
}
.events .eyebrow { color: var(--teal); }
.events h2 { color: #fff; }
.event-showcase { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(320px, .7fr); gap: 22px; }
.event-feature { position: relative; min-height: 650px; margin: 0; overflow: hidden; border-radius: var(--radius-lg); }
.event-feature > img { width: 100%; height: 100%; object-fit: cover; }
.event-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(3,17,27,.88)); }
.event-overlay { position: absolute; z-index: 2; left: 38px; right: 38px; bottom: 36px; }
.event-overlay p { color: var(--gold); font-size: .77rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.event-overlay h3 { max-width: 650px; margin: 10px 0 24px; font-size: clamp(2rem, 4vw, 4.2rem); line-height: 1; }
.event-overlay a { color: #fff; font-weight: 800; text-decoration: none; }
.event-side { display: grid; gap: 22px; grid-template-rows: 1fr auto; }
.event-note { padding: 42px; border-radius: var(--radius-lg); background: var(--orange); }
.event-note__label { margin: 0 0 25px; font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.event-note h3 { margin: 0; font-size: clamp(1.7rem, 2.8vw, 2.8rem); line-height: 1.08; }
.text-link { display: inline-block; margin-top: 32px; font-weight: 800; text-decoration: none; }
.event-mini { position: relative; min-height: 235px; overflow: hidden; border-radius: var(--radius-lg); }
.event-mini img { width: 100%; height: 100%; object-fit: cover; }
.event-mini::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(3,17,27,.75)); }
.event-mini div { position: absolute; z-index: 2; left: 28px; bottom: 24px; }
.event-mini p { margin: 0; color: var(--teal); text-transform: uppercase; font-size: .72rem; font-weight: 800; letter-spacing: .14em; }
.event-mini h3 { margin: 4px 0 0; font-size: 1.65rem; }

.about { display: grid; grid-template-columns: minmax(360px, .85fr) minmax(0, 1fr); gap: clamp(55px, 8vw, 105px); align-items: center; }
.about-media { position: relative; }
.about-frame { overflow: hidden; border-radius: 46% 46% 32px 32px; background: var(--cream); box-shadow: var(--shadow); }
.about-frame img { width: 100%; min-height: 560px; object-fit: cover; }
.about-badge {
  position: absolute;
  right: -28px;
  bottom: 38px;
  width: 155px;
  height: 155px;
  margin: 0;
  padding: 25px;
  display: grid;
  place-content: center;
  border: 8px solid #fff;
  border-radius: 50%;
  text-align: center;
  color: var(--navy);
  background: var(--gold);
  transform: rotate(7deg);
}
.about-badge strong { display: block; font-size: 2.5rem; line-height: 1; }
.about-badge span { font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.about-copy h2 { font-size: clamp(2.7rem, 4.7vw, 4.8rem); }
.about-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.04rem; line-height: 1.78; }
.about-copy blockquote { margin: 30px 0 0; padding: 25px 0 0 26px; border-left: 4px solid var(--teal); color: var(--navy); font-size: 1.25rem; font-weight: 700; line-height: 1.45; }

.reviews { padding-top: 40px; }
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.review-card { min-height: 390px; padding: 22px; display: grid; grid-template-columns: 190px 1fr; gap: 30px; align-items: center; border-radius: var(--radius-lg); background: #edf9fa; }
.review-card--dark { color: #fff; background: var(--navy); }
.review-card img { width: 190px; height: 100%; min-height: 340px; object-fit: cover; border-radius: 26px; }
.review-quote { margin: 0; font-size: clamp(1.2rem, 2vw, 1.65rem); font-weight: 600; line-height: 1.45; }
.review-name { margin: 28px 0 2px; color: var(--orange); font-weight: 800; }
.review-card--dark .review-name { color: var(--teal); }
.review-context { margin: 0; opacity: .65; font-size: .83rem; }

.contact {
  width: min(calc(100% - 32px), 1400px);
  margin: 40px auto 0;
  padding: clamp(70px, 9vw, 120px) max(24px, calc((100% - var(--content)) / 2));
  border-radius: 50px 50px 0 0;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(4,23,34,.88), rgba(4,23,34,.55)),
    url("../images/cameraBG.jpg") center / cover no-repeat;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.contact-inner { display: grid; grid-template-columns: minmax(0, .8fr) minmax(440px, 1fr); gap: clamp(55px, 8vw, 110px); align-items: center; }
.contact .eyebrow { color: var(--gold); }
.contact h2 { color: #fff; font-size: clamp(3rem, 5.4vw, 5.6rem); }
.contact-copy > p:not(.eyebrow) { max-width: 510px; margin: 24px 0 30px; color: rgba(255,255,255,.78); font-size: 1.06rem; line-height: 1.7; }
.contact-form { padding: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-lg); background: rgba(255,255,255,.1); backdrop-filter: blur(16px); }
.contact-form label { display: grid; gap: 7px; }
.contact-form label span { font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.18); border-radius: 15px; background: rgba(255,255,255,.9); color: var(--ink); padding: 14px 15px; outline: none; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(96,200,213,.18); }
.contact-form__wide { grid-column: 1 / -1; }
.contact-form button { width: 100%; }

.footer {
  width: min(calc(100% - 32px), 1400px);
  margin: 0 auto 16px;
  padding: 0 max(24px, calc((100% - var(--content)) / 2)) 30px;
  overflow: hidden;
  border-radius: 0 0 50px 50px;
  color: #fff;
  background:
    radial-gradient(circle at 10% 20%, rgba(233,97,35,.24), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(96,200,213,.2), transparent 30%),
    linear-gradient(145deg, var(--navy-deep), var(--navy));
}
.footer-newsletter {
  padding: 72px 0 60px;
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(540px, 1.25fr);
  align-items: center;
  gap: 55px;
  border-bottom: 1px solid rgba(255,255,255,.13);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.footer .eyebrow { color: var(--teal); }
.footer h2 { color: #fff; font-size: clamp(2.8rem, 5vw, 4.7rem); }
.footer-newsletter > div > p:last-child { max-width: 430px; color: rgba(255,255,255,.68); line-height: 1.6; }
.subscribe-form { display: grid; grid-template-columns: .8fr 1.2fr auto; gap: 10px; align-items: center; }
.subscribe-form input[type="text"], .subscribe-form input[type="email"] { width: 100%; border: 0; border-radius: 999px; padding: 17px 20px; outline: none; }
.subscribe-form input:focus { box-shadow: 0 0 0 4px rgba(96,200,213,.22); }
.subscribe-form button { min-height: 53px; border: 0; border-radius: 999px; padding: 14px 21px; color: #fff; background: var(--orange); font-weight: 800; cursor: pointer; }
.subscribe-consent { grid-column: 1 / -1; display: flex; align-items: flex-start; justify-content: center; gap: 8px; color: rgba(255,255,255,.62); font-size: .72rem; line-height: 1.45; }
.subscribe-consent input { margin-top: 3px; accent-color: var(--teal); }
.honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.form-message { grid-column: 2; margin: 0 0 -28px; padding: 11px 15px; border-radius: 15px; font-size: .82rem; }
.form-message--success { background: rgba(96,200,213,.14); color: #dffcff; }
.form-message--error { background: rgba(233,97,35,.2); color: #fff0e8; }
.footer-bottom { padding: 46px 0 24px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: center; }
.footer-brand img { width: 180px; height: 75px; object-fit: contain; }
.footer-brand p { margin: 0; font-weight: 700; }
.footer-brand p span { color: var(--teal); font-family: "Pacifico", cursive; font-weight: 400; }
.footer-bottom nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
.footer-bottom nav a, .footer-meta a { color: #fff; font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.footer-meta { text-align: right; }
.footer-meta p { margin: 0 0 12px; color: rgba(255,255,255,.58); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.copyright { margin: 0; color: rgba(255,255,255,.4); font-size: .68rem; text-align: center; }







/* testMerge approved-section refinements */
.brand img {
  width: 190px;
  height: 62px;
}

.site-header {
  min-height: 84px;
  padding-left: 26px;
}

.experience {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--content)) / 2));
  color: #fff;
  background:
    linear-gradient(100deg, rgba(4, 23, 34, .92), rgba(9, 39, 59, .79)),
    url("../images/cameraBG.jpg") center / cover no-repeat;
}

.experience-title-art {
  width: min(380px, 74vw);
  margin: 0 0 35px;
}

.experience-title-art img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, .28));
}

.experience .eyebrow { color: var(--gold); }
.experience h2 { color: #fff; }
.experience-heading > p { color: rgba(255,255,255,.78); }

.feature-grid--merged { gap: 18px; }
.feature-card--merged {
  min-height: 390px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(155deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
  box-shadow: 0 24px 44px rgba(0,0,0,.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.feature-card--merged::before {
  opacity: .18;
  background: radial-gradient(circle at 82% 10%, var(--teal), transparent 34%);
}

.feature-card__icon {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 136px;
  height: 136px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  box-shadow: 0 18px 34px rgba(0,0,0,.26);
}

.feature-card__icon img {
  position: static;
  width: 92px;
  height: 92px;
  opacity: 1;
}

.feature-card--merged .feature-number { color: rgba(255,255,255,.58); }
.feature-card--merged h3 { color: #fff; }
.feature-card--merged > p:last-child { color: rgba(255,255,255,.8); }

.event-showcase--merged {
  grid-template-columns: minmax(0, 1.48fr) minmax(310px, .62fr);
  align-items: stretch;
}

.featured-events {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.featured-event-card {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
}

.featured-event-card__image {
  display: block;
  height: 340px;
  overflow: hidden;
}

.featured-event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .35s ease;
}

.featured-event-card:hover .featured-event-card__image img { transform: scale(1.025); }

.featured-event-card__content { padding: 26px 28px 30px; }
.featured-event-card__date {
  margin: 0 0 9px;
  color: var(--teal);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.featured-event-card h3 { margin: 0; font-size: clamp(1.55rem, 2.4vw, 2.25rem); line-height: 1.08; }
.featured-event-card h3 a { color: #fff; text-decoration: none; }
.featured-event-card__content > p:not(.featured-event-card__date) { color: rgba(255,255,255,.72); line-height: 1.65; }
.featured-event-card .text-link { color: var(--gold); }
.featured-event-card--empty { min-height: 500px; display: grid; align-items: end; }

.event-side--merged { grid-template-rows: auto minmax(250px, 1fr) auto; }
.event-mini--merged { min-height: 300px; }
.event-mini--merged img { object-position: center 30%; }
.event-more-button { width: 100%; }

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

.review-card img {
  width: 180px;
  height: 180px;
  min-height: 0;
  border-radius: 50%;
  object-fit: cover;
  border: 8px solid rgba(255,255,255,.85);
  box-shadow: 0 18px 38px rgba(9,39,59,.15);
}

.review-card--dark img { border-color: rgba(255,255,255,.14); }

.footer-bottom {
  grid-template-columns: 1fr auto auto auto;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal);
  background: rgba(255,255,255,.08);
  transition: transform .2s ease, color .2s ease, background .2s ease;
}

.footer-socials a:hover {
  color: var(--navy);
  background: var(--gold);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}







/* testMerge refinement pass */
.site-header {
  justify-content: center;
  padding-inline: 24px;
}
.primary-nav { width: 100%; justify-content: center; }
.primary-nav .nav-cta { margin-left: 12px; }

.hero h1 span,
.section h2 span,
.contact h2 span,
.footer h2 span,
.hero-card--main figcaption strong,
.footer-brand p span {
  font-family: "Caveat", cursive;
  font-weight: 500;
  letter-spacing: 0;
}

.hero {
  min-height: 940px;
  padding-bottom: 165px;
  grid-template-columns: minmax(0, .88fr) minmax(440px, 1.12fr);
}
.hero-logo {
  width: min(430px, 82%);
  max-height: 210px;
  margin: 0 0 22px;
  object-fit: contain;
  object-position: left center;
}
.hero-strip-wrap {
  position: relative;
  z-index: 2;
  min-height: 620px;
}
.photo-stack {
  position: absolute;
  inset: 0;
  perspective: 1200px;
}
.photo-stack__card {
  position: absolute;
  inset: 7% 6% 5% 4%;
  margin: 0;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 38px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate3d(75px, 18px, 0) rotate(5deg) scale(.92);
  transition: opacity .55s ease, transform .7s cubic-bezier(.2,.8,.2,1);
}
.photo-stack__card img { width: 100%; height: 100%; object-fit: cover; }
.photo-stack__card.is-active { opacity: 1; z-index: 5; transform: translate3d(0,0,0) rotate(1.5deg) scale(1); }
.photo-stack__card.is-next { opacity: .72; z-index: 4; transform: translate3d(30px,24px,-50px) rotate(4deg) scale(.96); }
.photo-stack__card.is-third { opacity: .42; z-index: 3; transform: translate3d(58px,48px,-90px) rotate(7deg) scale(.92); }
.photo-stack__card.is-leaving { opacity: 0; z-index: 6; transform: translate3d(-85px,-18px,0) rotate(-7deg) scale(.96); }

.experience {
  width: 100%;
  max-width: none;
  margin-top: -115px;
  padding: 150px max(24px, calc((100vw - var(--content)) / 2)) 135px;
  border-radius: 54px 54px 0 0;
  background:
    linear-gradient(180deg, rgba(4,23,34,.82), rgba(4,23,34,.91)),
    url("../images/QualityBD.png") center / cover no-repeat;
}
.experience-heading { color: #fff; }
.experience-heading h2 { color: #fff; }
.experience-heading > p { color: rgba(255,255,255,.8); }
.feature-card__icon {
  position: static;
  width: auto;
  height: auto;
  margin-bottom: 18px;
  display: block;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.feature-card__icon img { width: 92px; height: 92px; filter: drop-shadow(0 10px 18px rgba(0,0,0,.28)); }
.feature-card--merged { padding-top: 34px; }

.event-showcase--merged {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
}
.featured-events { min-width: 0; }
.featured-event-card { min-width: 0; }
.event-side--merged { min-width: 0; }

.about-frame picture,
.about-frame picture img { display: block; width: 100%; height: 100%; }
.about-frame img { min-height: 560px; }

.testimonial-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}
.testimonial-viewport { overflow: hidden; }
.testimonial-track { display: flex; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.testimonial-track .review-card { flex: 0 0 100%; }
.testimonial-arrow {
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
}
.testimonial-arrow:hover { background: var(--orange); }
.testimonial-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.testimonial-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(9,39,59,.22);
  cursor: pointer;
}
.testimonial-dots button.is-active { background: var(--orange); }

.footer-bottom {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
.footer-bottom nav { order: 1; justify-content: center; }
.footer-brand { order: 2; justify-items: center; }
.footer-meta { order: 3; text-align: center; }
.footer-socials { margin: 16px 0 10px; }
.footer-location { margin: 0; color: rgba(255,255,255,.72); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }








@font-face {
  font-family: "Barcelony";
  src: local("Barcelony"), url("../fonts/Barcelony.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root { --script-font: "Golden Hopes", "Caveat", cursive; }
.hero h1 span,
.section h2 span,
.contact h2 span,
.footer h2 span,
.footer-brand p span,
.ScriptFont {
  font-family: var(--script-font);
  font-weight: 400;
  letter-spacing: 0;
}

/* Current-site hero structure with testMerge atmosphere */
.hero.hero--current-layout {
  min-height: 100vh;
  padding: 118px 0 0;
  display: block;
  overflow: visible;
  background:
    radial-gradient(circle at 8% 15%, rgba(96,200,213,.22), transparent 31%),
    radial-gradient(circle at 92% 80%, rgba(233,97,35,.16), transparent 28%),
    linear-gradient(145deg, #fff 0%, #f9fbfb 56%, #fff6ed 100%);
}
.hero.hero--current-layout::before { display: none; }
.hero-current-grid {
  width: min(var(--content), 100%);
  min-height: calc(100vh - 118px);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr);
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 6vw, 6rem);
}
.hero-current-photos {
  width: 100%;
  min-width: 0;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 30;
  overflow: visible;
}
.hero-current-copy {
  min-width: 0;
  display: grid;
  place-items: center;
  text-align: center;
  transform: translateX(-10%);
}
.hero-current-copy-inner { width: min(120%, 780px); }
.hero-logo--current {
  display: block;
  width: min(120%, 696px);
  max-height: 55vh;
  margin: 0 auto 1rem;
  object-fit: contain;
}
.hero--current-layout .eyebrow { margin-bottom: .65rem; }
.hero--current-layout h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.3rem, 4.8vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.hero--current-layout h1 span {
  display: block;
  color: var(--orange);
  font-size: 1.06em;
}
.hero--current-layout .hero-lede {
  max-width: 580px;
  margin: 0 auto 1.5rem;
  font-size: clamp(.96rem, 1.44vw, 1.15rem);
  line-height: 1.65;
}
.hero--current-layout .hero-actions { justify-content: center; margin-top: 0; }
.hero--current-layout .hero-proof { justify-content: center; margin-top: 1.35rem; }
.hero--current-layout .photo-stack {
  position: relative;
  width: min(72%, 338px);
  aspect-ratio: 2 / 6;
  transform: translateY(10%);
  z-index: 30;
  isolation: isolate;
  cursor: pointer;
}
.hero--current-layout .photo-stack__card {
  --stack-x: 0;
  --stack-y: 0;
  --stack-rotate: 0deg;
  position: absolute;
  inset: 0;
  margin: 0;
  padding: clamp(.55rem, 1vw, .9rem);
  overflow: hidden;
  border-radius: .35rem;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0,0,0,.18), 0 4px 12px rgba(0,0,0,.12);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--stack-x), var(--stack-y), 0) rotate(var(--stack-rotate)) scale(.94);
  transition: transform 700ms cubic-bezier(.22,1,.36,1), opacity 450ms ease;
}
.hero--current-layout .photo-stack__card img { width: 100%; height: 100%; object-fit: cover; border-radius: .15rem; }
.hero--current-layout .photo-stack__card.is-active { --stack-rotate: -2deg; z-index: 5; opacity: 1; pointer-events: auto; transform: translate3d(0,0,0) rotate(var(--stack-rotate)) scale(1); }
.hero--current-layout .photo-stack__card.is-next { --stack-x: 14px; --stack-y: 10px; --stack-rotate: 3deg; z-index: 4; opacity: 1; }
.hero--current-layout .photo-stack__card.is-third { --stack-x: -12px; --stack-y: 17px; --stack-rotate: -5deg; z-index: 3; opacity: 1; }
.hero--current-layout .photo-stack__card.is-fourth { --stack-x: 20px; --stack-y: 24px; --stack-rotate: 6deg; z-index: 2; opacity: 1; }
.hero--current-layout .photo-stack__card.is-fifth { --stack-x: -20px; --stack-y: 30px; --stack-rotate: -7deg; z-index: 1; opacity: 1; }
.hero--current-layout .photo-stack__card.is-leaving { z-index: 10; opacity: 0; transform: translate3d(-115%, -12%, 0) rotate(-18deg) scale(.9); }

/* Services: lighter overlay and right-side transparent icon medallions */
.experience {
  background:
    linear-gradient(180deg, rgba(4,23,34,.67), rgba(4,23,34,.76)),
    url("../images/QualityBD.png") center / cover no-repeat;
}
.feature-card--merged { position: relative; padding: 34px 132px 34px 34px; }
.feature-card--merged .feature-card__icon {
  position: absolute;
  top: 50%;
  right: 28px;
  width: 82px;
  height: 82px;
  margin: 0;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.9);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
  transform: translateY(-50%);
}
.feature-card--merged .feature-card__icon img {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 8px 15px rgba(0,0,0,.28));
}

/* About: show the complete animated image without cropping */
.about-frame {
  overflow: visible;
  border-radius: 32px;
  background: transparent;
  box-shadow: none;
  transform: rotate(-2.25deg);
}
.about-frame > img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

/* TestProject footer order with social links above Back to top */
.footer-bottom { grid-template-columns: 1fr auto 1fr; }
.footer-bottom .footer-brand { text-align: left; }
.footer-bottom .footer-brand img { margin: 0; }
.footer-bottom nav { justify-content: center; }

.footer-meta > p { margin: 0 0 14px; }
.footer-meta .footer-socials { justify-content: flex-end; margin: 0 0 14px; }

/* Prevent the event columns from collapsing into a narrow sliver */









@font-face {
  font-family: "Golden Hopes";
  src: url("https://snaphappyabq.com/fonts/ScriptFont/GoldenHopes.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

.hero h1 span,
.section h2 span,
.contact h2 span,
.footer h2 span,
.footer-brand p span {
  font-family: "Golden Hopes", "Caveat", cursive;
  font-weight: 400;
  letter-spacing: 0;
}

/* Compact floating navigation with equal outer padding */
.site-header {
  width: max-content;
  max-width: calc(100% - 32px);
  min-height: 76px;
  padding: 10px;
  justify-content: center;
}
.primary-nav {
  justify-content: center;
  gap: clamp(18px, 2.1vw, 30px);
}
.primary-nav .nav-cta { padding-inline: 24px; }

/* Match service spacing to the hero photo overlap */
.experience {
  padding-top: clamp(170px, 14vw, 220px);
}
.feature-card--merged {
  padding: 42px 38px 36px;
}
.feature-card--merged .feature-card__icon {
  top: 24px;
  right: 24px;
  width: 104px;
  height: 104px;
  transform: none;
  border-width: 2px;
  background: transparent;
}
.feature-card--merged .feature-card__icon img {
  width: 74px;
  height: 74px;
}
.feature-card--merged .feature-number {
  padding-right: 112px;
}

/* Keep the complete GIF near the height of the text column */
.about-media {
  display: grid;
  place-items: center;
}
.about-frame {
  width: min(100%, 520px);
  margin-inline: auto;
}
.about-frame > img {
  width: 100%;
  max-height: 590px;
  object-fit: contain;
}

/* Keep testimonial cards visible and support automated carousel motion */
.testimonial-viewport {
  border-radius: var(--radius-lg);
}
.testimonial-track .review-card {
  min-height: 340px;
}
.testimonial-carousel.is-paused .testimonial-track {
  transition-duration: .2s;
}

/* Logo left, navigation truly centered, meta right */
.footer-bottom {
  position: relative;
  grid-template-columns: minmax(200px, 1fr) minmax(360px, auto) minmax(200px, 1fr);
  align-items: center;
}
.footer-bottom .footer-brand {
  justify-self: start;
  text-align: left;
  order: initial;
}

.footer-bottom nav {
  justify-self: center;
  justify-content: center;
  order: initial;
}
.footer-meta {
  justify-self: end;
  text-align: right;
  order: initial;
}
.footer-meta .footer-socials { justify-content: flex-end; }






.experience {
  /* Match the complete depth of the rotating-photo overlap. */
  padding-top: clamp(205px, 17vw, 275px);
}

.feature-card--merged {
  position: relative;
  padding-top: 48px;
  padding-right: 152px;
}

.feature-card--merged .feature-card__icon {
  top: 22px;
  right: 22px;
  width: 116px;
  height: 116px;
}

.feature-card--merged .feature-card__icon img {
  width: 84px;
  height: 84px;
}

/* Reduce the visual side spacing and keep the About composition balanced. */
.about {
  width: min(calc(100% - 32px), 1380px);
  gap: clamp(34px, 5vw, 72px);
}

/* Ensure the carousel is visible even before JS initializes. */
.testimonial-carousel,
.testimonial-viewport,
.testimonial-track,
.testimonial-track .review-card {
  visibility: visible;
}

.testimonial-track .review-card {
  display: grid;
  opacity: 1;
}

/* Center the footer logo directly over the tagline. */
.footer-bottom .footer-brand {
  display: grid;
  justify-items: center;
  align-items: center;
  text-align: center;
}

.footer-bottom .footer-brand img {
  margin-inline: auto;
}








.feature-card--merged .feature-number {
  padding-right: 118px;
}

.feature-card--merged h3,
.feature-card--merged > p:last-child {
  width: 100%;
  max-width: none;
  padding-right: 0;
}

.feature-card--merged > p:last-child {
  align-self: stretch;
}

.about {
  grid-template-columns: minmax(250px, .58fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
}

.about-media {
  width: 100%;
  max-width: 390px;
  margin-inline: auto;
}

.about-frame {
  width: 100%;
  aspect-ratio: 2 / 6;
  max-height: none;
  margin-inline: auto;
  overflow: visible;
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
  transform: rotate(-2deg);
}

.about-frame > img,
.about-frame picture,
.about-frame picture img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.about-badge {
  right: -34px;
  bottom: 48px;
}






.about-media {
  max-width: 195px;
}






.about-media {
  justify-self: end;
  margin-left: auto;
  margin-right: clamp(24px, 5vw, 78px);
}

.about-badge {
  right: auto;
  left: -138px;
  bottom: 18%;
  z-index: 2;
}






.about-media {
  transform: translateX(clamp(28px, 4vw, 62px));
}

.about-badge {
  left: -116px;
}












.hero h1 span,
.section h2 span,
.contact h2 span,
.footer h2 span,
.footer-brand p span,
.ScriptFont,
.hero-card--main figcaption strong {
  font-size: 1.65em;
}

/* The current hero already used a 1.06em script scale; increase that exact size by 65%. */
.hero--current-layout h1 span {
  font-size: 1.749em;
}


.hero h1 span,
.section h2 span,
.contact h2 span,
.footer h2 span,
.footer-brand p span,
.ScriptFont,
.hero-card--main figcaption strong {
  display: inline-block;
  position: relative;
  top: 0.15em;
}



.hero h1 span,
.section h2 span,
.contact h2 span,
.footer h2 span,
.footer-brand p span,
.ScriptFont,
.hero-card--main figcaption strong {
  top: 0.15em;
}

.event-more-button {
  min-height: 54px;
  height: auto;
  max-height: 64px;
  padding: 15px 23px;
  align-self: start;
  justify-self: stretch;
}






/* TestMerge event archive */
.event-archive-page {
  background: #071d2b;
}

.event-archive-hero {
  min-height: 760px;
  padding: clamp(7.5rem, 12vw, 10rem) clamp(1.25rem, 5vw, 5rem) clamp(5rem, 9vw, 8rem);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  color: #fff;
  background:
    radial-gradient(circle at 82% 35%, rgba(96, 200, 213, .24), transparent 25%),
    radial-gradient(circle at 12% 20%, rgba(233, 97, 35, .2), transparent 30%),
    linear-gradient(135deg, #071722, #09283a);
  overflow: hidden;
}

.event-archive-hero__media {
  min-width: 0;
}

.event-archive-stack {
  min-height: clamp(430px, 52vw, 650px);
}

.event-archive-hero__copy {
  max-width: 680px;
}

.event-archive-logo {
  display: block;
  width: min(100%, 350px);
  max-height: 190px;
  margin: 0 0 1.3rem;
  object-fit: contain;
  object-position: left center;
}

.event-archive-hero h1,
.event-archive-heading h2,
.event-archive-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: .94;
  letter-spacing: -.055em;
}

.event-archive-hero h1 span,
.event-archive-heading h2 span,
.event-archive-cta h2 span {
  display: inline-block;
  color: #60c8d5;
  font-family: "Golden Hopes", "Caveat", cursive;
  font-size: 1.65em;
  font-weight: 400;
  line-height: .65;
  transform: translateY(.15em);
}

.event-archive-hero__copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 1.7rem 0 2rem;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.7;
}

.event-archive {
  background: #f8f6f1;
  color: #09263a;
}

.event-archive-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.event-archive-heading h2 {
  color: #09263a;
  font-size: clamp(2.8rem, 5.5vw, 5.4rem);
}

.event-archive-heading > p {
  margin: 0;
  color: #60707b;
  font-size: 1.05rem;
  line-height: 1.75;
}

.event-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.4rem);
}

.event-archive-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  border-radius: 2.25rem;
  background: #0a2a3d;
  color: #fff;
  box-shadow: 0 18px 40px rgba(5, 29, 43, .13);
}

.event-archive-card.is-revealing {
  animation: eventArchiveReveal 420ms ease both;
}

.event-archive-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.event-archive-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .4s ease;
}

.event-archive-card:hover .event-archive-card__image img {
  transform: scale(1.025);
}

.event-archive-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.event-archive-card__date {
  margin: 0 0 .65rem;
  color: #60c8d5;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.event-archive-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.event-archive-card h3 a {
  color: #fff;
  text-decoration: none;
}

.event-archive-card__body > p:not(.event-archive-card__date) {
  margin: 1rem 0 1.4rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
}

.event-archive-card .text-link {
  margin-top: auto;
  color: #fbb03b;
}

.event-archive-actions {
  display: grid;
  justify-items: center;
  gap: .75rem;
  margin-top: 2.5rem;
}

.event-archive-actions .button {
  width: auto;
  min-height: 3.35rem;
}

.event-archive-status {
  min-height: 1.4em;
  margin: 0;
  color: #60707b;
  font-size: .85rem;
}

.event-archive-empty {
  grid-column: 1 / -1;
  padding: 3rem;
  border-radius: 2rem;
  background: #fff;
  text-align: center;
}

.event-archive-cta {
  padding: clamp(3rem, 7vw, 6rem) clamp(1.25rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: #fff;
  background: linear-gradient(135deg, #e96123, #f47b2b);
}

.event-archive-cta h2 {
  max-width: 850px;
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.event-archive-cta h2 span {
  color: #09263a;
}

.footer--event-page {
  padding-top: clamp(3rem, 6vw, 5rem);
}

@keyframes eventArchiveReveal {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}








.event-archive-page {
  background:
    radial-gradient(circle at 12% 10%, rgba(233, 97, 35, .18), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(96, 200, 213, .17), transparent 25%),
    linear-gradient(145deg, #06131f 0%, #08293c 46%, #071d2b 100%);
}

.event-archive-hero.hero--current-layout {
  position: relative;
  min-height: clamp(760px, 92vh, 930px);
  padding: clamp(7rem, 10vw, 9rem) clamp(1.25rem, 5vw, 5rem) 0;
  grid-template-columns: minmax(280px, .88fr) minmax(340px, 1.12fr);
  gap: clamp(2rem, 5vw, 5rem);
  overflow: visible;
  background: transparent;
}

.event-archive-hero.hero--current-layout .event-archive-hero__media {
  align-self: end;
  min-height: 100%;
  overflow: visible;
}

.event-archive-hero.hero--current-layout .event-archive-stack {
  width: min(72%, 338px);
  min-height: 0;
  aspect-ratio: 2 / 6;
  transform: translateY(12%);
}

.event-archive-hero.hero--current-layout .event-archive-hero__copy {
  max-width: 760px;
  transform: translateX(-5%);
}

.event-archive-hero.hero--current-layout .event-archive-logo {
  width: min(120%, 620px);
  max-height: 43vh;
  margin: 0 auto 1rem;
  object-position: center;
}

.event-archive-hero.hero--current-layout .eyebrow,
.event-archive-hero.hero--current-layout h1,
.event-archive-hero.hero--current-layout .event-archive-hero__copy > div > p:not(.eyebrow) {
  text-align: center;
}

.event-archive-hero.hero--current-layout h1 {
  font-size: clamp(2.7rem, 5.4vw, 5.6rem);
}

.event-archive-hero.hero--current-layout .event-archive-hero__copy > div > p:not(.eyebrow) {
  max-width: 640px;
  margin: 1.55rem auto 2rem;
}

.event-archive-hero.hero--current-layout .button {
  margin-inline: auto;
}

.event-archive.section {
  position: relative;
  z-index: 20;
  width: min(1500px, calc(100% - clamp(1rem, 3vw, 3rem)));
  margin: 0 auto;
  padding-top: clamp(8rem, 15vw, 13rem);
  border-radius: clamp(2rem, 4vw, 4rem);
  background: rgba(248, 246, 241, .97);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .2);
}

.event-archive-grid {
  padding: clamp(.9rem, 2vw, 1.5rem);
  border-radius: 2.8rem;
  background: rgba(255, 255, 255, .78);
  box-shadow: inset 0 0 0 1px rgba(9, 38, 58, .08);
}

.event-archive-card {
  margin: .15rem;
  border: clamp(.5rem, 1vw, .8rem) solid rgba(255, 255, 255, .94);
  box-shadow: 0 18px 40px rgba(5, 29, 43, .16);
}

.event-archive-card__body {
  padding: clamp(1.8rem, 3.5vw, 2.7rem);
}

.event-archive-cta {
  position: relative;
  width: calc(100% - clamp(1rem, 3vw, 3rem));
  max-width: 1540px;
  margin: clamp(2.25rem, 5vw, 4.5rem) auto 0;
  padding: clamp(3rem, 7vw, 5rem) clamp(2rem, 7vw, 6rem);
  border-radius: .8rem;
  box-shadow: 0 20px 48px rgba(104, 38, 8, .28);
  isolation: isolate;
}

.event-archive-cta::before,
.event-archive-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -1.1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: #a93812;
}

.event-archive-cta::before {
  left: .4rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.event-archive-cta::after {
  right: .4rem;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.footer--event-page {
  background: transparent;
}






.event-archive.section {
  /* Keep the cream content panel inset so the blue page background frames it. */
  padding-inline: clamp(1.5rem, 4vw, 4rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.event-archive-heading {
  padding-inline: clamp(.75rem, 2vw, 1.75rem);
}

.event-archive-heading > div,
.event-archive-heading > p {
  min-width: 0;
}

.event-archive-grid {
  /* Continue the cream archive-panel surface behind the cards. */
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.event-archive-card {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 18px 40px rgba(5, 29, 43, .16);
}

.event-archive-cta {
  /* Full-bleed orange banner. Preserve its existing gradient exactly. */
  width: 100vw;
  max-width: none;
  margin: clamp(2.25rem, 5vw, 4.5rem) calc(50% - 50vw) 0;
  border-radius: 0;
}

.event-archive-cta::before,
.event-archive-cta::after {
  content: none;
}

.footer--event-page {
  /* Restore the original testMerge footer gradient. */
  background:
    radial-gradient(circle at 10% 20%, rgba(233,97,35,.24), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(96,200,213,.2), transparent 30%),
    linear-gradient(145deg, var(--navy-deep), var(--navy));
}




.gallery-page {
  background:
    radial-gradient(circle at 12% 10%, rgba(233, 97, 35, .18), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(96, 200, 213, .17), transparent 25%),
    linear-gradient(145deg, #06131f 0%, #08293c 46%, #071d2b 100%);
}

.gallery-hero {
  position: relative;
  min-height: clamp(760px, 92vh, 930px);
  display: grid;
  grid-template-columns: minmax(280px, .88fr) minmax(340px, 1.12fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(7rem, 10vw, 9rem) clamp(1.25rem, 5vw, 5rem) 0;
  overflow: visible;
}

.gallery-hero__media {
  align-self: end;
  min-height: 100%;
  overflow: visible;
}

.gallery-photo-stack {
  width: min(72%, 338px);
  min-height: 0;
  aspect-ratio: 2 / 6;
  transform: translateY(12%);
}

.gallery-hero__copy {
  max-width: 760px;
  text-align: center;
  transform: translateX(-5%);
}

.gallery-hero__copy .event-archive-logo {
  width: min(120%, 620px);
  max-height: 43vh;
  margin: 0 auto 1rem;
}

.gallery-hero__copy h1 {
  margin: .5rem 0 0;
  color: #fff;
  font-size: clamp(2.7rem, 5.4vw, 5.6rem);
  line-height: .98;
}

.gallery-hero__copy h1 span,
.gallery-archive-heading h2 span,
.gallery-cta h2 span {
  color: var(--orange);
  font-family: var(--script-font);
  font-size: 1.65em;
  font-weight: 400;
  position: relative;
  top: .15em;
}

.gallery-hero__date {
  margin: 1.4rem 0 0;
  color: var(--teal);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.gallery-hero__summary {
  max-width: 640px;
  margin: 1.15rem auto 1.8rem;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
}

.gallery-hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .8rem;
}

.gallery-archive.section {
  position: relative;
  z-index: 20;
  width: min(1500px, calc(100% - clamp(1rem, 3vw, 3rem)));
  margin: 0 auto;
  padding: clamp(8rem, 15vw, 13rem) clamp(1.5rem, 4vw, 4rem) clamp(3rem, 6vw, 5rem);
  border-radius: clamp(2rem, 4vw, 4rem);
  background: rgba(248, 246, 241, .97);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .2);
}

.gallery-archive-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
  align-items: end;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: 0 clamp(.75rem, 2vw, 1.75rem) clamp(2rem, 4vw, 3.5rem);
}

.gallery-archive-heading h2 {
  margin: .35rem 0 0;
  color: var(--navy);
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 1;
}

.gallery-archive-heading > p {
  margin: 0;
  color: #586875;
  line-height: 1.7;
}

.gallery-masonry {
  columns: 4 240px;
  column-gap: clamp(.8rem, 1.8vw, 1.4rem);
}

.gallery-tile {
  display: block;
  width: 100%;
  margin: 0 0 clamp(.8rem, 1.8vw, 1.4rem);
  padding: 0;
  break-inside: avoid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1.6rem;
  background: var(--navy);
  box-shadow: 0 18px 40px rgba(5, 29, 43, .16);
  cursor: zoom-in;
}

.gallery-tile img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .3s ease, filter .3s ease;
}

.gallery-tile:hover img,
.gallery-tile:focus-visible img {
  transform: scale(1.025);
  filter: brightness(1.04);
}

.gallery-cta {
  margin-bottom: 0;
}

.gallery-lightbox {
  width: min(1200px, 94vw);
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 1.5rem;
  background: #07131f;
  box-shadow: 0 24px 90px rgba(0,0,0,.58);
}

.gallery-lightbox::backdrop {
  background: rgba(2,8,14,.88);
}

.gallery-lightbox img {
  display: block;
  max-width: 94vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  margin: auto;
  object-fit: contain;
}

.gallery-lightbox__close {
  position: absolute;
  z-index: 2;
  top: .8rem;
  right: .8rem;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}






.gallery-hero {
  grid-template-columns: minmax(270px, .82fr) minmax(360px, 1.18fr);
  gap: clamp(1rem, 2.8vw, 2.75rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.gallery-hero__media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 24;
}

.gallery-photo-stack {
  width: min(74%, 350px);
  transform: translate(6%, 15%);
}

.gallery-hero__copy {
  transform: translateX(-2%);
  position: relative;
  z-index: 26;
}

.gallery-hero__actions {
  position: relative;
  z-index: 27;
  margin-bottom: clamp(.75rem, 2vw, 1.5rem);
}

.gallery-archive.section {
  padding-top: clamp(7rem, 12vw, 10rem);
}

.gallery-masonry {
  columns: initial;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.9rem, 1.8vw, 1.4rem);
  align-items: stretch;
  background: transparent;
}

.gallery-tile {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  margin: 0;
  border: 1px solid rgba(7, 36, 52, .13);
  border-radius: 1.6rem;
  background: transparent;
  box-shadow: 0 16px 34px rgba(5, 29, 43, .14);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

.gallery-tile:hover,
.gallery-tile:focus-visible {
  border-radius: 1.6rem;
  box-shadow: 0 20px 42px rgba(5, 29, 43, .2);
}

.gallery-tile:hover img,
.gallery-tile:focus-visible img {
  border-radius: inherit;
}

.gallery-cta h2 .gallery-cta__script {
  color: var(--navy);
}

.gallery-lightbox {
  width: min(96vw, 1500px);
  height: min(94vh, 980px);
  max-width: none;
  max-height: none;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 1.5rem;
  background: #07131f;
}

.gallery-lightbox__stage {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 2vw, 1.75rem);
  box-sizing: border-box;
  cursor: zoom-out;
}

.gallery-lightbox img {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(96vw - 3.5rem);
  max-height: calc(94vh - 3.5rem);
  margin: auto;
  object-fit: contain;
  cursor: zoom-in;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  transition: width .18s ease, max-width .18s ease, max-height .18s ease;
}

.gallery-lightbox img.is-zoomed {
  width: min(1800px, 180vw);
  max-width: none;
  max-height: none;
  flex: 0 0 auto;
  cursor: zoom-out;
}

.gallery-lightbox__close {
  position: sticky;
  float: right;
  top: .8rem;
  right: .8rem;
  z-index: 5;
  flex: 0 0 auto;
}








.gallery-masonry {
  display: block;
  columns: 4 240px;
  column-gap: clamp(.8rem, 1.8vw, 1.4rem);
}

.gallery-tile,
.gallery-tile:hover,
.gallery-tile:focus-visible {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: auto;
  margin: 0 0 clamp(.8rem, 1.8vw, 1.4rem);
  break-inside: avoid;
  overflow: hidden;
  border: 1px solid rgba(7, 36, 52, .13);
  border-radius: 1.6rem;
  background: transparent;
  box-shadow: 0 12px 26px rgba(5, 29, 43, .11);
  isolation: isolate;
  transform: none;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.gallery-tile img,
.gallery-tile:hover img,
.gallery-tile:focus-visible img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: inherit;
  transform: none;
  filter: none;
}

.gallery-tile:hover,
.gallery-tile:focus-visible {
  box-shadow: 0 16px 32px rgba(5, 29, 43, .16);
}

.gallery-lightbox {
  width: min(96vw, 1500px);
  height: min(94vh, 980px);
  overflow: hidden;
}

.gallery-lightbox__stage {
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  cursor: zoom-out;
}

.gallery-lightbox img {
  width: auto;
  height: auto;
  max-width: calc(96vw - 3.5rem);
  max-height: calc(94vh - 3.5rem);
  margin: auto;
  object-fit: contain;
  cursor: zoom-in;
  transition: none;
}

.gallery-lightbox img.is-zoomed {
  width: var(--gallery-zoom-width, 50vw);
  max-width: none;
  max-height: none;
  height: auto;
  margin: 0 auto;
  cursor: zoom-out;
}












.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: start;
  gap: clamp(.55rem, .9vw, 1rem);
  columns: initial;
}

.gallery-tile,
.gallery-tile:hover,
.gallery-tile:focus-visible {
  width: 100%;
  height: auto;
  margin: 0;
  align-self: start;
  break-inside: auto;
  border: 1px solid rgba(7, 36, 52, .13);
  border-radius: 1.15rem;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.gallery-tile img,
.gallery-tile:hover img,
.gallery-tile:focus-visible img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: inherit;
  transform: none;
  filter: none;
  transition: transform .28s ease, filter .28s ease;
}















.event-archive-page .photo-stack.is-clickable,
.gallery-page .photo-stack.is-clickable {
  cursor: pointer;
  touch-action: manipulation;
}

.event-archive-page .photo-stack.is-clickable:focus-visible,
.gallery-page .photo-stack.is-clickable:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 8px;
  border-radius: 1.5rem;
}

.test-merge img,
body img {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}


/* Homepage starting-price promo — v6.5.9 narrower, true section-boundary float */
.homepage-offer {
  position: relative;
  z-index: 4;
  height: 0;
  padding: 0 max(24px, calc((100vw - var(--content)) / 2));
  margin: 0;
  background: transparent;
  pointer-events: none;
}
.homepage-offer__inner {
  position: relative;
  width: 85%;
  max-width: calc(var(--content) * .85);
  margin: 0 auto;
  transform: translateY(-50%);
  pointer-events: auto;
  padding: clamp(24px, 3vw, 38px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(9,39,59,.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 10%, rgba(251,176,59,.17), transparent 30%),
    linear-gradient(135deg, #fffaf0 0%, #fff 58%, #f5fcfd 100%);
  box-shadow: 0 24px 55px rgba(9,39,59,.13);
  overflow: hidden;
}
.homepage-offer__inner::after {
  content: "✦";
  position: absolute;
  right: 18%;
  top: 12px;
  color: var(--gold);
  font-size: 1.2rem;
  opacity: .75;
}
.homepage-offer__icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: var(--navy);
  transform: rotate(-3deg);
  box-shadow: 0 14px 28px rgba(9,39,59,.18);
}
.homepage-offer__icon img { width: 44px; height: 44px; object-fit: contain; filter: brightness(0) invert(1); }
.homepage-offer__eyebrow {
  margin: 0 0 7px;
  color: var(--orange);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.homepage-offer h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.homepage-offer h2 span { color: var(--orange); white-space: nowrap; }
.homepage-offer h2 .homepage-offer__starting {
  font-family: var(--script-font);
  font-weight: 400;
  letter-spacing: 0;
}
.homepage-offer h2 .homepage-offer__price {
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}
.homepage-offer__copy > p:last-child { margin: 11px 0 0; color: var(--muted); font-size: 1rem; line-height: 1.55; }
.homepage-offer__button { white-space: nowrap; }

/* Reserve exactly half of the live promo height inside each adjoining section.
   The backgrounds still meet at the zero-height promo anchor. */
:root {
  --homepage-offer-half-height: 96px;
}
.experience {
  padding-bottom: calc(clamp(90px, 10vw, 145px) + var(--homepage-offer-half-height));
}
.homepage-offer + .events {
  margin-top: 0;
  padding-top: calc(clamp(90px, 10vw, 145px) + var(--homepage-offer-half-height));
}

/* v6.6.3 — Services desktop composition and in-section offer placement */
.experience {
  padding-bottom: clamp(90px, 10vw, 145px);
}

.experience-title-art,
.experience-heading,
.feature-grid--merged,
.experience > .homepage-offer {
  width: min(100%, 1180px);
  margin-inline: auto;
}

.feature-grid--merged {
  gap: clamp(18px, 2vw, 26px);
}

@media (min-width: 901px) {
  .feature-card--merged {
    min-height: 340px;
    padding: 36px 32px 32px;
  }

  .feature-card--merged .feature-card__icon {
    top: 24px;
    right: 24px;
    width: 96px;
    height: 96px;
  }

  .feature-card--merged .feature-card__icon img {
    width: 68px;
    height: 68px;
  }

  .feature-card--merged .feature-number {
    padding-right: 104px;
  }
}

.experience > .homepage-offer {
  position: relative;
  z-index: 1;
  height: auto;
  padding: 0;
  margin-top: clamp(24px, 3vw, 38px);
  background: transparent;
  pointer-events: auto;
}

.experience > .homepage-offer .homepage-offer__inner {
  width: 100%;
  max-width: none;
  margin: 0;
  transform: none;
}

.events {
  margin-top: 0;
  padding-top: clamp(90px, 10vw, 145px);
}

/* v6.6.5 — deliberate 3 / 2 / 1 service-card progression */
.feature-grid--merged {
  width: min(100%, 1090px);
  grid-template-columns: repeat(3, minmax(0, 350px));
  justify-content: center;
}

.feature-card--merged {
  width: 100%;
  max-width: 350px;
  justify-self: center;
}

.experience > .homepage-offer {
  width: min(100%, 1090px);
}

@media (max-width: 1099px) and (min-width: 701px) {
  .feature-grid--merged,
  .experience > .homepage-offer {
    width: min(100%, 724px);
  }

  .feature-grid--merged {
    grid-template-columns: repeat(2, minmax(0, 350px));
  }

  .feature-grid--merged .feature-card--merged:nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .feature-grid--merged,
  .experience > .homepage-offer {
    width: min(100%, 350px);
  }

  .feature-grid--merged {
    grid-template-columns: minmax(0, 350px);
  }
}

/* v6.6.6 — promo restored above service cards with original price typography */
.experience > .homepage-offer {
  margin-top: clamp(28px, 4vw, 48px);
  margin-bottom: clamp(28px, 4vw, 48px);
}

.homepage-offer h2 span {
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

/* v6.6.7 — cream frosted promo hierarchy and polished service icon medallions */
.homepage-offer__inner {
  border: 1px solid rgba(255,255,255,.58);
  background:
    radial-gradient(circle at 92% 10%, rgba(251,176,59,.14), transparent 31%),
    linear-gradient(135deg, rgba(255,250,240,.84) 0%, rgba(255,255,255,.74) 58%, rgba(245,252,253,.79) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.72),
    0 22px 52px rgba(2,20,31,.18);
  -webkit-backdrop-filter: blur(16px) saturate(118%);
  backdrop-filter: blur(16px) saturate(118%);
}

.homepage-offer h2 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: .24em;
  row-gap: .08em;
}

.homepage-offer h2 span {
  font-size: .66em;
  line-height: 1.08;
  letter-spacing: -.025em;
}

.feature-card--merged .feature-card__icon {
  position: absolute;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin: 0;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,.24), transparent 32%),
    linear-gradient(145deg, rgba(104,201,215,.2), rgba(255,255,255,.055));
  box-shadow:
    inset 0 0 0 8px rgba(255,255,255,.035),
    inset 0 1px 0 rgba(255,255,255,.42),
    0 14px 30px rgba(0,0,0,.24);
  overflow: visible;
  isolation: isolate;
}

.feature-card--merged .feature-card__icon::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: -1;
  border: 1px solid rgba(104,201,215,.38);
  border-radius: inherit;
  background: rgba(4,23,34,.22);
}

.feature-card--merged .feature-card__icon::after {
  content: "✦";
  position: absolute;
  top: -8px;
  right: -5px;
  color: var(--gold);
  font-size: .9rem;
  line-height: 1;
  text-shadow: 0 4px 10px rgba(0,0,0,.25);
}

.feature-card--merged .feature-card__icon img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter:
    drop-shadow(0 7px 12px rgba(0,0,0,.3))
    drop-shadow(0 0 10px rgba(104,201,215,.15));
}

/* Service-card quick galleries */
.feature-card--gallery { display: block; min-height: 410px; padding: 174px 30px 70px; color: inherit; text-decoration: none; cursor: pointer; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.feature-card--gallery .feature-card__icon { top: 24px; right: auto; left: 50%; transform: translateX(-50%); }
.feature-card--gallery > p { position: relative; color: rgba(255,255,255,.8); line-height: 1.65; }
.feature-card--gallery:hover { transform: translateY(-5px); border-color: rgba(242,189,86,.72); box-shadow: 0 30px 56px rgba(0,0,0,.28); }
.feature-card--gallery:focus-visible { outline: 3px solid var(--gold); outline-offset: 5px; }
.feature-card__action { position: absolute; left: 30px; bottom: 24px; z-index: 2; color: var(--gold); font-weight: 700; letter-spacing: .02em; }
body.service-gallery-open { position: fixed; left: 0; right: 0; width: 100%; overflow: hidden; }
.service-gallery-dialog { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: clamp(12px,3vw,36px); }
.service-gallery-dialog[hidden], .service-gallery-set[hidden], .service-gallery-slide[hidden] { display: none; }
.service-gallery-dialog__backdrop { position: absolute; inset: 0; background: rgba(3,18,27,.88); backdrop-filter: blur(9px); }
.service-gallery-dialog__panel { position: relative; width: min(1040px,100%); max-height: calc(100dvh - 24px); overflow: auto; border: 1px solid rgba(255,255,255,.2); border-radius: 26px; background: #092635; color: #fff; box-shadow: 0 32px 90px rgba(0,0,0,.5); }
.service-gallery-dialog__header { position: sticky; top: 0; z-index: 12; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 18px 24px 14px; border-bottom: 1px solid rgba(255,255,255,.12); background: rgba(9,38,53,.96); backdrop-filter: blur(12px); }
.service-gallery-dialog__header h2 { margin: 3px 0 0; color: #fff; font-size: clamp(1.6rem,4vw,2.4rem); }
.service-gallery-dialog__header .eyebrow { margin: 0; color: var(--gold); }
.service-gallery-dialog__close { flex: 0 0 auto; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; font: 300 2rem/1 sans-serif; cursor: pointer; }
.service-gallery-dialog__close:hover,.service-gallery-dialog__close:focus-visible { background: var(--gold); color: var(--navy); outline: none; }
.service-gallery-stage { position: relative; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; padding: 0 24px; touch-action: pan-y; }
.service-gallery-slide { min-width: 0; margin: 0; padding: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 16px; background: rgba(255,255,255,.07); color: #fff; font: inherit; text-align: left; cursor: pointer; }
.service-gallery-slide:hover,.service-gallery-slide:focus-visible { border-color: var(--gold); outline: 2px solid transparent; transform: translateY(-2px); }
.service-gallery-slide img { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; background: #04141d; }
.service-gallery-slide__caption { display: grid; gap: 5px; padding: 13px 14px 15px; }
.service-gallery-slide__caption strong { color: #fff; }.service-gallery-slide__caption span { color: rgba(255,255,255,.72); font-size: .92rem; line-height: 1.4; }
.service-gallery-set.is-detail .service-gallery-stage { display: block; padding: 0 74px; }
.service-gallery-set.is-detail .service-gallery-slide { width: 100%; border: 0; background: transparent; text-align: center; cursor: default; transform: none; }
.service-gallery-set.is-detail .service-gallery-slide img { max-height: min(62dvh,680px); aspect-ratio: auto; object-fit: contain; border-radius: 18px; }
.service-gallery-set.is-detail .service-gallery-slide__caption { padding: 17px 4px 5px; }
.service-gallery-set.is-detail .service-gallery-slide__caption strong { font-size: 1.2rem; }.service-gallery-set.is-detail .service-gallery-slide__caption span { max-width: 720px; margin: auto; }
.service-gallery-nav { position: absolute; top: 42%; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; font-size: 1.45rem; cursor: pointer; }
.service-gallery-nav:hover,.service-gallery-nav:focus-visible { background: var(--gold); color: var(--navy); outline: none; }
.service-gallery-nav--previous { left: 14px; }.service-gallery-nav--next { right: 14px; }
.service-gallery-footer { display: flex; align-items: center; justify-content: center; gap: 18px; min-height: 58px; padding: 5px 24px 15px; }.service-gallery-count { margin: 0; color: rgba(255,255,255,.68); text-align: center; }.service-gallery-back { border: 0; background: transparent; color: var(--gold); font: inherit; font-weight: 700; cursor: pointer; }.service-gallery-back:hover,.service-gallery-back:focus-visible { text-decoration: underline; outline: none; }
.service-gallery-empty { padding: clamp(45px,8vw,100px) 24px; text-align: center; }
.service-gallery-empty > span { color: var(--gold); font-size: 2rem; }.service-gallery-empty h3 { margin: 12px 0 8px; color: #fff; font-size: 2rem; }.service-gallery-empty p { margin: 0; color: rgba(255,255,255,.72); }
.studio-password-field{position:relative;display:block;width:100%}.studio-password-field>input{width:100%;padding-right:52px!important}.studio-password-toggle{position:absolute;right:6px;top:50%;transform:translateY(-50%);display:grid;place-items:center;width:40px;height:40px;padding:0;border:0;border-radius:10px;background:transparent;color:#687584;cursor:pointer}.studio-password-toggle:hover,.studio-password-toggle:focus-visible{color:#287984;background:rgba(75,184,199,.13);outline:none}.studio-password-toggle svg{width:22px;height:22px;fill:currentColor}.studio-password-toggle .password-eye-slash{display:none}.studio-password-toggle.is-visible .password-eye{display:none}.studio-password-toggle.is-visible .password-eye-slash{display:block}

/* =========================================================
   Homepage pricing, FAQ, and review popup
   ========================================================= */

.footer-meta .footer-contact-link {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  text-decoration: none;
}

.footer-meta .footer-contact-link:hover,
.footer-meta .footer-contact-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: .2em;
}

.home-pricing,
.home-faq {
  width: min(calc(100% - 32px), 1400px);
  margin: 0 auto 16px;
  padding: clamp(3rem, 7vw, 7rem);
  border-radius: 50px;
}

.home-pricing {
  margin-block: 64px;
  background: #d8f0ed;
  color: #09263a;
}

.home-faq {
  background: #f7fbfa;
  color: #09263a;
}

.home-section-heading {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.4rem;
}

.home-section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: .96;
  letter-spacing: -.045em;
}

.home-section-heading h2 span {
  color: #e96123;
  font-family: var(--script-font, "Caveat", cursive);
  font-size: inherit;
  font-weight: 400;
  letter-spacing: 0;
}

.home-section-heading > p {
  margin: 0;
  color: #526873;
  line-height: 1.7;
}

.home-package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.home-package-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid rgba(9,38,58,.12);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(9,38,58,.06);
}

.home-package-card__label {
  margin: 0 0 .65rem;
  color: #e96123;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.home-package-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.home-package-card p,
.home-package-card li {
  color: #526873;
  line-height: 1.65;
}

.home-package-card ul {
  margin: .3rem 0 1.3rem;
  padding-left: 1.15rem;
}

.home-package-card__price {
  margin: auto 0 1rem !important;
  color: #09263a !important;
  font-size: 1.25rem;
  font-weight: 700;
}

.home-package-note {
  margin: 1.2rem 0 0;
  color: #526873;
  font-size: .9rem;
  line-height: 1.6;
}

.home-faq-list {
  display: grid;
  gap: .8rem;
}

.home-faq-list details {
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(9,38,58,.12);
  border-radius: 22px;
  background: #fff;
}

.home-faq-list summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 700;
}

.home-faq-list summary::marker {
  color: #e96123;
}

.home-faq-list p {
  margin: .8rem 0 0;
  color: #526873;
  line-height: 1.65;
}

.review-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.review-popup-button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: .9rem 1.4rem;
  background: #19c6c7;
  color: #082f35;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  transition: transform .18s ease, box-shadow .18s ease;
}

.review-popup-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.16);
}

.review-popup {
  width: min(760px, calc(100vw - 2rem));
  height: min(780px, calc(100dvh - 2rem));
  padding: 0;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0,0,0,.3);
}

.review-popup::backdrop {
  background: rgba(7,25,29,.72);
  backdrop-filter: blur(4px);
}

.review-popup__header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(0,0,0,.1);
  background: #fff;
}

.review-popup__header h2 {
  margin: 0;
  font-size: 1.25rem;
}

.review-popup__header .eyebrow {
  margin: 0 0 .2rem;
}

.review-popup__close {
  appearance: none;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 0;
  border-radius: 50%;
  background: #eef7f7;
  color: #123b40;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.review-popup__frame {
  display: block;
  width: 100%;
  height: calc(100% - 82px);
  border: 0;
  background: #fff;
}
