/* ============================================
   GEOFF ANGEL PHOTOGRAPHY — STYLES
   Dark minimalist theme inspired by Alexander Karlov
   Responsive: Mobile → Tablet → Desktop → Large Desktop
   ============================================ */

/* ---------- RESET & BASE ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

/* ---------- NAVIGATION ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 40px;
  background: rgba(16, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo:hover {
  opacity: 0.85;
}

.nav__logo-img {
  height: 117px;
  width: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
}

.nav__link {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav__link:hover {
  color: #fff;
  opacity: 1;
}

.nav__link--social {
  display: flex;
  align-items: center;
}

.nav__link--social svg {
  fill: rgba(255, 255, 255, 0.6);
  transition: fill 0.3s ease;
}

.nav__link--social:hover svg {
  fill: #fff;
}

/* Nav icon buttons (search, cart) */
.nav__icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.nav__icon-btn:hover {
  color: #fff;
}

.nav__icon-btn svg {
  stroke: currentColor;
  fill: none;
  display: block;
}

.nav__icon-btn svg[fill="currentColor"] {
  fill: currentColor;
  stroke: none;
}

.nav__cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #000;
  background: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav__cart-count.visible {
  opacity: 1;
  transform: scale(1);
}

/* Hamburger toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s ease;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- SECTIONS ---------- */

.section {
  padding: 80px 30px;
}

.gallery-section {
  padding-top: 90px;
  padding-bottom: 40px;
}

.gallery-section .section__title {
  margin-bottom: 28px;
}

.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 50px;
}

/* ---------- EVENTS SEARCH ---------- */

.events-search {
  display: flex;
  align-items: center;
  max-width: 400px;
  margin: 0 auto 28px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  transition: border-color 0.3s ease;
}

.events-search:focus-within {
  border-color: rgba(255,255,255,0.35);
}

.events-search__icon {
  flex-shrink: 0;
  color: rgba(255,255,255,0.4);
  margin-right: 12px;
}

.events-search__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #fff;
}

.events-search__input::placeholder {
  color: rgba(255,255,255,0.35);
}

/* ---------- LEVEL 1: EVENTS HORIZONTAL SCROLL ---------- */

.events {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.events__scroll {
  position: relative;
  display: flex;
  align-items: center;
}

.events__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.events__track::-webkit-scrollbar {
  display: none;
}

.events__arrow {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.events__arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

.events__arrow--left {
  left: -5px;
}

.events__arrow--right {
  right: -5px;
}

/* Event Card */
.events__card {
  position: relative;
  flex: 0 0 280px;
  height: 380px;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  border-radius: 2px;
}

.events__card-img {
  width: 100%;
  height: 100%;
}

.events__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.events__card:hover .events__card-img img {
  transform: scale(1.05);
  filter: brightness(0.5);
}

.events__card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: rgba(0, 0, 0, 0.5);
}

.events__card:hover .events__card-overlay {
  opacity: 1;
}

.events__card-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: #fff;
}

.events__card-overlay p {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 2px;
  opacity: 0.8;
  margin-bottom: 15px;
  color: #fff;
}

.events__card-count {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 12px;
  border: none;
  border-radius: 2px;
  color: #1a1a1a;
  background: rgba(255,255,255,0.75);
}

/* ---------- LEVEL 2: EVENT GRID GALLERY ---------- */

.event-gallery {
  max-width: 1440px;
  margin: 0 auto;
}

.event-gallery__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.event-gallery__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 10px 20px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.event-gallery__back:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

.event-gallery__title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 3px;
}

.event-gallery__count {
  font-size: 13px;
  opacity: 0.5;
  letter-spacing: 1px;
}

.event-gallery__description {
  display: block;
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.7;
  max-width: 760px;
  margin: 0 0 24px;
}

.event-gallery__notice {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  margin: 0 0 30px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  font-size: 13px;
  letter-spacing: 0.3px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.event-gallery__notice-icon {
  flex-shrink: 0;
  opacity: 0.7;
}

/* ---------- TESTIMONIALS ---------- */

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto 0;
  align-items: start;
}

