:root {
  --cream: #f7f3ed;
  --cream-dark: #efe8dc;
  --gold: #b8956a;
  --gold-light: #d4b896;
  --gold-dark: #9a7a52;
  --text-dark: #2c2c2c;
  --text-muted: #5a5a5a;
  --footer-green: #1e3d38;
  --footer-green-light: #2a5249;
  --navy: #0a1628;
  --mockup-gold: #c5a06b;
  --ow-hero-sky: #e8e0d6;
  --white: #ffffff;
  --serif: "Cormorant Garamond", "Georgia", serif;
  --sans: "Montserrat", "Segoe UI", sans-serif;
  --header-height: 11.2rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 62.5%;
}

body {
  font-family: var(--sans);
  font-size: 1.6rem;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

body.page-home .site-header.scrolled {
  background: color-mix(in srgb, var(--cream-dark) 97%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(197, 160, 107, 0.28), 0 4px 20px rgba(10, 22, 40, 0.06);
}

body.page-home .site-header.scrolled .site-nav a {
  color: var(--navy);
}

body.page-home .site-header.scrolled .site-nav a:hover,
body.page-home .site-header.scrolled .site-nav a.active {
  color: var(--mockup-gold);
}

body.page-home .site-header.scrolled .site-nav a.active {
  border-bottom-color: var(--mockup-gold);
}

body.page-home .site-header.scrolled .btn-enquire {
  background: var(--mockup-gold);
  border-color: var(--mockup-gold);
  color: var(--navy);
}

body.page-home .site-header.scrolled .btn-enquire:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
}

body.page-home .site-header.scrolled .menu-toggle {
  border-color: rgba(10, 22, 40, 0.22);
  color: var(--navy);
}

body.page-home .site-header.scrolled .brand-logo {
  filter: drop-shadow(0 2px 10px rgba(10, 22, 40, 0.14));
}

/* Faint top gradient on Home — improves logo/nav readability over video hero */
body.page-home .site-header:not(.scrolled)::before {
  content: "";
  position: absolute;
  inset: 0;
  bottom: -5rem;
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 40, 0.32) 0%,
    rgba(10, 22, 40, 0.28) 55%,
    transparent 100%
  );
  z-index: -1;
  pointer-events: none;
}

/* ── Site header (over hero) ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 2rem;
  padding: 1.4rem clamp(2.4rem, 4.5vw, 5.5rem);
  padding-top: max(1.4rem, env(safe-area-inset-top));
  transition: background 0.3s ease, box-shadow 0.3s ease;
  overflow: visible;
}

.site-header .brand {
  grid-column: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header .site-nav {
  grid-column: 2;
  justify-self: center;
}

.site-header .btn-enquire,
.site-header .menu-toggle {
  grid-column: 3;
  justify-self: end;
}

.site-header .brand img {
  display: block;
  height: 8.2rem;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  margin-left: -1.4rem;
}

.site-header.scrolled {
  background: rgba(30, 61, 56, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

body.inner-page .site-header {
  background: rgba(30, 61, 56, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.site-header .brand-text {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--white);
  line-height: 1.15;
}

.site-header .brand-text span {
  display: block;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  font-weight: 400;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.site-nav a {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold-light);
}

.site-nav a.active {
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 0.3rem;
}

.btn-enquire {
  display: inline-block;
  padding: 1rem 2.4rem;
  border: 1px solid var(--gold);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}

.btn-enquire:hover {
  background: var(--gold);
  color: var(--white);
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  font-size: 2.2rem;
  padding: 0.4rem 1rem;
  cursor: pointer;
  border-radius: 4px;
}

/* ── Hero + Philosophy seamless merge ── */
.hero-philosophy-merge {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}

/* ── Hero (beach video + cinematic reveal) ── */
.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-flow: column;
  position: relative;
  z-index: 2;
  overflow: visible;
  padding-top: clamp(11rem, 17vh, 15rem);
  margin-bottom: -34vh;
  background: transparent;
}

.home::after {
  display: none;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(10, 22, 40, 0.38) 0%,
      rgba(10, 22, 40, 0.18) 34%,
      rgba(10, 22, 40, 0.06) 48%,
      transparent 58%
    );
  opacity: 0;
  animation: heroOverlayIn 1.4s ease forwards;
}

.home .video-container {
  position: absolute;
  inset: 0;
  z-index: -1;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 66%,
    rgba(0, 0, 0, 0.94) 74%,
    rgba(0, 0, 0, 0.78) 80%,
    rgba(0, 0, 0, 0.55) 86%,
    rgba(0, 0, 0, 0.32) 91%,
    rgba(0, 0, 0, 0.14) 95%,
    rgba(0, 0, 0, 0.04) 98%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 66%,
    rgba(0, 0, 0, 0.94) 74%,
    rgba(0, 0, 0, 0.78) 80%,
    rgba(0, 0, 0, 0.55) 86%,
    rgba(0, 0, 0, 0.32) 91%,
    rgba(0, 0, 0, 0.14) 95%,
    rgba(0, 0, 0, 0.04) 98%,
    transparent 100%
  );
}

.home .content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 2rem 2.5rem;
  margin-top: 0;
  max-width: 960px;
}

.home .content::before {
  display: none;
}

.home .content h3 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  color: var(--white);
  text-transform: uppercase;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.35),
    0 0.35rem 1.2rem rgba(0, 0, 0, 0.45);
  letter-spacing: 0.05em;
  max-width: 900px;
  margin: 0 auto;
}

.home .content .hero-gold {
  color: var(--gold-light);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.4),
    0 0.3rem 1rem rgba(0, 0, 0, 0.45);
}

.home .content .hero-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.96);
  padding: 1rem 0 1.6rem;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.35),
    0 0.3rem 1rem rgba(0, 0, 0, 0.4);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.home .content .hero-quote-mark {
  color: var(--gold-light);
  font-style: normal;
  font-size: 1.15em;
  line-height: 0;
  vertical-align: -0.1em;
}

.home .hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  max-width: 280px;
  margin: 0 auto;
}

.home .hero-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
  transform-origin: center;
}

.home .hero-divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.home .video-container video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: brightness(1.12) saturate(1.04);
}

/* Cinematic reveal sequence */
@keyframes heroRevealUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDividerReveal {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroOverlayIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-reveal {
  opacity: 0;
  animation: heroRevealUp 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-reveal--1 {
  animation-delay: 0.7s;
}

.hero-reveal--2 {
  animation-delay: 1.6s;
}

.hero-reveal--3 {
  animation: heroDividerReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 2.5s;
}

.hero-reveal--3 .hero-divider-line {
  animation: heroDividerLineGrow 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 2.7s;
  opacity: 0;
  transform: scaleX(0);
}

@keyframes heroDividerLineGrow {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-overlay,
  .hero-reveal,
  .hero-reveal--3 .hero-divider-line {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Philosophy (sections from Word doc) ── */
.philosophy-belief {
  position: relative;
  overflow: visible;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: transparent;
  margin-top: 0;
  padding-top: 34vh;
  z-index: 1;
}

.philosophy-belief::before {
  display: none;
}

.philosophy-belief-media {
  position: absolute;
  top: -34vh;
  left: 0;
  right: 0;
  height: calc(100% + 34vh);
  z-index: 0;
}

.philosophy-belief-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.philosophy-belief-image--mobile {
  display: none;
}

.philosophy-belief-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 4rem 6% 4rem 7%;
}

.philosophy-belief-copy {
  width: min(56%, 62rem);
  max-width: 100%;
  padding: 0;
  margin-right: auto;
}

.philosophy-belief-intro {
  margin-bottom: 2.4rem;
}

.philosophy-belief-eyebrow {
  font-family: var(--sans);
  font-size: clamp(1.2rem, 1.3vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mockup-gold);
  margin-bottom: 1.4rem;
}

.philosophy-belief-rule {
  display: block;
  width: 5rem;
  height: 1px;
  background: var(--mockup-gold);
  margin-bottom: 1.6rem;
}

.philosophy-belief-lead {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 1.7vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 34rem;
}

.philosophy-belief-headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 3.6vw, 4rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin-bottom: 2rem;
  max-width: 46rem;
}

.philosophy-belief-body {
  font-family: var(--sans);
  font-size: clamp(1.4rem, 1.45vw, 1.52rem);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 44rem;
  margin-bottom: 2.8rem;
}

.philosophy-belief-closing {
  padding-top: 2.2rem;
  border-top: 1px solid rgba(197, 160, 107, 0.4);
  max-width: 40rem;
}

.philosophy-belief-closing-text {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 1.55vw, 1.6rem);
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.philosophy-shadow-name {
  font-family: "Playfair Display", var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  color: var(--navy);
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.philosophy-pillars-wrap {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-aside {
  padding-top: 0.4rem;
}

.philosophy-label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mockup-gold);
  margin-bottom: 1.4rem;
}

.philosophy-aside-tag {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 16rem;
}

.philosophy-pillars {
  padding: 7rem 5% 8rem 8%;
  background: var(--cream);
  color: var(--text-dark);
}

.philosophy-pillars-header {
  text-align: center;
  margin: 0 auto 4.5rem;
  max-width: 52rem;
}

.philosophy-pillars-header h2 {
  margin-bottom: 0;
}

.philosophy-pillars-sub,
main .home-section-sub,
.testimonials-section-sub {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 1.75vw, 1.85rem);
  font-style: italic;
  font-weight: 400;
  color: var(--mockup-gold);
  line-height: 1.55;
  margin-top: 1.4rem;
}

.philosophy-pillars-sub,
main .home-section-sub {
  margin: 1.4rem auto 4.5rem;
  max-width: 52rem;
  text-align: center;
}

.testimonials-section-sub {
  margin: 1.4rem auto 3.5rem;
  max-width: 560px;
  text-align: center;
}

/* Home — section titles (match Shadow Philosophy heading) */
main .home-section-title,
.philosophy-pillars-header h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  font-weight: 500;
  color: var(--navy);
  text-align: center;
  line-height: 1.15;
  letter-spacing: normal;
  text-transform: none;
  margin-bottom: 0;
  display: block;
}

.what-we-do > .home-section-title,
.why-exploremore > .home-section-title,
.across-borders > .home-section-title {
  margin-bottom: 4.5rem;
}

/* Home — column titles & text (match Shadow Philosophy pillars) */
.philosophy-pillar h3,
.what-card h3,
.why-item h4,
.border-item h4 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--mockup-gold);
  margin-bottom: 1.2rem;
  letter-spacing: normal;
  text-transform: none;
  line-height: 1.3;
}

.philosophy-pillar p,
.what-card p,
.border-item p {
  font-size: 1.35rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 22rem;
  margin: 0 auto;
}

.philosophy-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.philosophy-pillars-grid--five {
  grid-template-columns: repeat(5, 1fr);
  max-width: 1400px;
}

.philosophy-pillars-grid--five .philosophy-pillar {
  padding: 0 1.25rem 1rem;
}

.philosophy-pillar {
  text-align: center;
  padding: 0 2rem 1rem;
  border-right: 1px solid rgba(197, 160, 107, 0.35);
}

.philosophy-pillar:last-child {
  border-right: none;
}

.philosophy-pillar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 7rem;
  margin-bottom: 1.6rem;
}

.philosophy-pillar-icon img {
  width: 5.6rem;
  height: 5.6rem;
  margin: 0 auto;
}

/* pillar h3/p — see Home column typography block above */

/* ── Section utilities ── */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0 1rem;
  background: var(--cream);
}

.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  max-width: 45%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
}

.section-divider .diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  margin: 0 1.5rem;
}

.section-label {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 1.75vw, 1.85rem);
  font-style: italic;
  font-weight: 400;
  text-align: center;
  color: var(--mockup-gold);
  line-height: 1.55;
  margin: -2.5rem auto 4.5rem;
  max-width: 52rem;
  letter-spacing: normal;
}

/* ── Home: From the Founder ── */
.home-founder {
  padding: 6rem 5% 6rem;
  background: var(--cream-dark);
  overflow: visible;
}

.home-founder-inner {
  display: grid;
  grid-template-columns: minmax(260px, 34%) 1fr;
  gap: clamp(2.5rem, 4vw, 5rem) clamp(3rem, 5vw, 6rem);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  overflow: visible;
}

.home-founder .founder-photo {
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 28%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  justify-self: start;
  transform: translateX(calc(-1 * min(4vw, 2.5rem)));
}

.home-founder-text {
  text-align: left;
  min-width: 0;
}

.home-founder-text .section-label {
  text-align: left;
  margin-bottom: 1.5rem;
}

.home-founder h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.2vw, 3.4rem);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 2rem;
  color: var(--text-dark);
  text-align: left;
}

.home-founder p {
  font-size: 1.5rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  text-align: left;
  max-width: none;
}

.home-founder p:last-of-type {
  margin-bottom: 0;
}

.home-founder .founder-signoff {
  margin-top: 2.5rem;
}

