@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&family=Noto+Serif:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Roboto:wght@300;400;500;700&family=WindSong:wght@400;500&display=swap');




/* Local Custom Fonts */
@font-face {
  font-family: "Edito A Regular";
  src: url("../assets/font/Editor-Note/Edito-A-Regular.ttf") format("truetype"),
    url("../fonts/Edito-A-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Editor Regular";
  src: url("../assets/font/Editor-Note-All/Editor-Regular-BF647813f3bddb5.otf") format("opentype"),
    url("../fonts/Editor-Regular-BF647813f3bddb5.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Editor Bold";
  src: url("../assets/font/Editor-Note-All/Editor-Bold-BF647813f39f7bd.otf") format("opentype"),
    url("../fonts/Editor-Bold-BF647813f39f7bd.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sloop";
  src: url("../fonts/Sloop-ScriptThree.ttf") format("truetype"),
    url("../assets/font/sloop/Sloop-ScriptThree.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sloop Script";
  src: url("../fonts/Sloop-ScriptThree.ttf") format("truetype"),
    url("../assets/font/sloop/Sloop-ScriptThree.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


/* 2. ROOT VARIABLES & TOKENS */
:root {
  --color-bg-dark: #0e0e0e;
  --color-bg-card-dark: #161616;
  --color-bg-light: #ffffff;
  --color-bg-offlight: #fcfbf9;
  --color-bg-muted: #f4f2ee;

  --color-text-dark: #111111;
  --color-text-subtle: #666666;
  --color-text-muted: #888888;
  --color-text-light: #ffffff;
  --color-text-light-muted: rgba(255, 255, 255, 0.7);

  --color-accent-gold: #c5a059;
  --color-accent-gold-hover: #dfb76c;
  --color-border: #eae6df;
  --color-border-dark: #282828;

  --font-heading: 'Edito A Regular', 'Editor Regular', serif;
  --font-heading-light: 'Edito A Regular', 'Editor Regular', serif;
  --font-accent-script: 'Sloop', 'Sloop Script', cursive;
  --font-serif: 'Edito A Regular', 'Editor Regular', serif;
  --font-sans: sans-serif;
  --font-body: sans-serif;

  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.25s ease;

  --container-max: 1520px;
  --header-height: 90px;
}

/* 3. RESET & BASE STYLES */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* 4. UTILITIES & CONTAINER */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 3rem;
}

.section-padding {
  padding: 6rem 0;
}

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

.section-tag {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.accent-script,
span.accent-script,
.hero-title span.accent-script,
.section-title span.accent-script,
.reels-title span.accent-script {
  font-family: var(--font-accent-script) !important;
  font-weight: 400 !important;
  font-style: normal !important;
  text-transform: lowercase !important;
  letter-spacing: 0 !important;
  display: inline-block;
  vertical-align: baseline;
  font-size: 1.4em;
  padding: 0 0.15em;
}

.section-title.light {
  color: var(--color-text-light);
}

.section-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--color-text-subtle);
  max-width: 700px;
  margin: 0 auto 3rem auto;
  font-weight: 300;
}

.section-subtitle.light {
  color: var(--color-text-light-muted);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  background-color: var(--color-text-dark);
  color: var(--color-text-light);
  border: 1px solid var(--color-text-dark);
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background-color: var(--color-accent-gold);
  border-color: var(--color-accent-gold);
  color: var(--color-text-light);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  background-color: transparent;
  color: var(--color-text-dark);
  border: 1px solid var(--color-text-dark);
  transition: var(--transition-smooth);
}

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

.btn-outline.light {
  color: var(--color-text-light);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline.light:hover {
  background-color: var(--color-text-light);
  color: var(--color-text-dark);
  border-color: var(--color-text-light);
}

/* 5. HEADER & NAVIGATION */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  height: 75px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-header.scrolled .brand-name {
  color: #111111;
}

.site-header.scrolled .brand-tagline {
  color: var(--color-accent-gold);
}

.site-header.scrolled .nav-link {
  color: #222222;
}

.site-header.scrolled .nav-link:hover {
  color: var(--color-accent-gold);
}

.site-header.scrolled .mobile-menu-toggle span {
  background-color: #111111;
}

.site-header.scrolled .btn-book-now {
  border-color: var(--color-accent-gold);
  color: #111111;
}

.site-header.scrolled .btn-book-now:hover {
  background-color: var(--color-accent-gold);
  color: #ffffff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo {
  display: flex;
  flex-direction: column;
}

.site-logo .brand-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--color-text-light);
  text-transform: uppercase;
  line-height: 1;
}

.site-logo .brand-tagline {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: var(--color-accent-gold);
  text-transform: uppercase;
  margin-top: 4px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-light);
  position: relative;
  padding: 0.5rem 0;
  opacity: 0.9;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-accent-gold);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  opacity: 1;
  color: var(--color-accent-gold);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.btn-book-now {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--color-accent-gold);
  color: var(--color-accent-gold);
  transition: var(--transition-smooth);
}

.btn-book-now:hover {
  background-color: var(--color-accent-gold);
  color: var(--color-text-dark);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  cursor: pointer;
}

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

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background-color: var(--color-bg-dark);
  z-index: 2000;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: var(--transition-smooth);
  border-left: 1px solid var(--color-border-dark);
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--color-text-light);
  font-size: 1.8rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links .nav-link {
  font-size: 1rem;
}