.testimonial {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 32px 28px 26px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.testimonial:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.testimonial__quote {
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 22px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  font-style: italic;
}

.testimonial__who {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial__name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #fff;
}

.testimonial__role {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Grid Gallery */
.grid-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  transition: all 0.3s ease;
}

.grid-gallery:hover .grid-gallery__item img {
  filter: none;
}

.grid-gallery__item {
  position: relative;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}

.grid-gallery__item:hover img {
  filter: grayscale(0) !important;
  transform: scale(1.08);
}

.grid-gallery__item:hover .grid-gallery__caption {
  opacity: 1;
}

.grid-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.grid-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 15px 15px;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1px;
  color: #fff;
  opacity: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  transition: opacity 0.3s ease;
}

/* Load More */
.event-gallery__load-more {
  display: block;
  margin: 40px auto 0;
  padding: 14px 40px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.event-gallery__load-more:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ---------- ABOUT ---------- */

.about__content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

/* ---------- FADE-IN ANIMATIONS ---------- */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.15s; }
.fade-in-delay-2 { transition-delay: 0.3s; }
.fade-in-delay-3 { transition-delay: 0.45s; }

.about__image {
  width: 100%;
  max-width: 400px;
}

.about__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: grayscale(0.3);
}

.about__text {
  max-width: 600px;
}

.about__text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.about__text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 15px;
}

.about__social {
  margin-top: 25px;
}

.about__social a {
  display: inline-block;
  margin-right: 20px;
  padding: 10px 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.about__social a:hover {
  background: #fff;
  color: #000;
  opacity: 1;
}

.about__endorsement {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.about__endorsement-badge {
  width: 140px;
  height: 140px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}

.about__endorsement-text {
  flex: 1;
  min-width: 200px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .about__endorsement-badge {
    width: 180px;
    height: 180px;
  }
}

/* ---------- CONTACT ---------- */

.contact__content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact__info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.contact__info p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.7;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__group--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.form__label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
}

.form__label--checkbox {
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.7;
  cursor: pointer;
}

.form__input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  transition: border-color 0.3s ease;
  outline: none;
}

.form__input:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__group--checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #fff;
  cursor: pointer;
  flex-shrink: 0;
}

.form__submit {
  align-self: flex-start;
  padding: 14px 50px;
  background: #fff;
  color: #101111;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form__submit:hover {
  background: rgba(255, 255, 255, 0.85);
}

/* ---------- FOOTER ---------- */

.footer {
  text-align: center;
  padding: 40px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1px;
  opacity: 0.4;
}

/* ---------- LIGHTBOX ---------- */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
}

.lightbox.active {
  display: flex;
}

/* Main area (photo + nav + info bar) */
.lightbox__main {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  transition: margin-left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.panel-open .lightbox__main {
  margin-left: 360px;
}

.lightbox__content {
  max-width: 90vw;
  max-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 90px);
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  z-index: 2001;
}

.lightbox__close:hover {
  opacity: 1;
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #fff;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  padding: 15px;
}

.lightbox__prev:hover,
.lightbox__next:hover {
  opacity: 1;
}

.lightbox__prev {
  left: 10px;
}

.lightbox__next {
  right: 10px;
}

/* Bottom info bar */
.lightbox__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 40px 30px 25px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
}

.lightbox__info-text {
  flex: 1;
  min-width: 0;
  padding-right: 20px;
}

.lightbox__title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 6px;
}

.lightbox__description {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.3px;
}

.lightbox__buy-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.lightbox__buy-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Buy panel (slides from left) */
.lightbox__buy-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 360px;
  height: 100%;
  background: #fff;
  color: #111;
  z-index: 2002;
  padding: 40px 35px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.lightbox.panel-open .lightbox__buy-panel {
  transform: translateX(0);
}

.lightbox__buy-panel-close {
  background: none;
  border: none;
  color: #111;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  cursor: pointer;
  padding: 0;
  margin-bottom: 35px;
  transition: opacity 0.3s ease;
}

