/* ===================================================================
   WedPic Studio custom design layer — sits on top of Bootstrap 5.2.1.
   Bootstrap supplies the grid (.container/.row/.col-*), the navbar,
   the modal and the form controls; everything below is the site's
   own visual identity (colors, type, motion) layered over that.
   =================================================================== */
:root {
  --blue: #8fcdf0;
  --blue-deep: #5fb4e5;
  --pink: #ef5d9b;
  --ink: #14243b;
  --muted: #6e7c8d;
  --paper: #fbfcfd;
  --ice: #edf8fd;
  --line: #dbe8ef;
  --white: #fff;
  /* map into Bootstrap's own variables so bootstrap components inherit our palette */
  --bs-primary: #5fb4e5;
  --bs-body-color: var(--ink);
  --bs-body-bg: var(--paper);
  --bs-link-color: var(--pink);
  --bs-body-font-family: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  overscroll-behavior-x: none
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
  overscroll-behavior-x: none
}

a {
  text-decoration: none;
  color: inherit
}

button {
  font: inherit
}

.container {
  width: min(1180px, calc(100% - 48px));
  max-width: 1180px
}

.serif {
  font-family: "Cormorant Garamond", serif
}

.script {
  font-family: "Italianno", cursive
}

.eyebrow {
  font-size: 10px;
  letter-spacing: .25em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--pink)
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

/* NAV — Bootstrap navbar component, restyled */
.navbar.wedpic-nav {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  background: transparent;
  backdrop-filter: blur(1px);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: 0 10px 35px rgba(30, 60, 80, .09);
  border-radius: 18px;
  padding: 12px 18px
}


.navbar.wedpic-nav .navbar-collapse {
  flex-grow: 0
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -.05em
}

.logo-mark {
  width: 38px;
  height: 34px;
  border: 3px solid var(--blue-deep);
  border-radius: 10px;
  display: grid;
  place-items: center;
  position: relative
}

.logo-mark:before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid var(--pink);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: block
}

.logo .w {
  color: var(--pink)
}

.logo .p {
  color: #168ac8
}

.logo small {
  display: block;
  color: #168ac8;
  font-size: 7px;
  letter-spacing: .16em;
  text-align: right;
  margin-top: -3px
}

.navlinks {
  display: flex;
  gap: 27px;
  font-size: 12px;
  color: #334258;
  list-style: none;
  margin: 0;
  padding: 0
}

.navlinks .nav-link {
  position: relative;
  padding: 7px 0;
  color: #fff;
}

.navlinks .nav-link:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--pink);
  transition: .3s
}

.navlinks .nav-link:hover:after {
  right: 0
}

.cta {
  background: var(--pink);
  color: white;
  border: 0;
  border-radius: 999px;
  padding: 12px 19px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 7px 20px rgba(239, 93, 155, .2);
  display: inline-block
}

.cta.blue {
  background: var(--blue-deep);
  box-shadow: 0 7px 20px rgba(95, 180, 229, .22)
}

.navbar-toggler {
  border: 0;
  background: none;
  font-size: 22px;
  box-shadow: none
}

@media(min-width:768px) {
  .navbar-toggler {
    display: none
  }
}

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #6e8791
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 20, 30, .67), rgba(10, 20, 30, .13) 65%, rgba(10, 20, 30, .22)),
    url("https://wedpicstudio.com/asste/home/wedding-photographers-in-indiano1.png") center/cover
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 15, 25, .48), transparent 45%);
  pointer-events: none
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 300px;
  color: white;
  width: 100%
}

.hero-copy {
  max-width: 690px
}

.hero h1 {
  font-size: clamp(60px, 8vw, 118px);
  line-height: .78;
  font-weight: 500;
  letter-spacing: -.045em;
  margin: 16px 0 25px
}

.hero h1 em {
  color: #ffd0e2;
  font-weight: 500;
  font-style: normal
}

.hero p {
  max-width: 500px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .88);
  margin: 0 0 28px
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap
}

.play {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 999px;
  padding: 10px 16px;
  color: white;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
  cursor: pointer
}

.play-icon {
  width: 31px;
  height: 31px;
  border: 1px solid white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px
}

.hero-note {
  position: absolute;
  right: 3%;
  top: 40%;
  writing-mode: vertical-rl;
  letter-spacing: .28em;
  font-size: 9px;
  color: rgba(255, 255, 255, .8);
  text-transform: uppercase
}

.hero-bottom {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase
}