/* 6. HERO SECTION */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-dark);
}

.hero-video-wrapper {
  position: absolute;
  top: -4px;
  left: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  z-index: 1;
  overflow: hidden;
}

.hero-video,
.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero Sound Control Button */
.hero-sound-btn {
  position: absolute;
  bottom: 35px;
  right: 40px;
  z-index: 20;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 0.5rem 1.1rem;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-sound-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: transparent;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--color-text-light);
  max-width: 900px;
  padding: 0 1.5rem;
  margin-top: 3rem;
}

.hero-subheading {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title span.italic {
  font-family: 'Editorial Serif', var(--font-serif);
  font-style: italic;
  font-weight: 300;
  text-transform: none;
}

.hero-description {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 2.5rem auto;
  max-width: 650px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-light);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: var(--transition-fast);
}

.scroll-indicator:hover {
  opacity: 1;
  color: var(--color-accent-gold);
}

.scroll-line {
  width: 1px;
  height: 35px;
  background: linear-gradient(to bottom, var(--color-accent-gold), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.video-audio-toggle {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.4);
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.video-audio-toggle:hover {
  border-color: var(--color-accent-gold);
  color: var(--color-accent-gold);
  background: rgba(0, 0, 0, 0.7);
}

/* 7. PORTFOLIO / CURATED WEDDINGS SECTION */
.portfolio-section {
  background-color: var(--color-bg-light);
  padding: 4.5rem 0;
}

.portfolio-header {
  margin-bottom: 2.5rem;
}

.portfolio-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.4vw, 1.6rem);
  color: #000000;
  font-weight: 600;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.6rem;
}

.wedding-card {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.wedding-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.wedding-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
}

.wedding-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.wedding-card:hover .wedding-image {
  transform: scale(1.04);
}

.wedding-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  opacity: 0;
  transform: scale(0.20);
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.wedding-card:hover .wedding-overlay {
  opacity: 1;
  transform: scale(0.70);
}

.wedding-overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wedding-couple {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 400;
  color: #111111;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0.8rem;
}

.wedding-couple .ampersand {
  font-family: var(--font-heading);
  font-weight: 300;
}

.wedding-location {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #111111;
  margin-top: 0.5rem;
}

.btn-see-more {
  display: inline-block;
  padding: 0.95rem 3rem;
  background-color: #000000;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18);
}

.btn-see-more:hover {
  background-color: #222222;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

/* 8. INSTAGRAM REELS & CINEMATIC TEASERS */
.reels-section {
  background-color: #e9e8e4;
  color: var(--color-text-dark);
  position: relative;
  padding: 4.5rem 0;
}

.reels-header {
  margin-bottom: 3.5rem;
}

.reels-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  font-weight: 400;
  color: var(--color-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 0.7em;
}

.reels-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  color: #1f1f1f;
  font-weight: 600;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.insta-reel-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: #000000;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.insta-reel-card:hover {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.insta-reel-media {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 17.2;
  overflow: hidden;
}

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

.insta-reel-top {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  font-size: 0.65rem;
  font-family: var(--font-sans);
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.insta-reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #7A7A7A;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.3s ease, background 0.3s ease;
}