.lightbox__buy-panel-close:hover {
  opacity: 0.5;
}

.lightbox__buy-panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 500;
  color: #111;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.lightbox__buy-panel-list {
  list-style: none;
}

.lightbox__buy-panel-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-family: 'Inter', sans-serif;
  color: #111;
}

.lightbox__buy-panel-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.lightbox__buy-panel-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lightbox__buy-panel-name {
  font-size: 15px;
  font-weight: 500;
}

.lightbox__buy-panel-price {
  font-size: 13px;
  color: #666;
}

.lightbox__add-cart-btn {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid #111;
  border-radius: 2px;
  background: transparent;
  color: #111;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.lightbox__add-cart-btn:hover {
  background: #111;
  color: #fff;
}

.lightbox__add-cart-btn.added {
  background: #111;
  color: #fff;
  border-color: #111;
}

.lightbox__go-to-cart {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 12px;
  background: #111;
  color: #fff;
  border: 1px solid #333;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lightbox__go-to-cart:hover {
  background: #222;
  border-color: #555;
}

/* Grid gallery cart button */
.grid-gallery__cart-btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.7);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
  z-index: 3;
}

.grid-gallery__item:hover .grid-gallery__cart-btn {
  opacity: 1;
  transform: translateY(0);
}

.grid-gallery__cart-btn:hover {
  background: rgba(255,255,255,0.9);
  color: #000;
}

.grid-gallery__cart-btn.added {
  opacity: 1;
  background: rgba(255,255,255,0.9);
  color: #000;
}

.grid-gallery__cart-btn svg {
  stroke: currentColor;
}

/* ============================================
   CHECKOUT
   ============================================ */

.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.checkout-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.checkout {
  position: relative;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.checkout-overlay.active .checkout {
  transform: translateY(0);
}

.checkout__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 28px;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s ease;
}

.checkout__close:hover {
  color: #fff;
}

.checkout__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 640px) {
  .checkout__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.checkout__summary {
  padding: 32px 28px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (min-width: 640px) {
  .checkout__summary {
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.08);
  }
}

.checkout__heading {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.checkout__subheading {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 24px 0 14px;
}

.checkout__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  max-height: 300px;
  overflow-y: auto;
}

.checkout__item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.checkout__item-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

.checkout__item-info {
  flex: 1;
  min-width: 0;
}

.checkout__item-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.checkout__item-type {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.checkout__item-price {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}

.checkout__subtotal {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.checkout__form-wrap {
  padding: 32px 28px;
}

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

.checkout__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkout__field {
  margin-bottom: 14px;
}

.checkout__field label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}

.checkout__field input {
  width: 100%;
  padding: 10px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  outline: none;
  transition: border-color 0.2s ease;
}

.checkout__field input:focus {
  border-color: rgba(255,255,255,0.35);
}

.checkout__stripe {
  margin-bottom: 20px;
  padding: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  min-height: 44px;
}

.checkout__stripe-placeholder {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.35);
}

.checkout__pay-btn {
  display: block;
  width: 100%;
  padding: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-bottom: 12px;
}

.checkout__pay-btn:hover {
  background: rgba(255,255,255,0.85);
}

.checkout__pay-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.checkout__secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   CART DRAWER
   ============================================ */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  height: 100dvh;
  background: #111;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.cart-drawer.active {
  transform: translateX(0);
}

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

.cart-drawer__title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.cart-drawer__title span {
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}

.cart-drawer__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s ease;
}

.cart-drawer__close:hover {
  color: #fff;
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-drawer__empty {
  text-align: center;
  padding: 60px 0;
}

.cart-drawer__empty p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}

.cart-drawer__empty span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.cart-drawer__item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cart-drawer__item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

.cart-drawer__item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}

