/* ==========================================================================
   Iqbal Photography Multan - global stylesheet
   ========================================================================== */

:root {
  --bg: #170703;
  --bg-deep: #0e0402;
  --bg-mid: #1c0b06;
  --bg-elevated: #24110a;
  --white: #ffffff;
  --muted: #c4b8b2;
  --accent: #ff3700;
  --accent-soft: #ff6a3d;
  --blue: #3c94be;
  --blue-dark: #0073aa;
  --cta: #006090;
  --cta-glow: rgba(0, 115, 170, 0.35);
  --near-black: #120806;
  --grey-bg: #f3f1ef;
  --grey-warm: #ebe6e1;
  --text-dark: #2a2420;
  --border-light: #e4ddd6;
  --topbar: #2a2220;
  --card-shadow: 0 10px 28px rgba(23, 7, 3, 0.12);
  --card-shadow-hover: 0 18px 40px rgba(23, 7, 3, 0.2);
  /* Shared dark surfaces — warm Multan studio, not flat #000 */
  --surface-dark:
    radial-gradient(ellipse 90% 55% at 15% 0%, rgba(60, 148, 190, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 100%, rgba(255, 55, 0, 0.07), transparent 50%),
    linear-gradient(165deg, var(--bg-mid) 0%, var(--bg) 42%, var(--bg-deep) 100%);
  --surface-dark-alt:
    radial-gradient(ellipse 80% 60% at 85% 10%, rgba(60, 148, 190, 0.1), transparent 50%),
    radial-gradient(ellipse 60% 45% at 10% 90%, rgba(255, 55, 0, 0.06), transparent 48%),
    linear-gradient(195deg, var(--bg) 0%, var(--bg-deep) 55%, #0a0302 100%);
  --surface-dark-soft:
    radial-gradient(ellipse at 50% 0%, rgba(60, 148, 190, 0.11), transparent 55%),
    linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
  --surface-panel: rgba(255, 255, 255, 0.045);
  --surface-panel-border: rgba(255, 255, 255, 0.1);

  --font-body: "Plus Jakarta Sans", Arial, sans-serif;
  --font-head: "Plus Jakarta Sans", Arial, sans-serif;
  --font-text: "Plus Jakarta Sans", Arial, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-alt: "Plus Jakarta Sans", Arial, sans-serif;
  --font-logo: "Plus Jakarta Sans", Arial, sans-serif;
  --font-nav: "Plus Jakarta Sans", Arial, sans-serif;

  --container: 1200px;
  --radius: 12px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 100% 40% at 50% -10%, rgba(60, 148, 190, 0.08), transparent 50%),
    linear-gradient(180deg, var(--bg-mid), var(--bg-deep));
  background-attachment: fixed;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; border: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 400; }
p { margin: 0 0 1.5em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 10px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--white);
  color: var(--text-dark);
  padding: 10px 16px;
  z-index: 999;
}
.skip-link:focus { left: 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 1;
  padding: 20px 28px;
  border-radius: var(--radius);
  border: 0;
  cursor: pointer;
  transition:
    background-color 0.3s var(--ease-out),
    color 0.3s var(--ease-out),
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}
.btn:hover { transform: translateY(-2px) scale(1.03); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn--blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 20px var(--cta-glow);
}
.btn--blue:hover { background: var(--cta); color: var(--white); box-shadow: 0 12px 28px var(--cta-glow); }
.btn--white { background: var(--white); color: var(--blue); box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18); }
.btn--white:hover { background: var(--blue); color: var(--white); }
.btn--sm { font-size: 15px; padding: 14px 22px; }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: none;
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: var(--white);
}

/* ---------------------------------------------------------------- Header */
.topbar {
  background: var(--topbar);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}
.topbar__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar__contact {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar__contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
}
.topbar__contact a:hover { color: var(--blue); }
.topbar__social { display: flex; align-items: center; gap: 10px; }
.topbar__social a {
  width: 24px; height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  border-radius: 3px;
}
.topbar__social a:hover { color: var(--blue); }

.site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.35s var(--ease-out), background 0.35s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(23, 7, 3, 0.14);
  background: rgba(255, 255, 255, 0.98);
}
.site-header__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-logo {
  font-family: var(--font-logo);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-dark);
  white-space: nowrap;
}
.site-logo:hover { color: var(--blue-dark); }