/* STATS — bootstrap row/col */
.stats {
  background: white;
  border-bottom: 1px solid var(--line)
}

.stats .row {
  padding: 38px 0
}

.stat {
  text-align: center;
  border-right: 1px solid var(--line);
  padding: 0
}

.stat:last-child,
.stat.no-border {
  border-right: 0
}

.stat-number {
  font: 500 48px/1 "Cormorant Garamond", serif;
  color: var(--blue-deep)
}

.stat-number.pink {
  color: var(--pink)
}

.stat-label {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #667487;
  margin-top: 7px
}

@media(max-width:850px) {
  .stat:nth-child(2) {
    border-right: 0
  }

  .stat:nth-child(2n) {
    border-right: 0
  }

  .stat {
    border-bottom: 0
  }
}

/* SECTIONS */
section {
  padding: 115px 0
}

.story-copy h2 {
  font-size: 64px;
  line-height: .83;
  font-weight: 500;
  margin: 13px 0 18px
}

.story-copy h2 span {
  color: var(--pink)
}

.story-copy p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted)
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 600;
  margin-top: 8px
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  min-height: 560px;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s ease
}

.media-card:hover img {
  transform: scale(1.035)
}

.media-caption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  color: white;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .5)
}

.big-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  color: white;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 15px;
  padding: 0
}

/* FILMS */
.films {
  background: var(--ice)
}

.films-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 35px
}

.films-head h2 {
  font-size: 67px;
  line-height: .82;
  font-weight: 500;
  margin: 12px 0 0
}

.films-head h2 em {
  color: var(--pink);
  font-style: normal
}

.film-card {
  min-height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #ddd;
  height: 100%
}

.film-card.film-lead {
  min-height: 410px
}

.film-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
  display: block
}

.film-card:hover img {
  transform: scale(1.04)
}

.film-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .55), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: white
}

.film-overlay strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 500
}

.film-overlay small {
  font-size: 9px;
  opacity: .85;
  letter-spacing: .12em;
  text-transform: uppercase
}

.mini-play {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .75);
  display: grid;
  place-items: center;
  color: white;
  background: rgba(0, 0, 0, .15)
}

@media(min-width:851px) {
  .films-row {
    display: flex
  }

  .films-row .film-lead-col {
    display: flex;
    flex-direction: column
  }
}

/* MOSAIC — kept as CSS grid (row-spanning masonry Bootstrap's 12-col row/col cannot express) */
.mosaic {
  padding-top: 40px
}

.mosaic-grid {
  display: grid;
  grid-template-columns: 1.05fr .8fr .9fr;
  grid-template-rows: 250px 250px;
  gap: 10px
}

.mosaic-item {
  overflow: hidden
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease
}

.mosaic-item:hover img {
  transform: scale(1.04)
}

.mosaic-tall {
  grid-row: span 2
}

.approach {
  display: grid;
  place-items: center;
  padding: 40px
}

.approach h2 {
  font-size: 54px;
  line-height: .9;
  margin: 12px 0 18px;
  font-weight: 500
}

.approach h2 span {
  color: var(--pink)
}

.approach p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 320px
}

.approach a {
  font-size: 11px;
  color: var(--pink);
  font-weight: 600
}

/* QUOTE */
.quote {
  background: linear-gradient(90deg, #eaf8fd, #fff4f8)
}

.quote h2 {
  font-size: 62px;
  line-height: .9;
  font-weight: 500;
  margin: 14px 0
}

.quote h2 em {
  color: var(--pink);
  font-style: normal
}

.quote p {
  font-size: 11px;
  color: #506175
}

.quote-photo {
  height: 410px;
  overflow: hidden
}

.quote-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1)
}

/* ABOUT */
.team-img {
  height: 440px;
  overflow: hidden
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.about h2 {
  font-size: 61px;
  line-height: .9;
  font-weight: 500;
  margin: 13px 0 20px
}

.about h2 em {
  color: var(--pink);
  font-style: normal
}

.about p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 450px
}

/* CTA */
.final-cta {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white
}

.final-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 29, 43, .72), rgba(14, 29, 43, .18)), url("https://nclient.wedpicstudio.com/assets/images/gallery/ankur-X-shynama/1%20(65).jpg") center/cover
}

.final-content {
  position: relative;
  z-index: 2
}

.final-content h2 {
  font-size: 78px;
  line-height: .82;
  font-weight: 500;
  max-width: 700px;
  margin: 13px 0 25px
}

