/* =========================================================
   GALLERIES (OVERLAP BLOCK)
   ========================================================= */
section.galleries{
  position:relative;
  background: transparent;
  padding: 0 0 14px;
}

.galleries-overlap{
  width: var(--wrap);
  margin: calc(var(--overlap-pull) * -1) auto 0;
  position:relative;
  z-index: 60;
}

.galleries-surface{
  background: rgba(0,0,0,0.62);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 22px;
  padding: 22px;
  backdrop-filter: blur(10px);
  box-shadow: 0 26px 70px rgba(0,0,0,0.55);
}

.gal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin: 0 0 14px;
}

.gal-title{
  margin:0;
  font-weight:500;
  letter-spacing:0.12em;
  font-size: 12px;
  color: rgba(255,255,255,0.70);
  text-transform:uppercase;
}

.gal-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  align-items:stretch;
}

@media (max-width: 980px){ .gal-row{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px){ .gal-row{ grid-template-columns: 1fr; } }

.gal-card{
  position:relative;
  min-width: 0;
  height: 320px;
  border-radius: 16px;
  overflow:hidden;
  text-decoration:none;
  color: white;
  background: rgba(255,255,255,0.04);
  transform: translateZ(0);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  border: 1px solid rgba(255,255,255,0.10);
}

.gal-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}

.gal-card:active{ transform: translateY(-1px) scale(0.995); }

.gal-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform: scale(1.02);
  transition: transform .45s cubic-bezier(.2,1,.2,1);
  filter: saturate(1.0) brightness(0.96);
}

.gal-card:hover .gal-bg{ transform: scale(1.06); }

.gal-ov{
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.00) 0%,
    rgba(0,0,0,0.10) 35%,
    rgba(0,0,0,0.80) 100%
  );
  opacity: 0.92;
}

.gal-content{
  position:absolute;
  left:16px;
  right:16px;
  bottom:16px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.gal-name{
  margin:0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.gal-detail{
  margin:0;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.70);
  line-height:1.55;
  opacity:0;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease;
}

.gal-card:hover .gal-detail{ opacity:1; transform: translateY(0); }

@media (hover: none){
  .gal-detail{ opacity:1; transform:none; }
  .gal-ov{ opacity:0.92; }
}

/* =========================================================
   BOOK CTA BETWEEN GALLERY + SERVICES
   ========================================================= */
section.book-cta{
  padding: 22px 0 12px;
  background: transparent;
}

.book-cta-wrap{
  width: var(--wrap);
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.15fr auto;
  align-items:center;
  gap: 22px;
  padding: 30px 32px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.20);
  background:
    linear-gradient(135deg,
      rgba(255,255,255,0.13) 0%,
      rgba(255,255,255,0.05) 38%,
      rgba(255,255,255,0.10) 100%);
  box-shadow:
    0 26px 70px rgba(0,0,0,0.48),
    0 0 0 1px rgba(255,255,255,0.05) inset;
  position:relative;
  overflow:hidden;
}

.book-cta-wrap::before{
  content:"";
  position:absolute;
  inset:-1px;
  pointer-events:none;
  background:
    radial-gradient(circle at 10% 20%,
      rgba(255,255,255,0.18),
      rgba(255,255,255,0.00) 42%),
    radial-gradient(circle at 88% 78%,
      rgba(255,255,255,0.14),
      rgba(255,255,255,0.00) 38%);
  opacity: 0.95;
}

.book-cta-wrap > *{
  position:relative;
  z-index:1;
}

.book-cta-left{ max-width: 74ch; }

.book-cta-title{
  margin:0;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 0.96;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.98);
  font-weight: 700;
  text-shadow: 0 18px 46px rgba(0,0,0,0.46);
}

.book-cta-sub{
  margin:14px 0 0;
  color: rgba(255,255,255,0.76);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.book-cta-button{
  height: 62px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.96);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  box-shadow: 0 24px 58px rgba(0,0,0,0.42);
}

.book-cta-button:hover{
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.34);
}

@media (max-width: 900px){
  .book-cta-wrap{
    grid-template-columns: 1fr;
    align-items:flex-start;
  }
}