.main-nav > ul { display: flex; align-items: center; }
.main-nav li { position: relative; }
.main-nav a {
  display: block;
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--text-dark);
  padding: 13px 20px;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav .is-current > a { color: var(--blue-dark); }
.main-nav .has-sub > a::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  margin-left: 6px;
}
.main-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 20;
}
.main-nav li:hover > .sub-menu,
.main-nav li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav .sub-menu a { padding: 10px 20px; }
.main-nav .sub-menu a:hover { background: var(--grey-bg); }

.header-cta { display: flex; justify-content: flex-end; }
.header-cta .btn {
  font-size: 13px;
  padding: 15px 24px;
  background: var(--blue-dark);
  color: var(--white);
}
.header-cta .btn:hover { background: var(--cta); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1;
}

/* ------------------------------------------------------------------ Hero */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 7, 3, 0.35) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(23, 7, 3, 0.72) 100%);
  opacity: 1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(60, 148, 190, 0.18), transparent 55%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  animation: heroIn 1s var(--ease-out) both;
}
.hero__brand {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero h1 {
  font-family: var(--font-body);
  font-size: 43px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  margin: 0;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero__sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  opacity: 0.92;
}
.hero__actions { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

/* Inner-page banner */
.page-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 10px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(23, 7, 3, 0.7));
  opacity: 1;
}
.page-banner__inner {
  position: relative;
  z-index: 1;
  animation: heroIn 0.85s var(--ease-out) both;
}
.page-banner h1,
.page-banner__label {
  font-family: var(--font-body);
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin: 0;
}
.page-banner p {
  margin: 14px 0 0;
  font-family: var(--font-text);
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
}
.page-banner p.page-banner__label { margin: 0; }
.page-banner__label--sm { font-size: 44px; }

/* -------------------------------------------------------------- Sections */
.section { padding: 80px 10px; position: relative; }
.section--light {
  background:
    linear-gradient(180deg, #ffffff 0%, #faf8f6 100%);
  color: var(--text-dark);
}
.section--grey {
  background:
    linear-gradient(180deg, var(--grey-bg) 0%, var(--grey-warm) 100%);
  color: var(--text-dark);
}
.section--black {
  background: var(--surface-dark);
  color: var(--white);
  position: relative;
}
.section--near-black {
  background: var(--surface-dark-soft);
  color: var(--white);
  position: relative;
}
.section--tight { padding-block: 50px; }

.section-title {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  overflow-wrap: break-word;
}
.section-title--dark { color: var(--text-dark); }
.section-title--black { color: #000; }
.section-title--center { text-align: center; }
.section-lead {
  font-family: var(--font-text);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin: 16px 0 0;
}

/* ------------------------------------------------- Welcome / two-col text */
.split {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.split__body p {
  font-family: var(--font-text);
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: var(--text-dark);
  margin-bottom: 27px;
}
.split__body .section-title { margin-bottom: 24px; }

/* --------------------------------------------------------- Welcome intro */
.section--welcome {
  padding: 88px 20px;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(60, 148, 190, 0.1), transparent 58%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(255, 55, 0, 0.05), transparent 50%),
    linear-gradient(180deg, #fffdfb 0%, #f6f1ec 55%, #efe8e1 100%);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}
.section--welcome::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(42, 36, 32, 0.08);
  border-radius: 18px;
  pointer-events: none;
}
.intro {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}
.intro__eyebrow {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin: 0 0 14px;
}
.intro .section-title {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 44px);
}
.intro__rule {
  display: block;
  width: 64px;
  height: 3px;
  margin: 0 auto 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
}
.intro__lead {
  font-family: var(--font-text);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-dark);
  margin: 0 auto 28px;
  max-width: 720px;
}
.intro__panel {
  text-align: left;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(42, 36, 32, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 28px 30px 8px;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
}
.intro__panel p {
  font-family: var(--font-text);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: #4a433e;
  margin-bottom: 20px;
}
.intro__panel p:last-child { margin-bottom: 20px; }
.intro__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin-bottom: 28px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-dark);
}
.intro__meta span {
  position: relative;
  padding-inline: 4px;
}
.intro__meta span + span::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
  opacity: 0.85;
}
.intro__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.btn--ghost-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid rgba(42, 36, 32, 0.22);
  box-shadow: none;
}
.btn--ghost-dark:hover {
  background: var(--text-dark);
  color: var(--white);
  border-color: var(--text-dark);
}