.final-content h2 em {
  color: #ffd0e2;
  font-style: normal
}

.final-content p {
  font-family: "Italianno", cursive;
  font-size: 33px;
  margin: 0 0 30px
}

.final-content .cta {
  padding: 15px 24px
}

/* FOOTER */
footer {
  background: white;
  padding: 50px 0 25px
}

.footer-top {
  padding-bottom: 35px;
  border-bottom: 1px solid var(--line);
  align-items: flex-start
}

.footer-links {
  display: flex;
  gap: 25px;
  font-size: 11px;
  color: #59687a;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap
}

.socials {
  display: flex;
  gap: 9px
}

.social {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--pink);
  font-size: 11px
}

.footer-bottom {
  padding-top: 20px;
  color: #9aa5b0;
  font-size: 9px
}

/* MODAL — visuals for Bootstrap's own .modal component */
.modal-content {
  background: #101d2b;
  border: 0;
  border-radius: 0;
  padding: 10px
}

.modal-content iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  display: block
}

.modal .btn-close {
  filter: invert(1);
  opacity: 1;
  position: absolute;
  right: -8px;
  top: -42px
}

/* MOBILE */
@media(max-width:850px) {
  .navbar.wedpic-nav {
    top: 10px
  }

  .hero-content {
    padding-bottom: 70px
  }

  .hero h1 {
    font-size: 65px
  }

  .hero-note {
    display: none
  }

  .story-copy h2,
  .quote h2,
  .about h2 {
    font-size: 52px
  }

  .media-card {
    min-height: 430px
  }

  .films-head {
    display: block
  }

  .films-head h2 {
    font-size: 55px
  }

  .mosaic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px 300px
  }

  .mosaic-tall {
    grid-row: span 2
  }

  .approach {
    grid-column: span 2
  }

  .final-content h2 {
    font-size: 59px
  }
}

@media(max-width:520px) {
  .container {
    width: min(100% - 28px, 1180px)
  }

  section {
    padding: 75px 0
  }

  .hero h1 {
    font-size: 57px
  }

  .hero p {
    font-size: 13px
  }

  .stats .row {
    padding: 27px 0
  }

  .stat-number {
    font-size: 38px
  }

  .floating-orb {
    width: 90px;
    height: 90px;
    opacity: .5
  }

  .story-copy h2,
  .quote h2,
  .about h2 {
    font-size: 48px
  }

  .mosaic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 220px 300px
  }

  .mosaic-tall {
    grid-column: span 2;
    grid-row: auto
  }

  .approach {
    grid-column: span 2
  }

  .final-cta {
    min-height: 500px
  }

  .final-content h2 {
    font-size: 53px
  }
}

/* ===== V2 CINEMATIC / 3D ENHANCEMENTS ===== */
body {
  cursor: none
}

body:before {
  content: "";
  position: fixed;
  z-index: 100;
  pointer-events: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  transform: translate(-50%, -50%);
  left: var(--mx, 50%);
  top: var(--my, 50%);
  box-shadow: 0 0 0 7px rgba(239, 93, 155, .12);
  transition: width .15s, height .15s
}

body.cursor-hover:before {
  width: 14px;
  height: 14px
}

.cursor-ring {
  position: fixed;
  z-index: 99;
  pointer-events: none;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  left: var(--mx, 50%);
  top: var(--my, 50%);
  mix-blend-mode: difference;
  transition: width .25s, height .25s
}

.hero {
  perspective: 1200px
}

.hero-media {
  transform: scale(1.04);
  transition: transform 1.2s cubic-bezier(.2, .7, .2, 1);
  will-change: transform
}

.hero-content {
  transform-style: preserve-3d
}

.hero-copy {
  will-change: transform
}

.hero h1 {
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, .18))
}

.floating-orb {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: 9%;
  top: 18%;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .8), rgba(143, 205, 240, .3) 35%, rgba(239, 93, 155, .12) 65%, transparent 70%);
  filter: blur(.2px);
  opacity: .8;
  animation: floatOrb 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 2
}

@keyframes floatOrb {

  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg)
  }

  50% {
    transform: translate3d(-24px, 28px, 35px) rotate(12deg)
  }
}

.parallax-card {
  transform-style: preserve-3d;
  transition: transform .15s ease-out
}

.parallax-card img {
  transform: translateZ(0);
  transition: transform .7s cubic-bezier(.2, .7, .2, 1)
}

.parallax-card:hover img {
  transform: scale(1.045) translateZ(18px)
}

