/* =====================================================
   ROOT TOKENS & GLOBAL RESETS
   ===================================================== */

:root {
  --color-bg-dark: #0b0b0d;
  --color-bg-light: #ffffff;
  --color-text-dark: #111111;
  --color-text-black: #000000;
  --color-accent-pink: #FF99C3;
  --color-header-teal: #1B849A;
}

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

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text-dark);
  line-height: 1.6;
  background-color: var(--color-bg-light);
  background-image: none;
}

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


/* =====================================================
   SHARED BACKGROUND + OVERLAY UTILITIES
   (Used by FAQ / Terms / Booking / Aftercare / Privacy)
   ===================================================== */

/* For pages with full-viewport background images */
body.has-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Shared overlay structure */
body.page-has-overlay {
  position: relative;
}

body.page-has-overlay::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  pointer-events: none;
}

/* Tints */
body.page-overlay--dark::before {
  background: rgba(0, 0, 0, 0.25);
}

body.page-overlay--light::before {
  background: rgba(255, 255, 255, 0.16);
}

/* Ensure content is above the overlay */
body.page-has-overlay .site-wrapper,
body.page-has-overlay .framed-content,
body.page-has-overlay header {
  position: relative;
  z-index: 1;
}


/* =====================================================
   PAGE-SPECIFIC BACKGROUNDS
   ===================================================== */

