@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600&display=swap');
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --cream:      #ECEAD5;
  --cream-dark: #ECEAD5;
  --ink:        #3a3226;
  --ink-light:  #6b6050;
  --gold:       #b89c6e;
  --gold-light: rgba(184,156,110,0.85);
}

html { scroll-behavior: smooth; }
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 0; background: transparent; }
.nav-bar {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  display: flex;
  gap: 28px;
  background: rgba(240,236,227,0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(58,50,38,0.12);
  border-radius: 40px;
  padding: 12px 32px;
  box-shadow: 0 4px 24px rgba(58,50,38,0.08);
}
.nav-link {
  color: var(--ink-light);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--ink);
  transition: width 0.3s ease;
}
.nav-link.active,
.nav-link:hover { color: var(--ink); }
.nav-link.active::after,
.nav-link:hover::after { width: 100%; }
.mobile-nav-toggle {
  display: none;
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 600;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(58,50,38,0.2);
  background: rgba(240,236,227,0.8);
  backdrop-filter: blur(10px);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.mobile-nav-toggle .bar {
  width: 18px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-nav-toggle.open .bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-nav-toggle.open .bar:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.open .bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 550;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  padding-right: 70px;
  background: rgba(240,236,227,0.6);
  backdrop-filter: blur(8px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mobile-nav-menu.open { pointer-events: all; opacity: 1; }
.mobile-nav-item {
  display: block;
  background: rgba(58,50,38,0.08);
  border: 1px solid rgba(58,50,38,0.15);
  border-radius: 30px;
  padding: 11px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  opacity: 0;
  transform: translateX(50px);
}
.mobile-nav-item.active { background: rgba(58,50,38,0.15); }

@keyframes navItemIn {
  from { opacity: 0; transform: translateX(50px) scale(0.9); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
.home-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  background: var(--cream);
  overflow: hidden;
}

.home-left {
  position: relative;
  width: 48%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20vh 5% 0 6%;
  z-index: 10;
}
.home-logo {
  position: absolute;
  top: 36px;
  left: 10%;
}
.home-logo-img {
  height: auto;
  width: 50%;
  display: block;
}
.home-headline {
  margin-top: 80px;
}
.home-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.home-body-wrap {
  position: relative;
  margin-top: 28px;
  min-height: 35vh;
}
.home-body-step {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.home-body-step.active {
  opacity: 1;
  pointer-events: auto;
  position: relative; 
}
.home-body-text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.78rem, 1.1vw, 1.2rem);
  font-weight: 400;
  line-height: 1.85;
  color: var(--ink-light);
  /* max-width: 420px; */
}

.home-cta-btn {
  display: inline-block;
  text-decoration: none;
  margin-top: 24px;
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 13px 28px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.home-cta-btn:hover {
  background: var(--ink);
  color: var(--cream);
}

.home-scroll-indicator {
  display: flex;
  gap: 7px;
  margin-top: 40px;
}
.scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(58,50,38,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.scroll-dot.active {
  background: var(--ink);
  width: 20px;
  border-radius: 3px;
}

.home-right {
  position: relative;
  width: 52%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 5% 60px 3%;
  z-index: 5;
}


.home-image-frame {
  position: relative;
  width: 100%;
  /* max-width: 680px; */
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream-dark);
  box-shadow: 0 20px 60px rgba(58,50,38,0.10);
}


.home-img-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.75s ease;
}
.home-img-layer.active {
  opacity: 1;
}

#hImg0 {
  object-fit: contain;
  background: var(--cream);
}

.section-full {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bg-parallax {
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.proj-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--cream);
  overflow: hidden;
}

.proj-global-logo {
  position: absolute;
  top: 0;
  left: 3%;
  z-index: 30;
  pointer-events: none;
}
.proj-global-logo img {
  height: auto;
  width: 50%;
  display: block;
  object-fit: contain;
}


.proj-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
}
.proj-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.proj-s0-left {
  flex: 0 0 38%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 3% 60px 5%;  
}
.proj-serene-icon {
  margin-bottom: 12px;
}
.proj-serene-icon img {
  height: auto;
  width: 65%;
  object-fit: contain;
  display: block;
}
.proj-serene-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.proj-serene-by {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 28px;
}

.proj-s0-right {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 5vh 4% 5vh 2%;
}

.proj-photo-frame {
  width: 100%;
  height: 57vh;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(58,50,38,0.12);
  flex-shrink: 0;
}
.proj-photo {
  width: 100%;
  /* height: 100%;
  object-fit: cover;
  object-position: center;
  display: block; */
}

.proj-slide--prev { align-items: stretch; }

.proj-s1-img {
  flex: 0 0 57%;
  display: flex;
  align-items: center;
  padding: 8vh 2% 8vh 4%;
}
.proj-photo-frame--prev {
  height: 52vh;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(58,50,38,0.12);
}

.proj-s1-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vh 5% 8vh 4%;
}
.proj-prev-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 0.9;
  letter-spacing: -0.01em;
}

