/* BJONSAX — Global Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Bebas+Neue&family=DM+Mono:ital,wght@0,300;0,400;1,300&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; overflow-x: hidden; }
body { overflow-x: hidden; }

:root {
  --ink:       #0d0d0d;
  --ink-soft:  #1a1a1a;
  --rule:      rgba(255,255,255,0.12);
  --muted:     #c0c0c0;
  --paper:     #ffffff;
  --white:     #ffffff;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --display:   'Bebas Neue', sans-serif;
  --mono:      'DM Mono', 'Courier New', monospace;
  --max:       1200px;
  --pad:       5vw;
}

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* Grain */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23g)' opacity='0.025'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* Page load */
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  height: 90px;
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.3s ease;
}
.site-nav.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.6);
}

/* Logo — transparent bg, prominent display */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.25s, transform 0.25s;
}
.nav-logo:hover { opacity: 0.85; transform: scale(0.97); }
.nav-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(1.15) contrast(1.1);
}

.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a {
  display: block;
  padding: 0 1.4rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c0c0c0;
  transition: color 0.25s;
  line-height: 90px;
}
.nav-links a:hover,
.nav-links a.active { color: #ffffff; }
.nav-links a.active { border-bottom: 1px solid #ffffff; }

.nav-cta {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: #ffffff;
  padding: 0.65rem 1.6rem;
  transition: opacity 0.25s, transform 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1px;
  background: #ffffff; transition: all 0.3s;
}

.nav-mobile {
  display: none;
  position: fixed; top: 90px; left: 0; right: 0; z-index: 499;
  background: var(--ink);
  border-bottom: 1px solid var(--rule);
  padding: 1.5rem var(--pad);
  flex-direction: column; gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block;
  padding: 0.9rem 0;
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c0c0c0;
  border-bottom: 1px solid var(--rule);
  transition: color 0.25s;
}
.nav-mobile a:hover, .nav-mobile a.active { color: #ffffff; }

/* PAGE WRAP */
.page-wrap {
  padding-top: 90px;
  min-height: 100vh;
  animation: pageFadeIn 0.7s ease both;
}

/* CONTAINER */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: 7rem 0; }
.section-sm { padding: 4rem 0; }

/* SECTION LABELS — min 16px */
.section-label {
  font-family: var(--mono);
  font-size: 0.82rem;       /* ~14.7px at 18px base = ~15px, bump to 0.9rem */
  font-size: clamp(14px, 0.85rem, 16px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #d0d0d0;
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
}
.section-label::before {
  content: '';
  display: inline-block; width: 32px; height: 1px;
  background: #d0d0d0;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 6rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: #ffffff;
}
.section-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}

.rule { width: 100%; height: 1px; background: var(--rule); }
.rule-short { width: 48px; height: 1px; background: #ffffff; display: block; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  cursor: pointer; border: none;
}
.btn-solid {
  background: #ffffff;
  color: var(--ink);
  padding: 0.9rem 2rem;
}
.btn-solid:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.45);
  color: #ffffff;
  padding: 0.9rem 2rem;
  background: transparent;
}
.btn-outline:hover { border-color: #ffffff; background: rgba(255,255,255,0.07); transform: translateY(-2px); }
.btn-ghost { color: #c0c0c0; padding: 0; border-bottom: 1px solid transparent; }
.btn-ghost:hover { color: #ffffff; border-bottom-color: #ffffff; }

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.20s; }
.reveal-d3 { transition-delay: 0.30s; }
.reveal-d4 { transition-delay: 0.40s; }

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 3rem var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: #ffffff;
}
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a {
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c0c0c0;
  transition: color 0.25s;
}
.footer-links a:hover { color: #ffffff; }
.footer-copy {
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: #a0a0a0;
  text-transform: uppercase;
}

/* DIVIDER */
.divider-text {
  display: flex; align-items: center; gap: 1.5rem;
  color: #c0c0c0;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: 4rem 0;
}
.divider-text::before, .divider-text::after {
  content: ''; flex: 1; height: 1px; background: var(--rule);
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #444; border-radius: 2px; }

/* TICKER */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 0.75rem 0;
}
.ticker-inner {
  display: flex; white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c0c0c0;
  padding: 0 2.5rem;
  display: inline-flex; align-items: center; gap: 2.5rem;
}
.ticker-dot {
  display: inline-block; width: 3px; height: 3px;
  border-radius: 50%; background: #c0c0c0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* PHOTO */
.photo-bw {
  filter: grayscale(100%) contrast(1.1) brightness(0.88);
  width: 100%; height: 100%;
  object-fit: cover;
  transition: filter 0.5s, transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.photo-bw:hover {
  filter: grayscale(100%) contrast(1.15) brightness(0.92);
  transform: scale(1.04);
}

/* FORMS */
.form-group { margin-bottom: 1.6rem; }
.form-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c0c0c0;
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 0.8rem 0;
  color: #ffffff;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.25s;
}
.form-control:focus { border-bottom-color: #ffffff; }
.form-control::placeholder { color: rgba(255,255,255,0.3); }
textarea.form-control { resize: none; height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

/* SOCIAL ICONS */
.social-links { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  color: #c0c0c0;
  transition: all 0.25s;
  text-decoration: none;
}
.social-link:hover { border-color: #ffffff; color: #ffffff; background: rgba(255,255,255,0.07); transform: translateY(-2px); }
.social-link svg { width: 17px; height: 17px; fill: currentColor; }

/* TESTIMONIALS */
.testimonials-section { padding: 6rem 0; border-top: 1px solid var(--rule); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--rule); margin-top: 3rem;
}
.testimonial-card {
  background: var(--ink); padding: 2.5rem 2rem;
  transition: background 0.3s, transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.testimonial-card:hover { background: var(--ink-soft); transform: translateY(-4px); }
.testimonial-quote {
  font-size: 1.1rem;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  color: #ffffff;
  line-height: 1.75; margin-bottom: 1.5rem; position: relative;
}
.testimonial-quote::before {
  content: '"';
  font-family: var(--display); font-size: 4rem;
  color: rgba(255,255,255,0.07);
  position: absolute; top: -1.5rem; left: -0.5rem; line-height: 1;
}
.testimonial-author {
  font-family: var(--mono); font-size: 0.82rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: #d0d0d0;
}
.testimonial-role {
  font-family: var(--mono); font-size: 0.78rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: #999;
  margin-top: 0.25rem;
}

/* MAILING LIST */
.mailing-section {
  padding: 5rem 0;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  background: var(--ink-soft);
}
.mailing-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.mailing-copy h2 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 0.04em; color: #ffffff; line-height: 0.95; margin-bottom: 1rem;
}
.mailing-copy p { font-size: 1.05rem; color: #c0c0c0; line-height: 1.8; font-weight: 300; }
.mailing-form { display: flex; gap: 0; }
.mailing-form .form-control {
  flex: 1; border: 1px solid rgba(255,255,255,0.2);
  border-right: none; padding: 0.9rem 1.2rem; background: var(--ink);
}
.mailing-form .form-control:focus { border-color: rgba(255,255,255,0.5); }
.mailing-form .btn-solid { padding: 0.9rem 1.8rem; white-space: nowrap; }

/* PHOTO GALLERY */
.photo-gallery-section { padding: 6rem 0; }
.photo-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--rule); margin-top: 3rem;
}
.photo-grid-item { position: relative; aspect-ratio: 1; overflow: hidden; background: #111; }
.photo-grid-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) brightness(0.75) contrast(1.1);
  transition: filter 0.5s, transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.photo-grid-item:hover img { filter: grayscale(60%) brightness(0.88); transform: scale(1.06); }
.photo-grid-item.tall { grid-row: span 2; }

/* EPK PHOTO GRID */
.epk-photo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--rule); margin: 3rem 0;
}
.epk-photo-item { aspect-ratio: 4/3; overflow: hidden; background: #111; }
.epk-photo-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) brightness(0.78) contrast(1.1);
  transition: all 0.5s;
}
.epk-photo-item:hover img { filter: grayscale(60%) brightness(0.88); transform: scale(1.05); }

/* SOUNDCLOUD */
.soundcloud-section { padding: 4rem 0; border-top: 1px solid var(--rule); }
.soundcloud-embed { margin-top: 2.5rem; border: 1px solid var(--rule); overflow: hidden; }

/* INSTAGRAM */
.instagram-section { padding: 4rem 0; border-top: 1px solid var(--rule); }
.instagram-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--rule); margin-top: 2.5rem;
}
.instagram-embed-wrap {
  background: var(--ink-soft); overflow: hidden;
  display: flex; align-items: center; justify-content: center; min-height: 400px;
}
.instagram-embed-wrap iframe { border: none !important; min-width: 100% !important; }

