/* ==========================================================================
   CHITRAGAATHA PHOTOGRAPHY - MASTER LUXURY EDITORIAL DESIGN SYSTEM
   ========================================================================== */

:root {
  --cg-scroll-thumb: #77736b;
  --cg-scroll-track: transparent;
  --cg-scroll-size: 6px;
  --cg-scroll-radius: 30px;
  --bg-page: #FAF8F5;
  --bg-sage-box: #E6EDE8;
  --bg-sage-card: #EDF3EF;
  --bg-white: #FFFFFF;
  
  --sage-accent: #7D9B8E;
  --sage-dark: #628274;
  --sage-btn: #83A294;
  --sage-btn-hover: #6E8F80;
  
  --text-dark: #222524;
  --text-muted: #69706C;
  --text-subtle: #98A09C;
  --border-light: #E2DBD2;
  --border-sage: #D1DDD6;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
  --font-script: 'Alex Brush', 'Pinyon Script', cursive;

  --max-width: 1140px;
  --ease-slide: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-size-adjust: 100%;
}

/* Global configurable scrollbar */
html,*{scrollbar-width:thin;scrollbar-color:var(--cg-scroll-thumb) var(--cg-scroll-track)}
*::-webkit-scrollbar{width:var(--cg-scroll-size);height:var(--cg-scroll-size)}*::-webkit-scrollbar-track{background:var(--cg-scroll-track)}*::-webkit-scrollbar-thumb{background:var(--cg-scroll-thumb);border-radius:var(--cg-scroll-radius);border:0}*::-webkit-scrollbar-button{display:none;width:0;height:0}

/* Lenis Smooth Inertia Scroll Standards */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  background-color: var(--bg-page);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   ANIMATION SYSTEM (BIDIRECTIONAL SCROLL TRANSITIONS)
   ========================================================================== */

:root {
  --reveal-duration: 0.85s;
  --reveal-up-duration: 0.85s;
  --reveal-current-duration: var(--reveal-duration);
  --reveal-opacity-duration: 0.7s;
}

/* Directional Slides */
.slide-in-left {
  opacity: 0;
  transform: translateX(-50px) scale(0.96);
  transition: transform var(--reveal-current-duration, 0.9s) var(--ease-slide), opacity var(--reveal-opacity-duration, 0.7s) ease;
  will-change: transform, opacity;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px) scale(0.96);
  transition: transform var(--reveal-current-duration, 0.9s) var(--ease-slide), opacity var(--reveal-opacity-duration, 0.7s) ease;
  will-change: transform, opacity;
}

.slide-in-up {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: transform var(--reveal-current-duration, 0.9s) var(--ease-slide), opacity var(--reveal-opacity-duration, 0.7s) ease;
  will-change: transform, opacity;
}

.slide-in-scale {
  opacity: 0;
  transform: scale(0.93);
  transition: transform var(--reveal-current-duration, 0.95s) var(--ease-slide), opacity var(--reveal-opacity-duration, 0.75s) ease;
  will-change: transform, opacity;
}

/* Word-by-word Split Animations */
.split-word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin-right: 0.28em;
  padding-bottom: 0.1em;
}

.split-word-inner {
  display: inline-block;
  transform: translateY(115%) rotate(2deg);
  opacity: 0;
  transition: transform var(--reveal-current-duration, 0.8s) var(--ease-slide), opacity var(--reveal-opacity-duration, 0.55s) ease;
  will-change: transform, opacity;
}

.split-eyebrow {
  opacity: 0;
  transform: translateY(16px);
  letter-spacing: 0.12em;
  transition: opacity var(--reveal-opacity-duration, 0.7s) var(--ease-slide), transform var(--reveal-current-duration, 0.7s) var(--ease-slide), letter-spacing var(--reveal-current-duration, 0.8s) var(--ease-slide);
  will-change: transform, opacity, letter-spacing;
}

.split-body {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(3px);
  transition: opacity var(--reveal-opacity-duration, 0.75s) var(--ease-slide), transform var(--reveal-current-duration, 0.75s) var(--ease-slide), filter 0.65s ease;
  will-change: transform, opacity, filter;
}

.split-script {
  opacity: 0;
  transform: rotate(-10deg) scale(0.88) translateY(16px);
  transition: opacity var(--reveal-opacity-duration, 0.9s) var(--ease-slide), transform var(--reveal-current-duration, 0.9s) var(--ease-slide);
  will-change: transform, opacity;
}

.split-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--reveal-opacity-duration, 0.7s) var(--ease-slide), transform var(--reveal-current-duration, 0.7s) var(--ease-slide);
  will-change: transform, opacity;
}

/* ==========================================================================
   SCROLL UP / RE-ENTRY MOTION STYLES (Reverse & Inward)
   ========================================================================== */