.proj-slide--upcoming { align-items: stretch; }

.proj-s2-photo {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 20vh 0 8vh 4%;
}
.proj-photo-frame--upcoming {
  height: 100%;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(58,50,38,0.12);
}

.proj-s2-label {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  justify-content: center;
  width: 10%;
  flex-shrink: 0;
  gap: 10px;
  padding: 0 14px;
}
.proj-upcoming-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 4.2rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}
.proj-upcoming-sub {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-light);
  white-space: nowrap;
}

.proj-body-text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.75rem, 1.05vw, 1.2rem);
  font-weight: 400;
  line-height: 1.9;
  color: var(--ink-light);
  max-width: 600px;
}
.proj-cta-btn {
  display: inline-block;
  margin-top: 30px;
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 13px 28px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.proj-cta-btn:hover { background: var(--ink); color: var(--cream); }

.proj-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}
.proj-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(58,50,38,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.proj-dot.active {
  background: var(--ink);
  width: 20px;
  border-radius: 3px;
}

@media (max-width: 900px) {
  .proj-global-logo {         display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem; }
  .proj-global-logo img{
    width: 75%;
  }

  
  .proj-slide { flex-direction: column; }
  .proj-s0-left { flex: none; width: 100%; padding: 20px 5% 24px; }
  .proj-s0-right { flex: none; width: 100%; padding: 0 5% 60px; }
  .proj-photo-frame { height: 55vw; }
  .proj-serene-title { font-size: clamp(2rem, 8vw, 3rem); }
  .proj-serene-icon{ display:flex; align-items:center;justify-content:center; }

  .proj-slide--prev { flex-direction: column !important; justify-content: center; }
  .proj-s1-img { flex: none; width: 100%; padding: 80px 5% 20px; }
  .proj-photo-frame--prev { height: 52vw; min-height: 220px; }
  .proj-s1-text { flex: none; width: 100%; padding: 20px 5% 60px; }
  .proj-prev-title { font-size: clamp(2.2rem, 8vw, 3.2rem); text-align:center}

  .proj-slide--upcoming { flex-direction: column !important; justify-content: center; }
  .proj-s2-photo { flex: none; width: 100%; padding: 80px 5% 16px; }
  .proj-photo-frame--upcoming { height: 52vw; min-height: 220px; }
  .proj-s2-label {
     width: auto; height: auto;
    padding: 12px 5% 60px;
    flex-direction:column;
    justify-content: flex-start; gap: 16px;
  }
  .proj-upcoming-title,
  .proj-upcoming-sub { writing-mode: horizontal-tb; transform: none; }

  .proj-slide.active { position: relative; }
}

#story {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.8s ease;
  position: relative;
}


.parallax-bg-target { will-change: auto; }
.about-cloud { display: none !important; }

.about-section-label {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  will-change: transform, opacity, top;
  pointer-events: none;
}
.about-section-label h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
}

