/* Reset & Luxury Design Tokens */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --bg-color: #F8F5F0;
  --text-color: #111111;
  --accent-color: #7A1E22;
  --accent-hover: #8F2328;
  --accent-dark: #5C1619;
  --accent-light: #A63A3F;
  --secondary-color: #6E6E6E;
  --panel-gap: 4vw;
  --transition-smooth: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
  scroll-behavior: initial; /* Lenis handles smooth scrolling */
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-color);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Hide scrollbars for cinematic immersion */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 3px;
}

/* Subtle text-legibility gradient behind hero text */
.creative-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}



/* Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background-color: var(--accent-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

.custom-cursor.hover {
  width: 80px;
  height: 80px;
  background-color: rgba(122, 30, 34, 0.08);
  border: 1px solid var(--accent-color);
}

.custom-cursor.hover::after {
  content: 'VIEW';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--accent-color);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* Typography Elements */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--text-color);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

img[src*="wedding-bride"],
img[src*="prewedding-boat"],
img[src*="maternity-lake"],
img[src*="birthday-party"],
img[src*="studio-portrait"],
img[src*="housewarming-frame"],
img[src*="about-shop-view"],
img[src*="hero-banner"],
img[src*="contact-map"],
img[src*="gifts-circle"] {
  object-fit: cover;
}

img[src*="wedding-bride"] {
  object-position: center 18%;
}

img[src*="prewedding-boat"] {
  object-position: center center;
}

img[src*="maternity-lake"] {
  object-position: center center;
}

img[src*="birthday-party"] {
  object-position: center 62%;
}

img[src*="studio-portrait"] {
  object-position: center 20%;
}

img[src*="housewarming-frame"] {
  object-position: center 58%;
}

img[src*="about-shop-view"],
img[src*="hero-banner"],
img[src*="contact-map"],
img[src*="gifts-circle"] {
  object-position: center center;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(248, 245, 240, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: none;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 6%;
  max-width: 1600px;
  margin: 0 auto;
}

.logo {
  display: block;
}

.logo-link {
  display: inline-block;
  opacity: 1 !important;
}

.logo-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.1rem 0;
  line-height: 1.1;
}

.logo-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--text-color);
  text-transform: uppercase;
  margin-right: -0.35em;
}

.logo-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--text-color);
  text-transform: uppercase;
  margin-top: 0.15rem;
  margin-right: -0.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.logo-tagline::before,
.logo-tagline::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--text-color);
  margin: 0 0.5rem;
  opacity: 0.3;
}

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

/* Premium Typography Element: CRAFTING TIMELESS MEMORIES */
.hero-timeless-wrap {
  position: absolute;
  right: 8%;
  top: 38%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  z-index: 5;
  pointer-events: auto; /* Allow hover */
  animation: timelessFloat 6s ease-in-out infinite;
}

.timeless-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  opacity: 0;
  animation: timelessWordFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition: text-shadow 0.3s ease, color 0.3s ease;
}

.timeless-word.word-1 {
  animation-delay: 0.6s;
}

.timeless-word.word-2 {
  font-style: italic;
  font-weight: 400;
  color: #C9A86A; /* Premium gold accent */
  animation-delay: 0.8s;
}

.timeless-word.word-3 {
  animation-delay: 1.0s;
}

.hero-timeless-wrap:hover .timeless-word {
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4), 0 0 5px rgba(201, 168, 106, 0.2);
}

.hero-timeless-wrap:hover .timeless-word.word-2 {
  text-shadow: 0 0 15px rgba(201, 168, 106, 0.5);
}