.cart-drawer__item-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-drawer__item-type {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cart-drawer__item-price {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

.cart-drawer__item-remove {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  padding: 0 4px;
  align-self: center;
  transition: color 0.2s ease;
}

.cart-drawer__item-remove:hover {
  color: #ff4444;
}

.cart-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.cart-drawer__checkout {
  display: block;
  width: 100%;
  padding: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cart-drawer__checkout:hover {
  background: rgba(255,255,255,0.85);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* ---------- MOBILE (default, 375px+) ---------- */

@media (max-width: 767px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    height: 100dvh;
    background: rgba(16, 17, 17, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav__menu.active {
    right: 0;
  }

  .nav__toggle {
    display: flex;
  }

  .nav {
    padding: 18px 20px;
  }

  .section {
    padding: 60px 15px;
  }

  .events__card {
    flex: 0 0 240px;
    height: 320px;
  }

  .events__arrow {
    width: 36px;
    height: 36px;
  }

  .events__arrow svg {
    width: 18px;
    height: 18px;
  }

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

  .grid-gallery__item {
    height: 250px;
  }

  /* Show captions by default on mobile (no hover) */
  .grid-gallery__caption {
    opacity: 1;
    padding: 20px 12px 12px;
    font-size: 12px;
  }

  .grid-gallery:hover .grid-gallery__item img {
    filter: none;
  }

  .event-gallery__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .lightbox__prev {
    left: 5px;
    padding: 10px;
  }

  .lightbox__next {
    right: 5px;
    padding: 10px;
  }

  .lightbox__prev svg,
  .lightbox__next svg {
    width: 24px;
    height: 24px;
  }

  /* Lightbox info bar stacks on mobile */
  .lightbox__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 30px 20px 20px;
  }

  .lightbox__info-text {
    padding-right: 0;
  }

  .lightbox__title {
    font-size: 18px;
  }

  .lightbox__description {
    font-size: 13px;
  }

  .lightbox__buy-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .lightbox__content {
    max-height: calc(100vh - 150px);
  }

  .lightbox__img {
    max-height: calc(100vh - 150px);
  }

  /* Buy panel goes full width on mobile */
  .lightbox__buy-panel {
    width: 100%;
  }

  .lightbox.panel-open .lightbox__main {
    margin-left: 0;
    opacity: 0.3;
    pointer-events: none;
  }

  .about__text h3 {
    font-size: 22px;
  }

  .contact__content {
    gap: 30px;
  }
}

/* ---------- TABLET (768px+) ---------- */

@media (min-width: 768px) {
  .nav {
    padding: 20px 40px;
  }

  .events__card {
    flex: 0 0 300px;
    height: 400px;
  }

  .grid-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .grid-gallery__item {
    height: 350px;
  }

  .about__content {
    flex-direction: row;
    gap: 60px;
    align-items: center;
  }

  .about__image {
    flex: 0 0 300px;
  }

  .contact__content {
    flex-direction: row;
    gap: 60px;
  }

  .contact__info {
    flex: 0 0 300px;
  }
}

/* ---------- DESKTOP (1024px+) ---------- */

@media (min-width: 1024px) {
  .nav {
    padding: 25px 60px;
  }

  .nav__logo-img {
    height: 104px;
  }

  .section {
    padding: 100px 60px;
  }

  .events__card {
    flex: 0 0 340px;
    height: 450px;
  }

  .events__card-overlay h3 {
    font-size: 24px;
  }

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

  .grid-gallery__item {
    height: 400px;
  }

  .about__image {
    flex: 0 0 380px;
  }
}

/* ---------- LARGE DESKTOP (1440px+) ---------- */

@media (min-width: 1440px) {
  .nav {
    padding: 25px 80px;
  }

  .section {
    padding: 120px 80px;
  }

  .events__card {
    flex: 0 0 380px;
    height: 500px;
  }

  .grid-gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }

  .grid-gallery__item {
    height: 420px;
  }
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 25px 100px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/photos/hero.jpg');
  background-size: cover;
  background-position: center;
  filter: grayscale(0.4) contrast(1.05);
  transform: scale(1.05);
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.95) 100%);
  z-index: 1;
}

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

.hero__eyebrow {
  font-size: 12px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: #fff;
}

.hero__subtitle {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  margin: 0 auto 40px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero__scroll span {
  display: block;
  width: 2px;
  height: 8px;
  background: #fff;
  border-radius: 1px;
  animation: scrollHint 1.8s ease-in-out infinite;
}

@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.2; }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 38px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn--primary {
  background: #fff;
  color: #101111;
}

.btn--primary:hover {
  background: rgba(255,255,255,0.85);
  opacity: 1;
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
  opacity: 1;
}

/* ============================================
   SECTION EYEBROW + LEDE
   ============================================ */

.section__eyebrow {
  text-align: center;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}

.section__lede {
  text-align: center;
  max-width: 620px;
  margin: -30px auto 60px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

/* ============================================
   SERVICES
   ============================================ */

.services {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* -- Tile grid -- */
.services__tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
}

/* -- Individual tile -- */
.service-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  min-height: 322px;
  text-decoration: none;
  color: #fff;
}

.service-tile__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.service-tile[data-service="events"] .service-tile__image {
  background-image: url('../images/photos/service-events.jpg');
}
.service-tile[data-service="portfolios"] .service-tile__image {
  background-image: url('../images/photos/service-portfolios.jpg');
}
.service-tile[data-service="editorial"] .service-tile__image {
  background-image: url('../images/photos/service-editorial.jpg');
}

.service-tile:hover .service-tile__image {
  transform: scale(1.05);
}

/* -- Overlay content -- */
.service-tile__overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 24px 28px;
  background: rgba(0,0,0,0.65);
  transition: background 0.4s ease;
}