/* BOOKING PAGE */
.booking-hero { padding: 6rem 0 4rem; text-align: center; border-bottom: 1px solid var(--rule); }
.booking-hero h1 {
  font-family: var(--display); font-size: clamp(4rem, 11vw, 10rem);
  letter-spacing: 0.04em; line-height: 0.88; color: #ffffff;
}
.booking-hero h1 em {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  -webkit-text-stroke: 1px #ffffff; color: transparent;
}
.booking-tagline {
  font-family: var(--serif); font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  font-style: italic; font-weight: 300; color: #c0c0c0;
  margin-top: 1.5rem; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.65;
}
.booking-availability {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--mono); font-size: 0.82rem;
  letter-spacing: 0.25em; text-transform: uppercase; color: #c0c0c0; margin-top: 2rem;
}
.availability-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 8px rgba(74,222,128,0.6);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.booking-types { padding: 4rem 0; border-bottom: 1px solid var(--rule); }
.booking-types-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--rule); margin-top: 2.5rem;
}
.booking-type-card {
  background: var(--ink); padding: 2rem 1.5rem;
  transition: background 0.3s, transform 0.35s cubic-bezier(0.22,1,0.36,1); cursor: default;
}
.booking-type-card:hover { background: var(--ink-soft); transform: translateY(-3px); }
.booking-type-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.booking-type-name {
  font-family: var(--display); font-size: 1.5rem;
  letter-spacing: 0.06em; color: #ffffff; margin-bottom: 0.5rem;
}
.booking-type-desc {
  font-family: var(--mono); font-size: 0.82rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: #c0c0c0; line-height: 1.7;
}