@media (max-width: 520px){
  .book-cta-wrap{ padding: 24px 22px; }
  .book-cta-button{
    width:100%;
    justify-content:center;
  }
}

/* =========================================================
   SERVICES (STACKED)
   ========================================================= */
section.services{
  position:relative;
  padding: 0 0 10px;
  background: transparent;
}

.services-wrap{
  width: var(--wrap);
  margin: 0 auto;
}

.service-section{
  padding: 74px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.service-section:first-child{ border-top: 0; }

.panel-grid{
  display:grid;
  grid-template-columns: 520px 1fr;
  align-items:center;
  gap: 56px;
}

.service-section.is-reverse .panel-grid .media-col{ order: 2; }
.service-section.is-reverse .panel-grid .copy-col{ order: 1; }

@media (max-width: 980px){
  .panel-grid{
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-section.is-reverse .panel-grid .media-col,
  .service-section.is-reverse .panel-grid .copy-col{
    order: initial;
  }
}

.service-title{
  margin:0 0 16px;
  font-size: clamp(44px, 5.2vw, 74px);
  line-height: 1.05;
  letter-spacing: 0.06em;
  font-weight: 600;
  text-transform: uppercase;
}

.service-copy{
  margin:0 0 22px;
  max-width: 62ch;
  font-size: 15px;
  line-height: 2.05;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.74);
}

.service-copy strong{
  color: rgba(255,255,255,0.92);
  font-weight: 700;
}

/* Media helpers */
.media-bg{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: brightness(0.94) saturate(1.0);
}

.media-ov{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.06) 0%,
      rgba(0,0,0,0.38) 70%,
      rgba(0,0,0,0.55) 100%
    );
  opacity: 0.92;
}

/* Senior stack */
.senior-stack{
  position:relative;
  height: 520px;
  display:grid;
  place-items:center;
}

.senior-card{
  position:absolute;
  width: 320px;
  height: 480px;
  overflow:hidden;
  background: transparent;
  transform-origin: 50% 90%;
  transition: transform 260ms cubic-bezier(.2,1,.2,1), opacity 260ms ease;
  will-change: transform;
}

.senior-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform: scale(1.02);
}

.senior-card.c1{ transform: translateX(-64px) rotate(-7deg); z-index:1; opacity:0.92; }
.senior-card.c2{ transform: translateX(0) rotate(0deg); z-index:3; }
.senior-card.c3{ transform: translateX(64px) rotate(7deg); z-index:2; opacity:0.92; }

@media (hover:hover){
  .senior-stack:hover .senior-card.c1{ transform: translateX(-118px) rotate(-14deg) translateY(-6px); opacity: 0.98; }
  .senior-stack:hover .senior-card.c2{ transform: translateX(0) rotate(0deg) translateY(-14px) scale(1.02); }
  .senior-stack:hover .senior-card.c3{ transform: translateX(118px) rotate(14deg) translateY(-6px); opacity: 0.98; }
}

@media (max-width: 980px){
  .senior-stack{ height: 460px; }
  .senior-card{ width: 290px; height: 430px; }
}

@media (max-width: 520px){
  .senior-stack{ height: 420px; }
  .senior-card{ width: 260px; height: 390px; }
  .senior-card.c1{ transform: translateX(-44px) rotate(-7deg); }
  .senior-card.c3{ transform: translateX(44px) rotate(7deg); }
}

/* Couples */
.couple-grid{ display:grid; grid-template-rows: 1fr auto; gap: 16px; }

.couple-top{
  position:relative;
  width:100%;
  height: 340px;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.10);
}

.couple-bottom{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.couple-small{
  position:relative;
  width:100%;
  height: 190px;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.10);
}

@media (max-width: 980px){
  .couple-top{ height: 320px; }
  .couple-small{ height: 180px; }
}

@media (max-width: 520px){
  .couple-top{ height: 280px; }
  .couple-bottom{ grid-template-columns: 1fr; }
  .couple-small{ height: 200px; }
}

/* Event */
.event-shot{
  position:relative;
  width:100%;
  height: 420px;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.10);
}

@media (max-width: 980px){ .event-shot{ height: 340px; } }
@media (max-width: 520px){ .event-shot{ height: 280px; } }