/* ── What We Do ── */
.what-we-do {
  padding: 5rem 5% 6rem;
  background: var(--cream);
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.what-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.what-card .icon {
  font-size: 3.2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

/* what-card h3/p — see Home column typography block above */

/* ── Our Promise (editorial) ── */
.our-promise {
  background: #f8f4ee;
  padding: 7.5rem 6%;
}

.our-promise-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.our-promise-header {
  text-align: center;
  margin: 0 auto clamp(4.5rem, 7vw, 6rem);
  max-width: 58rem;
  padding: 0;
}

.our-promise .home-section-title {
  font-size: clamp(2.65rem, 3.6vw, 3.85rem);
}

.our-promise .home-section-sub {
  font-size: clamp(1.65rem, 1.95vw, 2.05rem);
  max-width: 58rem;
  margin-left: auto;
  margin-right: auto;
}

.our-promise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(4rem, 8vw, 7.5rem);
  row-gap: clamp(4rem, 6vw, 5.5rem);
  width: 100%;
}

.our-promise-block {
  padding: 0;
  width: 100%;
}

.our-promise-block::before {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  background: #c8a15a;
  margin-bottom: 1.75rem;
}

.our-promise-block h3 {
  font-family: var(--serif);
  font-size: clamp(1.95rem, 2.1vw, 2.15rem);
  font-weight: 500;
  color: var(--mockup-gold);
  margin-bottom: 1.35rem;
  letter-spacing: normal;
  text-transform: none;
  line-height: 1.35;
}

.our-promise-block p {
  font-size: clamp(1.45rem, 1.55vw, 1.55rem);
  line-height: 1.8;
  color: var(--text-muted);
  max-width: none;
  width: 100%;
  margin: 0;
}

.promise-reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.promise-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .promise-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Signature India Experiences (inner pages) ── */
.signature-experiences {
  padding: 2rem 5% 6rem;
  background: var(--cream);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.experience-card {
  position: relative;
  aspect-ratio: 2 / 3.2;
  overflow: hidden;
  cursor: pointer;
}

.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.experience-card:hover img {
  transform: scale(1.05);
}

.experience-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem;
}

.experience-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.experience-card .explore-link {
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  text-transform: uppercase;
}

/* ── Why Exploremore Vacations ── */
.why-exploremore {
  padding: 5rem 5% 6rem;
  background: var(--cream-dark);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.why-item .icon {
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

/* why-item h4 — see Home column typography block above */

/* ── Personal Note ── */
.personal-note {
  padding: 6rem 5%;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.personal-note::after {
  content: "";
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 35%;
  height: 80%;
  background: url("../../images/logo-removebg.png") center/contain no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.personal-note-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 1;
}

.personal-note .founder-photo {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.personal-note .note-label {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}

.personal-note h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.personal-note p {
  font-size: 1.5rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.personal-note .signature {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--text-dark);
  margin: 2rem 0;
}

.btn-outline {
  display: inline-block;
  padding: 1.2rem 2.8rem;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* ── Video placeholder ── */
.video-placeholder {
  margin-top: 3rem;
  aspect-ratio: 16 / 9;
  max-width: 700px;
  background: linear-gradient(135deg, var(--cream-dark), #ddd5c8);
  border: 1px dashed var(--gold-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-muted);
}

.video-placeholder .play-icon {
  width: 6rem;
  height: 6rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
}

.video-placeholder p {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Across Borders ── */
.across-borders {
  padding: 6rem 5%;
  background: var(--cream);
}

.borders-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.border-item {
  text-align: center;
  padding: 2rem 1rem;
}

.border-item .icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

/* border-item h4/p — see Home column typography block above */

/* ── Footer CTA ── */
.footer-cta {
  background: var(--cream-dark);
  padding: 5rem 5%;
  text-align: center;
  border-top: 1px solid rgba(197, 160, 107, 0.35);
}

.footer-cta p {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--navy);
  line-height: 1.5;
}

.footer-cta .highlight {
  color: var(--mockup-gold);
  font-style: italic;
}

/* ── Site footer ── */
.site-footer {
  background: var(--cream-dark);
  color: var(--text-muted);
  padding: 0 5% 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(12rem, 0.9fr) 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 4rem 0 3rem;
  border-top: 1px solid rgba(197, 160, 107, 0.35);
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  max-width: 16rem;
}

.footer-brand > img {
  display: block;
  height: auto;
  width: auto;
  max-height: 5.5rem;
  max-width: 14rem;
  object-fit: contain;
  margin: 0;
}

.footer-brand p {
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  color: var(--mockup-gold);
  line-height: 1.3;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0.15rem;
  visibility: visible;
  opacity: 1;
  position: relative;
  z-index: 2;
}

.footer-social a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  padding: 0.15rem;
  border-radius: 0;
  background: transparent !important;
  color: var(--navy) !important;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: color 0.2s ease, opacity 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.footer-social a i,
.footer-social a .fa-brands,
.footer-social a [class^="fa-"] {
  display: inline-block !important;
  color: var(--navy) !important;
  font-size: 1rem;
  line-height: 1;
  width: auto;
  height: auto;
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-font-smoothing: antialiased;
}

.footer-social a svg {
  display: block;
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  min-height: 1rem;
  fill: var(--navy);
  color: var(--navy);
  flex-shrink: 0;
  overflow: visible;
}

.footer-social a svg path {
  fill: var(--navy) !important;
}

.footer-social a:hover {
  background: transparent !important;
  color: var(--navy) !important;
  opacity: 0.7 !important;
  transform: none;
}

.footer-social a:hover i {
  color: var(--navy) !important;
}

.footer-social a img {
  width: 1rem;
  height: 1rem;
  opacity: 1;
  transition: opacity 0.2s;
  filter: none;
}

.footer-social a:hover img {
  opacity: 0.7;
}

/* Keep footer icons identical on Home and all other pages */
body.page-home .footer-social,
body.page-world .footer-social,
body.page-music .footer-social,
body.page-contact .footer-social,
body.page-enquire .footer-social,
body.inner-page .footer-social {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

body.page-home .footer-social a,
body.page-world .footer-social a,
body.page-music .footer-social a,
body.page-contact .footer-social a,
body.page-enquire .footer-social a,
body.inner-page .footer-social a {
  background: transparent !important;
  color: var(--navy) !important;
}

body.page-home .footer-social a i,
body.page-world .footer-social a i,
body.page-music .footer-social a i,
body.page-contact .footer-social a i,
body.page-enquire .footer-social a i,
body.inner-page .footer-social a i {
  color: var(--navy) !important;
}

.footer-col h4 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mockup-gold);
  margin-bottom: 1.5rem;
}

.footer-col a {
  display: block;
  font-size: 1.35rem;
  padding: 0.4rem 0;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--navy);
}

.newsletter-form {
  display: flex;
  border-bottom: 1px solid rgba(10, 22, 40, 0.2);
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--navy);
  font-size: 1.3rem;
  padding: 0.8rem 0;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(10, 22, 40, 0.45);
}

.newsletter-form button {
  background: none;
  border: none;
  color: var(--mockup-gold);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(197, 160, 107, 0.35);
  font-size: 1.2rem;
  color: rgba(10, 22, 40, 0.55);
}

/* ── WhatsApp ── */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

.wa-text {
  position: absolute;
  bottom: 70px;
  right: 0;
  background-color: #25d366;
  color: #fff;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.whatsapp-float:hover .wa-text {
  opacity: 1;
  transform: translateY(0);
}

/* ── Inner page hero (India Through Music, etc.) ── */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12rem 5% 6rem;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30, 61, 56, 0.55) 0%,
    rgba(30, 61, 56, 0.7) 100%
  );
  z-index: 1;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-hero .section-label {
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5vw, 5.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.page-hero .lead {
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto;
}

/* India Through Music hero — matches Word file mockup exactly */
.page-hero--music {
  display: block;
  text-align: left;
  min-height: 88vh;
  padding: 0;
  margin-top: 0;
  background: #1a1410;
}

.page-hero--music::before {
  display: none;
}

.page-hero--music .page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.page-hero--music .page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(20, 14, 10, 0.82) 0%,
    rgba(20, 14, 10, 0.55) 38%,
    rgba(20, 14, 10, 0.15) 68%,
    rgba(20, 14, 10, 0.05) 100%
  );
}

.page-hero--music .page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 14rem 5% 8rem 8%;
  margin: 0;
  text-align: left;
}

.page-hero--music .hero-eyebrow {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c5a06b;
  margin-bottom: 2.4rem;
}

.page-hero--music h1 {
  font-family: var(--serif);
  font-size: clamp(3.6rem, 4.8vw, 5.6rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.12;
  margin-bottom: 2.4rem;
  text-align: left;
}

.page-hero--music h1 .headline-gold {
  color: #c5a06b;
  font-style: normal;
}

.page-hero--music .hero-lead {
  font-family: var(--sans);
  font-size: 1.45rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.85;
  max-width: 500px;
  margin: 0 0 1rem;
  text-align: left;
}

.page-hero--music .hero-btn {
  display: inline-block;
  margin-top: 2.4rem;
  padding: 1.2rem 2.8rem;
  border: 1px solid #c5a06b;
  background: transparent;
  color: #c5a06b;
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}

.page-hero--music .hero-btn:hover {
  background: #c5a06b;
  color: #1a1410;
}

.page-hero--music .hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.page-hero--music .hero-scroll i {
  font-size: 1.2rem;
  color: #c5a06b;
}

/* Legacy — music page no longer uses transparent header */

/* ── Music page: intro ── */
.music-intro {
  padding: 6rem 5%;
  background: var(--cream);
  text-align: center;
}

.music-intro .intro-text {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.7rem;
  color: var(--text-muted);
  line-height: 1.9;
}

/* ── Music page: founder ── */
.music-founder {
  padding: 6rem 5% 6rem 8%;
  background: var(--cream-dark);
}

.music-founder-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem 5rem;
  width: 100%;
  max-width: none;
  margin: 0;
  align-items: start;
}

.music-founder .founder-photo {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.music-founder-text {
  text-align: left;
}

.music-founder-text .section-label {
  text-align: left;
  margin-bottom: 1.5rem;
}

.music-founder h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 3.5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 2rem;
  color: var(--text-dark);
  text-align: left;
}

.music-founder p {
  font-size: 1.5rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  text-align: left;
  max-width: none;
}

.founder-signoff {
  margin-top: 3rem;
}

.founder-signature {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.2vw, 3.2rem);
  font-weight: 500;
  font-style: italic;
  color: #2d2926;
  line-height: 1.2;
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

.founder-title {
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 400;
  color: #5a5a5a;
  letter-spacing: 0.02em;
  margin: 0;
}

/* ── Music page: pillars / icons (Word mockup) ── */
.music-icons {
  padding: 4.5rem 0;
  background: #0a1628;
}

.music-icons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 100%;
  max-width: none;
  margin: 0;
}

.music-icon-card {
  text-align: center;
  padding: 2rem 2.5rem 2.5rem;
  border: none;
  background: transparent;
  position: relative;
}

.music-icon-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  width: 1px;
  height: 80%;
  background: rgba(197, 160, 107, 0.35);
}

.music-icon-card:hover {
  box-shadow: none;
  transform: none;
}

.pillar-icon {
  width: 6.4rem;
  height: 6.4rem;
  margin: 0 auto 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon img,
.pillar-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.music-icons--dark .music-icon-card h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  color: #c5a06b;
  line-height: 1.45;
}

.music-icons--dark .music-icon-card p {
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  max-width: 220px;
  margin: 0 auto;
}

.music-icons--dark {
  background: #0a1628;
}

.section-divider--dark {
  background: #0a1628;
}

.section-divider--dark::before,
.section-divider--dark::after {
  background: linear-gradient(to right, transparent, rgba(197, 160, 107, 0.45), transparent);
}

/* ── Music page: Sound of India (Word mockup) ── */
.sound-of-india {
  padding: 6rem 5% 6rem 8%;
  background: var(--cream);
  color: var(--text-dark);
  text-align: left;
}

.sound-of-india-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem 5rem;
  width: 100%;
  max-width: none;
  margin: 0;
  align-items: center;
}

.sound-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.sound-eyebrow-line {
  flex: 1;
  max-width: 4rem;
  height: 1px;
  background: #c5a06b;
}

.sound-eyebrow-diamond {
  width: 6px;
  height: 6px;
  background: #c5a06b;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.sound-eyebrow {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c5a06b;
  white-space: nowrap;
  margin: 0;
}

.sound-of-india-text h2 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 3.8vw, 4rem);
  font-weight: 500;
  color: #2d2926;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.sound-body {
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.sound-body:last-of-type {
  margin-bottom: 2rem;
}

.sound-credit {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 520px;
  opacity: 0.9;
}

.sound-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #efe8dc 0%, #e8dfd0 45%, #d9cbb8 100%);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.sound-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--cream-dark);
  /* Soften video into cream / gold page palette */
  filter: sepia(0.45) saturate(0.55) brightness(1.05) contrast(0.92);
  opacity: 0.72;
}

.sound-video-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(247, 243, 237, 0.55) 0%,
    rgba(197, 160, 107, 0.28) 42%,
    rgba(239, 232, 220, 0.62) 100%
  );
  mix-blend-mode: soft-light;
}

.sound-video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(247, 243, 237, 0.5) 0%,
    rgba(247, 243, 237, 0.12) 45%,
    rgba(197, 160, 107, 0.18) 100%
  );
}

.sound-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: rgba(247, 243, 237, 0.22);
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: default;
  z-index: 2;
  pointer-events: none;
}

.sound-video-overlay:hover {
  background: rgba(247, 243, 237, 0.22);
}

.sound-video-overlay:hover .sound-play-btn {
  background: rgba(247, 243, 237, 0.82);
  color: var(--navy);
}

.sound-video-overlay:focus-visible {
  outline: 2px solid #c5a06b;
  outline-offset: -4px;
}

.sound-video-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.sound-play-circle {
  width: 7rem;
  height: 7rem;
  border: 2px solid rgba(197, 160, 107, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 243, 237, 0.55);
  color: var(--navy);
  font-size: 2rem;
  padding-left: 0.4rem;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(26, 36, 48, 0.12);
}

.sound-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 2.4rem;
  border: 1px solid #c5a06b;
  background: rgba(10, 8, 6, 0.55);
  color: #c5a06b;
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  pointer-events: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.sound-play-btn--stay-tuned {
  background: rgba(247, 243, 237, 0.88);
  color: var(--navy);
  border-color: rgba(197, 160, 107, 0.85);
  letter-spacing: 0.22em;
  padding: 1.25rem 2.8rem;
  font-size: 1.2rem;
  box-shadow: 0 8px 28px rgba(26, 36, 48, 0.12);
}

.sound-play-btn i {
  font-size: 0.9rem;
}

.sound-video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  z-index: 1;
  pointer-events: none;
}

.sound-video-wrap.is-playing .sound-video-controls {
  opacity: 0;
  transition: opacity 0.3s;
}

.sound-progress {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  overflow: hidden;
}

.sound-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: #c5a06b;
}

.sound-time {
  font-family: var(--sans);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
}

.sound-video-wrap.is-playing .sound-video {
  z-index: 1;
}

/* ── Music page: The Soundtrack of India (signature editorial) ── */
.soundtrack-india {
  background: #f8f4ee;
  padding: 15rem 6% 16rem;
}

.soundtrack-india-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.soundtrack-india-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 26rem) minmax(0, 1fr);
  gap: clamp(3rem, 4.5vw, 5.5rem);
  align-items: start;
}

.soundtrack-india-main {
  min-width: 0;
  text-align: center;
}

.soundtrack-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.soundtrack-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.soundtrack-title-divider {
  display: block;
  width: 4.5rem;
  height: 1px;
  background: #c8a15a;
  margin: 0 auto 2.5rem;
}

.soundtrack-india-header {
  max-width: 62rem;
  margin: 0 auto 7rem;
}

.soundtrack-india-label {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 2.2vw, 2.35rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c8a15a;
  margin-bottom: 2rem;
  line-height: 1.25;
}

.soundtrack-india-lead {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 1.75vw, 1.85rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: #0d1b2a;
  margin-bottom: 3rem;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.soundtrack-india-intro {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  max-width: 62rem;
  margin: 0 auto;
}

.soundtrack-india-intro p {
  font-family: var(--sans);
  font-size: 1.35rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 52rem;
  margin: 0 auto;
}

.soundtrack-playlists {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: none;
  margin: 0 0 4.5rem;
  text-align: left;
}

.soundtrack-playlist-item {
  min-width: 0;
}

.soundtrack-playlist-label {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.5vw, 1.55rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #c8a15a;
  margin-bottom: 1rem;
  line-height: 1.35;
}

.soundtrack-spotify-embed-host {
  width: 100%;
  min-height: 152px;
  border-radius: 20px;
  overflow: hidden;
}

.soundtrack-spotify-embed-host iframe {
  display: block;
  width: 100%;
  height: 152px;
  border: 0;
  border-radius: 20px;
}

.soundtrack-spotify-progress[hidden] {
  display: none !important;
}

.soundtrack-spotify-progress {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 0.85rem;
  padding: 0 0.2rem;
}

.soundtrack-spotify-progress-track {
  flex: 1;
  height: 3px;
  background: rgba(13, 27, 42, 0.12);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}

.soundtrack-spotify-progress-track:focus-visible {
  outline: 2px solid #c8a15a;
  outline-offset: 3px;
}

.soundtrack-spotify-progress.is-active .soundtrack-spotify-progress-track {
  background: rgba(13, 27, 42, 0.18);
}

.soundtrack-spotify-progress.is-active .soundtrack-spotify-time {
  color: rgba(13, 27, 42, 0.78);
}

.soundtrack-spotify-progress-fill {
  width: 0;
  height: 100%;
  background: #c8a15a;
  border-radius: 2px;
  transition: width 0.15s linear;
}

.soundtrack-spotify-time {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(13, 27, 42, 0.58);
  white-space: nowrap;
  min-width: 8.5rem;
  text-align: right;
}

.soundtrack-credit {
  margin-bottom: 6rem;
}

.soundtrack-credit-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(13, 27, 42, 0.42);
  margin-bottom: 0.65rem;
}

.soundtrack-credit-name {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2vw, 2.1rem);
  font-weight: 500;
  color: #0d1b2a;
  margin-bottom: 0.35rem;
}

.soundtrack-credit-role {
  font-family: "Inter", var(--sans);
  font-size: 1.35rem;
  font-weight: 400;
  color: rgba(13, 27, 42, 0.52);
}