@keyframes timelessWordFadeIn {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes timelessFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* Responsive constraints for the premium typography */
@media (max-width: 1200px) {
  .timeless-word {
    font-size: 3rem;
  }
  .hero-timeless-wrap {
    right: 5%;
  }
}

@media (max-width: 992px) {
  .timeless-word {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-timeless-wrap {
    position: static;
    margin-top: 3.5rem;
    margin-bottom: 1rem;
    align-items: center;
    text-align: center;
    animation: none; /* Disable float animation on mobile to keep it stable */
  }
  
  .timeless-word {
    font-size: 2.2rem;
    color: #550000; /* Deep Maroon text for readability on light cream background */
    text-shadow: none !important;
  }
  
  .timeless-word.word-2 {
    color: #C9A86A; /* Retain gold accent for the italicized word */
  }

  @keyframes timelessWordFadeIn {
    0% {
      opacity: 0;
      transform: translateY(15px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

.nav-links a:not(.nav-cta) {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-color);
}

.nav-links a:not(.nav-cta):hover {
  color: var(--accent-color);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.4rem;
  border: none;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background-color: #0A0A0A;
  color: #FFFFFF;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
  text-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  z-index: 10;
  position: relative;
  transition: background-color 220ms ease, color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.nav-cta:hover {
  background-color: var(--accent-hover);
  color: #FFFFFF;
  box-shadow: 0 10px 24px rgba(143, 35, 40, 0.20);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-color);
  transition: var(--transition-fast);
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* SECTION 1: IMMERSIVE HERO */
.creative-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--bg-color);
  overflow: hidden;
  padding: 0 0 6rem 0;
}

.hero-banner {
  width: 100%;
  height: 85vh;
  overflow: hidden;
  position: relative;
  margin-top: 80px; /* Accounts for fixed header */
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-container {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 4;
}



.hero-typography-wrap {
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-mini-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.hero-main-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.8rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-color);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.hero-main-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-color);
}

.hero-subtext {
  font-size: 1.1rem;
  color: var(--secondary-color);
  line-height: 1.7;
  margin-bottom: 3rem;
  font-weight: 400;
}

.hero-btn-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.btn-primary-studio {
  background-color: var(--text-color);
  color: var(--bg-color);
  padding: 1rem 2.2rem;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}

.btn-primary-studio:hover {
  background-color: var(--accent-color);
}

.btn-secondary-studio {
  background-color: transparent;
  color: var(--text-color);
  padding: 1rem 2.2rem;
  border-radius: 30px;
  border: 1px solid var(--text-color);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: var(--transition-fast);
}

.btn-secondary-studio:hover {
  background-color: rgba(17, 17, 17, 0.05);
}

@media (max-width: 768px) {
  .hero-main-title {
    font-size: 2.4rem;
  }

  .creative-hero {
    padding-top: 0;
  }
}

/* SECTION 3: SERVICES EXPERIENCE (STACKED PANELS) */
.services-stacked {
  position: relative;
  background-color: #111111;
  color: #ffffff;
  overflow: hidden;
}

.services-container {
  position: relative;
  width: 100%;
}

.service-panel {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 10%;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.panel-bg {
  position: absolute;
  top: 1.25rem;
  left: 3%;
  width: 94%;
  height: calc(100% - 2.5rem);
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.panel-1 .panel-bg {
  background-position: center 20%;
}

.panel-2 .panel-bg {
  background-position: center 35%;
}

.panel-3 .panel-bg {
  background-position: center 30%;
}

.panel-overlay {
  position: absolute;
  top: 1.25rem;
  left: 3%;
  width: 94%;
  height: calc(100% - 2.5rem);
  background: transparent;
  z-index: 2;
  border-radius: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.panel-overlay.active {
  opacity: 1;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.5);
}

.panel-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  transform: translateY(50px);
  opacity: 0;
}

.service-num {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
  display: block;
}

.service-name {
  font-size: 3rem;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.service-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.link-action-luxury {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.link-action-luxury:hover {
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .service-panel {
    min-height: 100svh;
    height: auto;
    padding: 4.5rem 6% 3.25rem;
    align-items: flex-end;
  }

  .panel-content {
    max-width: 26rem;
    transform: translateY(0);
  }

  .service-name {
    font-size: 2.15rem;
    margin-bottom: 1.25rem;
  }

  .service-desc {
    max-width: 22rem;
    margin-bottom: 2rem;
    font-size: 1rem;
  }

  .service-num {
    margin-bottom: 1rem;
  }

  .panel-bg,
  .panel-overlay {
    top: 0.9rem;
    left: 4%;
    width: 92%;
    height: calc(100% - 1.8rem);
    border-radius: 20px;
  }

  .panel-1 .panel-bg {
    background-position: center 18%;
  }

  .panel-2 .panel-bg {
    background-position: center 28%;
  }

  .panel-3 .panel-bg {
    background-position: center 40%;
  }
}

@media (max-width: 480px) {
  .service-panel {
    padding: 4rem 6% 3rem;
  }

  .panel-bg,
  .panel-overlay {
    top: 0.75rem;
    left: 4.5%;
    width: 91%;
    height: calc(100% - 1.5rem);
    border-radius: 18px;
  }

  .service-name {
    font-size: 1.9rem;
  }

  .service-desc {
    max-width: 18rem;
  }
}

/* SECTION 2: STORYTELLING SHOWCASE (HORIZONTAL SCROLL) */
.storytelling-showcase {
  position: relative;
  width: 100%;
  background-color: var(--bg-color);
  overflow: hidden;
}

.horizontal-scroll-container {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.horizontal-panels-wrap {
  display: flex;
  flex-direction: row;
  will-change: transform;
}

.story-panel {
  flex-shrink: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4vw;
}

.panel-intro {
  width: 35vw;
}

.story-meta {
  max-width: 350px;
}

.section-overline {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  display: block;
}

.story-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.story-title span {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-color);
  text-transform: none;
}

.story-desc {
  color: var(--secondary-color);
  font-size: 1rem;
}

.panel-image {
  width: 45vw;
}

.panel-inner {
  position: relative;
  width: 100%;
  height: 65vh;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(17, 17, 17, 0.06);
}

.panel-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.panel-inner:hover img {
  transform: scale(1.03);
}

.panel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 1.5rem 1.75rem;
  background: linear-gradient(to top, rgba(0,0,0,.70) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,0) 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.panel-caption h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
}

.panel-caption span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,.85);
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
}

@media (max-width: 900px) {
  .panel-intro {
    width: 80vw;
  }
  .panel-image {
    width: 85vw;
  }
  .panel-inner {
    height: 50vh;
  }
}

/* About Section Heritage Badge Overlay */
.about-heritage-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  gap: 16px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 8px 0;
  margin-bottom: 32px; /* Spacing of at least 30px from the image */
  text-decoration: none;
  cursor: default;
  position: relative;
  overflow: visible;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
              filter 0.4s ease;
}

.about-heritage-badge:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 8px rgba(201, 168, 106, 0.4));
}