.media-card:after,
.film-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, .16), transparent 30%, transparent 70%, rgba(143, 205, 240, .08));
  opacity: 0;
  transition: .5s;
  pointer-events: none
}

.media-card:hover:after,
.film-card:hover:after {
  opacity: 1
}

.film-card {
  transform-style: preserve-3d;
  will-change: transform
}

.film-card .film-overlay {
  transform: translateZ(15px)
}

.story-copy,
.about,
.approach,
.quote .col-quote-copy {
  position: relative
}

.story-copy:before,
.about:before,
.approach:before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(143, 205, 240, .45);
  border-radius: 50%;
  right: -35px;
  top: -25px;
  opacity: .55;
  animation: slowSpin 14s linear infinite
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg)
  }
}

.section-number {
  font-size: 9px;
  letter-spacing: .25em;
  color: #9aa7b4
}

.reel-marquee {
  overflow: hidden;
  background: var(--ink);
  color: white;
  padding: 12px 0;
  white-space: nowrap
}

.reel-track {
  display: inline-flex;
  gap: 34px;
  animation: marquee 28s linear infinite;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase
}

.reel-track span:nth-child(even) {
  color: var(--pink)
}

@keyframes marquee {
  to {
    transform: translateX(-50%)
  }
}

#three-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .6
}

.hero .container,
.hero .hero-note,
.hero .hero-bottom {
  z-index: 3
}

.depth-line {
  position: absolute;
  height: 1px;
  width: 160px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  right: 12%;
  bottom: 28%;
  transform: rotate(-18deg);
  opacity: .55;
  animation: lineFloat 5s ease-in-out infinite
}

@keyframes lineFloat {
  50% {
    transform: rotate(-18deg) translateY(-20px);
    opacity: .9
  }
}

@media(max-width:850px) {
  body {
    cursor: auto
  }

  body:before,
  .cursor-ring {
    display: none
  }

  .floating-orb {
    width: 110px;
    height: 110px;
    right: 4%;
    top: 20%
  }
}

@media(prefers-reduced-motion:reduce) {

  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important
  }
}

/* ===== IMMERSIVE 3D PHOTO STAGE (kept as absolute/3D layout — not a Bootstrap grid case) ===== */
.floating-gallery {
  background: var(--paper);
  padding: 125px 0 200px;
  overflow: hidden
}

.floating-head h2 {
  font-size: 72px;
  line-height: .82;
  font-weight: 500;
  margin: 12px 0 0
}

.floating-head h2 em {
  color: var(--pink);
  font-style: normal
}

.floating-head p {
  font-size: 11px;
  line-height: 1.7;
  color: var(--muted)
}

.photo-stage {
  height: 560px;
  position: relative;
  perspective: 1400px;
  transform-style: preserve-3d
}

.stage-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(143, 205, 240, .22), rgba(239, 93, 155, .08) 42%, transparent 70%);
  filter: blur(8px);
  pointer-events: none
}

.photo-card {
  position: absolute;
  width: 245px;
  height: 330px;
  border: 7px solid white;
  background: #ddd;
  box-shadow: 0 30px 65px rgba(20, 36, 59, .17);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .12s ease-out, box-shadow .5s ease;
  overflow: hidden;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.94);
}

.photo-card span {
  position: absolute;
  left: 14px;
  bottom: 11px;
  color: white;
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .7)
}

.card-a {
  left: 8%;
  top: 120px;
  transform: rotate(-10deg) translateZ(30px)
}

.card-b {
  left: 26%;
  top: 35px;
  width: 260px;
  height: 350px;
  transform: rotate(4deg) translateZ(100px)
}

.card-c {
  right: 25%;
  top: 80px;
  width: 230px;
  height: 310px;
  transform: rotate(-5deg) translateZ(160px)
}

.card-d {
  right: 7%;
  top: 150px;
  transform: rotate(9deg) translateZ(40px)
}

.card-e {
  left: 43%;
  bottom: -10px;
  width: 210px;
  height: 285px;
  transform: rotate(3deg) translateZ(220px)
}

.stage-copy {
  position: absolute;
  z-index: 5;
  left: 50%;
   top: 110%;  
  transform: translate(-50%, -50%) translateZ(300px);
  text-align: center;
  pointer-events: none;
  text-shadow: 0 8px 30px rgba(255, 255, 255, .8)
}

.stage-copy .script {
  font-size: 45px;
  color: var(--pink);
  line-height: .8
}