.soundtrack-invitation {
  max-width: 42rem;
  margin: 0 auto 8rem;
}

.soundtrack-invitation-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  font-weight: 400;
  line-height: 1.35;
  color: #0d1b2a;
  margin-bottom: 1.25rem;
}

.soundtrack-invitation-text {
  font-family: "Inter", var(--sans);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(13, 27, 42, 0.62);
  margin-bottom: 2.5rem;
}

.soundtrack-invitation-qr {
  display: inline-block;
  max-width: 22rem;
  padding: 1.1rem;
  background: #f8f4ee;
  border: 1px solid rgba(200, 161, 90, 0.55);
  border-radius: 14px;
  line-height: 0;
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.soundtrack-invitation-qr:hover {
  border-color: #c8a15a;
  transform: translateY(-2px);
}

.soundtrack-invitation-qr img {
  display: block;
  width: 100%;
  height: auto;
}

.soundtrack-collections-wrap {
  margin-bottom: 7rem;
  text-align: left;
}

.soundtrack-collections-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 2.5vw, 2.5rem);
  font-weight: 400;
  color: #0d1b2a;
  text-align: center;
  margin-bottom: 4.5rem;
}

.soundtrack-collections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(3.5rem, 5vw, 5rem) clamp(2.5rem, 4vw, 3.5rem);
}

.soundtrack-collection {
  padding: 0;
}

.soundtrack-collection-icon {
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  margin-bottom: 1.5rem;
}

.soundtrack-collection-title {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 2vw, 2.1rem);
  font-weight: 500;
  line-height: 1.35;
  color: #0d1b2a;
  margin-bottom: 0.85rem;
  display: inline;
  background-image: linear-gradient(#c8a15a, #c8a15a);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.4s ease;
}

.soundtrack-collection:hover .soundtrack-collection-title {
  background-size: 100% 1px;
}

.soundtrack-collection-desc {
  font-family: "Inter", var(--sans);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(13, 27, 42, 0.6);
  max-width: 28rem;
}

.soundtrack-journal {
  position: relative;
  padding-top: 1.5rem;
}

.soundtrack-journal--sidebar {
  margin: 0;
  max-width: none;
  position: sticky;
  top: 9rem;
}

.soundtrack-journal--sidebar .soundtrack-journal-note {
  margin-bottom: 0;
}

.soundtrack-journal-pin {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 1.4rem;
  height: 1.4rem;
  margin-left: -0.7rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #e8d4a8 0%, #c8a15a 45%, #9a7a52 100%);
  box-shadow:
    0 2px 4px rgba(13, 27, 42, 0.18),
    inset 0 1px 2px rgba(255, 255, 255, 0.45);
}

.soundtrack-journal-pin::after {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 50%;
  width: 2px;
  height: 0.55rem;
  margin-left: -1px;
  background: rgba(154, 122, 82, 0.65);
}

.soundtrack-journal-paper {
  position: relative;
  padding: 3.5rem 3rem 3rem;
  background-color: #f3ece0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  border-radius: 2px 6px 8px 4px / 4px 2px 6px 8px;
  box-shadow:
    2px 6px 18px rgba(13, 27, 42, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
  transform: rotate(-4deg);
  text-align: left;
  overflow: hidden;
}

.soundtrack-journal-paper::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200, 161, 90, 0.18);
  border-radius: inherit;
  pointer-events: none;
}

.soundtrack-journal-watermark {
  position: absolute;
  top: 50%;
  right: -1.5rem;
  width: 14rem;
  height: 14rem;
  opacity: 0.07;
  transform: translateY(-50%);
  pointer-events: none;
}

.soundtrack-journal-heading {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 2.2vw, 2.2rem);
  font-weight: 500;
  color: #0d1b2a;
  margin-bottom: 1.25rem;
}

.soundtrack-journal-body {
  position: relative;
  font-family: "Inter", var(--sans);
  font-size: 1.4rem;
  line-height: 1.8;
  color: rgba(13, 27, 42, 0.68);
  margin-bottom: 1.5rem;
}

.soundtrack-journal-note {
  position: relative;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-style: italic;
  line-height: 1.65;
  color: rgba(13, 27, 42, 0.72);
  margin-bottom: 2rem;
}

.soundtrack-journal-sign {
  position: relative;
  font-family: "Great Vibes", cursive;
  font-size: 2.2rem;
  color: rgba(13, 27, 42, 0.55);
  text-align: right;
}

.soundtrack-india-quote {
  max-width: 48rem;
  margin: 0 auto;
  border: none;
  padding: 4rem 0 0;
}

.soundtrack-india-quote p {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: #0d1b2a;
  margin-bottom: 3rem;
}

.soundtrack-quote-divider {
  display: block;
  width: 3rem;
  height: 1px;
  background: #c8a15a;
  margin: 0 auto;
}

.experience-grid--music {
  grid-template-columns: repeat(6, 1fr);
  max-width: 1400px;
}

.experience-grid--music .experience-card {
  aspect-ratio: 2 / 3.5;
}

.experience-grid--music .overlay p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.experience-grid--music .overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

/* ── Music page: inspired experiences ── */
.inspired-experiences {
  padding: 6rem 5%;
  background: var(--cream);
}

.inspired-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.inspired-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.inspired-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.inspired-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.inspired-card .card-body {
  padding: 2.5rem 2rem;
}

.inspired-card h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.inspired-card p {
  font-size: 1.4rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.inspired-card .card-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: color 0.2s;
}

.inspired-card .card-link:hover {
  color: var(--gold);
}

/* ── Music page: enquire CTA strip ── */
.music-cta-strip {
  padding: 5rem 5%;
  background: var(--cream-dark);
  text-align: center;
}

.music-cta-strip h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.music-cta-strip p {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.music-cta-strip .btn-enquire-solid {
  display: inline-block;
  padding: 1.3rem 3.5rem;
  background: var(--gold);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: background 0.25s;
}

.music-cta-strip .btn-enquire-solid:hover {
  background: var(--gold-dark);
}

/* ── Inner page headers (Our World, India Through Music, Contact, Enquire) ── */
body.page-world .site-header,
body.page-world .site-header.scrolled,
body.page-music .site-header,
body.page-music .site-header.scrolled,
body.page-contact .site-header,
body.page-contact .site-header.scrolled,
body.page-enquire .site-header,
body.page-enquire .site-header.scrolled,
body.page-info .site-header,
body.page-info .site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

body.page-world .btn-enquire,
body.page-music .btn-enquire,
body.page-contact .btn-enquire,
body.page-enquire .btn-enquire,
body.page-info .btn-enquire {
  background: var(--mockup-gold);
  border-color: var(--mockup-gold);
  color: var(--navy);
}

body.page-world .btn-enquire:hover,
body.page-music .btn-enquire:hover,
body.page-contact .btn-enquire:hover,
body.page-enquire .btn-enquire:hover,
body.page-info .btn-enquire:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
}

/* Our World — India Through Music cream palette + site grid alignment */
body.page-world {
  --ow-page-pad-left: 8%;
  --ow-page-pad-right: 5%;
  --ow-content-max: 1400px;
  background: var(--cream);
}

/* Our World hero: full-bleed background image + soft glass behind text only */
body.page-world .ow-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: transparent;
  overflow: hidden;
}

body.page-world .ow-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100vh;
  z-index: 0;
  background: transparent;
}

body.page-world .ow-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: center center;
}

body.page-world .ow-hero-image::after {
  display: none;
}

body.page-world .ow-hero-text {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 10rem 7% 6rem 10%;
  background: transparent;
}

body.page-world .ow-hero-text::before {
  display: none;
}

body.page-world .ow-hero-text h1 {
  font-family: var(--serif);
  font-size: clamp(3.6rem, 5vw, 5.6rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fffaf3;
  text-shadow: none;
}

body.page-world .ow-hero-text .ow-hero-tagline {
  font-family: var(--serif);
  font-size: clamp(2rem, 2.5vw, 2.6rem) !important;
  font-weight: 500 !important;
  letter-spacing: normal;
  line-height: 1.75;
  color: #fffaf3 !important;
  text-shadow: none;
}

body.page-world .ow-hero-text p {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.2vw, 2.2rem);
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.75;
  max-width: 480px;
  color: rgba(255, 250, 243, 0.94);
  text-shadow: none;
}

body.page-world .ow-hero-text .ow-divider-line {
  background: linear-gradient(to right, transparent, rgba(197, 160, 107, 0.95), transparent);
}

body.page-world .ow-hero-text .ow-divider-diamond {
  background: var(--mockup-gold);
}

body.page-world .ow-journeys,
body.page-world .ow-celebrations,
body.page-world .ow-people,
body.page-world .ow-testimonials,
body.page-world .ow-cta {
  background: var(--cream);
}

body.page-world .ow-business,
body.page-world .ow-shadow {
  background: var(--cream-dark);
}

body.page-world .ow-business {
  color: var(--text-dark);
}

body.page-world .ow-business-text h2,
body.page-world .ow-shadow-text h2 {
  color: var(--navy);
}

body.page-world .ow-business-text > p,
body.page-world .ow-shadow-text > p,
body.page-world .ow-business-lists li {
  color: var(--text-muted);
}

body.page-world .ow-business-visual::after {
  background: linear-gradient(
    to right,
    var(--cream-dark) 0%,
    rgba(239, 232, 220, 0.92) 25%,
    rgba(239, 232, 220, 0.55) 55%,
    transparent 100%
  );
}

body.page-world .ow-shadow {
  color: var(--text-dark);
}

body.page-world .ow-process-item p {
  color: var(--text-muted);
}

/* Our World — section content width & padding */
body.page-world .ow-journeys,
body.page-world .ow-celebrations,
body.page-world .ow-people,
body.page-world .ow-shadow,
body.page-world .ow-testimonials {
  padding: 6rem var(--ow-page-pad-right) 6rem var(--ow-page-pad-left);
}

body.page-world .ow-business-text {
  padding: 7rem var(--ow-page-pad-right) 7rem var(--ow-page-pad-left);
}

body.page-world .ow-journeys-inner,
body.page-world .ow-celebrations-inner,
body.page-world .ow-world-curated-inner,
body.page-world .ow-shadow-inner {
  max-width: var(--ow-content-max);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

body.page-world .ow-people-grid {
  max-width: var(--ow-content-max);
  margin-left: auto;
  margin-right: auto;
}

body.page-world .ow-cta-overlay {
  background: linear-gradient(
    to bottom,
    rgba(247, 243, 237, 0.78) 0%,
    rgba(247, 243, 237, 0.58) 50%,
    rgba(247, 243, 237, 0.72) 100%
  );
}

/* India Through Music — home page cream palette; navy header & footer unchanged */
body.page-music {
  background: var(--cream);
}

body.page-music .ow-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: transparent;
  overflow: hidden;
}

body.page-music .ow-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100vh;
  z-index: 0;
}

body.page-music .ow-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
}

body.page-music .ow-hero-image::after {
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: linear-gradient(
    to left,
    transparent 0%,
    transparent 30%,
    rgba(18, 24, 32, 0.22) 52%,
    rgba(18, 24, 32, 0.48) 74%,
    rgba(18, 24, 32, 0.58) 100%
  );
}

body.page-music .ow-hero-text {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  background: transparent;
  padding: 10rem 10% 6rem 7%;
}

body.page-music .ow-hero-text h1,
body.page-music .ow-hero-text .ow-hero-tagline {
  color: #fffaf3 !important;
}

body.page-music .ow-hero-text p {
  color: rgba(255, 250, 243, 0.92);
}

body.page-music .ow-hero-text .ow-divider-line {
  background: linear-gradient(to right, transparent, rgba(197, 160, 107, 0.95), transparent);
}

body.page-music .ow-hero-btn {
  color: #fffaf3;
  border-color: rgba(255, 250, 243, 0.75);
}

body.page-music .ow-hero-btn:hover {
  background: rgba(255, 250, 243, 0.12);
  border-color: #fffaf3;
  color: #fffaf3;
}

body.page-music .section-divider {
  background: var(--cream);
}

body.page-music .music-philosophy {
  background: var(--cream);
}

body.page-music .section-divider--dark {
  background: var(--cream);
}

body.page-music .sound-of-india,
body.page-music .discover-india {
  background: var(--cream-dark);
}

body.page-music .inspired-experiences {
  background: var(--cream);
}

.ow-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.ow-divider--center {
  justify-content: center;
  margin-bottom: 2.5rem;
}

.ow-divider-line {
  width: 4rem;
  height: 1px;
  background: var(--mockup-gold);
}

.ow-divider-diamond {
  width: 6px;
  height: 6px;
  background: var(--mockup-gold);
  transform: rotate(45deg);
}

.ow-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 100vh;
  background: var(--ow-hero-sky);
  overflow: hidden;
}

.ow-hero-image {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.ow-hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(232, 224, 214, 0) 0%,
    rgba(232, 224, 214, 0.35) 35%,
    rgba(232, 224, 214, 0.75) 65%,
    var(--ow-hero-sky) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.ow-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  display: block;
}

.ow-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 10rem 8% 6rem 4%;
  background: var(--ow-hero-sky);
  position: relative;
  z-index: 2;
}

.ow-hero-text h1 {
  font-family: var(--serif);
  font-size: clamp(3.6rem, 5vw, 5.6rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.1;
}

.ow-hero-text p {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.2vw, 2.2rem);
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
}

.ow-hero-tagline {
  font-size: clamp(2rem, 2.5vw, 2.6rem) !important;
  font-weight: 500 !important;
  color: var(--navy) !important;
  margin-bottom: 1.5rem;
}

.ow-hero-tagline em {
  font-style: italic;
  color: var(--mockup-gold);
}

.ow-hero-btn {
  margin-top: 2.5rem;
  align-self: flex-start;
}

body.page-music .site-nav a.active {
  color: var(--mockup-gold);
  border-bottom: 1px solid var(--mockup-gold);
  padding-bottom: 0.2rem;
}

/* India Through Music — one-time welcome raga */
.music-welcome {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.music-welcome.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.music-welcome.is-hidden {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.music-welcome-status {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0.75rem 1.4rem 0.75rem 1rem;
  border: 1px solid rgba(200, 161, 90, 0.55);
  background: rgba(247, 243, 237, 0.45);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.music-welcome-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  color: var(--mockup-gold);
  font-size: 1rem;
}

.music-welcome.is-playing .music-welcome-icon i {
  animation: musicWelcomePulse 2s ease-in-out infinite;
}

.music-welcome.is-muted .music-welcome-icon i {
  animation: none;
  opacity: 0.45;
}

@keyframes musicWelcomePulse {
  0%,
  100% {
    opacity: 0.55;
  }

  50% {
    opacity: 1;
  }
}

.music-welcome-volume,
.music-welcome-boost {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid rgba(200, 161, 90, 0.55);
  border-radius: 50%;
  background: rgba(247, 243, 237, 0.45);
  color: var(--mockup-gold);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.music-welcome-boost:disabled {
  opacity: 0.4;
  cursor: default;
}

.music-welcome-volume:hover,
.music-welcome-boost:hover:not(:disabled) {
  background: rgba(200, 161, 90, 0.14);
  border-color: var(--mockup-gold);
  color: var(--navy);
}

.music-welcome-volume[aria-pressed="true"],
.music-welcome-boost[aria-pressed="true"] {
  background: rgba(200, 161, 90, 0.18);
  border-color: var(--mockup-gold);
  color: var(--navy);
}

body.page-music .ow-hero-btn {
  margin-top: 1.8rem;
}

@media (prefers-reduced-motion: reduce) {
  .music-welcome {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .music-welcome-icon i {
    animation: none;
    opacity: 1;
  }

  .music-welcome.is-playing .music-welcome-icon i {
    animation: none;
  }
}

.ow-journeys {
  padding: 6rem 5% 6rem 8%;
  background: var(--white);
}

.ow-journeys-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem 5rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.ow-journeys-text h2,
.ow-celebrations-text h2,
.ow-people h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.ow-journeys-text p,
.ow-celebrations-text p {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.ow-traveller-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.5rem;
}

.ow-people-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2rem 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.ow-traveller-item,
.ow-people-item {
  text-align: center;
}

.ow-icon {
  font-size: 2.8rem;
  color: var(--mockup-gold);
  margin-bottom: 1rem;
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ow-traveller-item p,
.ow-people-item p {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy);
  line-height: 1.4;
}

.ow-business {
  padding: 0;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.ow-business-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  align-items: stretch;
  max-width: none;
  margin: 0;
  min-height: 58rem;
}

.ow-business-text {
  padding: 7rem 5rem 7rem 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.ow-business-text h2,
.ow-shadow-text h2 {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 4.2vw, 4.8rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mockup-gold);
  margin-bottom: 2.2rem;
}

.ow-business-text > p,
.ow-shadow-text > p {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 2.4vw, 2.6rem);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.85;
  margin-bottom: 3.2rem;
  max-width: 620px;
}

.ow-business-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
}

.ow-business-lists li {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 2vw, 2.15rem);
  color: rgba(255, 255, 255, 0.92);
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  line-height: 1.55;
}

.ow-business-lists li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45rem;
  width: 7px;
  height: 7px;
  background: var(--mockup-gold);
  border-radius: 50%;
}