@media (max-width: 767px) {
  .section--welcome {
    padding: 56px 14px;
  }
  .section--welcome::before {
    inset: 12px;
  }
  .intro__panel {
    padding: 22px 18px 4px;
    text-align: left;
  }
  .intro__meta {
    gap: 8px 18px;
    font-size: 13px;
  }
  .intro__meta span + span::before {
    left: -12px;
  }
}

/* --------------------------------------------------------- Feature cards */
.features {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 300px));
  justify-content: center;
  gap: 20px;
}
.feature {
  padding: 28px 22px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s ease;
}
.feature:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(0, 115, 170, 0.35);
}
.feature__icon {
  font-size: 42px;
  line-height: 1;
  color: var(--blue-dark);
  margin-bottom: 12px;
  width: 72px;
  height: 72px;
  margin-inline: auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(60, 148, 190, 0.14), rgba(0, 115, 170, 0.06));
  transition: transform 0.4s var(--ease-out), background 0.3s ease;
}
.feature:hover .feature__icon {
  transform: scale(1.08);
  background: linear-gradient(145deg, rgba(60, 148, 190, 0.22), rgba(255, 55, 0, 0.08));
}
.feature h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-dark);
  margin: 8px 0 16px;
}
.feature p {
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
}

/* --------------------------------------------------------- Service cards */
.service-grid {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  color: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 10px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-shadow-hover);
}
.service-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.service-card:hover img { transform: scale(1.08); }
.service-card__body {
  padding: 18px 16px 8px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}
.service-card h2,
.service-card h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  color: #000;
  margin: 0;
}
.service-card p {
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  margin: 0 0 auto;
}
.service-card .btn {
  align-self: flex-start;
  font-family: var(--font-text);
  font-size: 18px;
  font-weight: 400;
  padding: 14px 22px;
  margin-top: 16px;
}

/* ---------------------------------------------------------------- CTA bar */
.cta-band {
  background:
    radial-gradient(ellipse at 30% 0%, rgba(60, 148, 190, 0.35), transparent 55%),
    linear-gradient(135deg, #0073aa 0%, #005a85 55%, #003f5c 100%);
  padding: 72px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band__inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
}
.cta-band p {
  font-family: var(--font-text);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  margin: 0;
  opacity: 0.92;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.cta-band--accent {
  background:
    radial-gradient(ellipse at 70% 20%, rgba(255, 55, 0, 0.18), transparent 50%),
    linear-gradient(135deg, #1a3a4a 0%, #0d222c 100%);
}
.contact-heading__sub {
  text-align: center;
  font-family: var(--font-text);
  font-size: 17px;
  color: var(--muted);
  margin: 8px auto 0;
  max-width: 560px;
}

/* --------------------------------------------------------------- Gallery */
.work {
  background: var(--surface-dark-alt);
  padding: 64px 40px;
  text-align: center;
  position: relative;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}
.work h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.work p {
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  margin: 0 auto 28px;
  max-width: 1284px;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 28px;
}
.photo-grid--4 { grid-template-columns: repeat(4, 1fr); }
.photo-grid__item {
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #0d0d0d;
  cursor: zoom-in;
  position: relative;
}
.photo-grid__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(23, 7, 3, 0.45));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.photo-grid__item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out);
}
.photo-grid--portrait .photo-grid__item img { aspect-ratio: 3 / 4; }
.photo-grid__item:hover img { transform: scale(1.1); }
.photo-grid__item:hover::after { opacity: 1; }

/* Client privacy — block casual save / drag / long-press on gallery */
.photo-grid--protected,
.photo-grid--protected img,
[data-image-protect] img,
.lightbox.is-open img {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}
.photo-grid--protected .photo-grid__item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
}
.photo-grid--protected .photo-grid__item img {
  pointer-events: none;
}
.lightbox__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 92vw;
  max-height: 88vh;
}
.lightbox__stage img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  pointer-events: none;
}
.lightbox__shield {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: default;
  background: transparent;
}
.lightbox__mark {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-text);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  pointer-events: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
}
.lightbox.is-private.is-open img,
body.is-privacy-blur [data-image-protect] img {
  filter: blur(18px);
  transition: filter 0.15s ease;
}