.stage-copy .serif {
  font-size: 58px;
  line-height: .78;
  color: var(--ink)
}

.stage-copy small {
  display: block;
  margin-top: 22px;
  color: #748394;
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase
}

.photo-stage:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(transparent, var(--paper));
  pointer-events: none
}

@media(max-width:850px) {
  .floating-gallery {
    padding: 85px 0 45px
  }

  .floating-head p {
    margin-top: 18px
  }

  .photo-stage {
    height: 600px;
    transform: scale(.88);
    transform-origin: top center;
    margin-bottom: -70px
  }

  .card-a {
    left: 0
  }

  .card-b {
    left: 18%
  }

  .card-c {
    right: 18%
  }

  .card-d {
    right: 0
  }

  .card-e {
    left: 39%
  }
}

@media(max-width:560px) {
  .photo-stage {
    height: 550px;
    transform: scale(.68);
    width: 147%;
    margin-left: -23%;
    margin-bottom: -145px
  }

  .stage-copy .serif {
    font-size: 54px
  }
}

/* ===== FULL CONTENT MERGE ===== */
.brand-story {
  background: #fff;
  padding: 120px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.brand-story h2,
.why-head h2,
.process-head h2,
.faq h2,
.inquiry h2 {
  font-size: 66px;
  line-height: .86;
  font-weight: 500;
  margin: 13px 0
}

.brand-story h2 em,
.why-head h2 em,
.process-head h2 em,
.faq h2 em,
.inquiry h2 em {
  color: var(--pink);
  font-style: normal
}

.brand-story-copy {
  max-width: 550px
}

.quote-large {
  font: 500 29px/1.08 "Cormorant Garamond", serif;
  color: var(--ink);
  margin: 0 0 22px
}

.brand-story-copy p:not(.quote-large) {
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted)
}

.why-section {
  background: var(--ice);
  padding: 115px 0
}

.why-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 45px
}

.why-head>p {
  max-width: 360px;
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted)
}

.why-card {
  background: white;
  padding: 42px 34px;
  min-height: 270px;
  border: 1px solid rgba(219, 232, 239, .8);
  transition: transform .4s, box-shadow .4s;
  height: 100%
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(40, 70, 90, .1)
}

.why-icon {
  display: block;
  color: var(--pink);
  font-size: 25px;
  margin-bottom: 25px
}

.why-card h3 {
  font: 600 27px/1 "Cormorant Garamond", serif;
  margin: 0 0 14px
}

.why-card p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0
}

.process {
  padding: 115px 0;
  background: white
}

.process-head {
  margin-bottom: 50px
}

.process-row {
  border-top: 1px solid var(--line)
}

.process-step {
  padding: 30px 25px 10px;
  border-right: 1px solid var(--line);
  min-height: 230px
}

.process-step:last-child {
  border-right: 0
}

.process-step>span {
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--pink)
}

.process-step h3 {
  font: 500 27px/1.05 "Cormorant Garamond", serif;
  margin: 30px 0 14px
}

.process-step p {
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0
}

.faq {
  background: #f8fbfd;
  padding: 115px 0
}

.faq-note {
  font-size: 12px;
  color: var(--muted);
  margin: 20px 0
}

.faq-list {
  border-top: 1px solid var(--line)
}

.faq .accordion-item {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  border-radius: 0
}

.faq .accordion-button {
  background: transparent;
  box-shadow: none;
  padding: 22px 3px;
  font: 500 25px/1 "Cormorant Garamond", serif;
  color: var(--ink)
}

.faq .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--ink);
  box-shadow: none
}

.faq .accordion-button:after {
  content: "+";
  background-image: none;
  font-family: "DM Sans";
  font-size: 16px;
  color: var(--pink);
  width: auto;
  height: auto;
  transform: none
}

.faq .accordion-button:not(.collapsed):after {
  content: "−"
}

.faq .accordion-body {
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
  padding: 0 25px 23px 3px
}

.inquiry {
  padding: 120px 0;
  background: linear-gradient(120deg, #eef9fd, #fff5f9)
}

.inquiry p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 380px
}

.contact-facts {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-size: 10px;
  letter-spacing: .04em;
  color: #4c5e71
}

.inquiry-form {
  background: white;
  padding: 32px;
  box-shadow: 0 25px 70px rgba(40, 70, 90, .08)
}

.inquiry-form label {
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #697788;
  margin-bottom: 8px
}