.ow-business-visual {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.ow-business-visual > img {
  width: 100%;
  height: 100%;
  min-height: 58rem;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.ow-business-visual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    var(--navy) 0%,
    rgba(10, 22, 40, 0.92) 25%,
    rgba(10, 22, 40, 0.55) 55%,
    rgba(10, 22, 40, 0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.ow-celebrations {
  padding: 6rem 5% 6rem 8%;
  background: var(--white);
}

.ow-celebrations-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem 5rem;
  align-items: start;
  max-width: none;
  margin: 0;
}

.ow-celebrations-text {
  align-self: start;
  text-align: left;
  padding-top: 0.5rem;
  max-width: none;
}

.ow-celebrations-text h2 {
  max-width: none;
}

.ow-celebrations-text p {
  max-width: none;
}

.ow-celebration-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  width: 100%;
}

.ow-celebration-card {
  position: relative;
  aspect-ratio: 3 / 4.2;
  overflow: hidden;
  background: #d5cdc4;
}

.ow-celebration-media {
  position: absolute;
  inset: 0;
}

.ow-celebration-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ow-celebration-media--placeholder {
  background: linear-gradient(160deg, #e4ddd4 0%, #cfc5ba 45%, #b8aea3 100%);
}

.ow-celebration-media--placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.08) 0,
    rgba(255, 255, 255, 0.08) 1px,
    transparent 1px,
    transparent 12px
  );
  pointer-events: none;
}

.ow-celebration-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 3.5rem 0.8rem 1.2rem;
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.95) 0%,
    rgba(10, 22, 40, 0.72) 45%,
    rgba(10, 22, 40, 0) 100%
  );
}

.ow-celebration-label h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  line-height: 1.35;
  margin: 0;
}

/* ── The World, Curated — editorial composition ── */
/* ── The World, Curated — flat editorial map (aligned to Our World system) ── */
.ow-world-curated {
  padding: 6rem 5% 6rem 8%;
  background: var(--cream-dark);
  overflow: hidden;
}

.ow-world-curated-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  grid-template-areas:
    "copy visual"
    "stories stories"
    "principles principles";
  column-gap: clamp(2.5rem, 4vw, 5rem);
  row-gap: clamp(2.8rem, 4vw, 4rem);
  align-items: center;
}

.ow-world-curated-copy {
  grid-area: copy;
  min-width: 0;
  max-width: 36rem;
}

.ow-world-curated-label {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mockup-gold);
  text-align: left;
  margin: 0 0 1.4rem;
}

.ow-world-curated-headline {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 3.2vw, 3.6rem);
  font-weight: 500;
  line-height: 1.22;
  color: var(--navy);
  margin: 0 0 1.6rem;
}

.ow-world-curated-body {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 1.7vw, 1.7rem);
  line-height: 1.8;
  color: var(--text-muted);
  margin: 0 0 2rem;
  max-width: 34rem;
}

.ow-world-curated-scope {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.75rem;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1rem, 1.05vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.7;
}

.ow-world-curated-scope > span[aria-hidden="true"]:not(.ow-world-curated-scope-break) {
  color: var(--mockup-gold);
  letter-spacing: 0;
}

.ow-world-curated-scope-break {
  flex-basis: 100%;
  width: 100%;
  height: 0;
  display: block;
}

.ow-world-curated-visual {
  grid-area: visual;
  margin: 0;
  min-width: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.ow-world-curated-map-stage {
  position: relative;
  width: 100%;
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.ow-world-curated-map {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  border: 0;
  box-shadow: none;
  opacity: 0.88;
  filter: saturate(0.55) brightness(1.08);
}

.ow-world-curated-stories {
  grid-area: stories;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: 1400px;
  margin: 0.5rem auto 0;
  padding: 0;
  min-width: 0;
}

.ow-world-curated-story {
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.ow-world-curated-story img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center center;
  background: #d5cdc4;
  border: 0;
  box-shadow: none;
}

.ow-world-curated-story figcaption {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.3;
  text-align: center;
}

.ow-world-curated-principles {
  grid-area: principles;
  list-style: none;
  margin: 0;
  padding: 1rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
}

.ow-world-curated-principle {
  text-align: center;
  min-width: 0;
}

.ow-world-curated-principle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--mockup-gold);
  font-size: 2.2rem;
  line-height: 1;
  min-height: 2.8rem;
}

.ow-world-curated-principle h3 {
  font-family: var(--sans);
  font-size: clamp(1.1rem, 1.2vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 0.8rem;
  line-height: 1.35;
}

.ow-world-curated-principle p {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 1.55vw, 1.6rem);
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

body.page-world .ow-world-curated {
  background: var(--cream-dark);
  color: var(--text-dark);
}

body.page-world .ow-world-curated-headline,
body.page-world .ow-world-curated-scope,
body.page-world .ow-world-curated-story figcaption,
body.page-world .ow-world-curated-principle h3 {
  color: var(--navy);
}

body.page-world .ow-world-curated-body,
body.page-world .ow-world-curated-principle p {
  color: var(--text-muted);
}

body.page-world .ow-world-curated-label,
body.page-world .ow-world-curated-principle-icon {
  color: var(--mockup-gold);
}

@media (max-width: 1280px) {
  .ow-world-curated-inner {
    column-gap: 3rem;
  }
}

@media (max-width: 1100px) {
  .ow-world-curated {
    padding-left: 6%;
    padding-right: 6%;
  }

  .ow-world-curated-inner {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    column-gap: 2.2rem;
  }
}

/* Laptop / small desktop */
@media (max-width: 1024px) {
  .ow-world-curated {
    padding: 5.5rem 6%;
  }

  .ow-world-curated-headline {
    font-size: clamp(2.4rem, 3.2vw, 3.2rem);
  }

  .ow-world-curated-story img {
    aspect-ratio: 3 / 4;
  }

  .ow-world-curated-principle-icon {
    font-size: 2rem;
  }
}

/* Tablet / iPad — dedicated composition */
@media (max-width: 900px) {
  .ow-world-curated {
    padding: 5rem 6%;
  }

  .ow-world-curated-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "stories"
      "principles";
    row-gap: 2.4rem;
  }

  .ow-world-curated-copy {
    max-width: none;
  }

  .ow-world-curated-headline {
    font-size: clamp(2.5rem, 5vw, 3.2rem);
  }

  .ow-world-curated-body {
    max-width: 42rem;
  }

  .ow-world-curated-map-stage {
    max-width: 720px;
    margin: 0 auto;
  }

  .ow-world-curated-map {
    max-width: 720px;
    margin: 0 auto;
    aspect-ratio: 2 / 1;
    object-fit: contain;
    object-position: center center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  .ow-world-curated-stories {
    width: 100%;
    max-width: none;
    margin-top: 0.5rem;
    gap: 0.85rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ow-world-curated-story figcaption {
    font-size: 0.95rem;
    letter-spacing: 0.1em;
  }

  .ow-world-curated-principles {
    gap: 1.8rem 1.2rem;
  }

  .ow-world-curated-principle p br {
    display: none;
  }
}

/* Mobile / phone — intentional editorial stack */
@media (max-width: 700px) {
  .ow-world-curated {
    padding: 4.5rem 6%;
    overflow-x: hidden;
  }

  .ow-world-curated-inner {
    row-gap: 2.1rem;
  }

  .ow-world-curated-label {
    margin-bottom: 1.2rem;
  }

  .ow-world-curated-headline {
    font-size: clamp(2.4rem, 6.8vw, 2.9rem);
    margin-bottom: 1.4rem;
  }

  .ow-world-curated-body {
    font-size: 1.55rem;
    margin-bottom: 1.8rem;
  }

  .ow-world-curated-scope {
    font-size: 1.05rem;
    letter-spacing: 0.12em;
    gap: 0.4rem 0.65rem;
  }

  .ow-world-curated-map-stage {
    max-width: 100%;
  }

  .ow-world-curated-map {
    width: 100%;
    max-width: 100%;
    max-height: 220px;
    aspect-ratio: 2.2 / 1;
    object-fit: contain;
    object-position: center center;
  }

  .ow-world-curated-stories {
    display: flex;
    width: auto;
    max-width: none;
    gap: 0.85rem;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    margin-top: 0.4rem;
    margin-inline: 0;
    padding: 0 0 0.35rem;
    scrollbar-width: thin;
    scrollbar-color: var(--mockup-gold) transparent;
  }

  .ow-world-curated-story {
    flex: 0 0 42%;
    max-width: 11rem;
    scroll-snap-align: start;
  }

  .ow-world-curated-story figcaption {
    font-size: 0.9rem;
  }

  .ow-world-curated-principles {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 0.6rem;
    max-width: 28rem;
    margin-inline: 0;
  }

  .ow-world-curated-principle {
    text-align: left;
  }

  .ow-world-curated-principle-icon {
    justify-content: flex-start;
    margin: 0 0 0.7rem;
    font-size: 1.8rem;
  }

  .ow-world-curated-principle h3 {
    font-size: 1.15rem;
    margin-bottom: 0.55rem;
  }

  .ow-world-curated-principle p {
    font-size: 1.45rem;
  }

  .ow-world-curated-principle p br {
    display: inline;
  }
}

@media (max-width: 430px) {
  .ow-world-curated {
    padding: 4.2rem 5.5%;
  }

  .ow-world-curated-map {
    max-height: 190px;
  }

  .ow-world-curated-story {
    flex-basis: 46%;
    max-width: 9.8rem;
  }

  .ow-world-curated-scope {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }

  .footer-social a i {
    font-size: 0.95rem;
  }
}

/* ── Regions (legacy map styles retained for safety) ── */
.ow-regions {
  padding: 6rem 5% 6rem 8%;
  background: var(--cream);
}

.ow-regions-inner {
  max-width: none;
  margin: 0;
}

.ow-regions-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 5rem;
  row-gap: 2.5rem;
  align-items: end;
}

.ow-regions-intro {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  max-width: 720px;
}

.ow-regions-intro h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 2.8vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 1.2rem;
}

.ow-regions-intro p {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 0 1rem;
  max-width: none;
}

.ow-country-details {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  justify-self: end;
  min-width: 0;
  max-width: 420px;
  text-align: right;
}

.ow-country-details__name {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 1.2rem;
}

.ow-country-details__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.ow-country-details__list li {
  display: grid;
  gap: 0.25rem;
}

.ow-country-details__label {
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mockup-gold);
}

.ow-country-details__value {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.5vw, 1.55rem);
  color: var(--text-muted);
  line-height: 1.55;
}

.ow-destination-showcase {
  grid-column: 1;
  grid-row: 2;
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  min-height: 0;
}

.ow-destination-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
}

.ow-destination-panel.is-active {
  opacity: 1;
  visibility: visible;
}

.ow-destination-media {
  position: absolute;
  inset: 0;
}

.ow-destination-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ow-destination-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 4rem 1.8rem 1.8rem;
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.92) 0%,
    rgba(10, 22, 40, 0.65) 45%,
    rgba(10, 22, 40, 0) 100%
  );
}

.ow-destination-copy h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 2.4vw, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 0.8rem;
}

.ow-destination-copy p {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 1.6vw, 1.7rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  margin: 0;
  max-width: none;
}

.ow-map-hint {
  font-family: var(--sans);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mockup-gold);
  margin-bottom: 0 !important;
}

.ow-world-map {
  grid-column: 2;
  grid-row: 2;
  width: 100%;
  aspect-ratio: 2 / 1;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.ow-world-map-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ow-map-country--highlight {
  cursor: pointer;
  transition: fill 200ms ease;
}

.ow-map-country--highlight:hover,
.ow-map-country--highlight:focus,
.ow-map-country--highlight.is-active {
  fill: #e0bf7a;
  outline: none;
}

.ow-people {
  padding: 6rem 5%;
  background: var(--white);
  text-align: center;
}

/* ── Memories Shared (Home — editorial testimonials) ── */
.memories-shared {
  background: #f8f4ee;
  padding: 8.75rem 6%;
  scroll-margin-top: var(--header-height);
}

.memories-shared-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.memories-shared-layout {
  display: grid;
  grid-template-columns: 45fr 55fr;
  align-items: start;
  gap: clamp(3rem, 6vw, 6rem);
}

.memories-shared-copy {
  padding-right: clamp(0rem, 2vw, 2rem);
}

.memories-shared-accent {
  display: block;
  width: 3rem;
  height: 1px;
  background: #c8a15a;
  margin-bottom: 1.75rem;
}

.memories-shared-label {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #0d1b2a;
  margin-bottom: 1.5rem;
}

.memories-shared-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 2.8vw, 2.75rem);
  font-weight: 400;
  line-height: 1.35;
  color: #0d1b2a;
  margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
  max-width: 26rem;
}

.memories-shared-panel {
  display: grid;
  grid-template-rows: auto auto;
  gap: 2.25rem;
}

.memories-shared-story {
  position: relative;
  margin-bottom: 0;
  overflow: visible;
  transition: opacity 0.55s ease;
}

.memories-shared-story.is-fading {
  opacity: 0;
}

.memories-shared-quote-mark {
  display: block;
  font-family: var(--serif);
  font-size: clamp(4rem, 6vw, 5.5rem);
  line-height: 0.7;
  color: #c8a15a;
  margin-bottom: 0.5rem;
}

.memories-shared-review {
  margin: 0 0 2rem;
  border: none;
}

.memories-review-text {
  font-family: "Inter", var(--sans);
  font-size: clamp(1.05rem, 1.15vw, 1.15rem);
  font-weight: 300;
  line-height: 1.9;
  color: #2d2d2d;
  max-width: 30rem;
}