.about-heritage-badge .heritage-emblem-crest {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A86A; /* Gold metallic finish */
  flex-shrink: 0;
  position: relative;
}

.about-heritage-badge .heritage-emblem-crest svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: filter 0.3s ease;
  animation: iconShimmer 9s ease-in-out infinite;
}

@keyframes iconShimmer {
  0%, 75%, 100% {
    filter: drop-shadow(0 0 0px rgba(201, 168, 106, 0)) brightness(1);
  }
  85% {
    filter: drop-shadow(0 0 8px rgba(201, 168, 106, 0.6)) brightness(1.4);
  }
}

.about-heritage-badge .heritage-emblem-divider {
  width: 1px;
  height: 28px;
  background-color: rgba(201, 168, 106, 0.35); /* Thin gold divider */
  align-self: center;
}

.about-heritage-badge .heritage-emblem-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.15;
}

.about-heritage-badge .heritage-emblem-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(248, 245, 240, 0.65); /* White/off-white color */
  text-transform: uppercase;
  letter-spacing: 0.22em; /* Luxurious letter spacing */
  margin-bottom: 2px;
}

.about-heritage-badge .heritage-emblem-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #F8F5F0; /* White/off-white color */
  letter-spacing: 0.05em;
  white-space: nowrap;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.about-heritage-badge .years-number {
  font-size: 1.5rem; /* Significantly larger "29" */
  font-weight: 700;
  color: #C9A86A; /* Gold color for the number to make it stand out */
  line-height: 0.9;
  font-family: 'Cormorant Garamond', serif;
}

.about-heritage-badge .title-text {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* SECTION 4.1: ABOUT US */
.promise {
  background-color: #5A0F17;
  background: radial-gradient(circle at center, #721620 0%, #3F070C 100%);
  position: relative;
  padding: 6.5rem 8%;
  overflow: hidden;
}

.promise-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
  z-index: 1;
}

.promise-vignette::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.promise-abstract-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 237, 227, 0.12) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: -1;
}

.promise-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5%;
  max-width: 1300px;
  margin: 0 auto;
}

.promise-text-side {
  flex: 0 0 52%;
  max-width: 52%;
  position: relative;
  z-index: 3;
}

.promise-overline {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: block;
}

.promise-statement {
  font-family: 'Cormorant Garamond', serif;
  color: #ffffff;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  display: inline-block;
}