.service-tile:hover .service-tile__overlay {
  background: rgba(0,0,0,0.75);
}

.service-tile__tag {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}

.service-tile__title {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  color: #fff;
}

.service-tile__desc {
  display: none;
}

.service-tile__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tile__list li {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #1a1a1a;
  background: rgba(255,255,255,0.75);
  padding: 5px 12px;
  border-radius: 2px;
  transition: background 0.3s ease;
}

.service-tile:hover .service-tile__list li {
  background: rgba(255,255,255,0.9);
}

.service-tile__cta {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
}

.service-tile:hover .service-tile__cta {
  color: #fff;
}

.service-tile:hover {
  opacity: 1;
}

/* ============================================
   PRICING
   ============================================ */

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  padding: 40px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.pricing-card:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
}

.pricing-card__badge {
  position: absolute;
  top: -1px;
  right: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #000;
  background: #fff;
  padding: 6px 14px;
  border-radius: 0 0 4px 4px;
}

.pricing-card__header {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pricing-card__name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.pricing-card__price {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-card__sub {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex: 1;
}

.pricing-card__features li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  padding: 8px 0 8px 22px;
  position: relative;
  line-height: 1.5;
}

.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 10px;
  height: 1px;
  background: rgba(255,255,255,0.35);
}

.pricing-card__btn {
  display: block;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  padding: 14px 24px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.pricing-card__btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  opacity: 1;
}

.pricing-card--featured .pricing-card__btn {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.pricing-card--featured .pricing-card__btn:hover {
  background: rgba(255,255,255,0.85);
}

/* ============================================
   TRUST BAND
   ============================================ */

.trust-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 50px 30px;
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.trust-band__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 140px;
}

.trust-band__num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
}

.trust-band__label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.trust-band__divider {
  display: none;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ============================================
   FINAL CTA BAND
   ============================================ */

.cta-band {
  position: relative;
  padding: 100px 25px;
  text-align: center;
  background-image: url('../images/photos/event-3.jpg');
  background-size: cover;
  background-position: center;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 100%);
}

.cta-band__inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.cta-band__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 18px;
}

.cta-band__text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
}

/* ============================================
   RESPONSIVE — SERVICES / TESTIMONIALS / TRUST
   ============================================ */