.memories-shared-attribution {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.memories-client-name {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #0d1b2a;
}

.memories-client-location {
  font-family: "Inter", var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: #5a5a5a;
}

.memories-shared-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.memories-nav-btn {
  background: none;
  border: none;
  padding: 0.25rem 0.5rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1;
  color: #0d1b2a;
  cursor: pointer;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.memories-nav-btn:hover {
  color: #c8a15a;
}

.memories-nav-btn:focus-visible {
  outline: 2px solid #c8a15a;
  outline-offset: 3px;
}

.memories-counter {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #5a5a5a;
  min-width: 5rem;
  text-align: center;
}

.memories-thumbs {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.memories-thumb {
  width: 3.6rem;
  height: 3.6rem;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.memories-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 10px;
}

.memories-thumb:hover {
  transform: scale(1.08);
}

.memories-thumb.is-active {
  border-color: #c8a15a;
  box-shadow: 0 0 0 1px rgba(200, 161, 90, 0.35);
}

.memories-thumb:focus-visible {
  outline: 2px solid #c8a15a;
  outline-offset: 2px;
}

.memories-shared-visual {
  width: 100%;
}

.memories-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  background: #f8f4ee;
}

.memories-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.6s ease;
  transform: scale(1);
  border-radius: 22px;
}

.memories-hero-image.is-active {
  opacity: 1;
}

.memories-image-frame:hover .memories-hero-image.is-active {
  transform: scale(1.02);
}

/* ── Testimonials (Our World — Shapo) ── */
.ow-testimonials {
  padding: 6rem 5% 7rem;
  background: var(--cream);
}

.ow-testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.ow-testimonials h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 4vw, 4.2rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}

.ow-testimonials-sub {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 3.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.ow-testimonials-widget {
  width: 100%;
  min-height: 200px;
}

.ow-shadow {
  padding: 6rem 5% 6rem 8%;
  background: var(--navy);
  color: var(--white);
}

.ow-shadow-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem 5rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.ow-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.ow-process-circle {
  width: 6.5rem;
  height: 6.5rem;
  border: 1px solid var(--mockup-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--mockup-gold);
  font-size: 2rem;
}

.ow-process-item {
  text-align: center;
}

.ow-process-item h3 {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mockup-gold);
  margin-bottom: 0.8rem;
}

.ow-process-item p {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.ow-shadow-visual img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.ow-cta {
  position: relative;
  padding: 8rem 5%;
  text-align: center;
  overflow: hidden;
  min-height: clamp(36rem, 40vw, 48rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ow-cta-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ow-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.18) saturate(0.82);
}

.ow-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(247, 243, 237, 0.78) 0%,
    rgba(247, 243, 237, 0.58) 50%,
    rgba(247, 243, 237, 0.72) 100%
  );
}

.ow-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 54rem;
  padding: 0 1rem;
}

.ow-cta h2 {
  font-family: var(--serif);
  font-size: clamp(3rem, 4vw, 4.4rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1rem;
  text-shadow: 0 1px 12px rgba(247, 243, 237, 0.9);
}

.ow-cta p {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 10px rgba(247, 243, 237, 0.85);
}

.ow-cta-btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: var(--mockup-gold);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.25s;
}

.ow-cta-btn:hover {
  background: var(--gold-light);
}

/* ── Contact Page ── */
body.page-contact .site-nav a.active {
  color: var(--mockup-gold);
  border-bottom: 1px solid var(--mockup-gold);
  padding-bottom: 0.2rem;
}

body.page-contact #contact-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  margin-top: 0;
}

body.page-contact .contact-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

body.page-contact .contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(16, 28, 42, 0.78) 0%,
    rgba(16, 28, 42, 0.64) 28%,
    rgba(16, 28, 42, 0.38) 50%,
    rgba(16, 28, 42, 0.14) 70%,
    transparent 100%
  );
}

body.page-contact .contact-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 640px;
  padding: 10rem 5% 6rem 8%;
  color: rgba(255, 252, 247, 0.92);
}

body.page-contact .contact-hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 4.5vw, 5.2rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #fffaf3;
  line-height: 1.12;
  margin-bottom: 0.5rem;
  max-width: 14ch;
  text-shadow: 0 2px 18px rgba(10, 22, 40, 0.35);
}

body.page-contact .contact-hero-content .contact-hero-lead {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2vw, 2rem);
  color: rgba(255, 250, 243, 0.88);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 520px;
  text-shadow: 0 1px 12px rgba(10, 22, 40, 0.3);
}

body.page-contact .contact-hero-content .ow-divider {
  margin: 1.75rem 0 2rem;
}

body.page-contact .contact-hero-content .ow-divider-line {
  background: linear-gradient(to right, transparent, rgba(197, 160, 107, 0.85), transparent);
}

body.page-contact .contact-hero-btn {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  padding: 1.4rem 3rem;
  color: #fffaf3;
  border-color: rgba(197, 160, 107, 0.85);
}

body.page-contact .contact-hero-btn:hover {
  background: rgba(197, 160, 107, 0.18);
  color: #fffaf3;
}

body.page-contact .contact-hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mockup-gold);
  margin-bottom: 1.5rem;
}

body.page-contact .site-footer--contact,
body.page-enquire .site-footer--contact {
  background: var(--cream);
}

body.page-enquire .contact-hero {
  background: #1a1410;
  min-height: 100vh;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  margin-top: 0;
  overflow: hidden;
}

body.page-enquire .contact-hero-bg {
  object-fit: cover;
  object-position: center center;
}

body.page-enquire .contact-hero-content {
  padding-top: calc(var(--header-height) + 4rem);
}

body.page-enquire .contact-form-section {
  scroll-margin-top: var(--header-height);
}

.contact-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 22, 40, 0.82) 0%, rgba(10, 22, 40, 0.45) 55%, rgba(10, 22, 40, 0.2) 100%);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 12rem 5% 6rem 8%;
  color: var(--white);
}

.contact-hero-line1 {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 5vw, 5.6rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.1;
}

.contact-hero-line2 {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 5vw, 5.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--mockup-gold);
  line-height: 1.15;
  margin-bottom: 2rem;
}

.contact-hero-lead {
  font-size: 1.5rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

.contact-hero-accent {
  font-size: 1.4rem;
  color: var(--mockup-gold);
  line-height: 1.7;
}

.contact-hero--conversation .contact-hero-line2 {
  font-style: italic;
  color: var(--mockup-gold);
}

.contact-hero-rule span {
  display: block;
  width: 5rem;
  height: 1px;
  background: var(--mockup-gold);
  margin: 0 0 2rem;
}

/* Contact page — editorial luxury hero */
.contact-hero--editorial {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
}

.contact-hero--editorial .contact-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.contact-hero--editorial .contact-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(248, 244, 238, 0.08) 0%,
    rgba(248, 244, 238, 0.18) 42%,
    rgba(240, 224, 196, 0.34) 68%,
    rgba(240, 224, 196, 0.48) 100%
  );
}

.contact-hero--editorial .contact-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.contact-hero--editorial .contact-hero-overlay {
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(13, 27, 42, 0.9) 0%,
    rgba(13, 27, 42, 0.72) 24%,
    rgba(13, 27, 42, 0.38) 44%,
    rgba(13, 27, 42, 0.12) 58%,
    transparent 72%
  );
}

.contact-hero--editorial .contact-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 11rem clamp(2.4rem, 5vw, 5rem) 6rem clamp(2.4rem, 7vw, 9rem);
}

.contact-hero--editorial .contact-hero-content {
  max-width: 38rem;
  padding: 0;
  color: #f8f4ee;
}

.contact-hero--editorial .contact-hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c8a15a;
  margin-bottom: 2rem;
}

.contact-hero--editorial .contact-hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 4.8vw, 5.4rem);
  font-weight: 500;
  line-height: 1.1;
  color: #f8f4ee;
  margin-bottom: 2.4rem;
  max-width: 12ch;
}

.contact-hero--editorial .contact-hero-lead {
  font-family: "Inter", var(--sans);
  font-size: clamp(1.35rem, 1.45vw, 1.5rem);
  font-weight: 400;
  line-height: 1.8;
  color: rgba(248, 244, 238, 0.82);
  max-width: 34rem;
  margin-bottom: 1.35rem;
}

.contact-hero--editorial .contact-hero-lead:last-of-type {
  margin-bottom: 3rem;
}

.contact-hero-btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0d1b2a;
  background: #c8a15a;
  border: 1px solid #c8a15a;
  padding: 1.35rem 2.8rem;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.contact-hero-btn:hover {
  background: #f8f4ee;
  border-color: #f8f4ee;
  color: #0d1b2a;
}

.contact-hero-reveal {
  opacity: 0;
  transform: translateY(1.4rem);
  animation: contactHeroFadeIn 1s ease forwards;
}

.contact-hero-reveal--2 {
  animation-delay: 0.12s;
}

.contact-hero-reveal--3 {
  animation-delay: 0.24s;
}

.contact-hero-reveal--4 {
  animation-delay: 0.36s;
}

.contact-hero-reveal--5 {
  animation-delay: 0.48s;
}

@keyframes contactHeroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-hero-reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .contact-hero--editorial .contact-hero-bg {
    inset: 0;
    height: 100%;
    transform: none !important;
  }
}

.contact-form-section {
  padding: 6rem 5% 5rem;
  background: var(--cream);
}

.contact-form-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-form-header h2 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 3.5vw, 3.8rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.contact-form-header p {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--text-muted);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 0 2.5rem;
  max-width: none;
  width: 100%;
  margin: 0;
  align-items: stretch;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  padding-right: 3rem;
  border-right: 1px solid rgba(197, 160, 107, 0.35);
  min-width: 0;
  align-items: start;
  overflow: visible;
}

.contact-field {
  position: relative;
  overflow: visible;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.contact-field i {
  position: absolute;
  left: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mockup-gold);
  font-size: 1.4rem;
  pointer-events: none;
}

.contact-field--date {
  z-index: 20;
}

.contact-date-input-wrap {
  position: relative;
}

.contact-field--date .contact-date-icon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--mockup-gold);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0;
}

.contact-field--date .contact-date-icon i {
  position: static;
  transform: none;
  pointer-events: none;
  left: auto;
  top: auto;
  color: inherit;
  font-size: inherit;
}

.contact-field--date .contact-date-icon:hover,
.contact-field--date .contact-date-icon:focus-visible {
  color: var(--text-dark);
  outline: none;
}

.emv-datepicker {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  right: auto;
  width: 24rem;
  max-width: calc(100vw - 2.4rem);
  z-index: 40;
  padding: 0.8rem;
  background: var(--white);
  border: 1px solid rgba(197, 160, 107, 0.3);
  box-shadow: 0 8px 20px rgba(44, 44, 44, 0.08);
  color: var(--text-dark);
}

.emv-datepicker[hidden],
.emv-datepicker:not(.is-open) {
  display: none !important;
}

.emv-datepicker.is-open {
  display: block !important;
}

.emv-datepicker__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.2rem 0.5rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(197, 160, 107, 0.2);
}

.emv-datepicker__title {
  flex: 1;
  margin: 0;
  text-align: center;
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.emv-datepicker__nav {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--text-dark);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.2s, opacity 0.2s;
}

.emv-datepicker__nav i {
  position: static;
  left: auto;
  top: auto;
  transform: none;
  pointer-events: none;
  color: inherit;
  font-size: inherit;
}

.emv-datepicker__nav:hover:not(:disabled),
.emv-datepicker__nav:focus-visible {
  background: transparent;
  color: var(--mockup-gold);
  outline: none;
}

.emv-datepicker__nav:disabled {
  opacity: 0.28;
  cursor: not-allowed;
  color: var(--text-dark);
}

.emv-datepicker__weekdays,
.emv-datepicker__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.1rem;
}

.emv-datepicker__weekdays {
  margin-bottom: 0.2rem;
}

.emv-datepicker__weekdays span {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.2rem 0;
}

.emv-datepicker__day {
  aspect-ratio: 1;
  min-height: 0;
  height: 2.6rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text-dark);
  font-family: var(--sans);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.emv-datepicker__day:hover:not(:disabled):not(.is-selected),
.emv-datepicker__day:focus-visible:not(:disabled):not(.is-selected) {
  background: var(--cream);
  outline: none;
}

.emv-datepicker__day.is-outside {
  visibility: hidden;
  pointer-events: none;
}

.emv-datepicker__day.is-today:not(.is-selected) {
  background: var(--cream-dark);
  box-shadow: inset 0 0 0 1px rgba(197, 160, 107, 0.45);
}

.emv-datepicker__day.is-selected {
  background: var(--text-dark);
  color: var(--white);
}

.emv-datepicker__day:disabled {
  color: rgba(44, 44, 44, 0.28);
  cursor: not-allowed;
  background: transparent;
}

@media (max-width: 600px) {
  .emv-datepicker {
    left: 0;
    right: auto;
    width: min(22rem, calc(100vw - 2.8rem));
    padding: 0.65rem;
  }

  .emv-datepicker__header {
    margin-bottom: 0.4rem;
    padding: 0.1rem 0.1rem 0.4rem;
  }

  .emv-datepicker__title {
    font-size: 1.1rem;
  }

  .emv-datepicker__nav {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1rem;
  }

  .emv-datepicker__weekdays span {
    font-size: 0.85rem;
    padding: 0.15rem 0;
  }

  .emv-datepicker__day {
    height: 2.4rem;
    min-height: 0;
    font-size: 1.05rem;
  }
}

/* Enquire page — mobile layout */
@media (max-width: 700px) {
  body.page-enquire .contact-form-section {
    padding: 3.5rem 5% 3rem;
    overflow: visible;
  }

  body.page-enquire .contact-form-header {
    margin-bottom: 2.5rem;
  }

  body.page-enquire .contact-form-header h2 {
    font-size: clamp(2.2rem, 7vw, 2.8rem);
    letter-spacing: 0.08em;
  }

  body.page-enquire .contact-form-header p {
    font-size: 1.5rem;
  }

  body.page-enquire .contact-form-layout {
    gap: 3.5rem;
    overflow: visible;
  }

  body.page-enquire .contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    padding-right: 0;
    padding-bottom: 3rem;
    border-right: none;
    border-bottom: 1px solid rgba(197, 160, 107, 0.35);
    overflow: visible;
  }

  body.page-enquire .contact-field--phone,
  body.page-enquire .contact-field--select,
  body.page-enquire .contact-field--full,
  body.page-enquire .contact-submit,
  body.page-enquire .contact-privacy {
    grid-column: 1 / -1;
  }

  body.page-enquire .contact-field--date {
    z-index: 30;
  }

  body.page-enquire .contact-field input,
  body.page-enquire .contact-field textarea,
  body.page-enquire .flag-select__button {
    font-size: 1.25rem;
    min-height: 4.8rem;
  }

  body.page-enquire .contact-field textarea {
    min-height: 12rem;
  }

  body.page-enquire .contact-phone-row {
    grid-template-columns: minmax(11rem, 0.9fr) minmax(0, 1.4fr);
    gap: 0.8rem;
  }

  body.page-enquire .contact-submit {
    width: 100%;
    justify-content: center;
    padding: 1.5rem 2rem;
  }

  body.page-enquire .contact-sidebar {
    padding: 0;
  }

  body.page-enquire .contact-sidebar-title {
    font-size: clamp(2rem, 6.5vw, 2.5rem);
  }

  body.page-enquire .contact-sidebar-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
  }

  body.page-enquire .contact-quick-bar {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 5%;
  }

  body.page-enquire .contact-hero-line1 {
    font-size: clamp(3.2rem, 12vw, 4.6rem);
  }

  body.page-enquire .contact-hero-line2 {
    font-size: clamp(1.8rem, 6.5vw, 2.4rem);
  }

  body.page-enquire .contact-hero-lead,
  body.page-enquire .contact-hero-accent {
    font-size: clamp(1.35rem, 3.8vw, 1.6rem);
  }
}

@media (max-width: 420px) {
  body.page-enquire .contact-form {
    grid-template-columns: 1fr;
  }

  body.page-enquire .contact-phone-row {
    grid-template-columns: 1fr;
  }

  body.page-enquire .emv-datepicker {
    width: calc(100vw - 2.4rem);
    max-width: none;
  }
}