.about-section-para {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 60%;
  text-align: center;
  z-index: 10;
  will-change: transform, opacity, top;
  pointer-events: none;
  padding: 0 24px;
  opacity: 0;
}
.about-section-para p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05vw;
  line-height: 1.85;
  color: var(--ink);
  font-weight: 400;
}
.about-section-para p strong { font-weight: 700; color: var(--ink); }
.about-para4-layout p { color: var(--ink); }
.about-para4-layout {
  top: auto; left: 5%; bottom: 18%;
  transform: none;
  text-align: left;
  max-width: 50%;
}
.about-para4-inner { display: flex; flex-direction: column; gap: 12px; }
.about-para4-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
  margin: 0;
}
.about-para4-layout p {
  text-align: left;
  max-width: 55%;
  font-size: 1.6rem;
}
.about-para4-inner .about-section-para p strong { color: var(--ink); }
#story::before { display: none; }
#story.vignette-active::before { display: none; }
.gallery-modal {
  position: fixed;
  top: 0; left: 0;
  padding-top: 5%;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 900;
  display: none;
  align-items: flex-start;
  justify-content: center;
}
.gallery-modal.active { display: flex; }
.gallery-main-image {
  max-width: 35%;
  max-height: 40vh;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.gallery-thumbnails {
  position: absolute;
  bottom: 50px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  overflow-x: auto;
  max-width: 90%;
  padding: 10px;
}
.gallery-thumbnail {
  width: 100px; height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s;
  border: 2px solid transparent;
  overflow: hidden;
}
.gallery-thumbnail.active,
.gallery-thumbnail:hover { opacity: 1; border-color: white; transform: scale(1.08); }
.close-gallery {
  position: absolute;
  top: 28px; right: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s;
  z-index: 910;
}
.close-gallery:hover { transform: rotate(90deg); background: var(--cream); color: white; }


.contact-section-new {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-bg-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}


.contact-card-new {
  position: relative;
  z-index: 10;
  display: flex;
  width: 82%;
  max-width: 1100px;
  background: rgba(240, 236, 227, 0.72);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(240, 236, 227, 0.5);
  border-radius: 6px;
  padding: 52px 56px;
  gap: 48px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.22);
  transform-origin: center top;
}

.cnew-left {
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cnew-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.cnew-subtext {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--ink-light);
  line-height: 1.75;
  max-width: 380px;
}
.cnew-info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.cnew-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  color: var(--ink);
  line-height: 1.55;
}
.cnew-info-item svg { flex-shrink: 0; margin-top: 2px; color: var(--ink); opacity: 0.7; }

/* Map */
.cnew-map {
  flex: 1;
  min-height: 140px;
  max-height: 180px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(58,50,38,0.12);
  margin-top: 4px;
}
.cnew-map iframe { display: block; width: 100%; height: 100%; border: 0; }

.cnew-divider {
  width: 1px;
  background: rgba(58,50,38,0.15);
  flex-shrink: 0;
  align-self: stretch;
}
.cnew-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.cnew-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 28px;
}
.cnew-field--message {
  flex: 1;
  padding-bottom: 32px;
}
.cnew-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.05em;
}
.cnew-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(58,50,38,0.3);
  border-radius: 0;
  color: var(--ink);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  padding: 6px 0;
  outline: none;
  width: 100%;
  transition: border-color 0.3s;
  resize: none;
}
.cnew-input:focus { border-bottom-color: var(--ink); }
.cnew-input::placeholder { color: rgba(58,50,38,0.2); }
.cnew-textarea { min-height: 80px; }

.cnew-submit-btn {
  width: 100%;
  margin-top: 8px;
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 16px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s;
}
.cnew-submit-btn:hover {
  background: var(--ink-light);
}

@media (max-width: 900px) {
  .contact-card-new {
    flex-direction: column;
    width: 92%;
    padding: 32px 24px;
    gap: 28px;
    /* max-height: 85vh; */
    overflow-y: auto;
  }
  .cnew-divider { width: 100%; height: 1px; align-self: auto; }
  .cnew-left { flex: none; }
  .cnew-map { max-height: 140px; }
  .cnew-heading { font-size: clamp(1.4rem,6vw,2rem); }
}

.footer {
  background: #4f4a35;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 60px;
  gap: 0;
}
.footer-logo-wrap { display: flex; align-items: center; justify-content:center; flex-shrink: 0; }
.foot-logo { width: 70%; }
.footer-divider { width: 1px; height: 130px; background: rgba(255,255,255,0.3); flex-shrink: 0; margin-right: 40px; }
.footer-contacts { display: flex; align-items: center; gap: 48px; flex: 1; }
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;flex: 1;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  letter-spacing: 0.3px;
}
.footer-contact-item svg { opacity: 0.7; flex-shrink: 0; }