.booking-form-section { padding: 5rem 0; }
.booking-form-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; }
.booking-sidebar h3 {
  font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.5rem);
  letter-spacing: 0.06em; color: #ffffff; margin-bottom: 1.5rem; line-height: 1;
}
.booking-detail-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--rule); align-items: start; }
.booking-detail-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.booking-detail-label {
  font-family: var(--mono); font-size: 0.78rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: #c0c0c0; margin-bottom: 0.2rem;
}
.booking-detail-value { font-size: 1rem; color: #ffffff; font-weight: 300; }

/* CALENDAR */
.calendar-container { margin-bottom: 2rem; }
.calendar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.calendar-title { font-family: var(--display); font-size: 1.5rem; letter-spacing: 0.1em; color: #ffffff; }
.cal-nav { display: flex; gap: 0.5rem; }
.cal-nav-btn {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.2);
  background: transparent; color: #c0c0c0; cursor: pointer; font-size: 1rem;
  transition: all 0.2s; display: flex; align-items: center; justify-content: center;
}
.cal-nav-btn:hover { border-color: #ffffff; color: #ffffff; }
.calendar-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 1px; background: var(--rule); border: 1px solid var(--rule);
}
.cal-day-name {
  background: var(--ink-soft); text-align: center; padding: 0.5rem 0;
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: #c0c0c0;
}
.cal-day {
  background: var(--ink); text-align: center; padding: 0.6rem 0;
  font-family: var(--mono); font-size: 0.82rem; color: #c0c0c0;
  cursor: pointer; transition: all 0.2s; position: relative;
}
.cal-day:hover:not(.cal-empty):not(.cal-past) { background: var(--ink-soft); color: #ffffff; }
.cal-day.cal-past { opacity: 0.3; cursor: default; }
.cal-day.cal-empty { background: var(--ink); cursor: default; }
.cal-day.cal-selected { background: #ffffff !important; color: var(--ink) !important; }
.cal-day.cal-today::after {
  content: ''; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.5);
}
.cal-day.cal-selected.cal-today::after { background: var(--ink); }

.booking-form-card { border: 1px solid var(--rule); padding: 2.5rem; }
.booking-form-title { font-family: var(--display); font-size: 2rem; letter-spacing: 0.06em; color: #ffffff; margin-bottom: 0.5rem; }
.booking-form-subtitle {
  font-family: var(--mono); font-size: 0.82rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: #c0c0c0; margin-bottom: 2rem;
}
.selected-date-display {
  padding: 0.75rem 1rem; background: rgba(255,255,255,0.06);
  border-left: 2px solid #ffffff;
  font-family: var(--mono); font-size: 0.82rem;
  letter-spacing: 0.16em; color: #ffffff; margin-bottom: 1.5rem; display: none;
}
.selected-date-display.visible { display: block; }
.form-select {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 0.75rem 0; color: #ffffff;
  font-family: var(--serif); font-size: 1.05rem; font-weight: 300;
  outline: none; cursor: pointer; appearance: none; transition: border-color 0.25s;
}
.form-select:focus { border-bottom-color: #ffffff; }
.form-select option { background: var(--ink); color: #ffffff; }
.booking-submit-wrap { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.booking-note { font-family: var(--mono); font-size: 0.82rem; letter-spacing: 0.14em; color: #c0c0c0; line-height: 1.7; }
.booking-success { display: none; padding: 2rem; border: 1px solid rgba(74,222,128,0.3); background: rgba(74,222,128,0.04); }
.booking-success.show { display: block; }
.booking-success h3 { font-family: var(--display); font-size: 1.8rem; letter-spacing: 0.06em; color: #ffffff; margin-bottom: 0.5rem; }
.booking-success p { font-family: var(--mono); font-size: 0.82rem; letter-spacing: 0.14em; color: #c0c0c0; }

/* FOOTER SOCIAL */
.footer-social { display: flex; gap: 0.75rem; align-items: center; }
.footer-social .social-link { width: 34px; height: 34px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .booking-form-inner { grid-template-columns: 1fr; gap: 3rem; }
  .booking-types-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .mailing-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .epk-photo-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .site-footer { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }
  .booking-types-grid { grid-template-columns: 1fr 1fr; }
  .mailing-form { flex-direction: column; }
  .mailing-form .form-control { border-right: 1px solid rgba(255,255,255,0.15); border-bottom: none; }
}
@media (max-width: 600px) {
  .booking-types-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .epk-photo-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: 1fr; }
}