/* REVERSE STYLE */
body[data-reveal-up-style="reverse"] [data-reveal-dir="up"].slide-in-up,
body[data-reveal-up-style="reverse"] [data-reveal-dir="up"] .slide-in-up {
  transform: translateY(-40px) scale(0.96);
}
body[data-reveal-up-style="reverse"] [data-reveal-dir="up"].slide-in-left,
body[data-reveal-up-style="reverse"] [data-reveal-dir="up"] .slide-in-left {
  transform: translateX(50px) scale(0.96);
}
body[data-reveal-up-style="reverse"] [data-reveal-dir="up"].slide-in-right,
body[data-reveal-up-style="reverse"] [data-reveal-dir="up"] .slide-in-right {
  transform: translateX(-50px) scale(0.96);
}
body[data-reveal-up-style="reverse"] [data-reveal-dir="up"].slide-in-scale,
body[data-reveal-up-style="reverse"] [data-reveal-dir="up"] .slide-in-scale {
  transform: scale(1.07);
}
body[data-reveal-up-style="reverse"] [data-reveal-dir="up"].split-eyebrow,
body[data-reveal-up-style="reverse"] [data-reveal-dir="up"] .split-eyebrow {
  transform: translateY(-16px);
}
body[data-reveal-up-style="reverse"] [data-reveal-dir="up"].split-body,
body[data-reveal-up-style="reverse"] [data-reveal-dir="up"] .split-body {
  transform: translateY(-20px);
}
body[data-reveal-up-style="reverse"] [data-reveal-dir="up"].split-card,
body[data-reveal-up-style="reverse"] [data-reveal-dir="up"] .split-card {
  transform: translateY(-20px);
}
body[data-reveal-up-style="reverse"] [data-reveal-dir="up"].split-script,
body[data-reveal-up-style="reverse"] [data-reveal-dir="up"] .split-script {
  transform: rotate(10deg) scale(0.88) translateY(-16px);
}
body[data-reveal-up-style="reverse"] [data-reveal-dir="up"] .split-word-inner,
body[data-reveal-up-style="reverse"] [data-reveal-dir="up"].heading-editorial .split-word-inner {
  transform: translateY(-115%) rotate(-2deg);
}

/* INWARD STYLE */
body[data-reveal-up-style="inward"] [data-reveal-dir="up"].slide-in-up,
body[data-reveal-up-style="inward"] [data-reveal-dir="up"] .slide-in-up {
  transform: translateY(-36px) scale(0.96);
}
body[data-reveal-up-style="inward"] [data-reveal-dir="up"].slide-in-left,
body[data-reveal-up-style="inward"] [data-reveal-dir="up"] .slide-in-left {
  transform: translate(-45px, -18px) scale(0.96);
}
body[data-reveal-up-style="inward"] [data-reveal-dir="up"].slide-in-right,
body[data-reveal-up-style="inward"] [data-reveal-dir="up"] .slide-in-right {
  transform: translate(45px, -18px) scale(0.96);
}
body[data-reveal-up-style="inward"] [data-reveal-dir="up"].slide-in-scale,
body[data-reveal-up-style="inward"] [data-reveal-dir="up"] .slide-in-scale {
  transform: translateY(-15px) scale(0.94);
}
body[data-reveal-up-style="inward"] [data-reveal-dir="up"].split-eyebrow,
body[data-reveal-up-style="inward"] [data-reveal-dir="up"] .split-eyebrow {
  transform: translateY(-16px);
}
body[data-reveal-up-style="inward"] [data-reveal-dir="up"].split-body,
body[data-reveal-up-style="inward"] [data-reveal-dir="up"] .split-body {
  transform: translateY(-20px);
}
body[data-reveal-up-style="inward"] [data-reveal-dir="up"].split-card,
body[data-reveal-up-style="inward"] [data-reveal-dir="up"] .split-card {
  transform: translateY(-20px);
}
body[data-reveal-up-style="inward"] [data-reveal-dir="up"].split-script,
body[data-reveal-up-style="inward"] [data-reveal-dir="up"] .split-script {
  transform: rotate(-6deg) scale(0.9) translateY(-16px);
}
body[data-reveal-up-style="inward"] [data-reveal-dir="up"] .split-word-inner,
body[data-reveal-up-style="inward"] [data-reveal-dir="up"].heading-editorial .split-word-inner {
  transform: translateY(-115%) rotate(-1deg);
}

/* ==========================================================================
   ACTIVE / VISIBLE STATE (Smoothly transitions to final resting position)
   ========================================================================== */