.insta-reel-card:hover .insta-reel-play {
  transform: scale(1.1) translate(-50%, -50%);
}

.insta-reel-card.playing .insta-reel-play {
  opacity: 0;
  pointer-events: none;
}

.insta-reel-actions {
  position: absolute;
  right: 8px;
  bottom: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 0.6rem;
  font-family: var(--font-sans);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  z-index: 2;
}

.action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.insta-reel-bottom {
  position: absolute;
  bottom: 30px;
  left: 8px;
  right: 36px;
  color: #ffffff;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.insta-profile {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 3px;
}

.insta-avatar {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=100&q=80') center/cover;
}

.insta-username {
  font-size: 0.62rem;
  font-weight: 600;
  font-family: var(--font-sans);
}

.insta-follow-btn {
  font-size: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 3px;
  padding: 0 5px;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
}

.insta-caption {
  font-size: 0.6rem;
  font-family: var(--font-sans);
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  opacity: 0.95;
}

.insta-audio {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.55rem;
  margin-top: 2px;
  opacity: 0.85;
}

.insta-app-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 24px;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #ffffff;
  padding: 0 8px;
  z-index: 3;
}

.insta-nav-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffffff;
}

@media (max-width: 1024px) {
  .reels-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .reels-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 1.1rem;
    padding: 0.5rem 1rem 1.5rem 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .reels-grid::-webkit-scrollbar {
    display: none;
  }

  .insta-reel-card {
    flex: 0 0 82% !important;
    width: 82% !important;
    max-width: 310px !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
  }

  .reels-pagination {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 1.25rem;
  }

  .reel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cccccc;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .reel-dot.active {
    width: 22px;
    border-radius: 10px;
    background-color: #111111;
  }
}

.reels-pagination {
  display: none;
}

/* 9. CLIENT LOVE / TESTIMONIALS */
.testimonials-section {
  background-color: #C3C6B9;
  position: relative;
}

.testimonial-slider-container {
  max-width: 950px;
  margin: 0 auto;
  position: relative;
  padding: 0 3rem;
}

.testimonial-card {
  display: none;
  text-align: center;
  animation: fadeIn 0.6s ease forwards;
}

.testimonial-card.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

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

.quote-icon {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--color-accent-gold);
  margin-bottom: 1rem;
  opacity: 0.6;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--color-text-dark);
  margin-bottom: 2rem;
  font-weight: 300;
}

.testimonial-author {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-dark);
  margin-bottom: 0.3rem;
}

.testimonial-event {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--color-accent-gold);
  font-style: italic;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-bg-light);
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.slider-arrow:hover {
  background: var(--color-text-dark);
  color: var(--color-text-light);
  border-color: var(--color-text-dark);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e7e7e7;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  width: 24px;
  border-radius: 4px;
  background: #767676;
}

/* 10. ABOUT / BRAND PHILOSOPHY */
.about-section {
  background-color: var(--color-bg-light);
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-stack {
  position: relative;
}

.about-image-primary {
  width: 85%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image-secondary {
  position: absolute;
  bottom: -10%;
  right: 0;
  width: 55%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 8px solid var(--color-bg-light);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.about-content {
  padding-left: 1rem;
}

.about-heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.about-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-subtle);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--color-accent-gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-dark);
}

/* 11. CONTACT MODAL & DRAWER */
.contact-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.contact-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.contact-drawer {
  position: fixed;
  top: 0;
  right: -600px;
  width: 100%;
  max-width: 580px;
  height: 100vh;
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  z-index: 3001;
  padding: 3.5rem 3rem;
  overflow-y: auto;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  border-left: 1px solid var(--color-border-dark);
}

.contact-modal-overlay.active .contact-drawer {
  transform: translateX(-600px);
}

.drawer-close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--color-text-light);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.drawer-close-btn:hover {
  color: var(--color-accent-gold);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border-dark);
  color: var(--color-text-light);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-accent-gold);
  background: rgba(255, 255, 255, 0.08);
}

.whatsapp-direct-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem;
  background-color: #25d366;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-top: 1.5rem;
  transition: var(--transition-fast);
}

.whatsapp-direct-btn:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
}

/* 12. FOOTER */
.site-footer {
  background-color: #080808;
  color: var(--color-text-light);
  padding: 5rem 0 2.5rem 0;
  border-top: 1px solid var(--color-border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .brand-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--color-text-light-muted);
  max-width: 320px;
  line-height: 1.7;
}