/* Media day */
.media-day-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:16px;
  align-items:stretch;
  height: 420px;
}

.media-day-left,
.media-day-right .media-day-tile{
  position:relative;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.10);
}

.media-day-left{ height:100%; }

.media-day-right{
  display:grid;
  grid-template-rows: 1fr 1fr;
  gap:16px;
  height:100%;
}

.media-day-right .media-day-tile{ height:100%; }

@media (max-width: 980px){
  .media-day-grid{ grid-template-columns: 1fr; height:auto; }
  .media-day-left{ height:340px; }
  .media-day-right{ grid-template-columns: 1fr 1fr; grid-template-rows:none; height:auto; }
  .media-day-right .media-day-tile{ height:220px; }
}

@media (max-width: 520px){
  .media-day-left{ height:280px; }
  .media-day-right{ grid-template-columns: 1fr; }
}

/* =========================================================
   BEHIND THE LENS
   ========================================================= */
.service-section.behind-lens{
  position: relative;
  border-top: 0;
  padding: 96px 0 92px;
}

.behind-lens::before{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.00),
    rgba(255,255,255,0.14),
    rgba(255,255,255,0.00)
  );
}

.behind-lens .panel-grid{
  position: relative;
  z-index: 1;
  align-items:start;
}

.behind-kicker{
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  display:inline-flex;
  align-items:center;
  gap: 12px;
}

.behind-kicker::before{
  content:"";
  width: 24px;
  height: 1px;
  background: rgba(255,255,255,0.46);
  border-radius: 999px;
  display:inline-block;
}

.behind-copywrap{
  position:relative;
  padding-left: 18px;
}

.behind-copywrap::before{
  content:"";
  position:absolute;
  left:0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(255,255,255,0.14);
}

.about-photos{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-photo{
  position:relative;
  height: 340px;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}

.about-photo.is-tall{
  grid-column: 1 / -1;
  height: 320px;
}

@media (max-width: 520px){
  .about-photo{ height: 240px; }
  .about-photo.is-tall{ height: 240px; }
  .about-photos{ grid-template-columns: 1fr; }
  .behind-copywrap{ padding-left: 14px; }
}

/* =========================================================
   HUGE BOOK NOW CTA
   ========================================================= */
section.book-final{
  padding: 26px 0 56px;
  background: transparent;
  overflow: hidden;
}

.book-final-wrap{
  width: min(1500px, 96vw);
  margin: 0 auto;
  min-height: 760px;
  padding: 86px 34px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.book-final-panel{
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 58px 54px 54px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.18);
  background:
    linear-gradient(135deg,
      rgba(255,255,255,0.14) 0%,
      rgba(255,255,255,0.05) 40%,
      rgba(255,255,255,0.11) 100%);
  box-shadow:
    0 34px 90px rgba(0,0,0,0.56),
    0 0 0 1px rgba(255,255,255,0.05) inset;
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 2;
}

.book-final-panel::before{
  content:"";
  position:absolute;
  inset:-1px;
  pointer-events:none;
  background:
    radial-gradient(circle at 14% 22%,
      rgba(255,255,255,0.20),
      rgba(255,255,255,0.00) 38%),
    radial-gradient(circle at 86% 78%,
      rgba(255,255,255,0.16),
      rgba(255,255,255,0.00) 36%);
  opacity: 0.95;
}

.book-final-content{
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
}

.book-final-kicker{
  margin: 0 0 16px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.74);
}

.book-final-title{
  margin: 0;
  font-size: clamp(54px, 8.2vw, 138px);
  line-height: 0.88;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.98);
  text-shadow: 0 20px 54px rgba(0,0,0,0.52);
}

.book-final-sub{
  max-width: 62ch;
  margin: 24px auto 0;
  color: rgba(255,255,255,0.76);
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: 0.03em;
}

.book-final-actions{
  margin-top: 34px;
  display:flex;
  justify-content:center;
}

.book-final-button{
  min-width: 300px;
  height: 72px;
  padding: 0 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.98);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: 0 26px 70px rgba(0,0,0,0.46);
}

.book-final-button:hover{
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.38);
}