.promise-statement::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 60px;
  height: 2px;
  background: #D4AF37;
  opacity: 0.5;
}

.promise-statement .cascade-char.secondary {
  color: #D4AF37;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.25), 0 2px 8px rgba(0, 0, 0, 0.5);
}

.about-subtitle-luxury {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: #D4AF37;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.promise-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 1.8rem;
  font-weight: 300;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 2rem;
  max-width: 520px;
}

.about-feature-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.about-feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: #D4AF37;
}

.about-feature-card svg.lucide-about-icon {
  width: 16px;
  height: 16px;
  stroke: #D4AF37;
  stroke-width: 2.5;
  fill: none;
  flex-shrink: 0;
}

.about-feature-card span {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.02em;
}

.about-cta-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  max-width: 520px;
}

.btn-about-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  background-color: #FFFFFF;
  color: #5A0F17;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 220ms ease;
  border: none;
}

.btn-about-cta:hover {
  background-color: #D4AF37;
  color: #5A0F17;
  box-shadow: 0 12px 24px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.about-cta-subtext {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.promise-img-side-wrap {
  flex: 0 0 43%;
  max-width: 43%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.promise-img-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1344 / 856;
  border-radius: 24px;
  border: 2px solid #ffffff;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35);
  transform: rotate(1deg);
  overflow: visible;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.promise-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 22px;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.promise-img-card:hover {
  transform: scale(1.02) rotate(0deg);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.45);
}

.promise-img-card:hover img {
  transform: scale(1.03);
}

.about-floating-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.about-floating-badge svg.lucide-badge-icon {
  width: 14px;
  height: 14px;
  stroke: #D4AF37;
  fill: none;
}

.about-floating-badge span {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .promise {
    padding: 5rem 6%;
  }
  .promise-container {
    flex-direction: column;
    gap: 3.5rem;
  }
  .promise-text-side {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .promise-img-side-wrap {
    flex: 0 0 100%;
    max-width: 480px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    order: -1;
  }
  .promise-img-card {
    transform: rotate(0deg);
  }
}

@media (max-width: 768px) {
  .promise {
    padding: 4rem 6%;
  }
  .promise-container {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
  }
  .promise-img-side-wrap {
    order: 1;
    margin-bottom: 1.5rem;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .promise-text-side {
    order: 2;
    display: flex;
    flex-direction: column;
  }
  .promise-overline,
  .promise-statement,
  .about-subtitle-luxury {
    order: 1;
  }
  .promise-desc {
    order: 2;
    margin-bottom: 1.5rem;
  }
  .about-features-grid {
    order: 3;
    margin-bottom: 1.8rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .about-feature-card {
    padding: 10px 12px;
    border-radius: 12px;
  }
  .about-feature-card span {
    font-size: 0.8rem;
  }
  .about-cta-container {
    order: 4;
    align-items: center;
    text-align: center;
  }
  .btn-about-cta {
    width: 100%;
  }
  .promise-statement {
    font-size: 2.5rem;
    text-align: center;
  }

  .promise-statement::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .about-subtitle-luxury {
    text-align: center;
    font-size: 1.2rem;
  }
}

/* SECTION 4: FEATURED WORK (ASYMMETRICAL CATEGORY MASONRY) */
.lookbook-section {
  background-color: var(--bg-color);
  padding: 8rem 6%;
}

.section-title-wrap {
  margin-bottom: 5rem;
  text-align: center;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.section-title span {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-color);
  text-transform: none;
}

.category-filter-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 5rem;
}

.filter-tag {
  background: none;
  border: 1px solid rgba(122, 30, 34, 0.12);
  color: var(--secondary-color);
  padding: 0.8rem 2.2rem;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  cursor: pointer;
  border-radius: 30px;
  transition: var(--transition-fast);
}

.filter-tag.active {
  background-color: var(--accent-color);
  color: #ffffff;
  border-color: var(--accent-color);
}

.filter-tag:hover {
  background-color: var(--accent-hover);
  color: #ffffff;
  border-color: var(--accent-hover);
}

.portfolio-marquee-viewport {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0 0.75rem;
  touch-action: pan-y;
}

.category-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.8rem);
  width: max-content;
  will-change: transform;
  animation: marquee var(--marquee-duration, 40s) linear infinite;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.category-grid.paused {
  animation-play-state: paused;
}

.category-grid.is-transitioning {
  opacity: 0;
  transition: opacity 0.15s ease;
}

.category-card {
  position: relative;
  flex: 0 0 auto;
  width: clamp(240px, 28vw, 360px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0.9rem;
  border-radius: 26px;
  display: block;
  min-width: 0;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.07);
  transition: transform 0.5s ease;
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(17, 17, 17, 0.06);
  pointer-events: none;
  z-index: 3;
}

.category-card:hover {
  box-shadow: 0 26px 80px rgba(17, 17, 17, 0.13);
  transform: translateY(-4px);
}

.category-card[data-clone="true"] {
  pointer-events: none;
}

.category-card img,
.category-card-overlay {
  position: absolute;
  inset: 0.9rem;
  border-radius: 18px;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #ffffff;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card[data-cat="wedding"] img {
  object-position: center 22%;
}

.category-card[data-cat="prewedding"] img {
  object-position: center 28%;
}

.category-card[data-cat="maternity"] img {
  object-position: center 24%;
}

.category-card[data-cat="studio"] img {
  object-position: center 20%;
}

.category-card[data-cat="birthday"] img {
  object-position: center 30%;
}

.category-card[data-cat="housewarming"] img {
  object-position: center 34%;
}

.category-card[data-cat="shopview"] img {
  object-position: center center;
}

.category-card[data-cat="gifts"] img {
  object-fit: contain;
  object-position: center center;
  padding: 10%;
  background: #ffffff;
}

.category-card:hover img {
  transform: scale(1.03);
}

.category-card-overlay {
  bottom: 0.9rem;
  left: 0.9rem;
  right: 0.9rem;
  top: auto;
  height: 35%;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(to top, rgba(0,0,0,.70) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.9rem 0.9rem 1.75rem;
  color: #ffffff;
  z-index: 2;
}

.category-card-overlay h4 {
  font-family: 'Cormorant Garamond', serif;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
}

.category-card-overlay span {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,.85);
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
}

@media (max-width: 900px) {
  .category-card,
  .category-card img,
  .category-card-overlay {
    border-radius: 22px;
  }

  .category-card-overlay {
    border-radius: 0 0 22px 22px;
  }

  .category-card {
    width: clamp(220px, 48vw, 320px);
  }
}

@media (max-width: 576px) {
  .lookbook-section {
    padding: 5rem 5%;
  }

  .section-title-wrap {
    margin-bottom: 3rem;
  }

  .section-title {
    font-size: 2rem;
    line-height: 1.1;
  }

  .category-filter-wrap {
    gap: 0.75rem;
    margin-bottom: 3rem;
  }

  .filter-tag {
    padding: 0.7rem 1.2rem;
    letter-spacing: 0.12em;
  }

  .category-card-overlay {
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    height: 35%;
    border-radius: 0 0 22px 22px;
    padding: 0.75rem 0.75rem 1.5rem;
  }

  .category-card {
    width: clamp(200px, 78vw, 260px);
    padding: 0.75rem;
  }

  .category-card-overlay h4 {
    font-size: 1.2rem;
  }

  .category-card-overlay span {
    letter-spacing: 0.14em;
  }

  .promise-statement {
    font-size: 1.8rem;
  }

  .quote-text {
    font-size: 1.35rem;
  }

  .booking-title-luxury,
  .booking-action-luxury h3,
  .footer-statement-title {
    font-size: 1.9rem;
  }

  .booking-action-luxury {
    padding: 2rem 1.5rem;
  }
  .booking-glass-card {
    padding: 1.5rem;
  }
}

/* SECTION 5: TESTIMONIALS (CINEMATIC ROTATING SLIDER) */
.testimonials-cinematic {
  position: relative;
  padding: 10rem 10%;
  background-color: #111111;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.quote-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12rem;
  color: var(--accent-color);
  line-height: 1;
  display: block;
  height: 80px;
  opacity: 0.3;
}

.testimonial-slides {
  position: relative;
  overflow: hidden;
  min-height: 250px;
}

.testimonial-track {
  display: flex;
  /* will-change intentionally omitted — track only translates briefly (0.6s)
     every 5 seconds on autoplay or on user arrow/dot click, not continuously.
     Leaving will-change on a non-continuously-animated element wastes GPU
     memory by forcing a compositing layer for no sustained benefit. */
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 2rem;
  box-sizing: border-box;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.testimonial-arrow svg {
  width: 24px;
  height: 24px;
  display: block;
}

.testimonial-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.testimonial-arrow:active {
  transform: translateY(-50%) scale(0.92);
}

.testimonial-arrow-prev {
  left: 10px;
}

.testimonial-arrow-next {
  right: 10px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 2.5rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, border-color 0.3s;
}

.testimonial-dot.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: scale(1.3);
}

.testimonial-dot:hover {
  border-color: rgba(255, 255, 255, 0.8);
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  line-height: 1.4;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.95);
}

.quote-author {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent-color);
  font-weight: 600;
}

@media (max-width: 768px) {
  .quote-text {
    font-size: 1.5rem;
  }
  .testimonials-cinematic {
    padding: 6rem 6%;
  }
  .testimonial-arrow {
    width: 36px;
    height: 36px;
  }
  .testimonial-arrow svg {
    width: 18px;
    height: 18px;
  }
  .testimonial-arrow-prev {
    left: 6px;
  }
  .testimonial-arrow-next {
    right: 6px;
  }
  .testimonial-slide {
    padding: 0 1.25rem;
  }
}

/* SECTION 5.1: BOOKING JOURNEY */
.journey {
  background-color: var(--bg-color);
  padding: 8rem 6%;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 5rem;
  align-items: stretch;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 48px 36px;
  background-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
  transition: transform 250ms cubic-bezier(0.25, 0.8, 0.25, 1), 
              box-shadow 250ms ease, 
              border-color 250ms ease !important;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(40px);
}

.process-step:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-color) !important;
}