/* ---------------------------------------------------------- Testimonials */
.testimonials {
  padding: 100px 10px;
  background: var(--surface-dark);
  position: relative;
  border-block: 1px solid rgba(255, 255, 255, 0.05);
}
.testimonials__inner { max-width: var(--container); margin-inline: auto; }
.testimonials h2 {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 40px;
}
.testimonials__layout {
  display: grid;
  grid-template-columns: 272px 380px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}
/* Slides are laid out in a wide flex track, so the grid items must be allowed
   to shrink below their content width or the whole page scrolls sideways. */
.testimonials__layout > * { min-width: 0; }
.stat-stack { display: flex; flex-direction: column; gap: 20px; }
.stat-box {
  background: var(--surface-panel);
  border: 1px solid var(--surface-panel-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  flex: 1;
  backdrop-filter: blur(6px);
  transition: border-color 0.3s ease, transform 0.35s var(--ease-out);
}
.stat-box:hover {
  border-color: rgba(60, 148, 190, 0.35);
  transform: translateY(-3px);
}
.stat-box h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.32px;
  color: var(--muted);
  margin: 0;
}
.stat-box__value {
  font-family: var(--font-alt);
  font-size: 40px;
  font-weight: 800;
  line-height: 48px;
  letter-spacing: -0.48px;
  color: var(--white);
}
.testimonials__photo {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--surface-panel-border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.testimonials__photo img { width: 100%; height: 100%; object-fit: cover; }

.slider { position: relative; overflow: hidden; }
.slider__track {
  display: flex;
  transition: transform 0.5s ease;
}
.slider__slide { min-width: 100%; padding-right: 10px; }
.testimonial-box {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 40px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.rating-stars { display: flex; gap: 3px; color: var(--white); font-size: 20px; }
.testimonial-box p {
  font-family: var(--font-text);
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  color: var(--white);
  margin: 0;
}
.testimonial-box .profile-name {
  display: block;
  font-family: var(--font-alt);
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: var(--white);
}
.testimonial-box .profile-des {
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--muted);
  margin: 0;
}
.slider__nav {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.slider__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 15px;
  transition: background 0.25s ease, color 0.25s ease;
}
.slider__btn:hover { background: var(--accent); border-color: var(--accent); }

/* ------------------------------------------------------------------- FAQ */
.faq-section {
  background: var(--surface-dark-alt);
  padding: 120px 10px;
  position: relative;
  border-block: 1px solid rgba(255, 255, 255, 0.05);
}
.faq-section__inner {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 518px 1fr;
  gap: 60px;
  align-items: start;
}
.faq-eyebrow {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  color: var(--blue);
  margin-bottom: 14px;
}
.faq-heading {
  font-family: var(--font-body);
  font-size: 64px;
  font-weight: 600;
  line-height: 1.19;
  color: var(--white);
}
.accordion__item {
  border: 1px solid var(--surface-panel-border);
  background: var(--surface-panel);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 10px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.accordion__item + .accordion__item { border-top: 1px solid var(--surface-panel-border); }
.accordion__item.is-open {
  border-color: rgba(60, 148, 190, 0.35);
  background: rgba(60, 148, 190, 0.06);
}
.accordion__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: 0;
  color: var(--white);
  text-align: left;
  padding: 25px 32px;
  cursor: pointer;
  font-family: var(--font-alt);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}
.accordion__btn i { color: var(--accent); font-size: 16px; transition: transform 0.25s ease; }
.accordion__item.is-open .accordion__btn i { transform: rotate(45deg); }
.accordion__panel {
  display: none;
  padding: 0 80px 24px 32px;
}
.accordion__item.is-open .accordion__panel { display: block; }
.accordion__panel p {
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--muted);
  margin: 0;
}

/* --------------------------------------------------- Detail page content */
.prose { max-width: var(--container); margin-inline: auto; }
.section--black .prose,
.section--near-black .prose {
  padding-inline: 10px;
}
.section--black .container,
.section--near-black .container {
  position: relative;
  z-index: 1;
}
.prose h2 {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--white);
  margin: 48px 0 16px;
}
.prose h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin: 28px 0 10px;
}
.prose p,
.prose li {
  font-family: var(--font-text);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--muted);
}
.prose ul { margin: 0 0 24px; padding-left: 0; }
.prose li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
.prose li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent);
  font-size: 14px;
}
.prose .btn { margin-bottom: 12px; }
.prose strong { color: var(--white); }