.is-visible.slide-in-left,
.is-visible .slide-in-left,
[data-reveal-dir="up"].is-visible.slide-in-left,
.is-visible [data-reveal-dir="up"].slide-in-left,
[data-reveal-dir="up"].is-visible .slide-in-left {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.is-visible.slide-in-right,
.is-visible .slide-in-right,
[data-reveal-dir="up"].is-visible.slide-in-right,
.is-visible [data-reveal-dir="up"].slide-in-right,
[data-reveal-dir="up"].is-visible .slide-in-right {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.is-visible.slide-in-up,
.is-visible .slide-in-up,
[data-reveal-dir="up"].is-visible.slide-in-up,
.is-visible [data-reveal-dir="up"].slide-in-up,
[data-reveal-dir="up"].is-visible .slide-in-up {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.is-visible.slide-in-scale,
.is-visible .slide-in-scale,
[data-reveal-dir="up"].is-visible.slide-in-scale,
.is-visible [data-reveal-dir="up"].slide-in-scale,
[data-reveal-dir="up"].is-visible .slide-in-scale {
  opacity: 1;
  transform: scale(1);
}

.is-visible .split-word-inner,
.is-visible.heading-editorial .split-word-inner,
.is-visible.nav-brand-title .split-word-inner,
[data-reveal-dir="up"].is-visible .split-word-inner,
.is-visible [data-reveal-dir="up"] .split-word-inner,
[data-reveal-dir="up"].is-visible.heading-editorial .split-word-inner {
  transform: translateY(0%) rotate(0deg);
  opacity: 1;
}

.is-visible.split-eyebrow,
.is-visible .split-eyebrow,
[data-reveal-dir="up"].is-visible.split-eyebrow,
.is-visible [data-reveal-dir="up"].split-eyebrow,
[data-reveal-dir="up"].is-visible .split-eyebrow {
  opacity: 1;
  transform: translateY(0);
  letter-spacing: 0.26em;
}

.is-visible.split-body,
.is-visible .split-body,
[data-reveal-dir="up"].is-visible.split-body,
.is-visible [data-reveal-dir="up"].split-body,
[data-reveal-dir="up"].is-visible .split-body {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.is-visible.split-script,
.is-visible .split-script,
[data-reveal-dir="up"].is-visible.split-script,
.is-visible [data-reveal-dir="up"].split-script,
[data-reveal-dir="up"].is-visible .split-script {
  opacity: 1;
  transform: rotate(-4deg) scale(1) translateY(0);
}

.is-visible.split-card,
.is-visible .split-card,
[data-reveal-dir="up"].is-visible.split-card,
.is-visible [data-reveal-dir="up"].split-card,
[data-reveal-dir="up"].is-visible .split-card {
  opacity: 1;
  transform: translateY(0);
}

/* Typography Standards */
.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--sage-dark);
  margin-bottom: 12px;
}

.eyebrow-center {
  text-align: center;
}

.heading-editorial {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.18;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.script-accent {
  font-family: var(--font-script);
  font-size: 2.6rem;
  color: var(--sage-dark);
  line-height: 1;
  font-weight: 400;
  display: inline-block;
  transform: rotate(-4deg);
}

/* Buttons */
.btn-sage-solid {
  display: inline-block;
  background-color: var(--sage-btn);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 11px 26px;
  border-radius: 2px;
  border: 1px solid var(--sage-btn);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.btn-sage-solid:hover {
  background-color: var(--sage-btn-hover);
  border-color: var(--sage-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(125, 155, 142, 0.35);
}

.btn-sage-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 2px;
  border: 1px solid var(--text-dark);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-sage-outline:hover {
  background-color: var(--text-dark);
  color: #FFFFFF;
}

/* ==========================================================================
   1. NAVIGATION & MOBILE DRAWER (STICKY LUXURY NAVBAR)
   ========================================================================== */
.site-nav-wrap {
  position: sticky;
  top: 0;
  width: 100%;
  padding-top: var(--nav-pad-top, 18px);
  padding-bottom: var(--nav-pad-bottom, 16px);
  padding-left: var(--nav-side-pad, 32px);
  padding-right: var(--nav-side-pad, 32px);
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 219, 210, 0.7);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  z-index: 1000;
  transition: padding var(--nav-sticky-speed, 300ms) ease, background 0.3s ease;
}

.site-nav-wrap.is-sticky {
  padding-top: var(--nav-pad-top-sticky, 10px);
  padding-bottom: var(--nav-pad-bottom-sticky, 10px);
}

.site-nav-wrap.hide-subtitle-sticky.is-sticky .nav-brand-sub,
.site-nav-wrap[data-hide-subtitle-sticky="true"].is-sticky .nav-brand-sub {
  opacity: 0;
  max-height: 0;
  margin-top: 0;
  transform: translateY(-4px);
  pointer-events: none;
}

.nav-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.nav-links-left {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--nav-link-gap, 36px);
}

.nav-links-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--nav-link-gap, 36px);
}

.nav-a {
  font-family: var(--font-sans);
  font-size: var(--nav-font-size, 0.72rem);
  letter-spacing: var(--nav-letter-spacing, 0.22em);
  text-transform: uppercase;
  color: var(--text-dark);
  font-weight: 400;
  transition: color 0.2s ease;
  position: relative;
  white-space: nowrap;
}

.nav-a:hover {
  color: var(--nav-hover-color, var(--sage-dark));
  font-weight: var(--nav-hover-weight, 400);
}

.nav-a.active {
  color: var(--sage-dark);
  font-weight: 500;
}

.nav-a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--nav-hover-color, var(--sage-dark));
  transition: width 0.3s ease;
  display: var(--nav-hover-underline-display, block);
}

.nav-a:hover::after {
  width: var(--nav-hover-underline-width, 100%);
}