.explore-overlay {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: #0a0a08;
  display: none;
  opacity: 0;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
}
.explore-close-btn {
  position: fixed;
  top: 28px; right: 28px;
  z-index: 850;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.explore-close-btn:hover { background: rgba(255,255,255,0.15); transform: rotate(90deg) scale(1.05); }
.explore-screen {
  position: absolute;
  inset: 0;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.exp-hero-img-wrap { position: absolute; inset: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.exp-hero-img { width: 100%; height: 100%; object-fit: contain; will-change: transform; }
.exp-bg-img-wrap { inset: 0; overflow: hidden; }
.exp-bg-img { width: 100%; height: 100%; will-change: transform; }
.exp-bg-overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 55%, transparent 100%); }
.exp-title-content { position: absolute; left: 7%; top: 50%; transform: translateY(-50%); z-index: 10; max-width: 520px; opacity: 0; }
.exp-main-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem,6vw,5.5rem); font-weight: 700; color: #fff; line-height: 1.05; margin-bottom: 20px; letter-spacing: -1px; }
.exp-main-title span { color: rgba(215,190,130,0.9); }
.exp-desc { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.85); line-height: 1.75; margin-bottom: 32px; }
.exp-brochure-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(215,190,130,0.15); border: 1px solid rgba(215,190,130,0.6);
  color: rgb(215,190,130); padding: 13px 28px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 3px; cursor: pointer; transition: background 0.3s, color 0.3s;
}
.exp-brochure-btn:hover { background: rgba(215,190,130,0.85); color: #1a1a1a; }
.exp-fullscreen-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; display: block; }
.exp-video-container { position: absolute; inset: 0; overflow: hidden; }
.exp-video { position: absolute; inset: 0; height: 100%; object-fit: contain; will-change: clip-path, opacity; }
.exp-img-dimmer { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.exp-img-content {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; right: 4%;
  display: flex; flex-direction: column; justify-content: center;
  padding: 36px 40px 48px 40px; width: 40%;
  background: rgba(30,25,20,0.8); backdrop-filter: blur(12px);
  border-radius: 24px; border: 1px solid rgba(255,245,225,0.18);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  pointer-events: none; overflow: hidden;
}
.exp-ic-badge { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: #fff; background: rgba(255,245,235,0.25); border: 1px solid rgba(82,73,52,0.45); padding: 5px 14px; border-radius: 40px; margin-bottom: 22px; width: fit-content; }
.exp-ic-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem,4.5vw,4rem); font-weight: 600; line-height: 1.08; color: #fff; margin: 0 0 10px; white-space: pre-line; }
.exp-ic-sub { font-size: clamp(0.85rem,1.2vw,1rem); font-weight: 450; letter-spacing: 0.08em; color: #fff; margin: 0 0 20px; text-transform: uppercase; }
.exp-ic-divider { width: 56px; height: 2px; background: #fff; opacity: 0.55; margin: 0 0 20px; flex-shrink: 0; border-radius: 2px; }
.exp-ic-body { font-size: clamp(0.9rem,1.15vw,1.05rem); font-weight: 400; line-height: 1.7; color: #f0e2cf; margin: 0 0 32px; max-width: 380px; }
.exp-ic-stat { display: flex; flex-direction: column; gap: 4px; }
.exp-ic-stat-value { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,3.5vw,3rem); font-weight: 600; color: #fff; line-height: 1; }
.exp-ic-stat-unit { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: #9b8a70; }
.exp-img-counter { position: absolute; top: 36px; right: 48px; z-index: 20; font-size: 12px; letter-spacing: 0.15em; color: rgba(82,73,52,0.6); pointer-events: none; background: rgba(20,15,10,0.3); backdrop-filter: blur(4px); padding: 6px 14px; border-radius: 40px; }
.exp-end-hint { position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%); z-index: 20; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(82,73,52,0.6); opacity: 0; white-space: nowrap; pointer-events: none; }
.exp-video-dots { position: absolute; bottom: 36px; display: flex; z-index: 20; }
.exp-video-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(245,240,232,0.3); cursor: pointer; transition: all 0.3s ease; }
.exp-video-dot.active { background: #fff; width: 22px; border-radius: 3px; }
.exp-scroll-hint { position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,0.75); font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; z-index: 10; opacity: 0; }
.explore-nav { position: fixed !important; z-index: 850 !important; }
.exp-intro-video-wrap { position: absolute; inset: 0; overflow: hidden; }
.exp-intro-video { width: 100%; height: 100%; object-fit: contain; display: block; }
.exp-intro-skip { position: absolute; bottom: 40px; right: 48px; z-index: 20; display: flex; align-items: center; gap: 8px; background: rgba(30,25,20,0.55); backdrop-filter: blur(8px); border: 1px solid rgba(245,240,232,0.2); color: rgba(245,240,232,0.75); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; padding: 11px 22px; border-radius: 40px; cursor: pointer; transition: all 0.25s ease; opacity: 0; }
.exp-intro-mute { position: absolute; bottom: 40px; left: 48px; z-index: 20; width: 44px; height: 44px; border-radius: 50%; background: rgba(30,25,20,0.55); backdrop-filter: blur(8px); border: 1px solid rgba(245,240,232,0.2); color: rgba(245,240,232,0.75); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.25s ease; opacity: 0; }
.exp-intro-mute .icon-unmuted, .exp-intro-mute .icon-muted { display: none; }
.exp-intro-mute.is-unmuted .icon-unmuted { display: block; }
.exp-intro-mute.is-muted .icon-muted { display: block; }
.exp-intro-progress-wrap { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,0.12); z-index: 20; }
.exp-intro-progress-bar { height: 100%; width: 0%; background: rgba(180,155,100,0.85); }
.exp-intro-scroll-hint { position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%); z-index: 20; display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,240,232,0.5); opacity: 0; white-space: nowrap; pointer-events: none; }
.explore-logo-clouds { position: absolute; inset: 0; display: none; pointer-events: none; z-index: 8; overflow: hidden; }
.elc { position: absolute; }
.elc img { width: 100%; height: auto; display: block; mix-blend-mode: screen; filter: brightness(1.3) saturate(0.2) opacity(0.18); }
.elc-1 { top: -10%; left: -5%; width: 40%; }
.elc-2 { top: -8%; right: -5%; width: 38%; transform: scaleX(-1); }
.elc-3 { bottom: -10%; left: 50%; transform: translateX(-50%); width: 50%; }
#expScreen0 { z-index: 5; background: transparent; }
#expScreen1 { z-index: 5; background: transparent; }
#expScreen1 .exp-title-content { position: absolute; left: 6%; top: 50%; transform: translateY(-50%); max-width: 44%; z-index: 10; }
.exp-ic-logo{
  position:absolute;bottom:20px;right:22px;width:40%;height:auto;object-fit:contain;opacity:0.7;pointer-events:none;
}
@media (max-width: 900px) {
  .exp-ic-logo{
bottom: 10%;
    right: 0%;
    width: 50%;
  }
  .nav-bar { display: none !important; }
  .mobile-nav-toggle { display: flex; }
  .mobile-nav-menu { display: flex; }

  .home-section { flex-direction: column; min-height: auto; }
  .home-left {
    width: 100%;
    min-height: auto;
    padding: 100px 6% 40px;
  }
  .home-logo { display: flex;justify-content:center;align-items:center;left:0 }
  /* .home-logo-img { height: 52px; } */
  .home-title { font-size: clamp(2.2rem, 9vw, 3.5rem); }
  .home-body-text { font-size: 0.82rem; max-width: 100%; }
  .home-right {
    width: 100%;
    min-height: 55vw;
    padding: 0 5% 60px;
    top:-10%;
  }
  .home-image-frame { max-width: 100%; aspect-ratio: 4/3; }
.exp-fullscreen-video

 {
    width: 175%;
    height: 100%;
    object-fit: contain;
    transform: rotate(90deg);
    position: relative;}

  .project-bg-title { font-size: clamp(2.5rem,12vw,5rem); top: 8%; }
  .project-house-wrap { width: 90%; top: 18%; }
  .project-info-panel { right: 5%; bottom: 100px; top: auto; transform: none; }
  .project-type-tag { font-size: 1.2rem; }
  .project-curve-nav { display: none !important; }


  .about-section-label h2 { font-size: 1.8rem; }
  .about-section-para { max-width: 90%; }
  .about-section-para p { font-size: .75rem; line-height: 1.7; }
  .about-para4-layout { left: 5%; bottom: 12%; max-width: 90%; }
  .about-para4-title { font-size: 1.8rem; }
  .about-para4-layout p { font-size: 1rem; max-width: 100%; }


  .footer-inner { flex-direction: column; padding: 24px 20px; gap: 16px; text-align: center; }
  .footer-divider { width: 80%; height: 1px; margin: 0; }
  .footer-contacts { flex-direction: column; gap: 12px; align-items: center; }
  .foot-logo { width: 60%; }

  .gallery-main-image { max-width: 95%; max-height: 50vh;margin-top: 10vh; }
  .gallery-thumbnail { width: 70px; height: 55px; }
      .exp-img-content {
        width: 96%;
        top: auto;
        bottom: 2%;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        height: 53%;
        justify-content: flex-start;
    }
  .exp-video-dots { bottom: 68px; left: 50%; right: auto; transform: translateX(-50%); flex-direction: row; gap: 6px; }
  .exp-video-dot { width: 6px; height: 6px; }
  .exp-video-dot.active { width: 18px; height: 6px; border-radius: 3px; }
  .exp-title-content { left: 5%; max-width: 90%; }
  .exp-main-title { font-size: clamp(2rem,9vw,3.2rem); }
  .exp-video{
    margin-top: 7rem;
    height: 30%;
    object-fit: cover;
    width: 100%;
  }
  .home-body-wrap{
    min-height: 30vh;
  }
}