.service-block {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  margin-bottom: 40px;
}
.service-block img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.service-block__body { padding: 36px 40px; }
.service-block__body h2 { margin-top: 0; }
.service-block:nth-child(even) .service-block__media { order: 2; }

/* -------------------------------------------------------- Gallery tab nav */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}
.gallery-tabs a {
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  color: var(--white);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.gallery-tabs a:hover,
.gallery-tabs a.is-active { background: var(--accent); border-color: var(--accent); }

/* ------------------------------------------------------------ Team cards */
.team-grid {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  position: relative;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 24px 24px;
  background-color: var(--bg-elevated);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--surface-panel-border);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}
.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 7, 3, 0.1) 0%, rgba(14, 4, 2, 0.72) 100%);
}
.team-card__title {
  position: relative;
  background: var(--white);
  padding: 20px 12px 32px;
  text-align: center;
}
.team-card__title h2 {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--bg);
}
.team-card__title h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--bg);
  margin-top: 4px;
}
.team-card__social {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  background: var(--accent);
  padding: 12px 18px;
  display: flex;
  gap: 14px;
  z-index: 2;
}
.team-card__social a { color: var(--white); font-size: 16px; }
.team-card__social a:hover { opacity: 0.75; }

/* ----------------------------------------------------------- Stats strip */
.stats-strip {
  background: var(--surface-dark-soft);
  padding: 60px 10px;
  border-block: 1px solid rgba(255, 255, 255, 0.05);
}
.stats-strip__inner {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-strip__inner > div {
  padding: 24px 16px;
  border-radius: var(--radius);
  background: var(--surface-panel);
  border: 1px solid var(--surface-panel-border);
  transition: transform 0.35s var(--ease-out), border-color 0.3s ease, background 0.3s ease;
}
.stats-strip__inner > div:hover {
  transform: translateY(-4px);
  border-color: rgba(60, 148, 190, 0.4);
  background: rgba(60, 148, 190, 0.08);
}
.stats-strip h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: var(--muted);
  margin-bottom: 8px;
}
.stats-strip .stat-box__value { font-weight: 600; }

/* ------------------------------------------- Service index + related links */
.service-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-index__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 22px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  text-decoration: none;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s ease;
}
.service-index__card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 115, 170, 0.4);
  box-shadow: var(--card-shadow-hover);
}
.service-index__icon {
  font-size: 26px;
  line-height: 1;
  color: var(--blue-dark);
}
.service-index__title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}
.service-index__blurb {
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: #5b5b5b;
}

.related-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--container);
  margin-inline: auto;
}
.related-services__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}
.related-services__item i { font-size: 14px; color: var(--blue-dark); transition: color 0.25s ease; }
.related-services__item:hover { background: var(--blue-dark); color: var(--white); }
.related-services__item:hover i { color: var(--white); }

/* ----------------------------------------------------------- Location cards */
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--container);
  margin-inline: auto;
}
.location-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.3s ease, box-shadow 0.4s var(--ease-out);
}
.location-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--blue), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.location-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 115, 170, 0.4);
  box-shadow: var(--card-shadow-hover);
}
.location-card:hover::before { opacity: 1; }
.location-card:hover .location-card__cta { color: var(--accent); }
.location-card__city {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
}
.location-card__meta {
  font-family: var(--font-text);
  font-size: 15px;
  color: #5b5b5b;
  line-height: 1.5;
}
.location-card__cta {
  margin-top: 8px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--blue-dark);
}
.location-card__cta i { font-size: 12px; margin-left: 6px; }

/* ------------------------------------------------------------- Trust strip */
.trust-strip {
  background: linear-gradient(90deg, #1a0c08 0%, #24110a 50%, #1a0c08 100%);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 12px;
}
.trust-strip__inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  text-align: center;
}
.trust-strip__inner strong { color: var(--white); font-weight: 700; }
.trust-strip__inner a { color: var(--blue); }
.trust-strip__inner a:hover { color: var(--accent); }

/* --------------------------------------------------------- Booking steps */
.booking-steps {
  list-style: none;
  margin: 0 auto;
  padding: 0 20px;
  max-width: var(--container);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.booking-step {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 28px 24px 26px;
  text-align: center;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.booking-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}
.booking-step__num {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue), var(--blue-dark));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
}
.booking-step h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 10px;
}
.booking-step p {
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #5b534d;
  margin: 0;
}