.inquiry-form .form-control,
.inquiry-form .form-select {
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 12px 13px;
  font-size: 12px;
  font-family: "DM Sans";
  color: var(--ink);
  background: #fff;
  box-shadow: none
}

.inquiry-form .form-control:focus,
.inquiry-form .form-select:focus {
  border-color: var(--blue-deep);
  box-shadow: 0 0 0 3px rgba(143, 205, 240, .15)
}

.form-success {
  display: none;
  background: #eef9fd;
  color: #3c6479;
  padding: 13px;
  margin-top: 14px;
  font-size: 10px;
  line-height: 1.6
}

.social-strip {
  background: var(--ink);
  color: white;
  padding: 65px 0
}

.social-strip h2 {
  font: 500 55px/.85 "Cormorant Garamond", serif;
  margin: 10px 0 0
}

.social-strip h2 em {
  color: #ffd0e2;
  font-style: normal
}

@media(max-width:850px) {

  .brand-story h2,
  .why-head h2,
  .process-head h2,
  .faq h2,
  .inquiry h2 {
    font-size: 54px
  }

  .why-head {
    display: block
  }

  .why-head>p {
    margin-top: 20px
  }

  .process-step:nth-child(2) {
    border-right: 0
  }

  .process-step:nth-child(n+3) {
    border-top: 1px solid var(--line)
  }

  .social-strip .cta {
    margin-top: 25px;
    display: inline-block
  }
}

@media(max-width:520px) {
  .process-step {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line)
  }

  .process-step:last-child {
    border-bottom: 0
  }

  .social-strip h2 {
    font-size: 48px
  }
}

.portfolio-live,
.journal-live {
  padding: 110px 0
}

.live-story {
  display: block;
  color: inherit;
  text-decoration: none
}

.live-story img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform .8s ease
}

.live-story:hover img {
  transform: scale(1.025)
}

.live-story span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em
}

.live-story strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 500;
  margin-top: 4px
}

.journal-live {
  background: #f6f7f6
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line)
}

.journal-grid a {
  padding: 34px;
  background: #f6f7f6;
  color: inherit;
  text-decoration: none;
  min-height: 270px;
  display: flex;
  flex-direction: column
}

.journal-grid span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--muted)
}

.journal-grid h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 500;
  margin: 18px 0 12px
}

.journal-grid p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px
}

.journal-grid b {
  margin-top: auto;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .13em
}

@media(max-width:800px) {
  .journal-grid {
    grid-template-columns: 1fr
  }

  .portfolio-live,
  .journal-live {
    padding: 76px 0
  }
}

.seo-location {
  padding: 50px 0 30px;
  border-top: 1px solid var(--line)
}

.seo-location h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 12px
}

.seo-location p {
  max-width: 900px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px
}

/* love in motion. start*/
/* ===== MOBILE: show full photos, no cropping/overlap ===== */
@media (max-width: 600px) {
  .photo-stage {
    height: auto !important;
    transform: none !important;
    width: 100% !important;
    margin: 0 !important;
    perspective: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-bottom: 20px;
  }

  .stage-glow {
    display: none;
  }

  .photo-card {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 3 / 4;
    transform: none !important;
    border-width: 5px;
    box-shadow: 0 10px 25px rgba(20, 36, 59, .15);
  }

  /* har image poori dikhe, kate nahi */
  .photo-card img {
    object-fit: cover;
    /* agar bilkul bhi crop nahi chahiye to isse "contain" kar do */
  }

  .photo-card span {
    font-size: 7px;
  }

  .stage-copy {
    position: static !important;
    transform: none !important;
    grid-column: span 2;
    margin-top: 12px;
    text-shadow: none;
  }

  .stage-copy .serif {
    font-size: 40px;
  }

  .stage-copy .script {
    font-size: 32px;
  }

  .photo-stage:after {
    display: none;
  }
}

/* love in motion. end*/

/* slider new srtar */

/* =========================================================
   RESET — ONLY FOR THIS SLIDER
========================================================= */

#wpfs2-slider,
#wpfs2-slider *,
#wpfs2-slider *::before,
#wpfs2-slider *::after {
  box-sizing: border-box;
}


/* =========================================================
   MAIN SLIDER
========================================================= */

#wpfs2-slider {

  position: relative;

  width: 100vw;
  height: 100vh;

  min-height: 650px;

  margin: 0;
  padding: 0;

  overflow: hidden;

  background: #101820;

  isolation: isolate;

}


/* =========================================================
   SLIDE
========================================================= */