.step-number {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--accent-color);
  opacity: 0.9;
  margin-bottom: 28px;
  line-height: 1;
  display: block;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 16px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--secondary-color);
  font-weight: 400;
  min-height: 110px;
  max-width: 220px;
  line-height: 1.7;
  text-align: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
}

@media (max-width: 900px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* SECTION 6: CONTACT EXPERIENCE (LUXURY BOOKING) */
.luxury-booking {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 4.8rem 8%;
  background-color: #F8F6F3;
  background: radial-gradient(circle at center, #FCFBF9 0%, #F3F1ED 100%);
  color: var(--text-color);
  overflow: hidden;
}

.booking-grid-luxury {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}

.booking-details-luxury {
  display: flex;
  flex-direction: column;
}

.booking-glass-card,
.booking-action-luxury {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 32px 36px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.booking-glass-card {
  transform: translateZ(0);
}

.booking-title-luxury {
  color: var(--text-color);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.booking-title-luxury span {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-color);
  text-transform: none;
}

.details-stack-luxury {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.details-item {
  display: flex;
  flex-direction: column;
}

.details-item h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
  display: block;
}

.detail-with-icon {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.detail-with-icon:last-child {
  margin-bottom: 0;
}

.detail-with-icon svg.lucide-contact-icon {
  width: 15px;
  height: 15px;
  stroke: var(--accent-color);
  stroke-width: 2.2;
  fill: none;
  flex-shrink: 0;
  margin-top: 3px;
}

.detail-with-icon span,
.detail-with-icon p,
.detail-with-icon a {
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.5;
  margin: 0;
}

.detail-with-icon a {
  transition: color 220ms ease;
  font-weight: 500;
}

.detail-with-icon a:hover {
  color: var(--accent-color);
}

.monday-appointment {
  color: var(--accent-color) !important;
  font-weight: 500 !important;
  margin-top: 0.2rem !important;
}

.booking-action-luxury {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.booking-action-luxury h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text-color);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.booking-action-luxury p {
  font-size: 0.95rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  max-width: 320px;
}

.btn-whatsapp-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background-color: #0A0A0A;
  color: #ffffff;
  padding: 1rem 2.2rem;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 220ms ease;
  border: none;
}

.btn-whatsapp-luxury:hover {
  background-color: var(--accent-hover);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(143, 35, 40, 0.20);
}

.btn-whatsapp-luxury svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 1024px) {
  .luxury-booking {
    padding: 4rem 6%;
  }
  .booking-grid-luxury {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 460px;
    align-items: stretch;
  }
  .booking-glass-card,
  .booking-action-luxury {
    padding: 28px 24px;
  }
  .booking-title-luxury {
    font-size: 2.1rem;
    margin-bottom: 1.5rem;
  }
  .booking-action-luxury h3 {
    font-size: 2.1rem;
    margin-bottom: 0.6rem;
  }
  .booking-action-luxury p {
    margin-bottom: 1.25rem;
  }
}

/* Luxury Black Footer */
.luxury-footer {
  position: relative;
  background-color: #0A0A0A;
  color: #FFFFFF;
  padding: 5.5rem 8% 3rem 8%;
  overflow: hidden;
  border-top: none;
}

.footer-ghost-text {
  position: absolute;
  bottom: -3.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20vw;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
  pointer-events: none;
  letter-spacing: -0.02em;
  z-index: 1;
  text-transform: uppercase;
}

.footer-statement-wrap {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}

.footer-statement-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem;
  font-weight: 300;
  color: #FFFFFF;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.footer-grid-luxury {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.footer-logo .tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 0.3em;
  display: block;
  margin-top: 0.15rem;
}

.footer-about {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.footer-socials {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.78) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 220ms ease, transform 220ms ease !important;
}

.footer-socials a svg {
  width: 21px;
  height: 21px;
  stroke-width: 2;
  transition: stroke 220ms ease;
}

.footer-socials a.social-instagram:hover {
  color: #E4405F !important;
  transform: translateY(-3px) scale(1.12);
}

.footer-socials a.social-facebook:hover {
  color: #1877F2 !important;
  transform: translateY(-3px) scale(1.12);
}

.footer-socials a.social-youtube:hover {
  color: #FF0000 !important;
  transform: translateY(-3px) scale(1.12);
}

.footer-socials a.social-googlemaps:hover {
  color: #4285F4 !important;
  transform: translateY(-3px) scale(1.12);
}

.footer-address-link {
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: color 220ms ease;
}

.footer-address-link:hover {
  color: var(--accent-color);
}

.contact-address-link {
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.5;
  cursor: pointer;
  text-decoration: none;
  transition: color 220ms ease;
}

.contact-address-link:hover {
  color: var(--accent-color);
}

.footer-col-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links-list a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.footer-links-list a:hover {
  color: var(--accent-color);
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-details p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  font-weight: 300;
}

.footer-contact-details a {
  color: #FFFFFF;
  font-weight: 500;
}

.footer-contact-details a:hover {
  color: var(--accent-color);
}

.footer-bottom-luxury {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

@media (max-width: 900px) {
  .footer-grid-luxury {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-statement-title {
    font-size: 2.2rem;
  }
  .footer-bottom-luxury {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-ghost-text {
    font-size: 30vw;
  }
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 1000;
  background-color: #ffffff !important;
  color: #25D366 !important;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 220ms cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 220ms ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background-color: #ffffff !important;
  color: #25D366 !important;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.20), 0 6px 15px rgba(0, 0, 0, 0.08);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Screen reader helpers */
.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;
}

/* ==========================================================================
   COMPONENT 1: CASCADE TEXT REVEAL
   ========================================================================== */
.cascade-text {
  display: inline-block;
  cursor: pointer;
}

.cascade-word {
  display: inline-block;
  white-space: nowrap;
}

.cascade-char-container {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: bottom;
  height: 1.25em; /* Compensates for line height offsets */
  line-height: 1.25em;
}

.cascade-char {
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.cascade-char.primary {
  transform: translateY(0) translateZ(0);
}

.cascade-char.secondary {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(0) translateZ(0);
  color: var(--accent-color);
}

/* Hover Reveal triggers */
.cascade-text:hover .cascade-char.primary {
  transform: translateY(-100%) translateZ(0);
}

.cascade-text:hover .cascade-char.secondary {
  transform: translateY(-100%) translateZ(0);
}

/* ==========================================================================
   COMPONENT 2: SCROLL REEL TESTIMONIALS
   ========================================================================== */
.testimonial-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.testimonial-reel-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-reel-image-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.testimonial-reel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.1) translateZ(0);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.testimonial-reel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-reel-img.active {
  opacity: 1;
  transform: scale(1) translateZ(0);
  z-index: 2;
}

.testimonial-reel-decoration {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 3;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.4);
  border-left: 2px solid var(--accent-color);
  padding-left: 1rem;
}

/* Quote Slides absolute stacking layout */
.testimonial-slides {
  position: relative;
  min-height: 250px;
  overflow: visible;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

/* Character-by-character Quote Reveal */
.testimonial-slide .reveal-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px) translateZ(0);
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.testimonial-slide.active .reveal-char {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}

.testimonials-cinematic .quote-text {
  text-align: left;
  margin-bottom: 2rem;
  font-size: 2.2rem;
  line-height: 1.35;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
}

.testimonials-cinematic .quote-author {
  display: block;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-color);
  font-weight: 600;
}

/* Testimonial Controls override */
.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3.5rem;
}

.testimonials-cinematic .testimonial-arrow {
  position: static;
  transform: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 50px;
  height: 50px;
}

.testimonials-cinematic .testimonial-arrow:hover {
  background: var(--accent-hover);
  color: #ffffff;
  border-color: var(--accent-hover);
  transform: translateY(-2px);
}

.testimonials-cinematic .testimonial-dots {
  margin-top: 0;
  display: flex;
  gap: 12px;
}

/* Mobile Testimonials */
@media (max-width: 900px) {
  .testimonial-layout-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .testimonial-reel-frame {
    max-width: 450px;
    margin: 0 auto;
  }
  .testimonials-cinematic .quote-text {
    font-size: 1.6rem;
  }
}

/* ==========================================================================
   COMPONENT 3: PREMIUM FLOATING PILL NAVIGATION
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
  pointer-events: none;
}

.nav-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2.2rem;
  width: 90%;
  max-width: 1100px;
  margin: 1.25rem auto;
  background-color: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 50px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important;
  pointer-events: auto;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(17, 17, 17, 0.03);
  padding: 0.3rem;
  border-radius: 30px;
  border: 1px solid rgba(17, 17, 17, 0.02);
}

.nav-links a:not(.nav-cta) {
  position: relative;
  z-index: 2;
  font-size: 0.75rem !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #222222 !important;
  padding: 0.6rem 1.4rem;
  border-radius: 20px;
  transition: color 220ms ease, background-color 220ms ease, box-shadow 220ms ease !important;
  display: inline-block;
}

.nav-links a:not(.nav-cta):hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #000000 !important;
}

.nav-links a:not(.nav-cta).active {
  color: #ffffff !important;
  font-weight: 700;
}

.nav-links a:not(.nav-cta).active:hover {
  background-color: transparent !important;
  color: #ffffff !important;
}

.nav-indicator {
  position: absolute;
  background-color: var(--accent-color) !important;
  border-radius: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 8px 20px rgba(122, 30, 34, 0.18) !important;
  transition: all 280ms cubic-bezier(0.22, 1, 0.36, 1) !important;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
}

.nav-cta {
  background-color: #0A0A0A !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 20px !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  text-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  z-index: 10 !important;
  position: relative !important;
  transition: all 220ms ease !important;
}

.nav-cta:hover {
  background-color: var(--accent-hover) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(143, 35, 40, 0.20) !important;
}

.menu-toggle {
  background: rgba(17, 17, 17, 0.03) !important;
  border: 1px solid rgba(17, 17, 17, 0.05) !important;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background-color: var(--text-color);
  transition: var(--transition-fast);
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
    background: rgba(17, 17, 17, 0.06);
    border: 1px solid rgba(17, 17, 17, 0.08);
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 280px;
    height: auto;
    background-color: #F8F5F0 !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(17, 17, 17, 0.08) !important;
    border-radius: 24px;
    padding: 1.2rem 0.8rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.15rem;
    box-shadow: 0 20px 50px rgba(17, 17, 17, 0.12) !important;
    z-index: 999;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links a:not(.nav-cta) {
    color: #111111 !important;
    padding: 0.85rem 1.2rem;
    border-radius: 14px;
    font-size: 0.8rem !important;
  }
  
  .nav-links a:not(.nav-cta):hover {
    background-color: rgba(90, 15, 23, 0.08);
    color: #5A0F17 !important;
  }
  
  .nav-links a:not(.nav-cta):active {
    background-color: rgba(90, 15, 23, 0.12);
  }
  
  .nav-links a:not(.nav-cta).active {
    background-color: #5A0F17 !important;
    color: #ffffff !important;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(90, 15, 23, 0.25);
  }
  
  .nav-links a:not(.nav-cta).active:hover {
    background-color: #5A0F17 !important;
    color: #ffffff !important;
  }
  
  .nav-indicator {
    display: none !important;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}