@media (min-width: 768px) {
  .services__tiles {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-band {
    gap: 50px;
    padding: 60px 40px;
  }
  .trust-band__divider {
    display: block;
  }
}

@media (min-width: 1024px) {
  .services__tiles {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .service-tile {
    min-height: 368px;
  }
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero {
    padding: 160px 40px 120px;
  }
}

/* ---------- TOUCH DEVICES ---------- */

@media (pointer: coarse) {
  /* Always show event card info on touch devices */
  .events__card-overlay {
    opacity: 1;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    justify-content: flex-end;
    padding-bottom: 25px;
  }

  .events__card-img img {
    filter: none;
  }

  .events__card:hover .events__card-img img {
    transform: none;
    filter: none;
  }
}

/* Bundle cart bar */
.bundle-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 15, 15, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 24px;
  z-index: 100;
}
.bundle-cart-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.bundle-cart-bar__msg { color: #fff; font-size: 14px; line-height: 1.4; }
.bundle-cart-bar__actions { display: flex; gap: 12px; align-items: center; }
.bundle-cart-bar__clear {
  background: transparent; color: rgba(255,255,255,0.6);
  border: 0; padding: 8px 12px; cursor: pointer; font-size: 13px;
}
.bundle-cart-bar__clear:hover { color: #fff; }
.bundle-cart-bar__checkout {
  background: #0074d4; color: #fff; border: 0;
  padding: 10px 22px; border-radius: 4px; font-size: 14px; font-weight: 500;
  cursor: pointer;
}

/* Multi-select overlay on photo cards */
.grid-gallery__item__select-btn {
  position: absolute; top: 8px; right: 8px;
  width: 28px; height: 28px;
  background: rgba(0, 0, 0, 0.55); color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  font-size: 18px; line-height: 26px; text-align: center;
  cursor: pointer; padding: 0;
  display: none;
  z-index: 5;
}
.grid-gallery__item.bundles-on .grid-gallery__item__select-btn { display: block; }
.grid-gallery__item.selected .grid-gallery__item__select-btn { background: #0074d4; border-color: #0074d4; }

/* ========== POST-CHECKOUT CONFIRMATION MODAL ========== */
.checkout-modal {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
}
.checkout-modal[hidden] { display: none; }
.checkout-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.checkout-modal__card {
  position: relative;
  background: #fff; color: #111;
  border-radius: 8px;
  padding: 40px 32px 32px;
  max-width: 480px; width: calc(100% - 32px);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: checkout-modal-in 0.25s ease-out;
}
@keyframes checkout-modal-in {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.checkout-modal__close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: 0;
  font-size: 28px; line-height: 1;
  cursor: pointer; padding: 0;
  color: rgba(0, 0, 0, 0.4);
  transition: color 0.2s ease;
}
.checkout-modal__close:hover { color: #111; }
.checkout-modal__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #14a34a; color: #fff;
  font-size: 32px; line-height: 64px;
  margin: 0 auto 20px;
  font-weight: 600;
}
.checkout-modal__title {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 600;
  margin: 0 0 16px; color: #111;
  line-height: 1.2;
}
.checkout-modal__body {
  font-family: 'Inter', sans-serif;
  font-size: 15px; line-height: 1.6;
  color: rgba(0, 0, 0, 0.75);
  margin: 0 0 14px;
}
.checkout-modal__hint {
  font-family: 'Inter', sans-serif;
  font-size: 13px; line-height: 1.55;
  color: rgba(0, 0, 0, 0.55);
  margin: 0 0 28px;
}
.checkout-modal__btn { width: 100%; }

/* Cancelled-checkout toast */
.checkout-toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  background: #111; color: #fff;
  padding: 14px 48px 14px 20px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 14px; line-height: 1.4;
  z-index: 10000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  max-width: calc(100% - 32px);
  animation: checkout-toast-in 0.25s ease-out;
}
.checkout-toast[hidden] { display: none; }
@keyframes checkout-toast-in {
  from { opacity: 0; transform: translate(-50%, 8px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
.checkout-toast__close {
  position: absolute; top: 8px; right: 12px;
  background: none; border: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px; line-height: 1;
  cursor: pointer; padding: 0;
}
.checkout-toast__close:hover { color: #fff; }