#wpfs2-slider .wpfs2-slide {

  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  opacity: 0;
  visibility: hidden;

  transform: scale(1.05);

  transition:
    opacity 1s ease,
    transform 1.4s ease,
    visibility 1s ease;

  z-index: 1;

}


/* ACTIVE */

#wpfs2-slider .wpfs2-slide-active {

  opacity: 1;

  visibility: visible;

  transform: scale(1);

  z-index: 2;

}


/* =========================================================
   IMAGE
========================================================= */

#wpfs2-slider .wpfs2-slide img {

  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  object-position: center;

  transform: scale(1);

  transition:
    transform 7s cubic-bezier(.2,.7,.2,1);

}


/* KEN BURNS */

#wpfs2-slider
.wpfs2-slide-active
img {

  transform: scale(1.07);

}


/* =========================================================
   DARK CINEMATIC OVERLAY
========================================================= */

#wpfs2-slider .wpfs2-dark-overlay {

  position: absolute;

  inset: 0;

  z-index: 2;

  pointer-events: none;

  background:

    linear-gradient(
      90deg,
      rgba(5,14,25,.78) 0%,
      rgba(5,14,25,.48) 32%,
      rgba(5,14,25,.12) 72%,
      rgba(5,14,25,.04) 100%
    ),

    linear-gradient(
      0deg,
      rgba(5,14,25,.70) 0%,
      rgba(5,14,25,.10) 55%,
      transparent 100%
    );

}


/* =========================================================
   CONTENT — LEFT + VERTICAL CENTER
========================================================= */

#wpfs2-slider .wpfs2-slide-content {

  position: absolute;

  z-index: 5;

  left: 7vw;

  top: 50%;

  transform: translateY(-50%);

  width: min(720px, 80vw);

  color: #fff;

}


/* LABEL */

#wpfs2-slider .wpfs2-slide-label {

  display: block;

  margin-bottom: 18px;

  font-family:
    "DM Sans",
    Arial,
    sans-serif;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: .25em;

  text-transform: uppercase;

  color: #ffd1e3;

}


/* HEADING */

#wpfs2-slider .wpfs2-slide-content h2 {

  margin: 0;

  padding: 0;

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: clamp(
    52px,
    6.5vw,
    92px
  );

  line-height: .84;

  font-weight: 500;

  letter-spacing: -.035em;

  color: #fff;

  text-shadow:
    0 8px 35px rgba(0,0,0,.28);

}


/* =========================================================
   TWO BUTTONS
========================================================= */

#wpfs2-slider .wpfs2-buttons {

  display: flex;

  align-items: center;

  gap: 13px;

  margin-top: 32px;

}


/* COMMON BUTTON */

#wpfs2-slider .wpfs2-btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 18px;

  min-width: 185px;

  min-height: 50px;

  padding: 14px 22px;

  border-radius: 50px;

  font-family:
    "DM Sans",
    Arial,
    sans-serif;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: .08em;

  text-transform: uppercase;

  text-decoration: none;

  transition:
    all .3s ease;

}


/* BUTTON ARROW */

#wpfs2-slider .wpfs2-btn b {

  font-size: 17px;

  line-height: 1;

  font-weight: 400;

  transition:
    transform .3s ease;

}


/* =========================================================
   PINK BUTTON
========================================================= */

#wpfs2-slider .wpfs2-btn-pink {

  color: #fff;

  background: #ef5d9b;

  border: 1px solid #ef5d9b;

  box-shadow:
    0 12px 35px rgba(
      239,
      93,
      155,
      .28
    );

}


/* PINK HOVER */

#wpfs2-slider .wpfs2-btn-pink:hover {

  color: #ef5d9b;

  background: #fff;

  border-color: #fff;

  transform:
    translateY(-3px);

}


/* =========================================================
   OUTLINE BUTTON
========================================================= */

#wpfs2-slider .wpfs2-btn-outline {

  color: #fff;

  background:
    rgba(255,255,255,.08);

  border:
    1px solid rgba(
      255,
      255,
      255,
      .75
    );

  backdrop-filter:
    blur(10px);

}


/* OUTLINE HOVER */

#wpfs2-slider .wpfs2-btn-outline:hover {

  color: #14243b;

  background: #fff;

  border-color: #fff;

  transform:
    translateY(-3px);

}


/* ARROW HOVER */

#wpfs2-slider .wpfs2-btn:hover b {

  transform:
    translateX(5px);

}


/* =========================================================
   LEFT / RIGHT SLIDER BUTTONS
========================================================= */