/* floating collage images */
.book-final-shot{
  position: absolute;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  box-shadow:
    0 22px 48px rgba(0,0,0,0.40),
    0 0 0 1px rgba(255,255,255,0.08);
  z-index: 3;
}

.book-final-shot img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* top left */
.book-final-shot.s1{
  width: 300px;
  height: 190px;
  top: 10px;
  left: -22px;
  transform: rotate(-14deg);
}

/* top right */
.book-final-shot.s2{
  width: 140px;
  height: 190px;
  top: 98px;
  right: -30px;
  transform: rotate(0deg);
}

/* bottom left */
.book-final-shot.s3{
  width: 300px;
  height: 190px;
  bottom: 34px;
  left: -18px;
  transform: rotate(24deg);
}

/* bottom right */
.book-final-shot.s4{
  width: 220px;
  height: 160px;
  bottom: 58px;
  right: -12px;
  transform: rotate(-24deg);
}

/* optional extra accent image */
.book-final-shot.s5{
  width: 150px;
  height: 210px;
  top: 220px;
  right: 88px;
  transform: rotate(8deg);
  opacity: 0;
  pointer-events: none;
}

/* subtle frame vibe */
.book-final-shot::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

@media (min-width: 1500px){
  .book-final-shot.s5{
    opacity: 1;
  }
}

@media (max-width: 1200px){
  .book-final-wrap{
    min-height: 700px;
    padding: 70px 24px;
  }

  .book-final-panel{
    padding: 50px 38px 46px;
  }

  .book-final-shot.s1{
    width: 240px;
    height: 155px;
    left: -8px;
  }

  .book-final-shot.s2{
    width: 120px;
    height: 165px;
    right: -10px;
  }

  .book-final-shot.s3{
    width: 240px;
    height: 155px;
    left: -6px;
  }

  .book-final-shot.s4{
    width: 180px;
    height: 132px;
    right: 0;
  }

  .book-final-shot.s5{
    display: none;
  }
}

@media (max-width: 900px){
  .book-final-wrap{
    min-height: auto;
    padding: 34px 16px 24px;
  }

  .book-final-panel{
    padding: 40px 24px 36px;
    border-radius: 24px;
  }

  .book-final-title{
    font-size: clamp(44px, 12vw, 92px);
    line-height: 0.92;
  }

  .book-final-shot.s1{
    width: 165px;
    height: 110px;
    top: -8px;
    left: 4px;
  }

  .book-final-shot.s2{
    width: 95px;
    height: 125px;
    top: 36px;
    right: 2px;
  }

  .book-final-shot.s3{
    width: 165px;
    height: 110px;
    bottom: -8px;
    left: 8px;
  }

  .book-final-shot.s4{
    width: 130px;
    height: 96px;
    bottom: 8px;
    right: 4px;
  }
}

@media (max-width: 640px){
  .book-final-wrap{
    width: min(100%, 100vw);
    padding: 20px 12px 18px;
  }

  .book-final-panel{
    padding: 34px 18px 30px;
    border-radius: 22px;
  }

  .book-final-kicker{
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .book-final-title{
    font-size: clamp(36px, 14vw, 64px);
    line-height: 0.95;
  }

  .book-final-sub{
    font-size: 14px;
    line-height: 1.75;
    margin-top: 18px;
  }

  .book-final-actions{
    margin-top: 24px;
  }

  .book-final-button{
    width: 100%;
    min-width: 0;
    height: 62px;
    padding: 0 24px;
    font-size: 12px;
    letter-spacing: 0.16em;
  }

  .book-final-shot.s1{
    width: 110px;
    height: 74px;
    top: -2px;
    left: 4px;
    transform: rotate(-12deg);
  }

  .book-final-shot.s2{
    width: 68px;
    height: 90px;
    top: 18px;
    right: 2px;
  }

  .book-final-shot.s3{
    width: 110px;
    height: 74px;
    bottom: -2px;
    left: 4px;
    transform: rotate(18deg);
  }

  .book-final-shot.s4{
    width: 92px;
    height: 68px;
    right: 2px;
    bottom: 6px;
    transform: rotate(-18deg);
  }
}