.contact-field textarea + i,
.contact-field:has(textarea) i {
  top: 1.6rem;
  transform: none;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 1.4rem 1.4rem 1.4rem 4rem;
  border: 1px solid rgba(197, 160, 107, 0.35);
  background: rgba(255, 255, 255, 0.65);
  font-family: var(--sans);
  font-size: 1.3rem;
  color: var(--text-dark);
  transition: border-color 0.2s, background 0.2s;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--mockup-gold);
  background: var(--white);
}

.contact-field textarea {
  resize: vertical;
  min-height: 130px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-field select {
  width: 100%;
  padding: 1.4rem 2.8rem 1.4rem 4rem;
  border: 1px solid rgba(197, 160, 107, 0.35);
  background: rgba(255, 255, 255, 0.65);
  font-family: var(--sans);
  font-size: 1.3rem;
  color: var(--text-dark);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C5A06B' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.4rem center;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}

.contact-field select:focus {
  outline: none;
  border-color: var(--mockup-gold);
  background-color: var(--white);
}

.flag-select {
  position: relative;
  width: 100%;
}

.flag-select__button {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.8rem 1.25rem 1.2rem;
  border: 1px solid rgba(197, 160, 107, 0.35);
  background: rgba(255, 255, 255, 0.65);
  font-family: var(--sans);
  font-size: 1.3rem;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}

.flag-select__button:hover,
.flag-select.is-open .flag-select__button {
  border-color: var(--mockup-gold);
  background: var(--white);
}

.flag-select__button-flag {
  display: inline-flex;
  width: 2rem;
  height: 1.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

/* Collapse empty flag so placeholder text aligns with other fields */
.flag-select__button-flag:empty {
  display: none;
}

.contact-field--select .flag-select__button {
  padding: 1.4rem 2.8rem 1.4rem 3.6rem;
}

.contact-field--select .flag-select__button:has(.flag-select__button-flag:empty) {
  gap: 0;
}

.flag-select__flag {
  width: 2rem;
  height: 1.5rem;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  display: block;
}

.flag-select__button-label {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flag-select__caret {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  width: 1.2rem;
  height: 0.8rem;
  transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C5A06B' d='M1 1l5 5 5-5'/%3E%3C/svg%3E")
    center / contain no-repeat;
  pointer-events: none;
}

.flag-select__list {
  position: absolute;
  z-index: 40;
  top: calc(100% + 0.4rem);
  left: 0;
  right: 0;
  min-width: 22rem;
  max-height: 22rem;
  overflow-y: auto;
  border: 1px solid rgba(197, 160, 107, 0.4);
  background: var(--white);
  box-shadow: 0 0.8rem 2rem rgba(13, 27, 42, 0.12);
  outline: none;
}

@media (max-width: 600px) {
  .flag-select__list {
    min-width: 0;
  }
}

.flag-select__option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.2rem;
  border: 0;
  background: transparent;
  font-family: var(--sans);
  font-size: 1.25rem;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
}

.flag-select__option:hover,
.flag-select__option[aria-selected="true"],
.flag-select__option.is-highlighted {
  background: rgba(197, 160, 107, 0.18);
}

.flag-select__option.is-highlighted {
  box-shadow: inset 3px 0 0 var(--mockup-gold);
}

.flag-select__option-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-field.is-invalid .flag-select__button {
  border-color: #b42318;
}

.contact-field--phone {
  grid-column: 1 / -1;
}

.contact-phone-row {
  display: grid;
  grid-template-columns: minmax(12rem, 14.5rem) 1fr;
  gap: 1rem;
}

.contact-phone-code select {
  padding-left: 1.2rem;
  background-position: right 1rem center;
}

.contact-phone-number {
  position: relative;
}

.contact-phone-number i {
  position: absolute;
  left: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mockup-gold);
  font-size: 1.4rem;
  pointer-events: none;
}

.contact-phone-number input {
  width: 100%;
  padding: 1.4rem 1.4rem 1.4rem 4rem;
  border: 1px solid rgba(197, 160, 107, 0.35);
  background: rgba(255, 255, 255, 0.65);
  font-family: var(--sans);
  font-size: 1.3rem;
  color: var(--text-dark);
  transition: border-color 0.2s, background 0.2s;
}

.contact-phone-number input:focus {
  outline: none;
  border-color: var(--mockup-gold);
  background: var(--white);
}

.contact-field.is-invalid input,
.contact-field.is-invalid select,
.contact-field--phone.is-invalid select,
.contact-field--phone.is-invalid input {
  border-color: #b42318;
}

.contact-field-error {
  margin: 0.55rem 0 0;
  font-size: 1.15rem;
  color: #b42318;
  line-height: 1.4;
}

.contact-submit {
  grid-column: 1 / -1;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 3.5rem;
  background: var(--navy);
  color: var(--mockup-gold);
  border: none;
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
}

.contact-field--select select {
  line-height: 1.4;
}

.contact-submit:hover {
  background: #0d1f38;
}

.contact-submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.contact-privacy {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-muted);
}

.contact-privacy i {
  margin-right: 0.5rem;
  color: var(--mockup-gold);
}

.contact-sidebar {
  padding: 0 1rem 0 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  min-height: 100%;
  min-width: 0;
  width: 100%;
}

.contact-sidebar-header {
  text-align: center;
  margin: 0 auto 3.5rem;
  max-width: 36rem;
  width: 100%;
  flex-shrink: 0;
}

.contact-sidebar-title {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 2.5vw, 2.8rem);
  font-weight: 500;
  color: var(--navy);
  text-align: center;
  line-height: 1.2;
  letter-spacing: normal;
  text-transform: none;
  margin: 0;
}

.contact-sidebar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem 2.5rem;
  width: 100%;
  max-width: none;
  flex: 1;
  align-content: center;
  justify-items: center;
}

.contact-sidebar-pillar {
  text-align: center;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 22rem;
}

.contact-sidebar-pillar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.2rem;
  margin-bottom: 1.4rem;
  color: var(--mockup-gold);
  font-size: 2.3rem;
}

.contact-sidebar-pillar h3 {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--mockup-gold);
  margin-bottom: 1rem;
  letter-spacing: normal;
  text-transform: none;
  line-height: 1.3;
}

.contact-sidebar-pillar p {
  font-size: 1.35rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: none;
  width: 100%;
  margin: 0 auto;
}

.contact-values {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.contact-values li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact-values li > i {
  font-size: 1.6rem;
  color: var(--mockup-gold);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-values h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mockup-gold);
  margin-bottom: 0.4rem;
}

.contact-values p {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-quick-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--cream-dark);
  border-top: 1px solid rgba(197, 160, 107, 0.25);
  border-bottom: 1px solid rgba(197, 160, 107, 0.25);
  position: relative;
}

.contact-quick-bar::before,
.contact-quick-bar::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12rem;
  height: 12rem;
  background: url("../../images/logo-removebg.png") center/contain no-repeat;
  opacity: 0.04;
  pointer-events: none;
}

.contact-quick-bar::before { left: 1%; }
.contact-quick-bar::after { right: 1%; }

.contact-quick-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 3rem 4%;
  border-right: 1px solid rgba(197, 160, 107, 0.25);
}

.contact-quick-item:last-child {
  border-right: none;
}

.contact-quick-item > i {
  font-size: 2.2rem;
  color: var(--mockup-gold);
  margin-top: 0.2rem;
}

.contact-quick-item h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.contact-quick-item p {
  font-size: 1.3rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-quick-item a {
  color: var(--mockup-gold);
  font-weight: 600;
}

.contact-section-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 4rem;
  position: relative;
}

.contact-section-title::after {
  content: "";
  display: block;
  width: 5rem;
  height: 1px;
  background: var(--mockup-gold);
  margin: 1.2rem auto 0;
}

.contact-reach {
  padding: 6rem 5%;
  background: var(--cream);
}

.contact-reach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-reach-item {
  text-align: center;
}

.contact-reach-icon {
  width: 6.5rem;
  height: 6.5rem;
  border: 1px solid var(--mockup-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--mockup-gold);
  font-size: 2rem;
}

.contact-reach-item h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.contact-reach-item p {
  font-size: 1.3rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-reach-item a:hover {
  color: var(--mockup-gold);
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-hours {
  padding: 5rem 8%;
  background: var(--cream-dark);
  position: relative;
  text-align: center;
}

.contact-hours::after {
  content: "";
  position: absolute;
  left: -5%;
  bottom: -10%;
  width: 22rem;
  height: 22rem;
  background: url("../../images/logo-removebg.png") center/contain no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.contact-hours > i {
  font-size: 2.4rem;
  color: var(--mockup-gold);
  margin-bottom: 1.5rem;
}

.contact-hours h2,
.contact-partners h2,
.contact-social-panel h2,
.contact-studio-overlay h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.contact-divider {
  margin: 1.5rem 0;
}

.contact-divider span {
  display: block;
  width: 5rem;
  height: 1px;
  background: var(--mockup-gold);
  margin: 0 auto;
}

.contact-divider--light span {
  background: rgba(255, 255, 255, 0.7);
}

.contact-hours p {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.contact-hours-note {
  font-size: 1.4rem !important;
  font-style: italic;
}

.contact-partners {
  padding: 5rem 8%;
  background: var(--cream);
  text-align: center;
}

.contact-partners > p {
  font-size: 1.4rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 auto 2.5rem;
  max-width: 480px;
}

.contact-partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.5rem;
}

.contact-partner-item {
  text-align: center;
}

.contact-partner-item i {
  font-size: 2rem;
  color: var(--mockup-gold);
  margin-bottom: 0.8rem;
}

.contact-partner-item span {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1.4;
}

.contact-connect {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  height: 40rem;
  max-height: 40rem;
  border-top: 1px solid rgba(197, 160, 107, 0.45);
}

.contact-studio {
  position: relative;
  overflow: hidden;
  min-height: 0;
  height: 100%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-studio img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.contact-studio-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(247, 243, 237, 0.28) 0%,
    rgba(247, 243, 237, 0.12) 38%,
    rgba(247, 243, 237, 0.2) 68%,
    rgba(247, 243, 237, 0.32) 100%
  );
  padding: 2.5rem 8% calc(2.5rem + 9rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-studio-overlay::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92%, 30rem);
  height: 62%;
  background: rgba(247, 243, 237, 0.62);
  filter: blur(28px);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.contact-studio-overlay > * {
  position: relative;
  z-index: 1;
}

.contact-studio-overlay h2 {
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.9);
}

.contact-studio-overlay p {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--text-dark);
  max-width: 400px;
  line-height: 1.7;
  margin: 0 auto;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.85);
}

.contact-social-panel {
  padding: 2.5rem 8%;
  min-height: 0;
  height: 100%;
  background-color: var(--cream-dark);
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-social-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/contact/connect%20with%20us.jpeg") right center / cover no-repeat;
  filter: sepia(0.35) saturate(1.15) hue-rotate(5deg) brightness(0.94) contrast(1.03);
}

.contact-social-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(247, 243, 237, 0.88) 0%,
    rgba(239, 232, 220, 0.68) 38%,
    rgba(232, 220, 200, 0.76) 68%,
    rgba(239, 232, 220, 0.84) 100%
  );
}

.contact-social-panel > * {
  position: relative;
  z-index: 2;
}

.contact-social-panel p {
  font-size: 1.4rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 auto 1.8rem;
  max-width: 400px;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem 1.25rem;
}

.contact-social-links a {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.45rem;
  text-align: left;
}

.contact-social-links i {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--navy);
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.contact-social-links a:hover i {
  background: transparent;
  color: var(--navy);
  opacity: 0.7;
}