/* ------------------------------------------------------ Package cards */
.package-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 24px 26px;
  background:
    radial-gradient(ellipse 80% 50% at 100% 100%, rgba(0, 200, 220, 0.08), transparent 55%),
    linear-gradient(165deg, #2a1814 0%, #170a07 55%, #0e0503 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  color: var(--white);
}
.package-card--featured {
  border-color: rgba(0, 212, 230, 0.45);
  box-shadow: 0 18px 48px rgba(0, 180, 200, 0.18), 0 16px 40px rgba(0, 0, 0, 0.4);
  transform: scale(1.02);
}
.package-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 212, 230, 0.18);
  border: 1px solid rgba(0, 212, 230, 0.4);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #7ef0ff;
}
.package-card__head { margin-bottom: 4px; }
.package-card__tier {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #00d4e6;
  margin: 0;
  line-height: 1;
}
.package-card__label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin: 4px 0 0;
}
.package-card__days {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: #00d4e6;
  margin: 8px 0 4px;
}
.package-card__group {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #00d4e6;
  margin: 10px 0 2px;
}
.package-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.package-card__list li {
  position: relative;
  padding: 5px 0 5px 18px;
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}
.package-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00d4e6;
}
.package-card__price {
  margin: 14px 0 6px;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}
.package-card__price strong {
  color: #00d4e6;
  font-size: 26px;
  font-weight: 800;
}
.package-card .btn { margin-top: auto; width: 100%; }
.package-note {
  max-width: 720px;
  margin: 8px auto 0;
  padding: 0 20px 10px;
  text-align: center;
  font-family: var(--font-text);
  font-size: 14px;
  color: var(--muted);
}

/* ----------------------------------------------------------- Booking panel */
.booking-layout {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.booking-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 26px 24px 28px;
}
.booking-card h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 8px;
}
.booking-card__hint {
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 400;
  color: #5b534d;
  margin: 0 0 18px;
  line-height: 1.55;
}
.booking-card--pay {
  background:
    linear-gradient(180deg, #fffdfb 0%, #f7f2ed 100%);
}
.pay-box {
  border: 1px solid rgba(0, 115, 170, 0.18);
  border-radius: 10px;
  background: rgba(60, 148, 190, 0.06);
  padding: 16px 16px 8px;
  margin-bottom: 18px;
}
.pay-box__amount {
  font-family: var(--font-head);
  font-size: 17px;
  margin: 0 0 14px;
  color: var(--text-dark);
}
.pay-box__amount strong {
  color: var(--blue-dark);
  font-size: 22px;
}
.pay-method {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(42, 36, 32, 0.12);
}
.pay-method:last-child {
  border-bottom: 0;
  margin-bottom: 4px;
}
.pay-method h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-dark);
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pay-method p {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark);
  margin: 0 0 4px;
  line-height: 1.45;
  word-break: break-word;
}
.pay-method p span {
  display: inline-block;
  min-width: 72px;
  color: #6a615a;
  font-weight: 600;
}
.booking-receipt-tip {
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  color: #5b534d;
  margin: 10px 0 0;
}

.event-days {
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 14px 14px 12px;
  margin: 4px 0 8px;
  background: #faf8f6;
}
.event-days legend {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  padding: 0 6px;
}
.event-days__hint {
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 400;
  color: #6a615a;
  margin: 0 0 12px;
  line-height: 1.45;
}
.event-day {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 10px;
}
.event-day__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.event-day__head strong {
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--blue-dark);
}
.event-day__remove {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 55, 0, 0.1);
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.event-day__remove:hover { background: var(--accent); color: var(--white); }
.event-day__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.event-day__venue { grid-column: 1 / -1; }
.event-day label {
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
}
.btn-add-day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 4px;
  padding: 12px 14px;
  border: 1px dashed rgba(0, 115, 170, 0.45);
  border-radius: 8px;
  background: rgba(60, 148, 190, 0.06);
  color: var(--blue-dark);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.btn-add-day:hover:not(:disabled) {
  background: rgba(60, 148, 190, 0.14);
  border-color: var(--blue-dark);
}
.btn-add-day:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* --------------------------------------------------------- Blog filtering */
.blog-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.blog-filter__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: transparent;
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.blog-filter__btn span {
  font-size: 12px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}
.blog-filter__btn:hover { color: var(--white); border-color: rgba(255, 255, 255, 0.5); }
.blog-filter__btn.is-active {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
}
.blog-filter__btn.is-active span { background: rgba(255, 255, 255, 0.25); }
.blog-empty {
  text-align: center;
  font-family: var(--font-text);
  font-size: 17px;
  color: var(--muted);
  margin-top: 30px;
}