/* HOME (no overlay utility; custom background) */
body.home {
  color: #f7f7f7;
  background-color: var(--color-bg-dark);
  background-image: url("../assets/images/backgrounds/full-size/HomeWall_full.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* FAQ page background */
body.faq {
  background-color: #000000;
  background-image: url("../assets/images/backgrounds/full-size/background_faq_full.jpg");
  color: #000000;
}

/* Terms page background */
body.terms {
  background-color: #000000;
  background-image: url("../assets/images/backgrounds/full-size/background_terms_full.jpg");
  color: #000000;
}

/* Booking page background */
body.booking {
  background-color: #000000;
  background-image: url("../assets/images/backgrounds/full-size/background_booking_full.jpg");
  color: #000000;
}

/* AFTERCARE page background */
body.aftercare {
  background-color: #000000;
  background-image: url("../assets/images/backgrounds/full-size/background_terms_full.jpg");
  color: #000000;
}

/* PRIVACY page background */
body.privacy {
  background-color: #000000;
  background-image: url("../assets/images/backgrounds/full-size/background_terms_full.jpg");
  color: #000000;
}

/*
  Pages using overlays and full-screen backgrounds:
  - body.faq
  - body.terms
  - body.booking
  - body.aftercare
  - body.privacy
  Optionally: add `has-bg`, `page-has-overlay`, and a tint class in HTML.
*/

body.faq,
body.terms,
body.booking,
body.aftercare,
body.privacy {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* =====================================================
   TYPOGRAPHY: HEADINGS & LINKS
   ===================================================== */

.hero-title,
.glass-panel .section-heading,
.section-heading,
.section-heading--sub,
body.terms .terms-glass-panel h1.section-heading,
body.faq .framed-content > .container > .section-heading,
body.faq .faq-group .section-heading,
body.aftercare .aftercare-glass-panel .section-heading,
body.aftercare .aftercare-glass-panel h2.section-heading,
body.privacy .privacy-glass-panel .section-heading,
body.privacy .privacy-glass-panel .section-heading.section-heading--sub {
  font-family: "Libre Baskerville", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Page title: used across Terms / Aftercare / Privacy / FAQ main */
.page-title {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Group titles: used for FAQ groups, terms/aftercare/privacy subtitles */
.page-group-title {
  font-size: 1rem;
  margin-top: 1.4rem;
  margin-bottom: 0.6rem;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 400;
}

/* Base section heading */
.section-heading {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Subtitle style */
.section-heading--sub {
  font-size: 1.2rem;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-subtitle {
  color: var(--color-text-dark);
  margin-bottom: 3rem;
}

/* Base link style */
a {
  color: var(--color-accent-pink);
  text-decoration: none;
}

a:hover {
  color: var(--color-accent-pink);
}


/* =====================================================
   LAYOUT: SITE WRAPPER & MAIN
   ===================================================== */

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  padding: 0;
}


/* =====================================================
   FRAME / FRAMED-CONTENT LAYOUT
   ===================================================== */

.home .site-wrapper {
  position: relative;
}

body.home,
body.home .site-wrapper,
body.home .framed-content {
  position: relative;
  z-index: 1;
}

.framed-content {
  position: relative;
  overflow: visible;
  padding-top: 0;
  padding-bottom: 0;
  background: transparent;
}

body:not(.home) .framed-content {
  flex: 1;
  padding-top: 0;
  padding-bottom: 0;
  background: transparent;
}

body.booking .framed-content {
  overflow: visible;
}

body.home .framed-content::before,
body:not(.home) .framed-content::before,
body.home .framed-content .frame-edge-bottom,
body:not(.home) .framed-content .frame-edge-bottom {
  content: none;
  display: none;
}

.framed-content .frame-edge {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.framed-content > * {
  position: relative;
  z-index: 1;
}

.framed-content > *:not(.frame-edge) {
  z-index: 2;
}

.framed-content::after {
  content: none;
}


/* =====================================================
   HERO (HOME)
   ===================================================== */

.hero {
  position: relative;
  text-align: center;
  background-color: #000000;
  background-image: url("../assets/images/resources/HomeBanner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  margin-top: 0;
  font-size: 4rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #000000;
  text-shadow:
    -0.5px -0.5px 0 rgba(255, 255, 255, 0.9),
     0.5px -0.5px 0 rgba(255, 255, 255, 0.9),
    -0.5px  0.5px 0 rgba(255, 255, 255, 0.9),
     0.5px  0.5px 0 rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-row--secondary {
  margin-top: 0.75rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  color: var(--color-accent-pink);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  background: rgba(11, 11, 13, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(2px);
}

.btn:hover {
  filter: brightness(1.1);
}


/* =====================================================
   FOOTER (GLOBAL)
   ===================================================== */

footer {
  margin-top: 1rem;
  padding: 0.75rem 0;
  border-top: none;
  font-size: 0.8rem;
  color: #000000;
}

footer a {
  color: #000000;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-main {
  font-weight: 500;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
}

.footer-separator {
  opacity: 0.6;
}

@media (min-width: 600px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}


/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */

header {
  background: var(--color-header-teal);
  padding: 0;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-image {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 6px;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: #000000;
  height: 2px;
  width: 20px;
  border-radius: 999px;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-label span::before {
  top: -6px;
}

.nav-toggle-label span::after {
  top: 6px;
}

.nav-toggle:checked + .nav-toggle-label span {
  background: transparent;
}

.nav-toggle:checked + .nav-toggle-label span::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle:checked + .nav-toggle-label span::after {
  transform: translateY(-6px) rotate(-45deg);
}

nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-right: 0;
}

nav a {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: #000000;
}

nav ul a:hover {
  color: var(--color-accent-pink);
}

nav a.active {
  color: var(--color-accent-pink);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.social-icons a,
.social-icons a:hover {
  border-bottom: none;
  padding-bottom: 0;
}

.social-icons svg,
.about-contact-socials svg,
.about-contact-inline-icons svg {
  width: 20px;
  height: 20px;
  display: block;
}

.icon-facebook path,
.icon-instagram path,
.icon-tiktok path {
  fill: #000000;
}

.social-icons a:hover .icon-facebook path,
.social-icons a:hover .icon-instagram path,
.social-icons a:hover .icon-tiktok path,
.about-contact-socials a:hover .icon-facebook path,
.about-contact-socials a:hover .icon-instagram path,
.about-contact-socials a:hover .icon-tiktok path,
.about-contact-inline-icons a:hover .icon-facebook path,
.about-contact-inline-icons a:hover .icon-instagram path,
.about-contact-inline-icons a:hover .icon-tiktok path {
  fill: var(--color-accent-pink);
}

.nav-separator {
  color: rgba(0, 0, 0, 0.35);
  font-size: 0.85rem;
  line-height: 1;
  padding: 0 0.2rem;
}

.lang-switch {
  margin-left: 0.35rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
  display: inline-block;
  padding-bottom: 0.1rem;
  border-bottom: 0 solid transparent;
}

.lang-switch:hover,
.lang-switch:focus {
  color: var(--color-accent-pink);
}

nav a.active {
  color: var(--color-accent-pink);
}

.nav-dropdown a.active {
  color: var(--color-accent-pink);
}

/* NAV DROPDOWN UNDER "GALERIA" */

@media (min-width: 801px) {
  .nav-item-has-dropdown {
    position: relative;
  }

  .nav-item-has-dropdown > .nav-link-parent {
    position: relative;
    display: inline-block;
    padding-bottom: 0.4rem; /* slightly larger hover area under the text */
  }

  .nav-item-has-dropdown .nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  padding: 0;                 /* was 0.3rem 0; */
  list-style: none;
  background: #1B849A;
  border-radius: 0.4rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  display: none;
  z-index: 30;
}

.nav-item-has-dropdown .nav-dropdown li {
  margin: 0;
}

.nav-item-has-dropdown .nav-dropdown a {
  display: block;
  padding: 0.35rem 0.8rem;   /* vertical + horizontal padding */
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #000000;
  white-space: nowrap;
}

.nav-item-has-dropdown .nav-dropdown a:hover {
  background: #146073;
  border-radius: 0.4rem;
  color: var(--color-accent-pink);
}

  /* Keep dropdown open while hovering parent OR dropdown itself */
  .nav-item-has-dropdown:hover > .nav-dropdown,
  .nav-item-has-dropdown:focus-within > .nav-dropdown {
    display: block;
  }
}

@media (max-width: 990px) {
  .nav-item-has-dropdown {
    width: 100%;
  }

  .nav-item-has-dropdown .nav-dropdown {
    list-style: none;
    margin-top: 0.5rem;
    position: static;  /* inherit flow inside mobile menu */
    box-shadow: none;
    background: transparent;
  }

  .nav-item-has-dropdown .nav-dropdown li + li {
    margin-top: 0.15rem;
  }

  .nav-item-has-dropdown .nav-dropdown a {
    font-size: 0.85rem;
    padding: 0.1rem 0;
  }
}

/* Desktop ≥ 1109px */
@media (min-width: 1109px) {
  .logo-image {
    height: 48px;
    width: 48px;
  }

  .nav-toggle-label {
    display: none;
  }

  nav a {
    font-size: 0.95rem;
  }

  nav ul {
    gap: 0.75rem;
  }

  .lang-switch {
    font-size: 0.85rem;
    margin-left: 0.35rem;
  }

  body.en .nav-bar {
    justify-content: flex-start;
  }

  body.en nav {
    margin-left: 2rem;
    margin-right: 0;
    max-width: 780px;
  }

  body.en nav ul {
    gap: 0.65rem;
  }

  body.en nav a {
    font-size: 0.9rem;
  }

  body.en .lang-switch {
    font-size: 0.8rem;
    margin-left: 0.3rem;
  }
}

/* Medium 801–1108px */
@media (min-width: 801px) and (max-width: 1108px) {
  .logo-image {
    height: 40px;
    width: 40px;
  }

  nav a {
    font-size: 0.85rem;
  }

  nav ul {
    gap: 0.5rem;
  }

  nav {
    gap: 0.5rem;
  }

  .lang-switch {
    font-size: 0.8rem;
    margin-left: 0.25rem;
  }

  body.en nav {
    max-width: 760px;
  }

  body.en nav ul {
    gap: 0.45rem;
  }

  body.en nav a {
    font-size: 0.82rem;
  }
}

/* Large screens: add left nav margin */
@media (min-width: 801px) {
  nav {
    margin-left: 2rem;
  }
}

/* Mobile / tablet nav (burger) ≤ 990px */
@media (max-width: 990px) {
  .logo-image {
    height: 34px;
    width: 34px;
  }

  .nav-bar {
    position: relative;
    justify-content: flex-start;
  }

  .brand-row {
    justify-content: flex-start;
  }

  .nav-toggle-label {
    display: block;
    margin-top: 6px;
    position: relative;
    z-index: 11;
  }

  .nav-separator {
    display: none;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(27, 132, 154, 0.97);
    display: none;
    flex-direction: column;
    padding: 0.75rem 1.5rem 1rem;
    gap: 0.75rem;
    z-index: 20;
    margin-left: 0;
  }

  .nav-toggle:checked ~ nav {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    margin-right: 0;
  }

  nav a {
    font-size: 0.85rem;
  }

  .social-icons {
    margin-top: 0.5rem;
  }

  .lang-switch {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}


/* =====================================================
   SECTION & GRID HELPERS
   ===================================================== */

.section {
  margin-top: 3rem;
}

.section:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
}

.framed-content .section:last-of-type {
  margin-bottom: 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.grid-2 .glass-panel,
.grid-2 .highlight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (max-width: 800px) {
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* =====================================================
   GLASS PANELS & HIGHLIGHT CARD
   ===================================================== */

/* Base dark glass */
.glass-panel {
  background: rgba(11, 11, 13, 0.3);
  border-radius: 0.8rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  color: #f7f7f7;
}

.glass-panel .section-heading {
  margin-top: 0;
  font-weight: 400;
  font-size: 1rem;
}

.glass-panel p,
.glass-panel li {
  font-size: 0.95rem;
  text-align: justify;
}

.glass-panel a {
  color: var(--color-accent-pink);
}

.glass-panel a:hover {
  color: var(--color-accent-pink);
}

.glass-panel p:last-child,
.glass-panel li:last-child {
  margin-bottom: 0;
}

.glass-panel p + p {
  margin-top: 0.75rem;
}

/* Shared light glass variant */
.glass-panel--light {
  background: rgba(255, 255, 255, 0.28);
  border-radius: 0.9rem;
  padding: 1.5rem 1.75rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #000000;
}

/* Narrow layout helper (Terms / Aftercare / Privacy / Booking) */
.glass-panel--narrow {
  width: 100%;
  max-width: 800px;
  margin: 2.5rem auto 3rem;
}

/* AFTERCARE: ensure light variant wins over base */
body.aftercare .glass-panel.glass-panel--light {
  background: rgba(255, 255, 255, 0.28);
  border-radius: 0.9rem;
  padding: 1.5rem 1.75rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #000000;
}

.highlight-card {
  position: relative;
  background-image: url("../assets/images/resources/QuickBG.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0.8rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.highlight-card h3 {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: #FFC0DA;
}

.highlight-card ul {
  list-style: none;
}

.highlight-card li {
  display: flex;
  align-items: flex-start;
}

.highlight-dot {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  margin-right: 0.5rem;
  margin-top: 0.4rem;
  background-image: url("../assets/images/resources/CheckMark.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.highlight-text {
  flex: 1 1 auto;
}

.highlight-text a {
  white-space: normal;
}

body.about .section.grid-2 .highlight-card {
  margin-top: 4rem;
}

.highlight-card li + li {
  margin-top: 0.5rem;
}

.highlight-card p:last-child,
.highlight-card li:last-child {
  margin-bottom: 0;
}

ul.simple {
  list-style: disc;
  margin-left: 1.4rem;
}

ol.simple {
  list-style: decimal;
  margin-left: 1.4rem;
}

.simple li + li {
  margin-top: 0.35rem;
}

/* Booking highlight card overrides */
body.booking .highlight-card li {
  color: #F5EBE6;
}


/* =====================================================
   TERMS PAGE – GLASS PANEL
   ===================================================== */

body.terms .terms-glass-section {
  display: flex;
  justify-content: center;
}

body.terms .terms-glass-panel {
  width: 100%;
  max-width: 800px;
  margin: 2.5rem auto 3rem;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 0.9rem;
  padding: 1.5rem 1.75rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #000000;
}

body.terms .terms-glass-panel h1.section-heading {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

body.terms .terms-glass-panel,
body.terms .terms-glass-panel p,
body.terms .terms-glass-panel li {
  font-size: 0.95rem;
  line-height: 1.7;
}

body.terms .terms-glass-panel ol.simple {
  margin-left: 1.4rem;
  margin-bottom: 0.75rem;
}

body.terms .terms-glass-panel ul.simple {
  margin-top: 0.4rem;
  margin-left: 1.4rem;
}

body.terms .terms-glass-panel li + li {
  margin-top: 0.35rem;
}

/* TERMS: subtitles override global subtitle size */
body.terms .terms-glass-panel .section-heading.section-heading--sub {
  font-size: 1rem;
  text-align: left;
  letter-spacing: 0.08em;
}

@media (max-width: 600px) {
  body.terms .terms-glass-panel {
    padding: 1.25rem 1.25rem 1.5rem;
  }
}


/* =====================================================
   AFTERCARE PAGE – GLASS PANEL
   ===================================================== */

body.aftercare .aftercare-glass-section {
  display: flex;
  justify-content: center;
}

body.aftercare .aftercare-glass-panel {
  width: 100%;
  max-width: 800px;
  margin: 2.5rem auto 3rem;
}

body.aftercare .aftercare-glass-panel,
body.aftercare .aftercare-glass-panel p,
body.aftercare .aftercare-glass-panel li {
  font-size: 0.95rem;
  line-height: 1.7;
}

body.aftercare .aftercare-glass-panel .section-heading {
  font-size: 1.2rem;
  margin-top: 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

body.aftercare .aftercare-glass-panel .section-subtitle {
  margin-bottom: 1.5rem;
  text-align: left;
}

body.aftercare .aftercare-glass-panel h2.section-heading:not(:first-child) {
  font-size: 1rem;
  margin-top: 1.4rem;
  margin-bottom: 0.6rem;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body.aftercare .aftercare-glass-panel ol.simple {
  margin-left: 1.4rem;
  margin-bottom: 0.75rem;
}

body.aftercare .aftercare-glass-panel ul.simple {
  margin-top: 0.4rem;
  margin-left: 1.4rem;
  margin-bottom: 0.75rem;
}

body.aftercare .aftercare-glass-panel li + li {
  margin-top: 0.35rem;
}

body.aftercare .glass-panel.glass-panel--light p,
body.aftercare .glass-panel.glass-panel--light li {
  text-align: left;
}

@media (max-width: 600px) {
  body.aftercare .aftercare-glass-panel {
    padding: 1.25rem 1.25rem 1.5rem;
  }
}


/* =====================================================
   PRIVACY PAGE – GLASS PANEL
   ===================================================== */

body.privacy .privacy-glass-section {
  display: flex;
  justify-content: center;
}

body.privacy .privacy-glass-panel {
  width: 100%;
  max-width: 800px;
  margin: 2.5rem auto 3rem;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 0.9rem;
  padding: 1.5rem 1.75rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #000000;
}

body.privacy .privacy-glass-panel .section-heading {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

body.privacy .privacy-glass-panel .section-subtitle {
  margin-bottom: 1.5rem;
  text-align: left;
}

body.privacy .privacy-glass-panel .section-heading.section-heading--sub {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 1.4rem;
  margin-bottom: 0.6rem;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body.privacy .privacy-glass-panel,
body.privacy .privacy-glass-panel p,
body.privacy .privacy-glass-panel li {
  font-size: 0.95rem;
  line-height: 1.7;
}

body.privacy .privacy-glass-panel ol.simple {
  margin-left: 1.4rem;
  margin-bottom: 0.75rem;
}

body.privacy .privacy-glass-panel ul.simple {
  margin-top: 0.4rem;
  margin-left: 1.4rem;
  margin-bottom: 0.75rem;
}

body.privacy .privacy-glass-panel li + li {
  margin-top: 0.35rem;
}


/* =====================================================
   FAQ PAGE
   ===================================================== */

/* Header z-index above content but below lightbox */
body.faq header,
body.terms header,
body.booking header,
body.aftercare header {
  position: relative;
  z-index: 10;
}

body.faq .framed-content > .container {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 0.9rem;
  padding: 1.5rem 1.5rem 2.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin: 5.5rem auto 3rem;
}

@media (min-width: 800px) {
  body.faq .framed-content > .container {
    padding: 2rem 2.5rem 3rem;
    margin-bottom: 3rem;
  }
}

body.faq .section:first-of-type {
  margin-top: 0rem;
}

/* FAQ main title */
body.faq .framed-content > .container > .section-heading {
  font-size: 1.2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 400;
}

body.faq .framed-content > .container > .section-subtitle {
  margin-bottom: 1.5rem;
  text-align: left;
}

/* FAQ section titles */
body.faq .faq-group .section-heading {
  font-size: 1rem;
  margin-top: 1.4rem;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 400;
}


/* FAQ details + TOC */

details {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 0.7rem;
  padding: 1rem 1.1rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.faq-group--before details,
.faq-group--after details,
.faq-group--day details,
.faq-group--consent details,
.faq-group--hygiene details,
.faq-group--safe details,
.faq-group--location details,
.faq-group--pricing details,
.faq-group--rules details,
.faq-group--health details,
.faq-group--prepare details,
.faq-group--design details,
.faq-group--placement details {
  background-image: none;
}

details + details {
  margin-top: 0.7rem;
}

summary {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
  display: flex;
  align-items: center;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  content: "+";
  margin-right: 0.5rem;
  color: var(--color-accent-pink);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  top: -2px;
}

details[open] summary::before {
  content: "–";
}

.faq-toc {
  display: inline-block;
  width: 35ch;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0.7rem;
  padding: 0.75rem 1rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

@media (max-width: 600px) {
  .faq-toc {
    width: 100%;
  }
}

.faq-toc > summary {
  font-weight: 500;
  cursor: pointer;
}

.faq-toc ul {
  margin-top: 0.5rem;
}

.faq-toc a {
  color: var(--color-text-dark);
}

.faq-toc a:hover {
  color: var(--color-accent-pink);
}

body.faq details p {
  margin-top: 0.75rem;
  margin-bottom: 0;
  line-height: 1.6;
}

body.faq details p:first-of-type {
  margin-top: 0.25rem;
}

body.faq details ul.simple,
body.faq details ol.simple {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

body.faq details ul.simple li,
body.faq details ol.simple li {
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  line-height: 1.4;
}

body.faq details ul.simple li + li,
body.faq details ol.simple li + li {
  margin-top: 0.2rem;
}


/* =====================================================
   BOOKING PAGE – FORM & PANELS
   ===================================================== */

body.booking .section.grid-2 {
  display: flex;
  justify-content: center;
}

body.booking .section.grid-2 .glass-panel {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

body.booking .glass-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 0.9rem;
  padding: 1.5rem 1.75rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #000000;
}

body.booking .glass-panel .section-heading,
body.booking .glass-panel .section-subtitle,
body.booking .booking-pricing-note,
body.booking .form-row-inline-toggle,
body.booking .glass-panel form,
body.booking .glass-panel-inner {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

body.booking .glass-panel .section-heading {
  font-size: 1.2rem;
}

body.booking .glass-panel .section-subtitle {
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}

body.booking .booking-pricing-note {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text-dark);
}

body.booking .booking-pricing-note p {
  margin-bottom: 0.4rem;
}

body.booking .booking-pricing-note ul {
  margin: 0 0 0.6rem 1.2rem;
  padding: 0;
}

body.booking .booking-pricing-note li + li {
  margin-top: 0.2rem;
}

body.booking .form-row-inline-toggle {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

form {
  max-width: 500px;
}

body.booking form {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 0.4rem;
  border: 1px solid #333547;
  background: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f7f7f7;
  font: inherit;
}

input[type="checkbox"] {
  width: auto;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 1px solid var(--color-accent-pink);
  outline-offset: 1px;
}

.form-row {
  margin-bottom: 1rem;
}

.consent-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0;
}

.consent-label input[type="checkbox"] {
  transform: scale(1.3);
  transform-origin: center;
  margin-right: 0.2rem;
  accent-color: var(--color-accent-pink);
}

.form-hint {
  font-size: 0.8rem;
  color: #9090a0;
}

body.booking .age-label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

body.booking .age-options {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

body.booking .age-option {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

body.booking .age-option input[type="checkbox"] {
  transform: scale(1.1);
  accent-color: var(--color-accent-pink);
}

body.booking .age-option input[type="radio"] {
  transform: scale(1.1);
  accent-color: var(--color-accent-pink);
}

body.booking .enquiry-toggle-label input[type="checkbox"] {
  transform: scale(1.1);
  transform-origin: center;
  margin-right: 0.2rem;
  accent-color: var(--color-accent-pink);
}

body.booking input,
body.booking textarea,
body.booking select {
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: #F5EBE6;
  color: var(--color-text-dark);
}

body.booking input::placeholder,
body.booking textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

body.booking label {
  color: var(--color-text-dark);
}

body.booking .form-hint {
  color: rgba(0, 0, 0, 0.6);
  margin-top: 1rem;
}

/* First booking section top margin */
body.booking .framed-content .section.grid-2:first-of-type {
  margin-top: 3rem;
}

/* Match booking glass panel margins to Terms / Aftercare */
body.booking .section.grid-2:first-of-type > .glass-panel {
  margin: 2.5rem auto 3rem;
}

@media (max-width: 800px) {
  body.booking .consent-label {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
  }

  body.booking .consent-label input[type="checkbox"] {
    margin-top: 0.4rem;
    flex: 0 0 auto;
  }

  body.booking .consent-label .consent-text {
    display: inline-block;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  body.booking .age-options {
    flex-wrap: wrap;
  }
}

/* Mobile margin adjustments for key panels */
@media (max-width: 800px) {
  body.faq .framed-content > .container {
    background: rgba(255, 255, 255, 0.16);
    border-radius: 0.9rem;
    padding: 1.5rem 1.5rem 2.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin: 2.75rem auto 1.5rem;
  }

  body.aftercare .aftercare-glass-panel {
    width: 100%;
    max-width: 800px;
    margin: 1rem auto 1.25rem;
  }

  body.booking .framed-content .section.grid-2:first-of-type > .glass-panel {
    margin: 1rem auto 1.25rem;
  }

  body.booking .framed-content .section.grid-2:first-of-type {
    margin-top: 1.5rem;
  }

  body.terms .terms-glass-panel {
    width: 100%;
    max-width: 800px;
    margin: 1rem auto 1.25rem;
    background: rgba(255, 255, 255, 0.28);
    border-radius: 0.9rem;
    padding: 1.5rem 1.75rem 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #000000;
  }
}


/* =====================================================
   ABOUT / STUDIO PAGE
   ===================================================== */

body.about {
  background-color: #f7f5f2;
  background-image: none;
  color: var(--color-text-dark);
}

body.about .section-heading,
body.about .section-subtitle {
  text-align: center;
}

body.about .about-row {
  align-items: stretch;
}

.about-photo-block,
.about-text-block,
.about-contact-block,
.about-map-block {
  height: 100%;
}

.about-map-block {
  width: 100%;
}

.about-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.about-text-block {
  padding: 0 0.5rem;
}

.section-artist .section-heading,
.section-studio .section-heading {
  margin-bottom: 0.5rem;
}

.section-artist .section-subtitle,
.section-studio .section-subtitle {
  margin-bottom: 1rem;
}

body.about .about-text-block p,
body.about .about-text-block li {
  text-align: left;
}

.about-gallery-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding: 0;
}

.about-gallery-item img {
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

@media (max-width: 800px) {
  .about-gallery-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-map-embed {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.8rem;
}

.about-map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-map-placeholder {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 100%;
  margin: 0;
  border-radius: 0.8rem;
  border: 1px solid #dddddd;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.9rem;
  color: #444444;
  box-sizing: border-box;
  background: #f5f5f5;
}

.about-map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/about/full-size/about-map.jpg") center/cover no-repeat;
  filter: blur(8px);
  transform: scale(1.05);
  z-index: 0;
  opacity: 1;
  transition: opacity 180ms ease-out;
}

.about-map-placeholder.map-loaded::before {
  opacity: 0;
}

.about-map-consent {
  position: relative;
  z-index: 1;
  padding: 1rem;
  max-width: 420px;
  margin: -0.75rem auto 0;
  text-align: center;
  background: rgba(245, 245, 245, 0.88);
  border-radius: 0.6rem;
}

.about-map-button {
  display: inline-block;
  margin-top: 0.75rem;
  border: 1px solid #000000;
  background: #000000;
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 140ms ease-out, color 140ms ease-out, border-color 140ms ease-out;
}

.about-map-button:hover {
  background: var(--color-accent-pink);
  border-color: var(--color-accent-pink);
  color: #ffffff;
}

.about-map-placeholder iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
}

body.about .glass-panel,
body.about .highlight-card {
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  color: var(--color-text-dark);
}

body.about .glass-panel p,
body.about .glass-panel li {
  text-align: left;
}

body.about footer {
  color: #000000;
}

body.about footer a {
  color: #000000;
}

body.about footer a:hover {
  color: var(--color-accent-pink);
}

body.about nav a.active {
  color: var(--color-accent-pink);
}

.about-row--contact {
  align-items: flex-start;
}

.about-photo--artist,
.about-photo--studio {
  border-radius: 0;
  border: 2px solid #000000;
}

@media (min-width: 801px) {
  .section-artist .about-row,
  .section-studio .about-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: start;
  }

  .about-photo-block--artist,
  .about-photo-block--studio {
    position: relative;
    aspect-ratio: 4 / 5;
    max-height: 480px;
    width: 100%;
    background: #f7f5f2;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-photo--artist,
  .about-photo--studio {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    border: 2px solid #000000;
  }

  .about-text-block--artist,
  .about-text-block--studio {
    padding: 0 0.5rem;
  }

  body.about .about-text-block--artist p,
  body.about .about-text-block--artist li,
  body.about .about-text-block--studio p,
  body.about .about-text-block--studio li {
    text-align: left;
  }
}

@media (max-width: 800px) {
  .section-artist .about-row,
  .section-studio .about-row {
    display: block;
  }

  .about-photo-block--artist,
  .about-photo-block--studio {
    max-width: 300px;
    max-height: none;
    margin: 0 auto 1rem;
  }

  .about-photo--artist,
  .about-photo--studio {
    display: block;
    width: 100%;
    height: auto;
  }
}

.about-contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-contact-top {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.about-contact-address,
.about-contact-hours {
  flex: 1 1 180px;
}

.about-contact-address h3,
.about-contact-hours h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-contact-address p,
.about-contact-hours p {
  margin: 0;
}

.about-contact-note {
  margin: 0.25rem 0 0;
}

.about-contact-cta {
  margin-top: 0.5rem;
}

.about-contact-socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-contact-socials a {
  border-bottom: none;
  padding-bottom: 0;
}

.about-contact-actions {
  list-style: disc;
  padding-left: 1.4rem;
  margin: 0.5rem 0 0;
}

.about-contact-actions li {
  display: list-item;
  list-style-type: disc;
  list-style-position: outside;
  margin-bottom: 0;
}

.about-contact-actions li::before {
  content: none;
}

.about-contact-actions strong {
  font-weight: 600;
}

.about-contact-quick {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.about-contact-inline-icons {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.about-contact-inline-icons svg {
  position: relative;
  top: 4px;
}

body.about .section-artist,
body.about .section-studio {
  margin-top: 2rem;
  margin-bottom: 0;
}

body.about .section-artist-gallery,
body.about .section-studio-gallery {
  margin-top: 2rem;
  margin-bottom: 0;
}

body.about .section-contact {
  margin-top: 2rem;
}

body.about .section-contact .about-contact-note {
  margin-top: 0;
  margin-bottom: 0;
}

@media (max-width: 800px) {
  body.about .section-artist .about-text-block p,
  body.about .section-studio .about-text-block p {
    margin-bottom: 16px;
  }
}


/* =====================================================
   CONTACT SECTION: MOBILE TWEAKS
   ===================================================== */

@media (max-width: 800px) {
  .section-contact .about-contact-top {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .section-contact .about-contact-address,
  .section-contact .about-contact-hours {
    flex: 0 0 auto;
    width: 100%;
    max-width: 360px;
  }

  .section-contact .about-contact-block.glass-panel p {
    text-align: center;
  }

  .section-contact .section-subtitle {
    text-align: center;
  }

  .section-contact .about-contact-address p,
  .section-contact .about-contact-hours p {
    margin-bottom: 0.2rem;
  }

  .section-contact .about-contact-note {
    margin-top: 0.3rem;
    margin-bottom: 0.4rem;
    text-align: justify;
  }

  .section-contact .about-contact-block {
    text-align: center;
  }

  .section-contact .about-contact-actions {
    display: inline-block;
    text-align: left;
    max-width: 260px;
    margin: 0.5rem auto 0;
    padding-left: 1.4rem;
    list-style: disc;
  }

  .section-contact .about-contact-actions li {
    display: list-item;
    list-style-position: outside;
    list-style-type: disc;
    margin-bottom: 0.3rem;
    line-height: 1.4;
  }

  .section-contact .about-contact-actions li *,
  .section-contact .about-contact-actions li {
    white-space: normal;
  }
}


/* =====================================================
   GALLERY TILES (HOME + LEGACY SECTION TILES)
   ===================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 0.6rem;
  overflow: hidden;
  border: 1px solid #252634;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out;
  display: flex;
  min-height: 180px;
}

.home .gallery-item--gallery {
  position: relative;
  overflow: hidden;
}

.home-gallery-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.home-gallery-carousel-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 400ms ease-out, transform 400ms ease-out;
  z-index: 0;
}

.home-gallery-carousel-image.is-visible {
  opacity: 1;
  transform: scale(1.0);
}

.home .gallery-item--gallery .gallery-item-info {
  position: relative;
  z-index: 1;
}

.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.gallery-item--about {
  background-image: url("../assets/images/about/thumbnails/studio-photo_thumb.jpg");
}

.gallery-item--faq {
  background-image: url("../assets/images/backgrounds/thumbnails/background_faq_thumb.jpg");
  color: #000000;
}

.gallery-item--aftercare {
  background-image: url("../assets/images/backgrounds/thumbnails/background_terms_thumb.jpg");
}

.gallery-item-link {
  display: flex;
  flex: 1;
  color: inherit;
}

.gallery-item-link:link,
.gallery-item-link:visited {
  text-decoration: none;
}

.gallery-item-link:hover {
  filter: brightness(1.05);
}

.gallery-item-info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}

.gallery-item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gallery-item-title {
  font-size: 0.95rem;
  letter-spacing: 0.09em;
  margin: 0;
}

.gallery-item-title + .gallery-item-title {
  margin-top: 0.15rem;
}

.gallery-item-tags {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
}

.gallery-item-tag {
  margin: 0;
}

.gallery-item-tag + .gallery-item-tag {
  margin-top: 0.15rem;
}

.gallery-item-info p,
.gallery-item-info span,
.gallery-item-info .gallery-item-cta {
  text-transform: none;
}

.gallery-item-cta {
  margin-top: 0.4rem;
}

.gallery-item-link:hover .gallery-item-cta {
  text-decoration: underline;
}


/* =====================================================
   LIGHTBOX (ABOUT PAGE + GALLERY)
   ===================================================== */

.about-gallery-link {
  display: block;
  cursor: zoom-in;
}

.about-gallery-link img {
  transition: transform 150ms ease-out, box-shadow 150ms ease-out;
}

.about-gallery-link:hover img {
  transform: scale(1.02);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease-out;
  z-index: 9999;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  cursor: zoom-out;
}

.lightbox-content {
  position: relative;
  z-index: 1;
}

.lightbox-content img {
  display: block;
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  margin: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

@media (max-width: 600px) {
  .lightbox-content img {
    max-width: 94vw;
    max-height: 90vh;
  }
}

.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #ffffff;
  background: transparent;
  border: none;
  padding: 0.2rem 0.5rem;
  cursor: pointer;
  z-index: 10000;
}

.lightbox-close:hover {
  color: var(--color-accent-pink);
}

body.lightbox-open {
  overflow: hidden;
}


/* =====================================================
   GALLERY PAGE (body.gallery)
   ===================================================== */

body.gallery {
  background-color: #ffffff;
  background-image: none;
  color: var(--color-text-dark);
}

body.gallery .section-gallery-main {
  margin-top: 2rem;
}

body.gallery .gallery-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

body.gallery .gallery-title {
  margin-bottom: 0.5rem;
}

body.gallery .gallery-subtitle {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

body.gallery .gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

body.gallery .gallery-filter-btn {
  border: 1px solid #000000;
  background: #000000;
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 140ms ease-out, color 140ms ease-out, border-color 140ms ease-out;
}

body.gallery .gallery-filter-btn:hover,
body.gallery .gallery-filter-btn.is-active {
  background: var(--color-accent-pink);
  border-color: var(--color-accent-pink);
  color: #ffffff;
}

body.gallery .gallery-source {
  display: none;
}

body.gallery .gallery-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

body.gallery .gallery-column {
  display: block;
}

body.gallery .gallery-column .gallery-item + .gallery-item {
  margin-top: 1rem;
}

body.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.6rem;
  border: none;
  padding: 0;
  background: transparent;
  min-height: 0;
  display: block;
}

body.gallery .gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.6rem;
}

body.gallery .gallery-item-link {
  display: block;
  cursor: zoom-in;
}

body.gallery .gallery-item-link img {
  transition: transform 150ms ease-out, box-shadow 150ms ease-out;
}

body.gallery .gallery-item-link:hover img {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1100px) {
  body.gallery .gallery-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  body.gallery .gallery-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 500px) {
  body.gallery .gallery-columns {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* =====================================================
   CATALOG PAGE (shop-like gallery)
   ===================================================== */

body.catalog {
  background-color: #ffffff;
  background-image: none;
  color: var(--color-text-dark);
}

/* Mirror gallery: section starts a little under header */
body.catalog .catalog-main {
  margin-top: 2rem;
}

body.catalog .catalog-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

body.catalog .catalog-title {
  margin-bottom: 0.5rem;
}

body.catalog .catalog-subtitle {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

/* Filters – same feeling as gallery filters */
body.catalog .catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

body.catalog .catalog-filter-btn {
  border: 1px solid #000000;
  background: #000000;
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 140ms ease-out, color 140ms ease-out, border-color 140ms ease-out;
}

body.catalog .catalog-filter-btn:hover,
body.catalog .catalog-filter-btn.is-active {
  background: var(--color-accent-pink);
  border-color: var(--color-accent-pink);
  color: #ffffff;
}

/* Two-column grid, even distribution */
body.catalog .catalog-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

body.catalog .catalog-item {
  position: relative;
  border-radius: 0.6rem;
  overflow: hidden;
  border: 1px solid #252634;
  background: rgba(0, 0, 0, 0.02);
  display: block;
  flex-direction: column;
}

@media (max-width: 800px) {
  body.catalog .catalog-columns {
    grid-template-columns: minmax(0, 1fr);
  }
}

body.catalog .catalog-item-link {
  display: block;
  cursor: zoom-in;
}

body.catalog .catalog-item-link img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain; /* show full image, keep ratio */
  transition: transform 150ms ease-out, box-shadow 150ms ease-out;
}

body.catalog .catalog-item-link:hover img {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

body.catalog .catalog-item-info {
  padding: 0.8rem 0.9rem 1rem;
}

body.catalog .catalog-item-title {
  font-size: 0.95rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin: 0 0 0.3rem;
}

body.catalog .catalog-item-description {
  font-size: 0.85rem;
  margin: 0 0 0.4rem;
}

body.catalog .catalog-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
}

body.catalog .catalog-meta li + li {
  margin-top: 0.15rem;
}

body.catalog .catalog-badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.catalog .catalog-badge-archived {
  background: #999999;
  color: #ffffff;
}

/* Subtle pill-style button for catalog enquiries */
body.catalog .catalog-enquire-link {
  display: inline-block;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background: #ffffff;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  margin-top: 0.25rem;
  transition: background 140ms ease-out,
              color 140ms ease-out,
              border-color 140ms ease-out,
              box-shadow 140ms ease-out;
}

/* If you kept .btn on these links, neutralize the .btn look in catalog */
body.catalog .btn.catalog-enquire-link {
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  text-shadow: none;
  color: #000000;
  backdrop-filter: none;
}

/* Hover: slightly stronger border + subtle background tint */
body.catalog .catalog-enquire-link:hover {
  background: #000000;
  color: var(--color-accent-pink);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

/* Make sure catalog container doesn’t add panel background */
body.catalog .framed-content > .container {
  background: transparent;
  margin: 0 auto;
  padding: 0 1.5rem;
}

body.catalog .catalog-header,
body.catalog .catalog-main {
  background: transparent;
}

/* CATALOG masonry columns */
body.catalog .catalog-columns {
  display: grid; /* grid just to align columns horizontally */
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

body.catalog .catalog-column {
  display: block;
}

body.catalog .catalog-column .catalog-item + .catalog-item {
  margin-top: 1.25rem;
}

body.catalog .catalog-source {
  display: none;
}

@media (max-width: 800px) {
  body.catalog .catalog-columns {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  body.catalog .catalog-main {
    margin-top: 1.5rem;
  }
}


/* =====================================================
   EXTRA MOBILE TWEAKS (HOME HERO, SECTIONS, HEADER)
   ===================================================== */

@media (max-width: 600px) {
  .hero-title {
    font-size: 2rem;
    letter-spacing: 0.08em;
  }

  .hero {
    padding: 3rem 0;
  }

  nav ul {
    gap: 0.6rem;
  }

  .section {
    margin-top: 2rem;
  }

  .social-icons a img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 800px) {
  .section--explore-studio .section-heading {
    text-align: center;
  }

  body.about .about-text-block--artist .section-heading,
  body.about .about-text-block--artist .section-subtitle,
  body.about .about-text-block--studio .section-heading,
  body.about .about-text-block--studio .section-subtitle {
    text-align: center;
  }

  .section-contact .section-subtitle {
    margin-bottom: 0.75rem;
  }
}

html,
body {
  height: 100%;
}

@media (max-width: 800px) {
  /* 1) Turn OFF body background images for all non-home bg pages */
  body.faq,
  body.terms,
  body.booking,
  body.aftercare,
  body.privacy {
    position: relative;          /* ensure safe stacking */
    background-image: none;      /* kill body bg image on mobile */
    background-color: #000000;   /* keep solid fallback */
  }

  /* 2) Fixed full-screen background layer */
  .page-bg-fixed {
    position: fixed;
    inset: 0;                    /* top:0; right:0; bottom:0; left:0; */
    z-index: -1;                 /* sit behind content */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  /* 3) Per-page images for that fixed layer */
  body.faq .page-bg-fixed {
    background-image: url("../assets/images/backgrounds/full-size/background_faq_full.jpg");
  }

  body.terms .page-bg-fixed {
    background-image: url("../assets/images/backgrounds/full-size/background_terms_full.jpg");
  }

  body.booking .page-bg-fixed {
    background-image: url("../assets/images/backgrounds/full-size/background_booking_full.jpg");
  }

  body.aftercare .page-bg-fixed {
    background-image: url("../assets/images/backgrounds/full-size/background_terms_full.jpg");
  }

  body.privacy .page-bg-fixed {
    background-image: url("../assets/images/backgrounds/full-size/background_terms_full.jpg");
  }
}