.contact-social-links span {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .philosophy-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 0;
  }

  .philosophy-pillars-grid--five {
    grid-template-columns: repeat(2, 1fr);
  }

  .philosophy-pillars-grid--five .philosophy-pillar:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 22rem;
    margin: 0 auto;
    border-right: none;
    border-bottom: none;
  }

  .philosophy-pillar {
    border-right: none;
    border-bottom: 1px solid rgba(197, 160, 107, 0.25);
    padding-bottom: 2.5rem;
  }

  .philosophy-pillar:nth-child(odd) {
    border-right: 1px solid rgba(197, 160, 107, 0.25);
  }

  .philosophy-pillar:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .music-icons-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .music-icon-card:not(:last-child)::after {
    display: none;
  }

  .music-icon-card {
    border-bottom: 1px solid rgba(197, 160, 107, 0.25);
  }

  .music-icons-grid .music-icon-card:nth-last-child(-n+3) {
    border-bottom: none;
  }

  .inspired-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-grid--music {
    grid-template-columns: repeat(3, 1fr);
  }

  .sound-of-india-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sound-of-india-text {
    text-align: left;
  }

  .sound-body {
    max-width: none;
  }

  .soundtrack-collections {
    grid-template-columns: repeat(2, 1fr);
  }

  .soundtrack-india-layout {
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
  }

  .soundtrack-india-main {
    order: 1;
  }

  .soundtrack-journal--sidebar {
    order: 2;
    position: static;
    max-width: 44rem;
    margin: 0 auto;
  }

  .soundtrack-india-main .soundtrack-collections {
    grid-template-columns: repeat(2, 1fr);
  }

  .ow-hero {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: 100vh;
  }

  .ow-hero-image {
    min-height: 0;
  }

  .ow-hero-image::after {
    width: 100%;
    height: 45%;
    top: auto;
    bottom: 0;
    right: 0;
    background: linear-gradient(
      to bottom,
      rgba(232, 224, 214, 0) 0%,
      rgba(232, 224, 214, 0.6) 55%,
      var(--ow-hero-sky) 100%
    );
  }

  body.page-music .ow-hero {
    display: block;
    min-height: 100svh;
    height: 100svh;
  }

  body.page-music .ow-hero-image {
    position: absolute;
    inset: 0;
    min-height: 100%;
  }

  body.page-music .ow-hero-image::after {
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(16, 28, 42, 0.25) 0%,
      rgba(16, 28, 42, 0.4) 45%,
      rgba(16, 28, 42, 0.62) 100%
    );
  }

  body.page-music .ow-hero-text {
    min-height: 100svh;
    height: 100svh;
    padding: calc(var(--header-height) + 2rem) 6% 4rem;
    justify-content: flex-end;
    background: transparent;
  }

  body.page-music .ow-hero-text h1,
  body.page-music .ow-hero-text .ow-hero-tagline {
    color: #fffaf3 !important;
  }

  body.page-music .ow-hero-text p {
    color: rgba(255, 250, 243, 0.92);
  }

  body.page-world .ow-hero {
    display: block;
    min-height: 100svh;
    height: 100svh;
    overflow: hidden;
  }

  body.page-world .ow-hero-image {
    position: absolute;
    inset: 0;
    min-height: 100%;
  }

  body.page-world .ow-hero-image::after {
    display: none;
  }

  body.page-world .ow-hero-text {
    position: relative;
    z-index: 2;
    background: transparent;
    min-height: 100svh;
    height: 100svh;
    padding: calc(var(--header-height) + 2rem) 6% 4rem;
    justify-content: flex-end;
  }

  body.page-world .ow-hero-text h1,
  body.page-world .ow-hero-text .ow-hero-tagline {
    color: #fffaf3 !important;
    text-shadow: none;
  }

  body.page-world .ow-hero-text p {
    color: rgba(255, 250, 243, 0.94);
    text-shadow: none;
  }

  body.page-contact #contact-hero {
    height: 100svh;
    max-height: 100svh;
    min-height: 100svh;
    align-items: center;
    overflow: hidden;
  }

  body.page-contact .contact-hero-content {
    max-width: none;
    padding: calc(var(--header-height) + 2.5rem) 8% 4rem;
  }

  body.page-contact .contact-hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(16, 28, 42, 0.35) 0%,
      rgba(16, 28, 42, 0.62) 42%,
      rgba(16, 28, 42, 0.82) 100%
    );
  }

  body.page-contact .contact-hero-bg {
    object-fit: cover;
    object-position: center center;
  }

  body.page-enquire .contact-hero {
    min-height: 100svh;
    height: 100svh;
    max-height: 100svh;
  }

  body.page-enquire .contact-hero-bg {
    object-fit: cover;
    object-position: center center;
  }

  body.page-enquire .contact-hero-content {
    padding: calc(var(--header-height) + 2.5rem) 6% 4rem;
  }

  body.page-enquire main,
  body.page-contact main,
  body.page-world main {
    position: relative;
    z-index: 1;
  }

  .ow-hero-image img {
    min-height: 0;
    height: 100%;
  }

  .ow-hero-text {
    min-height: 0;
    padding: 3rem 8% 4rem;
  }

  body.page-world .ow-business-text {
    padding: 5rem 8%;
  }

  .ow-journeys-inner,
  .ow-business-inner,
  .ow-celebrations-inner,
  .ow-shadow-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ow-regions-visual {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }

  .ow-regions-intro,
  .ow-country-details,
  .ow-destination-showcase,
  .ow-world-map {
    grid-column: 1;
    grid-row: auto;
  }

  .ow-regions-intro { order: 1; }
  .ow-country-details { order: 2; justify-self: stretch; max-width: none; text-align: left; }
  .ow-destination-showcase { order: 3; }
  .ow-world-map { order: 4; }

  .ow-destination-showcase,
  .ow-world-map {
    aspect-ratio: 16 / 10;
  }

  .ow-business-inner {
    min-height: auto;
  }

  .ow-business-text {
    padding: 5rem 8%;
  }

  .ow-business-visual::after {
    width: 100%;
    height: 40%;
    top: auto;
    bottom: 0;
    left: 0;
    background: linear-gradient(
      to bottom,
      rgba(10, 22, 40, 0) 0%,
      rgba(10, 22, 40, 0.75) 55%,
      var(--navy) 100%
    );
  }

  body.page-world .ow-business-visual::after {
    background: linear-gradient(
      to bottom,
      rgba(239, 232, 220, 0) 0%,
      rgba(239, 232, 220, 0.78) 55%,
      var(--cream-dark) 100%
    );
  }

  .ow-business-visual img {
    min-height: 32rem;
  }

  .ow-celebrations-inner,
  .ow-shadow-inner {
    gap: 3rem;
  }

  .ow-traveller-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ow-people-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .ow-celebration-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ow-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .what-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .experience-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .contact-form {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(197, 160, 107, 0.35);
    padding-bottom: 4rem;
  }

  .contact-sidebar {
    padding: 0;
    min-height: 0;
  }

  .contact-sidebar-header {
    margin-bottom: 2.5rem;
  }

  .contact-sidebar-grid {
    gap: 2.4rem 1.2rem;
    flex: none;
  }

  .contact-reach-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .contact-partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .our-promise {
    padding: 5rem 6%;
  }

  .our-promise-header {
    margin-bottom: 3.5rem;
    max-width: none;
  }

  .our-promise-grid {
    column-gap: 0;
    row-gap: 3.5rem;
  }

  .our-promise-block h3 {
    font-size: clamp(1.85rem, 5vw, 2rem);
  }

  .our-promise-block p {
    font-size: clamp(1.4rem, 4.2vw, 1.5rem);
  }

  .memories-shared {
    padding: 5rem 6%;
  }

  .memories-shared-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .memories-shared-copy {
    padding-right: 0;
    order: 2;
  }

  .memories-shared-visual {
    order: 1;
  }

  .memories-shared-heading,
  .memories-review-text {
    max-width: none;
  }

  .home {
    margin-bottom: -24vh;
  }

  .home .video-container {
    -webkit-mask-image: linear-gradient(
      to bottom,
      #000 0%,
      #000 76%,
      rgba(0, 0, 0, 0.94) 82%,
      rgba(0, 0, 0, 0.76) 87%,
      rgba(0, 0, 0, 0.52) 92%,
      rgba(0, 0, 0, 0.26) 96%,
      rgba(0, 0, 0, 0.08) 98%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to bottom,
      #000 0%,
      #000 76%,
      rgba(0, 0, 0, 0.94) 82%,
      rgba(0, 0, 0, 0.76) 87%,
      rgba(0, 0, 0, 0.52) 92%,
      rgba(0, 0, 0, 0.26) 96%,
      rgba(0, 0, 0, 0.08) 98%,
      transparent 100%
    );
  }

  .philosophy-belief {
    min-height: min(100vh, 56rem);
    padding-top: 24vh;
  }

  .philosophy-belief-media {
    top: -24vh;
    height: calc(100% + 24vh);
  }

  .philosophy-belief-media img {
    object-fit: cover;
    object-position: 62% center;
  }

  .philosophy-belief-inner {
    align-items: flex-end;
    padding: 3rem 5%;
  }

  .philosophy-belief-copy {
    width: 100%;
    margin-right: 0;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .philosophy-pillars {
    padding: 5rem 6%;
  }

  .philosophy-pillars-header {
    margin-bottom: 3rem;
  }

  .philosophy-pillars-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .philosophy-pillars-grid--five .philosophy-pillar:nth-child(5) {
    grid-column: auto;
    max-width: none;
  }

  .philosophy-pillar {
    border-right: none !important;
    border-bottom: 1px solid rgba(197, 160, 107, 0.25);
    padding: 2.5rem 0;
  }

  .philosophy-pillar:last-child {
    border-bottom: none;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    grid-template-rows: auto;
    column-gap: 0.65rem;
    padding: 0.85rem 1.25rem;
    align-items: center;
    min-height: var(--header-height);
  }

  :root {
    --header-height: 7rem;
  }

  .site-header .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    z-index: 1002;
  }

  .site-header .brand img,
  .site-header .brand-logo {
    height: 5rem;
    max-width: min(56vw, 18rem);
    margin-left: 0;
  }

  .site-header .btn-enquire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    z-index: 1002;
    margin-right: 0.85rem;
    padding: 0.55rem 0.9rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
    line-height: 1.2;
  }

  .site-header .menu-toggle {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    z-index: 1002;
  }

  .site-header .site-nav {
    grid-column: unset;
    grid-row: unset;
    justify-self: unset;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: auto;
    width: 100%;
    height: auto;
    max-height: none;
    z-index: 1001;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 1.25rem 0.85rem;
    gap: 0;
    margin: 0;
    overflow: visible;
    background: rgba(247, 243, 237, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(197, 160, 107, 0.22);
    box-shadow: 0 10px 24px rgba(10, 22, 40, 0.07);
  }

  .site-header .site-nav:not(.open) {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .site-nav a {
    display: block;
    padding: 0.85rem 0.25rem;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--navy);
    border-bottom: 1px solid rgba(10, 22, 40, 0.08);
  }

  .site-nav a:last-child {
    border-bottom: none;
    padding-bottom: 0.35rem;
  }

  .site-header .site-nav.open {
    display: flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  body.page-home .site-header:not(.scrolled) .site-nav.open {
    background: rgba(10, 22, 40, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  }

  body.page-home .site-header:not(.scrolled) .site-nav.open a {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  body.page-home .site-header:not(.scrolled) .site-nav.open a:hover,
  body.page-home .site-header:not(.scrolled) .site-nav.open a.active {
    color: var(--gold-light);
  }

  body.inner-page .site-header .site-nav.open {
    background: rgba(10, 22, 40, 0.62);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  body.inner-page .site-header .site-nav.open a {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  body.page-home .site-header.scrolled .site-nav.open {
    background: rgba(247, 243, 237, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: rgba(197, 160, 107, 0.22);
  }

  body.page-home .site-header.scrolled .site-nav.open a {
    color: var(--navy);
    border-bottom-color: rgba(10, 22, 40, 0.08);
  }

  body.page-home .site-header:not(.scrolled) {
    background: linear-gradient(
      to bottom,
      rgba(10, 22, 40, 0.72) 0%,
      rgba(10, 22, 40, 0.42) 72%,
      transparent 100%
    );
  }

  body.page-home .site-header:not(.scrolled)::before {
    display: none;
  }

  body.page-home .site-header.scrolled {
    background: color-mix(in srgb, var(--cream-dark) 97%, transparent);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(197, 160, 107, 0.28), 0 4px 20px rgba(10, 22, 40, 0.06);
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 4.4rem;
    min-height: 4.4rem;
    padding: 0.6rem;
  }

  .personal-note-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .personal-note .founder-photo {
    margin: 0 auto;
  }

  .borders-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .music-founder-inner,
  .home-founder-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: left;
  }

  .music-founder .founder-photo,
  .home-founder .founder-photo {
    width: 100%;
    max-width: 320px;
    margin: 0;
    transform: none;
  }

  .music-founder,
  .home-founder {
    padding: 5rem 6%;
  }

  .sound-of-india {
    padding: 5rem 6%;
    text-align: center;
  }

  .sound-of-india-inner {
    max-width: 44rem;
    margin: 0 auto;
  }

  .sound-of-india-text {
    text-align: center;
  }

  .sound-eyebrow-row {
    justify-content: center;
  }

  .sound-body {
    margin-left: auto;
    margin-right: auto;
  }

  .page-hero--music .page-hero-content {
    padding: 12rem 6% 7rem;
    max-width: 100%;
  }

  .page-hero--music {
    min-height: 75vh;
  }

  .contact-quick-bar {
    grid-template-columns: 1fr;
  }

  .contact-quick-item {
    border-right: none;
    border-bottom: 1px solid rgba(197, 160, 107, 0.25);
  }

  .contact-quick-item:last-child {
    border-bottom: none;
  }

  .contact-split,
  .contact-connect {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
  }

  .contact-studio,
  .contact-social-panel {
    height: auto;
    min-height: 28rem;
    max-height: none;
  }

  .contact-studio img {
    object-position: center 30%;
  }

  .contact-social-links {
    gap: 0.75rem 1rem;
  }
}

@media (max-width: 600px) {
  .home {
    padding-top: calc(var(--header-height) + 1rem);
    margin-bottom: -8vh;
  }

  :root {
    --header-height: 6.2rem;
  }

  .site-header {
    padding: 0.7rem 1rem;
    min-height: var(--header-height);
  }

  .site-header .brand img,
  .site-header .brand-logo {
    height: 4.2rem;
    max-width: min(42vw, 12rem);
  }

  .site-header .btn-enquire {
    margin-right: 0.65rem;
    padding: 0.5rem 0.65rem;
    font-size: 0.65rem;
    letter-spacing: 0.06em;
  }

  .site-header .menu-toggle {
    min-width: 3.8rem;
    min-height: 3.8rem;
    padding: 0.45rem;
    font-size: 1.9rem;
  }

  .site-header .site-nav {
    padding: 0.45rem 1rem 0.75rem;
  }

  .home .content {
    margin-top: 0;
    padding: 1.5rem 1.5rem;
  }

  .home .content::before {
    inset: -1rem -0.5rem;
  }

  .what-grid,
  .experience-grid,
  .our-promise-grid,
  .why-grid,
  .borders-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .experience-card {
    aspect-ratio: 4 / 5;
  }

  .site-header .brand-text {
    font-size: 1.2rem;
  }

  .music-icons-grid,
  .inspired-grid {
    grid-template-columns: 1fr;
  }

  .experience-grid--music {
    grid-template-columns: 1fr;
  }

  .soundtrack-india {
    padding: 9rem 6% 10rem;
  }

  .soundtrack-india-header {
    margin-bottom: 4.5rem;
  }

  .soundtrack-playlists {
    margin-bottom: 3.5rem;
  }

  .soundtrack-credit {
    margin-bottom: 4.5rem;
  }

  .soundtrack-invitation {
    margin-bottom: 5.5rem;
  }

  .soundtrack-journal--sidebar {
    margin: 0 auto 4rem;
    max-width: 44rem;
  }

  .soundtrack-journal-paper {
    padding: 3rem 2.25rem 2.5rem;
  }

  .soundtrack-collections-wrap {
    margin-bottom: 5.5rem;
  }

  .soundtrack-india-main .soundtrack-collections {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .ow-traveller-grid,
  .ow-people-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ow-celebration-grid,
  .ow-process-grid {
    grid-template-columns: 1fr;
  }

  .ow-cta {
    min-height: 34rem;
    padding: 6rem 6%;
  }

  .page-hero {
    min-height: 45vh;
    padding-top: 10rem;
  }

  .page-hero--music .page-hero-content {
    padding: 10rem 6% 6rem;
  }

  .page-hero--music .hero-scroll {
    display: none;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-phone-row {
    grid-template-columns: 1fr;
  }

  .contact-phone-code select {
    padding-left: 1.4rem;
  }

  .contact-hero--editorial .contact-hero-inner {
    padding: 10rem 6% 5rem;
    align-items: flex-end;
  }

  .contact-hero--editorial .contact-hero-content h1 {
    max-width: none;
  }

  .contact-hero--editorial .contact-hero-bg {
    object-position: 78% center;
  }

  .contact-hero--editorial .contact-hero-media::after {
    background: linear-gradient(
      to bottom,
      rgba(248, 244, 238, 0.06) 0%,
      rgba(240, 224, 196, 0.22) 55%,
      rgba(240, 224, 196, 0.42) 100%
    );
  }

  .contact-hero--editorial .contact-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(13, 27, 42, 0.84) 0%,
      rgba(13, 27, 42, 0.62) 42%,
      rgba(13, 27, 42, 0.28) 100%
    );
  }

  .contact-hero-content {
    padding: 10rem 6% 5rem;
  }

  .contact-reach-grid {
    grid-template-columns: 1fr;
  }

  .contact-partners-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── FAQ Modal ── */
body.faq-modal-open {
  overflow: hidden;
}

.faq-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.faq-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.faq-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 18, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.faq-modal-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 980px;
  max-height: 85vh;
  background: #f8f4ee;
  border-radius: 24px;
  padding: clamp(2.5rem, 5vw, 6rem);
  overflow: auto;
  box-shadow: 0 24px 80px rgba(8, 12, 18, 0.14);
  transform: translateY(12px);
  transition: transform 0.25s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 161, 90, 0.35) transparent;
}

.faq-modal.is-open .faq-modal-container {
  transform: translateY(0);
}

.faq-modal-close {
  position: absolute;
  top: clamp(1.25rem, 3vw, 2rem);
  right: clamp(1.25rem, 3vw, 2rem);
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: #0d1b2a;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.faq-modal-close:hover {
  color: #c8a15a;
}

.faq-modal-close-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.4rem;
  height: 1px;
  background: currentColor;
  transform-origin: center;
}

.faq-modal-close-line:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq-modal-close-line:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.faq-modal-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3.5rem;
  padding-right: 2rem;
}

.faq-modal-logo {
  width: clamp(7rem, 12vw, 9rem);
  margin: 0 auto 1.5rem;
  border-radius: 4px;
}

.faq-modal-divider {
  display: block;
  width: 3rem;
  height: 1px;
  background: #c8a15a;
  margin: 0 auto 1.75rem;
}

.faq-modal-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.2vw, 3.8rem);
  font-weight: 500;
  line-height: 1.2;
  color: #0d1b2a;
  margin-bottom: 0.85rem;
  display: inline-block;
  background-image: linear-gradient(transparent 68%, rgba(200, 161, 90, 0.28) 68%);
}

.faq-modal-subtitle {
  font-family: "Inter", var(--sans);
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  font-weight: 300;
  line-height: 1.75;
  color: #5a5a5a;
}