/* ============================================================
   TESTIMONIALS SECTION
   Add this block anywhere in styles.css (e.g. before .footer)
   ============================================================ */

.testimonials-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Reuse the same logo position as other sections */
.testi-global-logo {
  position: absolute;
  top: 32px;
  left: 40px;
  z-index: 30;
  pointer-events: none;
}
.testi-global-logo img {
  width: 50%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ---------- layout wrapper ---------- */
.testi-inner {
  display: flex;
  align-items: center;
  width: 88%;
  max-width: 1200px;
  gap: 6%;
  padding: 110px 0 60px;
}

/* ---------- LEFT: video ---------- */
.testi-left {
  flex: 0 0 55%;
}

.testi-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(58,50,38,0.14);
  background: #1a1510;
}

.testi-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Arrow buttons — ghosted rectangles on the sides (matching the design image) */
.testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(236, 234, 213, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(58,50,38,0.15);
  border-radius: 6px;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.testi-arrow:hover {
  background: rgba(236, 234, 213, 0.85);
}
.testi-arrow--prev { left: 0; border-radius: 0 6px 6px 0; }
.testi-arrow--next { right: 0; border-radius: 6px 0 0 6px; }

/* thin progress bar at bottom of video */
.testi-progress-wrap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.15);
  z-index: 10;
}
.testi-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.25s linear;
}