.nav-brand-center {
  text-align: center;
  padding: 0 var(--nav-logo-gap, 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nav-brand-center a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.nav-brand-title {
  font-family: var(--font-serif);
  font-size: var(--nav-logo-size-desktop, 1.7rem);
  letter-spacing: 0.18em;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
  display: block;
}

.nav-brand-sub {
  display: block;
  font-size: var(--nav-sub-size, 0.55rem);
  letter-spacing: var(--nav-sub-spacing, 0.38em);
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-top: 3px;
  overflow: hidden;
  transition: opacity var(--nav-sticky-speed, 300ms) ease, max-height var(--nav-sticky-speed, 300ms) ease, margin-top var(--nav-sticky-speed, 300ms) ease, transform var(--nav-sticky-speed, 300ms) ease;
}

.nav-brand-logo-img {
  max-height: calc(var(--nav-logo-size-desktop, 1.7rem) * 1.5);
  width: auto;
  object-fit: contain;
  display: block;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 8px;
}

/* Mobile Drawer (STRICTLY HIDDEN ON DESKTOP) */
.mobile-nav-drawer {
  display: none !important;
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero-wrapper {
  padding: 40px 0 80px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 60px;
  align-items: center;
}

.hero-copy {
  padding-right: 15px;
}

.hero-copy .heading-editorial {
  font-size: 3.4rem;
  margin-bottom: 20px;
}

.hero-copy p {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.8;
  max-width: 360px;
  margin-bottom: 30px;
}

.hero-imagery {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-tint-backdrop {
  position: absolute;
  top: -15px;
  right: 60px;
  width: 78%;
  height: 85%;
  background-color: var(--bg-sage-box);
  z-index: 1;
}

.hero-img-box-1 {
  position: relative;
  z-index: 2;
  width: 240px;
  height: 380px;
  margin-right: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.hero-img-box-2 {
  position: relative;
  z-index: 2;
  width: 260px;
  height: 420px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.hero-img-box-1 img,
.hero-img-box-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-imagery:hover .hero-img-box-1 img,
.hero-imagery:hover .hero-img-box-2 img {
  transform: scale(1.03);
}

.hero-script-top {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
}

.hero-seal-badge {
  position: absolute;
  bottom: -15px;
  right: -10px;
  z-index: 4;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-sage-card);
  border: 1px dashed var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateBadge 20s linear infinite;
}

.hero-seal-badge svg {
  width: 100%;
  height: 100%;
}

@keyframes rotateBadge {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   3. SECTION 2: WHAT CAN YOU EXPECT
   ========================================================================== */
.expect-section {
  padding: 0 0 90px;
}

.expect-box {
  background-color: var(--bg-sage-box);
  padding: 70px 60px;
  position: relative;
}

.expect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.expect-text .heading-editorial {
  font-size: 2.9rem;
  margin-bottom: 18px;
}

.expect-text p {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.expect-media-col {
  position: relative;
  min-height: 380px;
}

.expect-wide-img {
  width: 82%;
  height: 240px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.expect-tall-img {
  width: 240px;
  height: 340px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.expect-wide-img img,
.expect-tall-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expect-script-float {
  position: absolute;
  top: 140px;
  left: 210px;
  z-index: 4;
}

.expect-concentric-stamp {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 90px;
  height: 90px;
  z-index: 4;
  pointer-events: none;
  opacity: 0.7;
}

.expect-sub-caption {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-subtle);
  position: absolute;
  bottom: -32px;
  right: 0;
  text-align: right;
  width: 240px;
}

/* ==========================================================================
   4. SECTION 3: SERVICES & PACKAGES LIST
   ========================================================================== */
.services-section-ref {
  padding: 50px 0 100px;
}

.services-header-ref {
  text-align: center;
  margin-bottom: 55px;
}

.services-header-ref .heading-editorial {
  font-size: 2.6rem;
}

.services-grid-ref {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.services-list-items {
  border-top: 1px solid var(--border-light);
}

.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-row:hover {
  padding-left: 8px;
}

.service-row-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  text-transform: uppercase;
}

.service-row-subtitle {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-top: 4px;
}

.service-circle-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-sage);
  background: var(--bg-sage-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--sage-dark);
  transition: all 0.3s ease;
}

.service-row:hover .service-circle-dot,
.service-row-active .service-circle-dot {
  background: var(--sage-btn);
  border-color: var(--sage-btn);
  color: #fff;
  transform: rotate(45deg);
}

.services-cta-wrap {
  margin-top: 40px;
  text-align: center;
}

.service-side-photo {
  width: 100%;
  height: 480px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.service-side-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   5. SECTION 4: FULL-WIDTH TESTIMONIAL BANNER (WITH PARALLAX)
   ========================================================================== */
.testimonial-banner-ref {
  width: 100%;
  min-height: 480px;
  padding: 130px 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-bg-layer {
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 180%;
  z-index: 1;
  pointer-events: none;
  transform: translate3d(0, var(--cg-image-motion-y, 0px), 0);
  will-change: auto;
}

.testimonial-banner-ref[data-cg-image-motion-inview="true"] .parallax-bg-layer {
  will-change: transform;
}

.parallax-bg-layer img,
.parallax-bg-layer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
}

.mobile-only-poster {
  display: none;
}

@media (max-width: 768px) {
  .parallax-bg-layer[data-parallax-mobile="false"] video {
    display: none !important;
  }
  .parallax-bg-layer[data-parallax-mobile="false"] .mobile-only-poster {
    display: block !important;
  }
}

.testimonial-card-ref {
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  padding: 45px 50px;
  max-width: 620px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.95);
}

.testimonial-card-ref .quote-dash {
  width: 24px;
  height: 1.5px;
  background-color: var(--sage-dark);
  margin: 0 auto 16px;
}

.testimonial-quote-body {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.testimonial-author-ref {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 500;
}

/* ==========================================================================
   6. SECTION 5: BEHIND THE LENS / ABOUT
   ========================================================================== */
.about-section-ref {
  padding: 90px 0;
}

.about-grid-ref {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.about-mosaic-col {
  position: relative;
}

.about-top-photo {
  width: 78%;
  height: 320px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.about-bottom-photo {
  width: 60%;
  height: 240px;
  margin-left: 35%;
  margin-top: -60px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
  position: relative;
  z-index: 2;
}

.about-top-photo img,
.about-bottom-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-arch-stamp {
  position: absolute;
  bottom: -25px;
  left: 20%;
  width: 80px;
  height: 80px;
  opacity: 0.8;
  z-index: 3;
}

.about-content-col .heading-editorial {
  font-size: 2.6rem;
  margin-bottom: 22px;
}

.about-content-col p {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-meta-list {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-meta-row {
  display: flex;
  gap: 12px;
  font-size: 0.82rem;
}

.about-meta-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 500;
  min-width: 100px;
}

/* ==========================================================================
   7. SECTION 6: INVESTMENT & PACKAGES
   ========================================================================== */
.investment-section-ref {
  background-color: var(--bg-sage-box);
  padding: 90px 0;
}

.investment-header-ref {
  text-align: center;
  margin-bottom: 50px;
}

.investment-header-ref .heading-editorial {
  font-size: 2.6rem;
}

.packages-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto 60px;
}

.package-card-ref {
  background: #FFFFFF;
  padding: 30px 40px;
  display: grid;
  grid-template-columns: 1.2fr 1.6fr auto;
  gap: 30px;
  align-items: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card-ref:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.package-title-ref h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.package-title-ref span {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-top: 4px;
}

.package-bullets-ref ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.package-bullets-ref li {
  font-size: 0.8rem;
  color: var(--text-muted);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.package-bullets-ref li::before {
  content: '•';
  color: var(--sage-btn);
  font-size: 1.1rem;
}

/* 4 Inclusions with Diamond Icons */
.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.inclusion-item {
  text-align: left;
}

.inclusion-icon {
  width: 22px;
  height: 22px;
  color: var(--sage-dark);
  margin-bottom: 12px;
}

.inclusion-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.inclusion-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   8. SECTION 7: JOURNAL / BLOG
   ========================================================================== */
.journal-section-ref {
  padding: 90px 0;
}

.journal-header-ref {
  text-align: center;
  margin-bottom: 50px;
}

.journal-header-ref .heading-editorial {
  font-size: 2.6rem;
}

.journal-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.journal-article-card {
  display: flex;
  flex-direction: column;
}

.journal-photo-wrap {
  width: 100%;
  height: 280px;
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  overflow: hidden;
}

.journal-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.journal-article-card:hover .journal-photo-wrap img {
  transform: scale(1.04);
}

.journal-post-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 6px;
}

.journal-post-heading {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.journal-post-link {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dark);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.journal-post-link:hover {
  color: var(--sage-dark);
  gap: 10px;
}

.journal-cta-wrap {
  text-align: center;
  margin-top: 20px;
}

/* ==========================================================================
   9. SECTION 8: INSTAGRAM & MOODBOARD
   ========================================================================== */
.moodboard-section-ref {
  padding: 80px 0 90px;
  background-color: var(--bg-sage-card);
  position: relative;
}

.moodboard-inner-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 30px;
  align-items: center;
  position: relative;
}

.moodboard-left-img {
  width: 100%;
  height: 340px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.moodboard-center-copy {
  text-align: center;
  padding: 0 10px;
}

.moodboard-center-copy .heading-editorial {
  font-size: 2.3rem;
  margin-bottom: 14px;
}

.moodboard-center-copy p {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.moodboard-right-img {
  width: 100%;
  height: 340px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.moodboard-left-img img,
.moodboard-right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moodboard-bottom-two {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: -50px;
  position: relative;
  z-index: 3;
}

.moodboard-sub-img {
  width: 180px;
  height: 200px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

.moodboard-sub-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moodboard-script-accent {
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 4;
}

/* ==========================================================================
   10. INQUIRY MODAL POPUP
   ========================================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(34, 37, 36, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #FFFFFF;
  width: 100%;
  max-width: 520px;
  padding: 40px;
  border-radius: 2px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.modal-close-x {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-subtle);
}

.modal-header-ref {
  text-align: center;
  margin-bottom: 25px;
}

.modal-header-ref h3 {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 400;
  margin-bottom: 6px;
}

.modal-header-ref p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.input-row {
  margin-bottom: 16px;
}

.input-row label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.input-field {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-light);
  border-radius: 2px;
  font-family: inherit;
  font-size: 0.86rem;
  background: var(--bg-page);
  color: var(--text-dark);
}

.input-field:focus {
  outline: none;
  border-color: var(--sage-btn);
  background: #FFFFFF;
}

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

@media (max-width: 960px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-imagery {
    justify-content: center;
  }
  .expect-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .expect-media-col {
    min-height: 320px;
  }
  .services-grid-ref {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-side-photo {
    height: 360px;
  }
  .about-grid-ref {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .package-card-ref {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .inclusions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .moodboard-inner-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .moodboard-bottom-two {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .nav-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-links-left,
  .nav-links-right {
    display: none !important;
  }
  .mobile-menu-btn {
    display: block;
  }
  .nav-brand-title {
    font-size: var(--nav-logo-size-mobile, 1.25rem);
  }
  .nav-brand-center {
    padding: 0;
    text-align: left;
    align-items: flex-start;
  }
  .nav-brand-center a {
    align-items: flex-start;
  }
  .nav-brand-logo-img {
    max-height: calc(var(--nav-logo-size-mobile, 1.25rem) * 1.5);
  }
  
  /* Mobile Drawer Active State */
  .mobile-nav-drawer {
    display: flex !important;
    position: fixed;
    inset: 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(12px);
    z-index: 99999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    padding: 40px 24px;
  }

  .mobile-nav-drawer.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 2.2rem;
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    padding: 10px;
  }

  .mobile-nav-brand {
    text-align: center;
    margin-bottom: 35px;
  }

  .mobile-nav-brand h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .mobile-nav-brand span {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-subtle);
  }

  .mobile-drawer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    margin-bottom: 30px;
  }

  .mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    letter-spacing: 0.08em;
    color: var(--text-dark);
    text-transform: uppercase;
    transition: color 0.2s ease, transform 0.2s ease;
  }

  .mobile-nav-link:hover {
    color: var(--sage-btn);
    transform: scale(1.05);
  }

  .hero-copy .heading-editorial {
    font-size: 2.6rem;
  }
  .hero-imagery {
    flex-direction: column;
    align-items: center;
  }
  .hero-img-box-1,
  .hero-img-box-2 {
    width: 100%;
    max-width: 290px;
    height: 320px;
    margin: 0 0 16px 0;
  }
  .journal-cards-grid {
    grid-template-columns: 1fr;
  }
  .inclusions-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-banner-ref {
    padding: 90px 16px;
  }
  .testimonial-card-ref {
    padding: 35px 25px;
  }
}

/* ==========================================================================
   12. UNIVERSAL REUSABLE GALLERY WIDGET & LIGHTBOX
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  background-color: var(--bg-sage-card);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-overlay-hint {
  position: absolute;
  inset: 0;
  background: rgba(34, 37, 36, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-overlay-hint span {
  background: #FFFFFF;
  color: var(--text-dark);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.gallery-item:hover .gallery-overlay-hint {
  opacity: 1;
}

/* Lightbox Modal & Snappy Zoom-in Animation */
.lightbox-modal {
  display: flex;
  position: fixed;
  inset: 0;
  background: var(--lightbox-bg, rgba(14, 16, 15, 0.96));
  backdrop-filter: blur(var(--lightbox-blur, 14px));
  -webkit-backdrop-filter: blur(var(--lightbox-blur, 14px));
  z-index: 100000;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity var(--lightbox-zoom-speed, 0.22s) cubic-bezier(0.16, 1, 0.3, 1), visibility var(--lightbox-zoom-speed, 0.22s) ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.lightbox-content-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(var(--lightbox-zoom-scale, 0.85));
  transition: transform var(--lightbox-zoom-speed, 0.22s) cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active .lightbox-content-wrap {
  transform: scale(1);
}

/* Snappy Cross-Fade Transition for Next / Previous Photos */
.lightbox-main-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border-radius: 2px;
  opacity: 1;
  transform: scale(1);
  transition: opacity var(--lightbox-fade-speed, 0.16s) ease-in-out, transform var(--lightbox-fade-speed, 0.16s) ease-out;
}

.lightbox-main-img.is-switching {
  opacity: 0;
  transform: scale(0.97);
}

.lightbox-caption {
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 14px;
  transition: opacity 0.2s ease;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  z-index: 100002;
  transition: transform 0.2s ease, color 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.15) rotate(90deg);
  color: var(--sage-light);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.25);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100001;
}

.lightbox-nav-btn:hover {
  background: #FFFFFF;
  color: var(--text-dark);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* Responsive 2-Column Mobile Masonry */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
    gap: 14px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 10px;
  }
  .gallery-item.tall { grid-row: span 2; }
  .gallery-item.wide { grid-column: span 2; }
  .lightbox-nav-btn { width: 36px; height: 36px; font-size: 1rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}


/* Clean static image loading */
.image-reveal{opacity:0;transition:opacity .28s ease,transform var(--pg-zoom-speed,.4s) cubic-bezier(.16,1,.3,1)}
.image-reveal.is-loaded{opacity:1}
.client-card-img-box img{opacity:1;transition:transform var(--pg-zoom-speed,.4s) cubic-bezier(.16,1,.3,1)}
.client-card,.client-card-img-box,.gallery-item{background:var(--surface-light,#f2efe8)}
.gallery-item{overflow:hidden}
@media (prefers-reduced-motion:reduce){.image-reveal,.client-card-img-box img{transition:none!important}}

/* v5 fast-media polish */
.client-card,.client-card-img-box{background:#f2efe8!important}


/* Homepage configurable image-motion variants (Patch 35.2.3). */
.slide-in-down,
.image-motion-fade, .image-motion-fade-left, .image-motion-fade-right, .image-motion-fade-up, .image-motion-fade-down,
.image-motion-scale-out, .image-motion-zoom-in, .image-motion-zoom-out, .image-motion-blur-fade {
  opacity:0;
  transition: transform var(--reveal-current-duration, .9s) var(--ease-slide), opacity var(--reveal-opacity-duration, .7s) ease, filter .65s ease;
  will-change:transform,opacity,filter;
}
.slide-in-down { transform:translateY(-40px) scale(.96); }
.image-motion-fade { transform:none; }
.image-motion-fade-left { transform:translateX(-24px); }
.image-motion-fade-right { transform:translateX(24px); }
.image-motion-fade-up { transform:translateY(22px); }
.image-motion-fade-down { transform:translateY(-22px); }
.image-motion-scale-out { transform:scale(1.07); }
.image-motion-zoom-in { transform:scale(.84); }
.image-motion-zoom-out { transform:scale(1.16); }
.image-motion-blur-fade { transform:scale(.985); filter:blur(10px); }

body[data-reveal-up-style="reverse"] [data-reveal-dir="up"].slide-in-down { transform:translateY(40px) scale(.96); }
body[data-reveal-up-style="reverse"] [data-reveal-dir="up"].image-motion-fade-left { transform:translateX(24px); }
body[data-reveal-up-style="reverse"] [data-reveal-dir="up"].image-motion-fade-right { transform:translateX(-24px); }
body[data-reveal-up-style="reverse"] [data-reveal-dir="up"].image-motion-fade-up { transform:translateY(-22px); }
body[data-reveal-up-style="reverse"] [data-reveal-dir="up"].image-motion-fade-down { transform:translateY(22px); }
body[data-reveal-up-style="reverse"] [data-reveal-dir="up"].image-motion-scale-out { transform:scale(.93); }
body[data-reveal-up-style="reverse"] [data-reveal-dir="up"].image-motion-zoom-in { transform:scale(1.12); }
body[data-reveal-up-style="reverse"] [data-reveal-dir="up"].image-motion-zoom-out { transform:scale(.88); }
body[data-reveal-up-style="inward"] [data-reveal-dir="up"].slide-in-down,
body[data-reveal-up-style="inward"] [data-reveal-dir="up"].image-motion-fade-down { transform:translateY(-22px) scale(.98); }
body[data-reveal-up-style="inward"] [data-reveal-dir="up"].image-motion-fade-left { transform:translate(-22px,-12px); }
body[data-reveal-up-style="inward"] [data-reveal-dir="up"].image-motion-fade-right { transform:translate(22px,-12px); }
body[data-reveal-up-style="inward"] [data-reveal-dir="up"].image-motion-fade-up { transform:translateY(-22px); }
body[data-reveal-up-style="inward"] [data-reveal-dir="up"].image-motion-scale-out,
body[data-reveal-up-style="inward"] [data-reveal-dir="up"].image-motion-zoom-in,
body[data-reveal-up-style="inward"] [data-reveal-dir="up"].image-motion-zoom-out { transform:translateY(-12px) scale(.96); }

.is-visible.slide-in-down, .is-visible.image-motion-fade, .is-visible.image-motion-fade-left, .is-visible.image-motion-fade-right,
.is-visible.image-motion-fade-up, .is-visible.image-motion-fade-down, .is-visible.image-motion-scale-out,
.is-visible.image-motion-zoom-in, .is-visible.image-motion-zoom-out, .is-visible.image-motion-blur-fade {
  opacity:1; transform:translate(0,0) scale(1); filter:blur(0);
}
/* Configurable image wrappers own their visibility state; visible parents cannot force them open. */
.homepage-image-motion:not(.is-visible).slide-in-left { opacity:0; transform:translateX(-50px) scale(.96); }
.homepage-image-motion:not(.is-visible).slide-in-right { opacity:0; transform:translateX(50px) scale(.96); }
.homepage-image-motion:not(.is-visible).slide-in-up { opacity:0; transform:translateY(40px) scale(.96); }
.homepage-image-motion:not(.is-visible).slide-in-scale { opacity:0; transform:scale(.93); }
.homepage-image-motion:not(.is-visible).slide-in-down { opacity:0; }
.homepage-image-motion:not(.is-visible).image-motion-fade, .homepage-image-motion:not(.is-visible).image-motion-fade-left,
.homepage-image-motion:not(.is-visible).image-motion-fade-right, .homepage-image-motion:not(.is-visible).image-motion-fade-up,
.homepage-image-motion:not(.is-visible).image-motion-fade-down, .homepage-image-motion:not(.is-visible).image-motion-scale-out,
.homepage-image-motion:not(.is-visible).image-motion-zoom-in, .homepage-image-motion:not(.is-visible).image-motion-zoom-out,
.homepage-image-motion:not(.is-visible).image-motion-blur-fade { opacity:0; }

/* ==========================================================================\n   HOMEPAGE RESPONSIVE VISUAL QA — Patch 35.3A\n   Mobile/tablet-only refinements. Desktop choreography and layout unchanged.\n   ========================================================================== */
@media (max-width: 768px) {
  .expect-box { padding: 48px 28px; }
  .expect-media-col { min-height: 340px; }
  .expect-wide-img { width: 76%; height: 210px; }
  .expect-tall-img { width: min(52%, 190px); height: 280px; }
  .expect-script-float { top: 118px; left: auto; right: 20%; }
  .expect-sub-caption { width: min(58%, 220px); }

  .services-header-ref .heading-editorial,
  .expect-text .heading-editorial,
  .about-content-col .heading-editorial,
  .investment-header-ref .heading-editorial,
  .journal-header-ref .heading-editorial { font-size: 2.25rem; }
  .moodboard-center-copy .heading-editorial { font-size: 2.1rem; }
  .service-row { gap: 18px; }
  .service-row > div:first-child { min-width: 0; }
  .service-row-title { font-size: 1.28rem; overflow-wrap: anywhere; }
  .service-circle-dot { flex: 0 0 24px; }
  .service-side-photo { height: 320px; }

  .about-top-photo { height: 280px; }
  .about-bottom-photo { height: 210px; }
  .package-card-ref { padding: 26px 24px; }

  .moodboard-left-img,
  .moodboard-right-img { height: 300px; }
  .moodboard-bottom-two { gap: 14px; }
  .moodboard-sub-img { width: min(46%, 180px); height: auto; aspect-ratio: 9 / 10; flex: 0 1 180px; }

  .modal-box {
    padding: 34px 24px;
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    overflow-y: auto;
  }
}

@media (max-width: 480px) {
  .hero-wrapper { padding: 28px 0 64px; }
  .hero-copy .heading-editorial { font-size: 2.25rem; }
  .hero-img-box-1,
  .hero-img-box-2 { max-width: 270px; }

  .expect-section { padding-bottom: 72px; }
  .expect-box { padding: 36px 20px; }
  .expect-grid { gap: 32px; }
  .expect-media-col { min-height: 300px; }
  .expect-wide-img { width: 78%; height: 180px; }
  .expect-tall-img { width: 48%; max-width: 155px; height: 230px; }
  .expect-script-float { top: 102px; right: 11%; }
  .expect-script-float .script-accent { font-size: 1.7rem !important; }
  .expect-concentric-stamp { width: 72px; height: 72px; left: -12px; bottom: -12px; }
  .expect-sub-caption { width: 62%; max-width: 190px; bottom: -26px; font-size: 0.58rem; }

  .services-section-ref { padding: 42px 0 76px; }
  .services-header-ref { margin-bottom: 38px; }
  .service-row { padding: 22px 0; }
  .service-row-title { font-size: 1.15rem; line-height: 1.25; }
  .service-row-subtitle { letter-spacing: 0.13em; }
  .service-side-photo { height: 280px; }

  .testimonial-banner-ref { min-height: 0; padding: 74px 14px; }
  .testimonial-card-ref { padding: 30px 20px; }
  .testimonial-quote-body { font-size: 1.25rem; }

  .about-section-ref,
  .journal-section-ref { padding: 72px 0; }
  .about-top-photo { height: 250px; }
  .about-bottom-photo { height: 190px; margin-top: -44px; }
  .about-arch-stamp { width: 64px; height: 64px; }
  .about-meta-row { gap: 8px; flex-wrap: wrap; }
  .about-meta-label { min-width: 82px; }

  .investment-section-ref { padding: 72px 0; }
  .package-card-ref { padding: 24px 18px; }
  .package-title-ref h4 { font-size: 1.35rem; }

  .journal-header-ref { margin-bottom: 38px; }
  .journal-photo-wrap { height: 220px; }

  .moodboard-section-ref { padding: 68px 0 76px; }
  .moodboard-inner-grid { gap: 24px; }
  .moodboard-left-img,
  .moodboard-right-img { height: 260px; }
  .moodboard-bottom-two { gap: 12px; margin-top: 16px; }
  .moodboard-sub-img { width: calc(50% - 6px); flex-basis: calc(50% - 6px); }
  .moodboard-script-accent { right: 8px; }

  .modal-overlay { padding: 12px; }
  .modal-box {
    padding: 30px 18px;
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
  }
  .modal-header-ref h3 { font-size: 1.8rem; padding: 0 22px; }
}

/* Homepage enquiry backend status / spam protection */
.hp-enquiry-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;opacity:0!important;pointer-events:none!important}
.hp-enquiry-status{min-height:20px;margin:12px 0 0;font:400 12px/1.5 'Montserrat',sans-serif;color:#756d66;text-align:center}
.hp-enquiry-status.is-success{color:#487162}.hp-enquiry-status.is-error{color:#a84d43}
#inquiry-form button[type="submit"]:disabled{opacity:.58;cursor:default}