.faq-modal-body {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.faq-section-label {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(200, 161, 90, 0.35);
}

.faq-section-num {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: #c8a15a;
  flex-shrink: 0;
}

.faq-section-title {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.2vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #0d1b2a;
  line-height: 1.25;
  background-image: linear-gradient(transparent 62%, rgba(200, 161, 90, 0.24) 62%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item + .faq-item {
  margin-top: 0.25rem;
}

.faq-question {
  width: 100%;
  padding: 1.35rem 0 1.35rem 1.25rem;
  border: none;
  border-left: 2px solid transparent;
  background: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2vw, 1.85rem);
  font-weight: 500;
  line-height: 1.45;
  color: #0d1b2a;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.faq-question:hover,
.faq-item.is-open .faq-question {
  color: #6b5428;
  border-left-color: #c8a15a;
  background-color: rgba(200, 161, 90, 0.08);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer-inner {
  padding: 0 0 1.5rem;
}

.faq-answer-inner p {
  font-family: "Inter", var(--sans);
  font-size: clamp(0.98rem, 1.05vw, 1.05rem);
  font-weight: 300;
  line-height: 1.85;
  color: #4a4a4a;
}

.faq-answer-inner p + p {
  margin-top: 0.85rem;
}

@media (max-width: 640px) {
  .faq-modal-container {
    max-height: 92vh;
    border-radius: 18px;
  }

  .faq-modal-header {
    margin-bottom: 2.5rem;
  }

  .faq-modal-body {
    gap: 2.75rem;
  }
}

/* ── Info & Legal Pages (editorial template) ── */
body.page-info {
  --info-navy: #0d1b2a;
  --info-ivory: #f8f4ee;
  --info-gold: #c8a15a;
  background: var(--info-ivory);
  color: #2c2c2c;
}

body.page-info .site-nav a.active {
  color: var(--info-gold);
  border-bottom: 1px solid var(--info-gold);
  padding-bottom: 0.2rem;
}

.info-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12rem 6% 5rem;
  background: var(--info-navy);
  color: var(--info-ivory);
  overflow: hidden;
  text-align: center;
}

.info-hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("../images/icons/soundtrack/mandala-watermark.svg");
  background-repeat: no-repeat;
  background-position: center 55%;
  background-size: min(58vw, 560px);
  opacity: 0.055;
}

.info-hero-pattern::before,
.info-hero-pattern::after {
  content: "";
  position: absolute;
  width: min(38vw, 360px);
  height: min(38vw, 360px);
  background-image: url("../images/icons/soundtrack/mandala-watermark.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.04;
}

.info-hero-pattern::before {
  top: 8%;
  left: 6%;
}

.info-hero-pattern::after {
  bottom: 6%;
  right: 5%;
}

.info-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.info-hero-label {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--info-gold);
  margin-bottom: 1.6rem;
}

.info-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 1.4rem;
}

.info-hero-intro {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.2vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(248, 244, 238, 0.82);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto;
}

.info-main {
  padding: 0 6% 8rem;
}

.info-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 8rem 0 0;
}

.info-section {
  margin-bottom: 8rem;
}

.info-section:last-child {
  margin-bottom: 0;
}

.info-section-num {
  display: block;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--info-gold);
  margin-bottom: 0.8rem;
}

.info-section h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 2.8vw, 2.8rem);
  font-weight: 500;
  color: var(--info-navy);
  line-height: 1.25;
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(200, 161, 90, 0.45);
}

.info-section h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2vw, 2.1rem);
  font-weight: 500;
  color: var(--info-navy);
  margin: 2.4rem 0 1rem;
}

.info-section p,
.info-section li {
  font-family: "Inter", var(--sans);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8;
  color: #4a4a4a;
}

.info-section p + p {
  margin-top: 1.2rem;
}

.info-section ul,
.info-section ol {
  margin: 1.2rem 0 0 1.6rem;
}

.info-section li + li {
  margin-top: 0.6rem;
}

.info-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(200, 161, 90, 0.35),
    transparent
  );
  margin: 8rem 0;
  border: none;
}

.info-faq-item {
  border-bottom: 1px solid rgba(200, 161, 90, 0.22);
}

.info-faq-item + .info-faq-item {
  margin-top: 0;
}

.info-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2vw, 1.95rem);
  font-weight: 500;
  color: var(--info-navy);
  line-height: 1.4;
}

.info-faq-question::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--info-gold);
  transition: transform 0.25s ease;
}

.info-faq-item.is-open .info-faq-question::after {
  transform: rotate(45deg);
}

.info-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.info-faq-item.is-open .info-faq-answer {
  max-height: 1200px;
}

.info-faq-answer-inner {
  padding: 0 0 1.8rem;
}

.info-faq-answer-inner p {
  font-family: "Inter", var(--sans);
  font-size: 1.45rem;
  line-height: 1.8;
  color: #4a4a4a;
}

.info-faq-answer-inner p + p {
  margin-top: 1rem;
}

.info-closing {
  max-width: 900px;
  margin: 8rem auto 0;
  padding: 0 0 2rem;
  text-align: center;
}

.info-closing-divider {
  display: block;
  width: 5rem;
  height: 1px;
  background: var(--info-gold);
  margin: 0 auto 2.4rem;
}

.info-closing h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-weight: 500;
  color: var(--info-navy);
  margin-bottom: 0.6rem;
}

.info-closing p {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2vw, 1.9rem);
  font-style: italic;
  color: #5a5a5a;
  margin-bottom: 2.4rem;
}

.info-closing-btn {
  display: inline-block;
  padding: 1.1rem 2.8rem;
  border: 1px solid var(--info-gold);
  color: var(--info-navy);
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.info-closing-btn:hover {
  background: var(--info-gold);
  color: var(--info-ivory);
}

.info-section a {
  color: var(--info-navy);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.info-section a:hover {
  color: var(--info-gold);
}

.info-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.info-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .info-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .info-faq-answer {
    transition: none;
  }
}

@media (max-width: 900px) {
  .info-hero {
    min-height: 38vh;
    padding: 11rem 8% 4rem;
  }

  .info-main {
    padding: 0 8% 6rem;
  }

  .info-content {
    padding-top: 5rem;
  }

  .info-section {
    margin-bottom: 5.5rem;
  }

  .info-divider {
    margin: 5.5rem 0;
  }
}

/* Contact — bottom CTA band (matches Business Hours column) */
.contact-cta-strip {
  display: block;
  width: 100%;
  padding: 5rem 8%;
  background-color: #efe8dc;
  position: relative;
  text-align: center;
  border-top: 1px solid rgba(197, 160, 107, 0.35);
}

.contact-cta-strip::after {
  display: none;
  content: none;
}

.contact-cta-strip h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.contact-cta-strip .ow-divider--center {
  margin-top: 0;
  margin-bottom: 2rem;
}

.contact-cta-strip p {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 auto 2.5rem;
  max-width: 36rem;
}

/* ── Mobile responsive — images, layout, touch targets ── */
@media (max-width: 900px) {
  .home .video-container video {
    object-fit: cover;
    object-position: center 25%;
  }

  .philosophy-belief-media img.philosophy-belief-image--desktop {
    object-position: center 30%;
  }

  .experience-card img,
  .what-card img {
    object-position: center center;
  }

  .memories-image-frame {
    aspect-ratio: 4 / 5;
    border-radius: 22px;
  }

  .memories-hero-image {
    object-fit: cover;
    object-position: center 25%;
    border-radius: 22px;
  }

  .ow-business-visual > img {
    min-height: 28rem;
    object-position: center 35%;
  }

  .ow-celebration-media img {
    object-position: center 30%;
  }

  .ow-destination-media img {
    object-position: center center;
  }

  .ow-cta-media img {
    object-position: center 40%;
  }

  body.page-contact .contact-hero-bg {
    object-position: center 35%;
  }

  .contact-studio {
    min-height: 32rem;
  }

  .contact-studio img {
    min-height: 32rem;
    object-position: center 28%;
  }

  .contact-social-panel {
    min-height: 32rem;
    padding: 2rem 6%;
  }

  .contact-social-panel::after {
    background-position: right center;
  }

  .page-hero--music .page-hero-bg {
    object-position: center 30%;
  }

  .music-founder .founder-photo img {
    object-position: center 20%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

@media (max-width: 600px) {
  /* ── Mobile hero + philosophy: short shoreline merge, text left / architecture right ── */
  .hero-philosophy-merge {
    --mobile-phil-overlap: 8vh;
    --mobile-phil-fade: 9vh;
    background: transparent;
    overflow: hidden;
  }

  .home {
    min-height: 49vh;
    margin-bottom: calc(var(--mobile-phil-overlap) * -1);
    padding-top: calc(var(--header-height) + 1rem);
    z-index: 2;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .home::after {
    display: none;
  }

  .home .video-container {
    z-index: 1;
    -webkit-mask-image: linear-gradient(
      to bottom,
      #000 0%,
      #000 82%,
      rgba(0, 0, 0, 0.94) 88%,
      rgba(0, 0, 0, 0.78) 92%,
      rgba(0, 0, 0, 0.52) 96%,
      rgba(0, 0, 0, 0.22) 98.5%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to bottom,
      #000 0%,
      #000 82%,
      rgba(0, 0, 0, 0.94) 88%,
      rgba(0, 0, 0, 0.78) 92%,
      rgba(0, 0, 0, 0.52) 96%,
      rgba(0, 0, 0, 0.22) 98.5%,
      transparent 100%
    );
  }

  .home .video-container video {
    object-fit: cover;
    object-position: center 30%;
  }

  .home .content {
    position: relative;
    z-index: 5;
    margin-top: 0;
    padding: 0.75rem 1.5rem 1.25rem;
  }

  .home .content::before {
    inset: -0.75rem -0.5rem;
  }

  .philosophy-belief-image--desktop {
    display: none;
  }

  .philosophy-belief-image--mobile {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 86% 28%;
  }

  .philosophy-belief {
    z-index: 1;
    align-items: flex-start;
    min-height: 90vh;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    background: #f3ebdd;
  }

  .philosophy-belief-media {
    z-index: 1;
    top: calc(var(--mobile-phil-overlap) * -1);
    height: calc(100% + var(--mobile-phil-overlap));
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0,
      rgba(0, 0, 0, 0.12) 3vh,
      rgba(0, 0, 0, 0.42) 5vh,
      rgba(0, 0, 0, 0.72) 7vh,
      rgba(0, 0, 0, 0.9) 8vh,
      #000 var(--mobile-phil-fade),
      #000 100%
    );
    mask-image: linear-gradient(
      to bottom,
      transparent 0,
      rgba(0, 0, 0, 0.12) 3vh,
      rgba(0, 0, 0, 0.42) 5vh,
      rgba(0, 0, 0, 0.72) 7vh,
      rgba(0, 0, 0, 0.9) 8vh,
      #000 var(--mobile-phil-fade),
      #000 100%
    );
  }

  .philosophy-belief-media::after {
    display: none;
  }

  .philosophy-belief-inner {
    align-items: flex-start;
    align-self: flex-start;
    width: 100%;
    margin-top: 0;
    padding: max(1.5rem, 3vh) 6% 3.5rem;
    position: relative;
    z-index: 5;
  }

  .philosophy-belief-copy,
  .philosophy-belief-copy * {
    opacity: 1;
  }

  .philosophy-belief-copy {
    width: 62%;
    max-width: 62%;
    margin-right: auto;
    padding: 0;
    background: none;
  }

  .philosophy-belief-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    color: var(--mockup-gold);
  }

  .philosophy-belief-lead {
    font-size: clamp(0.92rem, 2.5vw, 1.02rem);
    line-height: 1.5;
    max-width: 100%;
  }

  .philosophy-belief-headline {
    font-size: clamp(2.2rem, 6.4vw, 2.6rem);
    max-width: 13ch;
    line-height: 1.15;
  }

  .philosophy-belief-headline,
  .philosophy-belief-body,
  .philosophy-shadow-name {
    color: var(--navy);
    opacity: 1;
  }

  .philosophy-belief-lead,
  .philosophy-belief-body,
  .philosophy-belief-closing-text {
    color: #2e2e2e;
    opacity: 1;
  }

  .philosophy-belief-body {
    font-size: clamp(0.95rem, 2.6vw, 1.05rem);
    line-height: 1.75;
    max-width: 100%;
    margin-bottom: 1.4rem;
  }

  .philosophy-belief-closing {
    border-top: none !important;
    padding-top: 0;
    margin-top: 0;
    max-width: 100%;
  }

  .philosophy-shadow-name {
    display: block;
    max-width: 11ch;
    font-size: clamp(2rem, 7vw, 2.45rem);
    line-height: 1.15;
  }

  .experience-card {
    aspect-ratio: 1 / 1;
  }

  .experience-card img {
    object-position: center 35%;
  }

  .memories-image-frame {
    aspect-ratio: 4 / 5;
    border-radius: 22px;
  }

  .memories-hero-image {
    object-fit: cover;
    object-position: center 22%;
    border-radius: 22px;
  }

  .memories-thumbs {
    gap: 0.65rem;
  }

  .memories-thumb {
    width: 3.6rem;
    height: 3.6rem;
  }

  body.page-world .ow-hero-text {
    padding: 3.5rem 5% 4.5rem;
  }

  .ow-business-visual > img {
    min-height: 24rem;
    max-height: 32rem;
    object-position: center 30%;
  }

  .ow-celebration-card {
    min-height: 22rem;
    aspect-ratio: 4 / 5;
  }

  .ow-celebration-media img {
    object-position: center 25%;
  }

  .contact-studio,
  .contact-social-panel {
    min-height: 26rem;
  }

  .contact-studio img {
    min-height: 26rem;
    object-position: center 22%;
  }

  body.page-contact .contact-hero-bg {
    object-position: center 30%;
  }

  body.page-contact .contact-hero-content {
    padding: 8rem 5% 4rem;
  }

  .contact-reach,
  .contact-hours,
  .contact-split,
  .contact-connect {
    padding-left: 5%;
    padding-right: 5%;
  }

  .contact-social-links {
    gap: 0.65rem 1rem;
  }

  .page-hero--music .page-hero-bg {
    object-position: center 25%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .footer-col {
    align-items: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: none;
    gap: 0.75rem;
  }

  .footer-brand > img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-height: 4.8rem;
    max-width: 12rem;
  }

  .footer-social {
    justify-content: center;
  }

  .newsletter-form {
    max-width: 28rem;
    margin: 0 auto;
  }

  .info-hero {
    min-height: 34vh;
    padding: 9rem 5% 3.5rem;
  }

  .info-main {
    padding: 0 5% 5rem;
  }
}

/* ── Footer / social icons — black, no circles, all pages ── */
.site-footer .footer-social a,
body.page-home .site-footer .footer-social a,
body.page-contact .site-footer .footer-social a,
body.page-enquire .site-footer .footer-social a,
body.page-music .site-footer .footer-social a,
body.page-world .site-footer .footer-social a,
body.inner-page .site-footer .footer-social a,
.site-footer--contact .footer-social a {
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  color: #0a1628 !important;
  padding: 0.15rem !important;
}

.site-footer .footer-social a i,
.site-footer .footer-social a .fa-brands,
body.page-home .site-footer .footer-social a i,
body.page-contact .site-footer .footer-social a i,
body.page-enquire .site-footer .footer-social a i,
body.page-music .site-footer .footer-social a i,
body.page-world .site-footer .footer-social a i,
body.inner-page .site-footer .footer-social a i,
.site-footer--contact .footer-social a i {
  background: transparent !important;
  border-radius: 0 !important;
  color: #0a1628 !important;
  font-size: 1rem !important;
  width: auto !important;
  height: auto !important;
}

.site-footer .footer-social a svg,
.site-footer .footer-social a svg path {
  fill: #0a1628 !important;
  color: #0a1628 !important;
}

.contact-social-links i {
  background: transparent !important;
  border-radius: 0 !important;
  color: #0a1628 !important;
  width: auto !important;
  height: auto !important;
  font-size: 1rem !important;
}