/* slide counter */
.testi-counter {
  position: absolute;
  bottom: 12px;
  right: 16px;
  z-index: 10;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
  pointer-events: none;
}

/* ---------- RIGHT: quote ---------- */
.testi-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.testi-section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.testi-quote-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testi-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 4px;
  user-select: none;
}

.testi-quote-text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.82rem, 1.1vw, 1.05rem);
  font-weight: 400;
  line-height: 1.9;
  color: var(--ink-light);
  max-width: 440px;
  /* fade transition handled by JS */
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.testi-client-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 8px;
  border-top: 1px solid rgba(58,50,38,0.15);
  transition: opacity 0.4s ease;
}

.testi-client-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.testi-client-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
}

/* dots */
.testi-dots {
  display: flex;
  gap: 7px;
  margin-top: 4px;
}
.testi-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(58,50,38,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}
.testi-dot.active {
  background: var(--ink);
  width: 20px;
  border-radius: 3px;
}

/* ---- responsive ---- */
@media (max-width: 900px) {
  .testi-global-logo { top: 20px; left: 20px; }

  .testi-inner {
    flex-direction: column;
    width: 92%;
    gap: 36px;
    padding: 90px 0 60px;
  }

  .testi-left { flex: none; width: 100%; }

  .testi-right { gap: 20px; }

  .testi-quote-text { max-width: 100%; font-size: 0.88rem; }

  .testi-arrow {
    width: 36px;
    height: 60px;
  }

  .testi-quote-mark { font-size: 3.5rem; }
}
.testi-mute-btn {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(236, 234, 213, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(58,50,38,0.2);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.testi-mute-btn:hover {
  background: rgba(236, 234, 213, 0.9);
  transform: scale(1.08);
}
.testi-play-btn {
  position: absolute;
  bottom: 14px;
  left: 58px; /* sits right next to the mute button */
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(236, 234, 213, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(58,50,38,0.2);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.testi-play-btn:hover {
  background: rgba(236, 234, 213, 0.9);
  transform: scale(1.08);
}
.sky-air-earth-section {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100vh !important;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
    justify-content: center;
    align-items: center;
}

#story.bg-sky-air-earth .sky-air-earth-section {
  opacity: 1;
}
.sky-air-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.sky-air-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ventera-logo-top {
  position: absolute;
  top: 8%;
  left: 8%;
  z-index: 10;
}

.ventera-logo-top img {
  width: 170px;
  height: auto;
}

.sky-air-overlay {
  position: relative;
  z-index: 5;
  background: rgb(236, 234, 213,.6);
  backdrop-filter: blur(14px);
  /* max-width: 620px; */
  padding: 58px 54px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.sky-air-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.8vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  color: #2c2a24;
  margin-bottom: 32px;
  letter-spacing: -0.03em;
}

.sky-air-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 1.12vw, 1.2rem);
  line-height: 1.78;
  color: #3f3a32;
  max-width: 520px;
  margin: 0 auto;
}

/* Subtle vignette for better text readability */
.sky-air-earth-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 45%, rgba(0,0,0,0.15) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 900px) {

  .home-scroll-indicator{
    display: none;
  }
  .sky-air-overlay {
    padding: 42px 34px;
    max-width: 88%;
  }
  
  .ventera-logo-top {
    top: 6%;
    left: 6%;
  }
  
  .ventera-logo-top img {
    width: 130px;
  }
}