#wpfs2-slider .wpfs2-navigation {

  position: absolute;

  top: 50%;

  z-index: 20;

  width: 56px;
  height: 56px;

  padding: 0;

  display: grid;

  place-items: center;

  transform:
    translateY(-50%);

  border:
    1px solid
    rgba(255,255,255,.70);

  border-radius: 50%;

  background:
    rgba(0,0,0,.12);

  backdrop-filter:
    blur(10px);

  color: #fff;

  font-size: 19px;

  cursor: pointer;

  transition:
    all .3s ease;

}


#wpfs2-prev {

  left: 35px;

}


#wpfs2-next {

  right: 35px;

}


/* NAV HOVER */

#wpfs2-slider .wpfs2-navigation:hover {

  background:
    rgba(255,255,255,.22);

  border-color: #fff;

  transform:
    translateY(-50%)
    scale(1.08);

}


/* =========================================================
   COUNTER
========================================================= */

#wpfs2-counter {

  position: absolute;

  z-index: 20;

  top: 35px;

  right: 40px;

  display: flex;

  gap: 7px;

  font-family:
    "DM Sans",
    Arial,
    sans-serif;

  font-size: 10px;

  letter-spacing: .16em;

  color:
    rgba(255,255,255,.70);

}


#wpfs2-current {

  color: #ffd1e3;

  font-weight: 700;

}


/* =========================================================
   PROGRESS BARS
========================================================= */

#wpfs2-progress {

  position: absolute;

  z-index: 20;

  right: 35px;

  bottom: 30px;

  display: flex;

  align-items: center;

  gap: 8px;

}


#wpfs2-progress .wpfs2-progress-item {

  width: 30px;

  height: 3px;

  margin: 0;

  padding: 0;

  border: 0;

  background:
    rgba(255,255,255,.45);

  cursor: pointer;

  transition:
    width .4s ease,
    background .4s ease;

}


#wpfs2-progress
.wpfs2-progress-active {

  width: 55px;

  background: #fff;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

  #wpfs2-slider {

    height: 100svh;

    min-height: 600px;

  }


  #wpfs2-slider
  .wpfs2-slide-content {

    left: 6vw;

    width: 78vw;

  }


  #wpfs2-slider
  .wpfs2-slide-content h2 {

    font-size: 62px;

  }


  #wpfs2-prev {

    left: 20px;

  }


  #wpfs2-next {

    right: 20px;

  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  #wpfs2-slider {

    height: 100svh;

    min-height: 600px;

  }


  /* Mobile image positioning */

  #wpfs2-slider
  .wpfs2-slide img {

    object-position: center center;

  }


  /* Content */

  #wpfs2-slider
  .wpfs2-slide-content {

    left: 25px;

    bottom: 95px;

    top: auto;

    transform: none;

    width:
      calc(100% - 50px);

  }


  #wpfs2-slider
  .wpfs2-slide-label {

    margin-bottom: 14px;

    font-size: 8px;

  }


  #wpfs2-slider
  .wpfs2-slide-content h2 {

    font-size: 47px;

    line-height: .88;

  }


  /* BUTTONS */

  #wpfs2-slider
  .wpfs2-buttons {

    flex-direction: column;

    align-items: flex-start;

    gap: 9px;

    margin-top: 24px;

  }


  #wpfs2-slider
  .wpfs2-btn {

    min-width: 180px;

    min-height: 45px;

    padding: 12px 18px;

    font-size: 8px;

  }


  /* ARROWS */

  #wpfs2-slider
  .wpfs2-navigation {

    width: 44px;

    height: 44px;

    font-size: 15px;

  }


  #wpfs2-prev {

    left: 13px;

  }


  #wpfs2-next {

    right: 13px;

  }


  /* COUNTER */

  #wpfs2-counter {

    top: 25px;

    right: 25px;

  }


  /* PROGRESS */

  #wpfs2-progress {

    left: 25px;

    right: auto;

    bottom: 30px;

  }


  #wpfs2-progress
  .wpfs2-progress-item {

    width: 20px;

  }


  #wpfs2-progress
  .wpfs2-progress-active {

    width: 40px;

  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  #wpfs2-slider
  .wpfs2-slide,

  #wpfs2-slider
  .wpfs2-slide img,

  #wpfs2-slider
  .wpfs2-navigation,

  #wpfs2-slider
  .wpfs2-btn,

  #wpfs2-slider
  .wpfs2-progress-item {

    transition: none;

  }

}