.footer-column-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent-gold);
  margin-bottom: 1.5rem;
}

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

.footer-links a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--color-text-light-muted);
  letter-spacing: 0.05em;
}

.footer-links a:hover {
  color: var(--color-text-light);
  padding-left: 4px;
}

.social-icon-links {
  display: flex;
  gap: 1rem;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  transition: var(--transition-fast);
}

.social-icon-btn:hover {
  border-color: var(--color-accent-gold);
  color: var(--color-accent-gold);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* 13. LIGHTBOX MODAL */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

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

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  position: relative;
}

.lightbox-img,
.lightbox-video {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
}

/* 14. RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .main-nav,
  .header-cta {
    display: none;
  }


  .container {
    padding: 0 1rem;
  }


  .testimonial-slider-container {
    padding: 0;
  }


  .mobile-menu-toggle {
    display: flex;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.2rem;
  }

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

  .contact-drawer {
    width: 100%;
  }
}

/* 15. PARTNERSHIP / AS SEEN IN */
.partnership-section {
  background-color: #f7f6f3;
  padding: 3.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.partnership-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 400;
  color: #111111;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

.partnership-ticker-wrapper {
  overflow-x: auto;
  width: 100%;
  position: relative;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.partnership-ticker-wrapper::-webkit-scrollbar {
  display: none;
}

.partnership-ticker-wrapper.grabbing {
  cursor: grabbing;
}

.partnership-ticker-track {
  display: flex;
  align-items: center;
  gap: 5.5rem;
  width: max-content;
  padding: 0.5rem 0;
}

.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 78px;
  max-width: 210px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.85);
  pointer-events: none;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.partner-logo-item:hover .brand-logo-img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.08);
}

/* 16. FOLLOW US ON INSTAGRAM SECTION */
.instagram-follow-section {
  background-color: #ffffff;
  padding: 4.5rem 0 3.5rem 0;
}

.instagram-follow-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 400;
  color: #111111;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.insta-feed-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  max-width: 1520px;
  margin: 0 auto;
}

.insta-feed-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.2;
  overflow: hidden;
  background-color: #f4f2ee;
  border-radius: 4px;
}

.insta-feed-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insta-feed-card:hover .insta-feed-img {
  transform: scale(1.04);
}

.insta-carousel-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  backdrop-filter: blur(2px);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insta-feed-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(1px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem 1.25rem 1.25rem 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
  color: #ffffff;
}

.insta-feed-card:hover .insta-feed-hover {
  opacity: 1;
}

.insta-hover-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  margin: auto 0;
}

.hover-stat {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.15rem;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.insta-hover-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.hover-time {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.hover-insta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-follow-us {
  display: inline-block;
  padding: 0.8rem 2.8rem;
  background-color: #000000;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 25px;
  transition: var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-follow-us:hover {
  background-color: #222222;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

@media (max-width: 992px) {
  .insta-feed-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .insta-feed-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

/* 17. SITE FOOTER SECTION */
.site-footer {
  background-color: #f5f4f0;
  padding: 4.5rem 0 2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  list-style: none;
  padding: 0;
  margin: 0 0 3.5rem 0;
}

.footer-nav-menu li a {
  position: relative;
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: #111111;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.25s ease;
  padding-bottom: 2px;
}

.footer-nav-menu li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1.5px;
  background-color: #111111;
  transition: width 0.3s ease;
}

.footer-nav-menu li a:hover::after {
  width: 100%;
}

.footer-nav-menu li a:hover {
  color: #111111;
}

.footer-main-body {
  display: flex;
  flex-direction: column;
}

.footer-brand-hero {
  order: 1;
  text-align: center;
  margin-bottom: 4rem;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 12vw, 9.5rem);
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}

.footer-contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: flex-end;
  gap: 2rem;
  order: 2;
  padding-top: 2rem;
  padding-bottom: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
}

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

.info-label {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: #111111;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.info-val {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: #222222;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.info-val:hover {
  color: #000000;
}

.footer-social-row {
  order: 3;
}

.footer-social-circle-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.social-circle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.social-circle-btn:hover {
  background-color: #333333;
  color: #ffffff;
}

.footer-copyright-bar {
  text-align: center;
  padding-top: 2rem;
}

.footer-copyright-bar p {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: #888888;
  margin: 0;
}

/* Mobile Specific Reordering matching screenshot */
@media (max-width: 768px) {
  .site-footer {
    padding: 3rem 0 2rem 0;
  }

  .footer-nav-menu {
    display: none;
  }

  .footer-contact-row {
    order: 1;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-top: 0;
    padding-bottom: 2rem;
    border-top: none;
  }

  .email-col {
    text-align: left;
    align-items: flex-start;
  }

  .phone-col {
    text-align: right;
    align-items: flex-end;
  }

  .email-col .info-val,
  .phone-col .info-val {
    font-size: 0.95rem;
  }

  .email-col .info-label,
  .phone-col .info-label {
    font-size: 1rem;
  }

  .footer-brand-hero {
    order: 2;
    margin-bottom: 3rem;
    margin-top: 1rem;
  }

  .footer-brand-title {
    font-size: clamp(3.8rem, 18vw, 6rem);
  }

  .footer-social-row {
    order: 3;
    margin-bottom: 1.5rem;
  }

  .social-circle-btn {
    width: 44px;
    height: 44px;
  }
}

/* 18. INSTAGRAM LIGHTBOX MODAL & SWIPER (ORAGRAPHY STYLE) */
.insta-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes fadeInModal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.insta-modal-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  height: 100%;
  padding: 0 1rem;
}

.insta-modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  z-index: 100002;
  opacity: 0.85;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.insta-modal-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.insta-post-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 100005;
  padding: 0.5rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.insta-post-nav:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.25);
}