.cnew-input,
#contactFormEl input,
#contactFormEl textarea {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(58,50,38,0.25);
  border-radius: 0;
  color: var(--ink);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  padding: 8px 0;
  outline: none;
  width: 100%;
  transition: border-color 0.3s, border-bottom-width 0.3s;
  resize: none;
  -webkit-appearance: none;
  appearance: none;
}

#contactFormEl input:focus,
#contactFormEl textarea:focus {
  border-bottom: 2px solid var(--ink);
}

#contactFormEl input::placeholder,
#contactFormEl textarea::placeholder {
  color: rgba(58,50,38,0.28);
  font-size: 0.82rem;
  font-weight: 300;
}

#contactFormEl input.field-error,
#contactFormEl textarea.field-error {
  border-bottom: 2px solid #c0392b;
}

#contactFormEl input.field-success,
#contactFormEl textarea.field-success {
  border-bottom: 2px solid #4caf7d;
}
.contact-section-new {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#expScreen1 .exp-title-content {
    /* Glassmorphism effect */
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(2px);
    
    /* Optional: subtle border for glass edge effect */
    border: 1px solid rgba(255, 255, 255, 0.3);
    
    /* For better text readability if text is inside */
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
            padding: 2rem;
        border-radius: 10px;
}
@media (max-width: 900px) {
  .contact-section-new {
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
    padding: 0;
  }

  .contact-bg-photo {
    position: absolute;   /* keep it inside the section, not fixed */
    inset: 0;
  }

  .contact-card-new {
    position: relative;
    z-index: 10;
    flex-direction: column;
    width: 88%;
    max-width: 480px;
    padding: 24px 20px 20px;
    gap: 20px;
    /* key: cap height so it fits inside the viewport */
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    /* scrollbar styling */
    scrollbar-width: thin;
    scrollbar-color: rgba(58,50,38,0.2) transparent;
  }

  .contact-card-new::-webkit-scrollbar { width: 3px; }
  .contact-card-new::-webkit-scrollbar-track { background: transparent; }
  .contact-card-new::-webkit-scrollbar-thumb {
    background: rgba(58,50,38,0.2);
    border-radius: 4px;
  }

  .cnew-divider { width: 100%; height: 1px; align-self: auto; flex-shrink: 0; }
  .cnew-left { flex: none; }
  .cnew-heading { font-size: clamp(1.3rem, 5.5vw, 1.8rem); }
  .cnew-subtext { font-size: 0.78rem; }
  .cnew-field { padding-bottom: 18px; }
  .cnew-field--message { padding-bottom: 18px; }
  .cnew-field--message textarea { min-height: 60px; rows: 3; }
  .exp-fullscreen-video{
      width: 175%;
    height: 100%;
    object-fit: contain;
    /* position:absolute; */
}
.exp-bg-img{
  width:190%;
  height:auto;

}
.exp-bg-img-wrap{
    position:relative;
}
#expScreen1 .exp-title-content{
  max-width: 100%;
}

}

/* ════════════════════════════════════════════════════════════
   WIDE SCREENS (1440px+) — keep proportions sane
   ════════════════════════════════════════════════════════════ */
@media (min-width: 1440px) {
  .home-title {
    font-size: clamp(3rem, 4vw, 4.5rem);
  }

  .home-left {
    padding-top: clamp(80px, 12vh, 16vh);
  }

  .contact-card-new {
    max-height: calc(var(--vh100) - 80px);
  }
}


/* ════════════════════════════════════════════════════════════
   HIGH-DPI / RETINA SCREENS
   At 2× DPI, effective px are halved, so 100% zoom on a
   2560px Retina = same as 1280px — already covered above.
   This catch-all prevents edge cases.
   ════════════════════════════════════════════════════════════ */