/* ------------------------------------------------------------ Blog cards */
.blog-grid {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--surface-panel-border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  border-color: rgba(60, 148, 190, 0.35);
}
/* .blog-card sets display:flex, which would otherwise beat the UA rule for
   [hidden] and leave filtered-out cards on screen. */
.blog-card[hidden] { display: none; }
.blog-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.blog-card:hover img { transform: scale(1.06); }
.blog-card__body { padding: 26px 24px 30px; display: flex; flex-direction: column; gap: 12px; }
.blog-card h2 {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--white);
}
.blog-card h2 a:hover { color: var(--accent); }
.blog-card__tag {
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}
.blog-card__meta {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}
.blog-card p {
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

.post-header { max-width: 860px; margin: 0 auto 36px; text-align: center; }
.post-header h1 {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--white);
}
.post-header .blog-card__meta { display: block; margin-top: 14px; }
.post-body { max-width: 860px; margin-inline: auto; }
.post-lead {
  font-size: 19px !important;
  line-height: 1.75 !important;
  color: var(--white) !important;
  padding-left: 18px;
  border-left: 3px solid var(--accent);
}
.post-body h3 { margin-top: 26px; }

.breadcrumbs {
  max-width: var(--container);
  margin: 0 auto 24px;
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span + span::before { content: "/"; margin: 0 8px; opacity: 0.5; }

/* ---------------------------------------------------------- Contact area */
.contact-heading { background: var(--grey-bg); padding: 26px 10px 0; }
.contact-heading h2 {
  max-width: var(--container);
  margin-inline: auto;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: #000;
}
.contact-section { background: var(--grey-bg); padding: 20px 10px 40px; }
.contact-section__inner {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-card {
  background: var(--white);
  padding: 24px;
  color: var(--text-dark);
}
.contact-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.contact-card h2 {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
  color: #000;
}
.contact-card__head a {
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: underline;
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form label {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  display: block;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: #030101;
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 12px 16px;
  border-radius: 8px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(60, 148, 190, 0.2);
}
.contact-form button {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: var(--radius);
  padding: 16px 22px;
  cursor: pointer;
  box-shadow: 0 8px 20px var(--cta-glow);
  transition: background 0.3s ease, transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.contact-form button:hover {
  background: var(--cta);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px var(--cta-glow);
}
.form-note { font-family: var(--font-text); font-size: 14px; font-weight: 400; margin: 0; }
.form-note--ok { color: #1a7f37; }
.form-note--err { color: #b3261e; }

.info-list { display: flex; flex-direction: column; gap: 22px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list i {
  color: var(--blue);
  font-size: 18px;
  margin-top: 4px;
  width: 22px;
  text-align: center;
}
.info-list strong {
  display: block;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: #000;
}
.info-list span,
.info-list a {
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.6;
}
.info-list a:hover { color: var(--blue); }

/* ---------------------------------------------------------------- Footer */
.site-footer {
  background: var(--surface-dark);
  padding: 60px 10px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(60, 148, 190, 0.45), rgba(255, 55, 0, 0.35), transparent);
  opacity: 0.7;
}
.site-footer__inner { max-width: var(--container); margin-inline: auto; }
.footer-map {
  width: 100%;
  height: 400px;
  border: 0;
  margin-bottom: 48px;
  filter: grayscale(0.15);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 40px;
}
.footer-cols h2 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.48px;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-cols li + li { margin-top: 10px; }
.footer-cols a,
.footer-cols p {
  font-family: var(--font-text);
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.32px;
  color: var(--muted);
  margin: 0;
}
.footer-cols a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 14px; margin-top: 14px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 15px;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); }

.footer-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-meta h2 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.48px;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-meta p,
.footer-meta a {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.32px;
  color: var(--white);
  margin: 0;
}
.footer-meta a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.32px;
  color: var(--white);
  margin: 0;
}
.footer-legal {
  margin-top: 10px !important;
  font-family: var(--font-text) !important;
  font-size: 14px !important;
  color: rgba(255,255,255,.65) !important;
}
.footer-legal a { color: #7ef0ff; text-decoration: none; }
.footer-legal a:hover { text-decoration: underline; }
.booking-policy-note {
  font-family: var(--font-text);
  font-size: 13px;
  color: #666;
  margin: 0 0 14px;
}
.booking-policy-note a { color: var(--blue, #0073aa); }

/* -------------------------------------------------------- Floating calls */
.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 80;
}
.floating-actions a {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s var(--ease-out);
}
.floating-actions a:hover { transform: scale(1.12); }
.floating-actions .fa-whatsapp-link {
  background: #25d366;
  animation: waPulse 2.4s ease-in-out infinite;
}
.floating-actions .fa-call-link { background: var(--blue-dark); }

@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55), 0 8px 22px rgba(0, 0, 0, 0.35); }
  55% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 8px 22px rgba(0, 0, 0, 0.35); }
}

/* -------------------------------------------------------------- Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 40px 20px;
}
.lightbox.is-open { display: flex; }
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  color: var(--white);
  width: 46px; height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  z-index: 5;
}
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: var(--accent); }

/* --------------------------------------------------------------- Reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }

/* Tall grids: keep the parent visible; animate children only so IntersectionObserver
   thresholds cannot leave a long section permanently blank. */
.reveal.reveal-stagger {
  opacity: 1;
  transform: none;
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.47s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.54s; }
.reveal-stagger.is-visible > *:nth-child(n+9) { transition-delay: 0.58s; }
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .reveal-stagger > *,
  .hero__inner,
  .page-banner__inner {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  .floating-actions .fa-whatsapp-link { animation: none; }
  .btn:hover,
  .service-card:hover,
  .feature:hover,
  .location-card:hover,
  .blog-card:hover { transform: none; }
}

/* ----------------------------------------------------------- Responsive */
@media (max-width: 1200px) {
  .testimonials__layout { grid-template-columns: 240px 300px minmax(0, 1fr); }
  .faq-section__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .faq-heading { font-size: 48px; }
}

@media (max-width: 1024px) {
  .main-nav a { padding: 13px 12px; }
  .site-logo { font-size: 21px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials__layout { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .testimonials__photo { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .service-block { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .service-block__media { order: 0; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .service-index { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: 1fr; max-width: 420px; }
  .package-card--featured { transform: none; }
  .booking-steps { grid-template-columns: 1fr; max-width: 420px; }
  .booking-layout { grid-template-columns: 1fr; max-width: 520px; }
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-header__inner { flex-wrap: wrap; }
  .main-nav {
    display: none;
    order: 3;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-block: 8px;
  }
  .main-nav.is-open { display: block; }
  .main-nav > ul { flex-direction: column; align-items: stretch; }
  .main-nav .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    padding-left: 14px;
  }
  .main-nav li.is-expanded > .sub-menu { display: block; }
  .header-cta { order: 2; }
  .header-cta .btn { padding: 12px 16px; font-size: 12px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-meta { grid-template-columns: 1fr; }
  .photo-grid, .photo-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .section { padding: 56px 10px; }
  .hero { min-height: 520px; }
  .hero h1 { font-size: 32px; }
  .page-banner h1, .page-banner__label { font-size: 42px; }
  .section-title, .cta-band h2, .testimonials h2 { font-size: 34px; }
  /* Hard-coded line breaks in headings are a desktop nicety; on phones they
     push long words such as "Photographers" past the screen edge. */
  .section-title br, .cta-band h2 br, .hero h1 br, .page-banner h1 br { display: none; }
  .faq-heading { font-size: 36px; }
  .faq-section { padding: 64px 10px; }
  .faq-section__inner { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .features { grid-template-columns: minmax(0, 400px); }
  .service-grid { grid-template-columns: 1fr; }
  .testimonials__layout { grid-template-columns: minmax(0, 1fr); }
  .stat-stack { flex-direction: row; }
  .contact-section__inner { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .service-index { grid-template-columns: 1fr; }
  .related-services { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 20px; }
  .work { padding: 40px 16px; }
  .accordion__btn { padding: 18px 16px; font-size: 17px; }
  .accordion__panel { padding: 0 16px 20px; }
  .topbar__inner { justify-content: center; text-align: center; }
  .post-header h1 { font-size: 30px; }
  .prose h2 { font-size: 27px; }
  .footer-map { height: 300px; }
}

@media (max-width: 520px) {
  .stat-stack { flex-direction: column; }
  .photo-grid, .photo-grid--4 { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }
  .topbar__contact { gap: 12px; font-size: 14px; }
}