.insta-post-nav svg {
  width: 36px;
  height: 36px;
}

.insta-post-prev {
  left: -52px;
}

.insta-post-next {
  right: -52px;
}

.insta-modal-card {
  position: relative;
  background: #ffffff;
  padding: 0;
  border-radius: 2px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  width: min(600px, calc(100vw - 140px));
  height: min(750px, 84vh);
  aspect-ratio: 1 / 1.25;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  overflow: visible;
}

.insta-modal-media-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.insta-inner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all 0.2s ease;
}

.insta-inner-nav:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.insta-inner-prev {
  left: 6px;
}

.insta-inner-next {
  right: 6px;
}

.insta-modal-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  padding: 0;
  z-index: 10;
}

.insta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: all 0.25s ease;
}

.insta-dot.active {
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .insta-modal-card {
    padding: 0;
    width: calc(100vw - 70px);
    height: min(560px, 74vh);
    aspect-ratio: 1 / 1.25;
  }

  .insta-post-prev {
    left: -30px;
  }

  .insta-post-next {
    right: -30px;
  }

  .insta-post-nav {
    padding: 0.2rem;
  }

  .insta-post-nav svg {
    width: 26px;
    height: 26px;
  }

  .insta-inner-prev {
    left: 6px;
  }

  .insta-inner-next {
    right: 6px;
  }

  .insta-modal-media-frame,
  .insta-modal-img {
    width: 100%;
    height: 100%;
  }
}

/* ==========================================================================
   LUXURY BRAND LIQUID FILL PRELOADER — Darpan Studio
   ========================================================================== */
.site-preloader {
  position: fixed;
  inset: 0;
  background-color: #0b0c0e;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s ease;
}

.site-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  position: relative;
  padding: 2rem;
}

.loader-logo-wrapper {
  position: relative;
  display: inline-block;
  font-family: 'Edito A Regular', 'Editor Regular', serif;
  font-size: clamp(1.4rem, 3.2vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  user-select: none;
}

.loader-text-base {
  color: rgba(255, 255, 255, 0.18);
  display: block;
}

.loader-text-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #ffffff;
  clip-path: inset(100% 0 0 0);
  transition: none !important;
  will-change: clip-path;
}

@keyframes liquidFillUp {
  0% {
    clip-path: inset(100% 0 0 0);
  }
  100% {
    clip-path: inset(0% 0 0 0);
  }
}

.loader-subtext {
  font-family: 'Edito A Regular', 'Editor Regular', serif;
  font-size: clamp(0.65rem, 1.2vw, 0.8rem);
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1.5rem;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInSubtext 0.8s ease 0.5s forwards;
}

@keyframes fadeInSubtext {
  to {
    opacity: 1;
  }
}