@media (min-resolution: 2dppx) {
  .home-image-frame {
    max-height: calc(var(--vh100) - clamp(60px, 12vh, 120px));
  }
}



.sky-air-title {
  font-size: clamp(2rem, 4.8vw, 6rem);
  margin-bottom: clamp(16px, 3vh, 32px);
}

.sky-air-desc {
  font-size: clamp(0.88rem, 1.05vw, 1.2rem);
  line-height: 1.72;
}
/* ══ ABOUT SECTION — clean two-column ══ */

/* Full-screen two-col wrapper */
.about-two-col {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 6;
}

/* LEFT: image */
.about-img-col {
  flex: 0 0 46%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px 60px 48px;
}

.about-img-frame {
  width: 100%;
  height: 100%;
  max-height: 75vh;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(58,50,38,0.13);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RIGHT: text */
.about-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px 60px 40px;
  gap: 0;
}

/* Label: static, top of right col */
.about-text-col .about-section-label {
  position: static !important;
  transform: none !important;
  text-align: center !important;
  top: auto !important;
  left: auto !important;
  margin-bottom: 20px;
  opacity: 1 !important;
}

.about-text-col .about-section-label h2 {
  font-size: clamp(1.4rem, 2.2vw, 2.6rem);
  letter-spacing: 4px;
  color: var(--ink);
}

.about-text-col .about-section-para {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  transform: none !important;
  max-width: 100% !important;
  text-align: left !important;
  padding: 0 !important;
  pointer-events: none;
}

/* Also add a relative wrapper for the para stacking zone: */
.about-paras-wrap {
  position: relative;
  min-height: 220px; /* enough for the tallest paragraph */
}

.about-text-col .about-section-para p {
  font-size: clamp(0.82rem, 1.05vw, 1rem);
  line-height: 1.9;
  color: var(--ink-light);
}

/* Mobile */
@media (max-width: 900px) {
  .about-two-col {
    flex-direction: column;
    overflow-y: auto;
  }
  .about-img-col {
    flex: none;
    width: 100%;
    height: 100vw;
    padding: 100px 24px 16px;
  }
  .about-img-frame {
    max-height: 100%;
  }
  .about-text-col {
    flex: none;
    width: 100%;
    padding: 24px 28px 60px;
  }
}

.gallery-thumbnails-wrapper {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 910;
  max-width: 90%;
}

/* Container that holds the visible thumbnails */
.gallery-thumbnails-container {
  display: flex;
  gap: 12px;
  overflow: hidden;
  padding: 4px;
}

/* Individual thumbnail styles */
.gallery-thumbnail {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  overflow: hidden;
  flex-shrink: 0;
}

.gallery-thumbnail.active,
.gallery-thumbnail:hover {
  opacity: 1;
  border-color: var(--gold);
  transform: scale(1.08);
}

/* Navigation arrow buttons */
.gallery-thumb-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 920;
}

.gallery-thumb-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  transform: scale(1.1);
}

.gallery-thumb-nav:active {
  transform: scale(0.95);
}

/* Mobile responsive */
@media (max-width: 900px) {
  .gallery-thumbnails-wrapper {
    bottom: 30px;
    gap: 8px;
  }
  
  .gallery-thumbnail {
    width: 70px;
    height: 55px;
  }
  
  .gallery-thumb-nav {
    width: 34px;
    height: 34px;
  }
  
  .gallery-thumbnails-container {
    gap: 8px;
  }
}

/* Update the modal main image for better centering */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 5%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.gallery-modal.active {
  display: flex;
}

.gallery-main-image {
  max-width: 75%;
  max-height: 60vh;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}
/* ===== LOADING SCREEN ===== */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.loading-logo {
  width: 120px;
  height: auto;
  opacity: 0;
  animation: logoFadeIn 0.8s ease forwards 0.3s;
}

.loading-percentage-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.loading-percentage {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: #c8a96e;
  letter-spacing: 0.04em;
  line-height: 1;
}

.loading-percent-sign {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: #c8a96e;
  opacity: 0.8;
}

.loading-progress-bar {
  width: 200px;
  height: 1px;
  background: rgba(200, 169, 110, 0.2);
  position: relative;
  overflow: hidden;
  margin-top: 0.5rem;
}

.loading-progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #c8a96e;
  transition: width 0.1s linear;
}

.loading-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: rgba(200, 169, 110, 0.5);
  text-transform: uppercase;
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading exit animation */
.loading-screen.exit {
  animation: loadingExit 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes loadingExit {
  0% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
  100% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
}