/* =========================================================
   EMMA LYNNE PHOTOGRAPHY — Design tokens
   ========================================================= */
:root{
  --cream:        #FFFFFF;
  --cream-deep:   #FFF5F8;
  --white:        #FFFFFF;
  --blush:        #FFC0CB;
  --blush-soft:   #FFE4E1;
  --rose-deep:    #FF69B4;
  --taupe:        #8F8F8F;
  --taupe-dark:   #333333;
  --grey:         #8F8F8F;
  --line:         #EEEEEE;

  --font-display: 'Playfair Display', serif;
  --font-script:  'Alex Brush', cursive;
  --font-body:    'Jost', sans-serif;

  --container: 1240px;
  --ease: cubic-bezier(.22,1,.36,1);
}

*{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family:var(--font-body);
  font-weight:300;
  color:var(--taupe-dark);
  background:var(--cream);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.001ms !important; transition-duration:0.001ms !important; }
}

h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--taupe-dark);
  font-weight:500;
  letter-spacing:.01em;
  margin:0;
}

a{ text-decoration:none; color:inherit; }
img{ max-width:100%; display:block; }
ul{ margin:0; padding:0; list-style:none; }

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 32px;
}

.eyebrow{
  font-family:var(--font-script);
  font-size:2rem;
  color:var(--rose-deep);
  line-height:1;
  display:block;
  margin-bottom:6px;
}

.section-label{
  font-family:var(--font-body);
  font-weight:500;
  letter-spacing:.28em;
  text-transform:uppercase;
  font-size:.72rem;
  color:var(--grey);
}

/* ---------- Botanical divider (signature element) ---------- */
.divider{
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto;
  width:180px;
}
.divider svg{ width:100%; height:auto; overflow:visible; }
.divider path,.divider circle{
  stroke:var(--blush);
  fill:none;
}
.divider .petal{ fill:var(--blush); stroke:none; }

/* ---------- Buttons ---------- */
.btn-frame{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 34px;
  border:1px solid var(--taupe-dark);
  border-radius:999px;
  font-family:var(--font-body);
  font-size:.78rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--taupe-dark);
  background:transparent;
  position:relative;
  overflow:hidden;
  transition:color .5s var(--ease);
  z-index:1;
}
.btn-frame::before{
  content:"";
  position:absolute;
  inset:0;
  background:var(--taupe-dark);
  transform:translateX(-101%);
  transition:transform .5s var(--ease);
  z-index:-1;
}
.btn-frame:hover{ color:var(--cream); }
.btn-frame:hover::before{ transform:translateX(0); }

.btn-solid{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 36px;
  border-radius:999px;
  background:var(--rose-deep);
  color:var(--white);
  font-size:.78rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  border:1px solid var(--rose-deep);
  transition:background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.btn-solid:hover{ background:transparent; color:var(--rose-deep); }

/* =========================================================
   NAVBAR
   ========================================================= */
.site-nav{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  padding:20px 0;
  background:rgba(251,246,242,.96);
  backdrop-filter:blur(10px);
  border-bottom: 1px solid rgba(107,88,80,.1);
  transition:padding .3s var(--ease), box-shadow .3s var(--ease);
}
.site-nav.scrolled{
  padding:12px 0;
  box-shadow:0 8px 30px rgba(107,88,80,.08);
}
.site-nav .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.brand-mark{
  width:80px; height:80px;
  border-radius:50%;
  overflow:hidden;
  border:1px solid var(--blush);
  background:var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:width .5s var(--ease), height .5s var(--ease), transform .6s var(--ease);
  flex-shrink:0;
}
.site-nav.scrolled .brand-mark{ width:64px; height:64px; }
.brand-mark img{
  width:100%; height:100%;
  object-fit:cover;
  transform:scale(1.5);
}
.brand-text{ line-height:1.1; }
.brand-text .name{
  font-family:var(--font-script);
  font-size:1.7rem;
  color:var(--taupe-dark);
  display:block;
}
.brand-text .tag{
  font-family:var(--font-body);
  font-size:.6rem;
  letter-spacing:.35em;
  text-transform:uppercase;
  color:var(--grey);
  display:block;
  margin-top:-2px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:42px;
}
.nav-links a{
  position:relative;
  font-size:.82rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--taupe-dark);
  padding-bottom:4px;
}
.nav-links a::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:0; height:1px;
  background:var(--rose-deep);
  transition:width .4s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after{ width:100%; }
.nav-links a.active{ color:var(--rose-deep); }

.nav-toggle{
  display:none;
  width:26px; height:20px;
  position:relative;
  border:none;
  background:none;
  cursor:pointer;
  z-index:1100;
}
.nav-toggle span{
  position:absolute; left:0; right:0; height:1px;
  background:var(--taupe-dark);
  transition:transform .4s var(--ease), opacity .3s var(--ease), top .4s var(--ease);
}
.nav-toggle span:nth-child(1){ top:0; }
.nav-toggle span:nth-child(2){ top:9px; }
.nav-toggle span:nth-child(3){ top:18px; }
.nav-toggle.open span:nth-child(1){ top:9px; transform:rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ top:9px; transform:rotate(-45deg); }

@media (max-width: 900px){
  .nav-toggle{ display:block; }
  .nav-links{
    position:fixed;
    top:0; right:0;
    height:100vh;
    width:min(78vw,340px);
    background:var(--cream);
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    padding:0 48px;
    gap:30px;
    transform:translateX(100%);
    transition:transform .55s var(--ease);
    box-shadow:-20px 0 60px rgba(0,0,0,.08);
  }
  .nav-links.open{ transform:translateX(0); }
}

/* =========================================================
   HERO SLIDER
   ========================================================= */
.hero{
  position:relative;
  height:100vh;
  min-height:640px;
  overflow:hidden;
  background:var(--taupe-dark);
}
.hero-slide{
  position:absolute; inset:0;
  opacity:0;
  transition:opacity 1.6s var(--ease);
}
.hero-slide.active{ opacity:1; z-index:2; }
.hero-slide img{
  width:100%; height:100%;
  object-fit:cover;
  transform:scale(1.08);
  transition:transform 7s linear;
  filter:saturate(.94) brightness(.86);
}
.hero-slide.active img{ transform:scale(1);}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(74,61,56,.35) 0%, rgba(74,61,56,.15) 40%, rgba(74,61,56,.55) 100%);
  z-index:3;
}
.hero-content{
  position:relative;
  z-index:4;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:var(--cream);
  padding:0 24px;
}
.hero-content .eyebrow{ color:var(--blush-soft); }
.hero-content h1{
  color:var(--white);
  font-size:clamp(2.6rem, 6vw, 5.2rem);
  line-height:1.05;
  max-width:16ch;
}
.hero-content p{
  margin-top:22px;
  max-width:38ch;
  font-size:1.02rem;
  color:var(--cream-deep);
  line-height:1.7;
}
.hero-content .btn-solid{ margin-top:34px; }

.hero-dots{
  position:absolute;
  bottom:38px; left:50%;
  transform:translateX(-50%);
  z-index:5;
  display:flex;
  gap:12px;
}
.hero-dots button{
  width:8px; height:8px;
  border-radius:50%;
  border:1px solid var(--cream);
  background:transparent;
  cursor:pointer;
  padding:0;
  transition:background .4s var(--ease), width .4s var(--ease);
}
.hero-dots button.active{
  background:var(--cream);
  width:26px;
  border-radius:6px;
}

.scroll-cue{
  position:absolute;
  bottom:36px; right:44px;
  z-index:5;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  color:var(--cream);
}
.scroll-cue span{
  font-size:.62rem;
  letter-spacing:.3em;
  text-transform:uppercase;
  writing-mode:vertical-rl;
}
.scroll-cue .line{
  width:1px; height:50px;
  background:linear-gradient(var(--cream), transparent);
  animation:scrollcue 2.2s infinite var(--ease);
}
@keyframes scrollcue{
  0%{ transform:scaleY(0); transform-origin:top; }
  50%{ transform:scaleY(1); transform-origin:top; }
  50.01%{ transform-origin:bottom; }
  100%{ transform:scaleY(0); transform-origin:bottom; }
}
@media (max-width:700px){ .scroll-cue{ display:none; } }

/* =========================================================
   REVEAL ANIMATION (IntersectionObserver hook)
   ========================================================= */
.reveal{
  opacity:0;
  transform:translateY(36px);
  transition:opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-delay-1{ transition-delay:.12s; }
.reveal-delay-2{ transition-delay:.24s; }
.reveal-delay-3{ transition-delay:.36s; }

/* =========================================================
   SECTIONS — GENERIC
   ========================================================= */
section{ position:relative; }
.section-pad{ padding:130px 0; }
@media (max-width:768px){ .section-pad{ padding:88px 0; } }

.section-head{
  text-align:center;
  max-width:640px;
  margin:0 auto 64px;
}
.section-head h2{
  font-size:clamp(2rem,4vw,3rem);
  margin-top:10px;
}
.section-head p{
  margin-top:18px;
  color:var(--grey);
  line-height:1.8;
  font-size:1rem;
}

/* =========================================================
   ABOUT (home teaser + about page)
   ========================================================= */
.about-split{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:center;
}
@media (max-width:900px){ .about-split{ grid-template-columns:1fr; gap:44px; } }

.about-frame{ position:relative; }
.about-frame .frame-photo{
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 30px 60px -20px rgba(74,61,56,.28);
}
.about-frame .frame-photo img{
  aspect-ratio:4/5;
  object-fit:cover;
  transition:transform 1.2s var(--ease);
}
.about-frame:hover .frame-photo img{ transform:scale(1.05); }
.about-frame .frame-accent{
  position:absolute;
  top:-24px; left:-24px;
  right:24px; bottom:24px;
  border:1px solid var(--blush);
  border-radius:6px;
  z-index:-1;
}
.about-copy .eyebrow{ margin-bottom:14px; }
.about-copy h2{ font-size:clamp(1.9rem,3.4vw,2.7rem); margin-bottom:22px; }
.about-copy p{ color:var(--grey); line-height:1.85; margin-bottom:16px; font-size:1rem; }
.about-copy .signature{
  font-family:var(--font-script);
  font-size:2.1rem;
  color:var(--rose-deep);
  margin-top:18px;
}

.about-stats{
  display:flex;
  gap:48px;
  margin-top:36px;
  flex-wrap:wrap;
}
.about-stats div strong{
  display:block;
  font-family:var(--font-display);
  font-size:1.9rem;
  color:var(--rose-deep);
}
.about-stats div span{
  font-size:.72rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--grey);
}

/* about page trio */
.about-trio{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}
.about-trio figure{
  margin:0;
  border-radius:6px;
  overflow:hidden;
  position:relative;
}
.about-trio figure img{
  width:100%; height:100%;
  aspect-ratio:2/3;
  object-fit:cover;
  transition:transform 1.1s var(--ease);
}
.about-trio figure:hover img{ transform:scale(1.06); }
.about-trio figure:nth-child(2){ margin-top:36px; }
@media (max-width:760px){
  .about-trio{ grid-template-columns:1fr 1fr; }
  .about-trio figure:nth-child(3){ grid-column:1 / -1; }
  .about-trio figure:nth-child(2){ margin-top:0; }
}

.value-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  margin-top:70px;
}
@media (max-width:760px){ .value-row{ grid-template-columns:1fr; gap:34px; } }
.value-item{ text-align:center; }
.value-item .num{
  font-family:var(--font-script);
  font-size:2.4rem;
  color:var(--blush);
  display:block;
  margin-bottom:6px;
}
.value-item h4{ font-size:1.2rem; margin-bottom:10px; }
.value-item p{ color:var(--grey); font-size:.94rem; line-height:1.75; }

/* =========================================================
   SERVICES
   ========================================================= */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}
@media (max-width:960px){ .services-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){ .services-grid{ grid-template-columns:1fr; } }

.service-card{
  background:var(--white);
  border-radius:10px;
  padding:44px 34px;
  border:1px solid var(--line);
  transition:transform .55s var(--ease), box-shadow .55s var(--ease), border-color .55s var(--ease);
  position:relative;
  overflow:hidden;
}
.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 26px 50px -18px rgba(107,88,80,.25);
  border-color:var(--blush);
}
.service-card .ic{
  width:56px; height:56px;
  border-radius:50%;
  background:var(--cream-deep);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:26px;
  transition:background .5s var(--ease);
}
.service-card .ic svg{ width:26px; height:26px; stroke:var(--rose-deep); }
.service-card:hover .ic{ background:var(--blush); }
.service-card:hover .ic svg{ stroke:var(--white); }
.service-card h3{ font-size:1.32rem; margin-bottom:12px; }
.service-card p{ color:var(--grey); font-size:.94rem; line-height:1.75; margin-bottom:16px; }
.service-card .price{
  font-family:var(--font-body);
  font-size:.72rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--rose-deep);
}

/* full services page — alternating rows */
.service-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
  padding:70px 0;
  border-bottom:1px solid var(--line);
}
.service-row:last-child{ border-bottom:none; }
.service-row:nth-child(even) .service-row-media{ order:2; }
.service-row-media{
  border-radius:8px;
  overflow:hidden;
  aspect-ratio:5/4;
}
.service-row-media img{
  width:100%; height:100%; object-fit:cover;
  transition:transform 1.1s var(--ease);
}
.service-row-media:hover img{ transform:scale(1.06); }
.service-row-copy .section-label{ margin-bottom:14px; display:block; }
.service-row-copy h3{ font-size:clamp(1.6rem,2.6vw,2.1rem); margin-bottom:18px; }
.service-row-copy p{ color:var(--grey); line-height:1.85; margin-bottom:22px; }
.service-row-copy ul li{
  position:relative;
  padding-left:26px;
  margin-bottom:10px;
  color:var(--taupe);
  font-size:.95rem;
}
.service-row-copy ul li::before{
  content:"";
  position:absolute; left:0; top:9px;
  width:12px; height:1px;
  background:var(--rose-deep);
}
@media (max-width:860px){
  .service-row{ grid-template-columns:1fr; gap:34px; padding:50px 0; }
  .service-row:nth-child(even) .service-row-media{ order:0; }
}

/* =========================================================
   PORTFOLIO
   ========================================================= */
.portfolio-slider{
  display:flex;
  gap:26px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding:10px 4px 26px;
  scrollbar-width:none;
}
.portfolio-slider::-webkit-scrollbar{ display:none; }
.portfolio-slide{
  flex:0 0 auto;
  width:min(340px,78vw);
  scroll-snap-align:start;
}
.polaroid{
  background:var(--white);
  padding:14px 14px 46px;
  border-radius:4px;
  box-shadow:0 24px 50px -20px rgba(74,61,56,.25);
  transition:transform .6s var(--ease), box-shadow .6s var(--ease);
  transform:rotate(var(--tilt,0deg));
}
.polaroid:hover{ transform:rotate(0deg) translateY(-8px) scale(1.02); box-shadow:0 32px 60px -18px rgba(74,61,56,.32); }
.polaroid .ph{
  border-radius:2px;
  overflow:hidden;
  aspect-ratio:3/4;
}
.polaroid .ph img{ width:100%; height:100%; object-fit:cover; }
.polaroid figcaption{
  font-family:var(--font-script);
  font-size:1.3rem;
  color:var(--rose-deep);
  text-align:center;
  margin-top:14px;
}

.slider-nav{
  display:flex;
  justify-content:center;
  gap:18px;
  margin-top:10px;
}
.slider-nav button{
  width:44px; height:44px;
  border-radius:50%;
  border:1px solid var(--taupe-dark);
  background:transparent;
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:background .4s var(--ease), border-color .4s var(--ease);
}
.slider-nav button svg{ width:16px; height:16px; stroke:var(--taupe-dark); transition:stroke .4s var(--ease); }
.slider-nav button:hover{ background:var(--taupe-dark); }
.slider-nav button:hover svg{ stroke:var(--cream); }

/* full portfolio grid — masonry-ish via row-span */
.masonry{
  columns:3 280px;
  column-gap:26px;
}
@media (max-width:760px){ .masonry{ columns:2 200px; } }
.masonry figure{
  margin:0 0 26px;
  break-inside:avoid;
  border-radius:6px;
  overflow:hidden;
  position:relative;
  cursor:pointer;
}
.masonry figure img{
  width:100%; display:block;
  transition:transform 1s var(--ease);
}
.masonry figure:hover img{ transform:scale(1.07); }
.masonry figure::after{
  content:attr(data-cat);
  position:absolute; left:18px; bottom:18px;
  color:var(--white);
  font-size:.68rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  opacity:0;
  transform:translateY(10px);
  transition:opacity .5s var(--ease), transform .5s var(--ease);
}
.masonry figure::before{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, transparent 40%, rgba(74,61,56,.7) 100%);
  opacity:0;
  transition:opacity .5s var(--ease);
}
.masonry figure:hover::before,
.masonry figure:hover::after{ opacity:1; transform:translateY(0); }

.filter-bar{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:56px;
}
.filter-bar button{
  padding:10px 26px;
  border-radius:999px;
  border:1px solid var(--line);
  background:var(--white);
  font-size:.74rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--grey);
  cursor:pointer;
  transition:all .4s var(--ease);
}
.filter-bar button.active,
.filter-bar button:hover{
  background:var(--taupe-dark);
  border-color:var(--taupe-dark);
  color:var(--cream);
}

/* =========================================================
   TESTIMONIAL / CTA BAND
   ========================================================= */
.cta-band{
  background:var(--taupe-dark);
  color:var(--cream);
  text-align:center;
  padding:110px 0;
  position:relative;
  overflow:hidden;
}
.cta-band::before{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(circle at 20% 20%, rgba(217,174,176,.14), transparent 60%),
             radial-gradient(circle at 80% 80%, rgba(217,174,176,.1), transparent 55%);
}
.cta-band .eyebrow{ color:var(--blush); }
.cta-band h2{ color:var(--white); font-size:clamp(2rem,4vw,3rem); max-width:16ch; margin:14px auto 26px; }
.cta-band p{ color:var(--cream-deep); max-width:44ch; margin:0 auto 34px; line-height:1.8; }
.cta-band .btn-frame{ border-color:var(--cream); color:var(--cream); }
.cta-band .btn-frame::before{ background:var(--cream); }
.cta-band .btn-frame:hover{ color:var(--taupe-dark); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background:var(--cream-deep);
  padding:80px 0 30px;
}
.footer-top{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:50px;
  padding-bottom:50px;
  border-bottom:1px solid var(--line);
}
@media (max-width:760px){ .footer-top{ grid-template-columns:1fr; gap:36px; } }
.footer-top .brand{ margin-bottom:18px; }
.footer-top p{ color:var(--grey); line-height:1.8; font-size:.94rem; max-width:38ch; }
.footer-col h5{
  font-size:.72rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--grey);
  margin-bottom:18px;
}
.footer-col a, .footer-col li{
  display:block;
  margin-bottom:12px;
  color:var(--taupe);
  font-size:.94rem;
}
.footer-col a:hover{ color:var(--rose-deep); }
.footer-bottom{
  padding-top:26px;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  font-size:.78rem;
  color:var(--grey);
}
.social-row{ display:flex; gap:16px; }
.social-row a{
  width:38px; height:38px;
  border-radius:50%;
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  transition:all .4s var(--ease);
}
.social-row a svg{ width:15px; height:15px; stroke:var(--taupe); transition:stroke .4s var(--ease); }
.social-row a:hover{ background:var(--rose-deep); border-color:var(--rose-deep); }
.social-row a:hover svg{ stroke:var(--white); }


.page-hero h1{ font-size:clamp(2.4rem,5vw,3.6rem); margin-top:10px; }
.page-hero p{ color:var(--grey); max-width:46ch; margin:18px auto 0; line-height:1.8; }

/* Utility */
.text-center{ text-align:center; }
.mt-lg{ margin-top:70px; }

/* =========================================================
   NEW SPLIT HERO & ANIMATIONS
   ========================================================= */
.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  background: var(--cream);
  padding: 120px 5% 40px;
}
@media (max-width: 960px) {
  .hero-split {
    flex-direction: column;
    text-align: center;
    padding-top: 140px;
  }
}
.hero-split-text {
  flex: 1;
  padding: 0 20px;
  animation: slideInLeft 1.2s var(--ease);
}
.hero-split-text h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: var(--taupe-dark);
  margin-bottom: 20px;
}
.hero-split-text p {
  font-size: 1.1rem;
  color: var(--grey);
  max-width: 40ch;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media (max-width: 960px) {
  .hero-split-text p { margin: 0 auto 30px; }
}
.hero-split-images {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  width: 100%;
  animation: slideInRight 1.5s var(--ease);
}
.hero-image-stack {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 100%;
  min-height: 450px;
}
.hero-img {
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: transform 0.5s var(--ease);
}
.hero-img:hover {
  transform: scale(1.05);
  z-index: 10;
}
.hero-img-1 {
  width: 60%;
  top: 5%;
  left: 0;
  z-index: 2;
  animation: float1 6s infinite ease-in-out;
}
.hero-img-2 {
  width: 50%;
  top: 35%;
  right: 0;
  z-index: 3;
  animation: float2 7s infinite ease-in-out reverse;
}
.hero-img-3 {
  width: 45%;
  bottom: 0;
  left: 15%;
  z-index: 1;
  animation: float1 8s infinite ease-in-out 1s;
}

/* =========================================================
   ABOUT CIRCLE IMAGES
   ========================================================= */
.about-circles {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.about-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 15px 35px -10px rgba(0,0,0,0.1);
  animation: float1 6s infinite ease-in-out;
}
.about-circle:nth-child(2) {
  width: 200px;
  height: 200px;
  animation-delay: 1s;
  animation: float2 7s infinite ease-in-out reverse;
}
.about-circle:nth-child(3) {
  animation-delay: 2s;
}
.about-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(15px); }
}

/* =========================================================
   WORLD-CLASS FORM
   ========================================================= */
.booking-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.1);
  border: 1px solid var(--line);
}
@media (max-width: 768px) {
  .booking-form-wrap { padding: 30px; }
}
.booking-form-wrap .form-floating label {
  color: var(--grey);
  padding-left: 20px;
}
.booking-form-wrap .form-control, .booking-form-wrap .form-select {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  transition: all 0.3s ease;
}
.booking-form-wrap .form-control:focus, .booking-form-wrap .form-select:focus {
  background: var(--white);
  border-color: var(--rose-deep);
  box-shadow: 0 0 0 4px var(--blush-soft);
}

/* =========================================================
   LUXURY SERVICE CARDS
   ========================================================= */
.services-lux-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}
.service-card-lux {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.08);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card-lux:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 60px -20px rgba(0,0,0,0.15);
}
.service-card-lux .img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.service-card-lux .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.service-card-lux:hover .img-wrap img {
  transform: scale(1.08);
}
.service-card-lux .content {
  padding: 40px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-lux .content h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}
.service-card-lux .content p {
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
}
.service-card-lux .content ul {
  margin-bottom: 30px;
  flex: 1;
}
.service-card-lux .content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: var(--taupe);
  font-size: 0.95rem;
}
.service-card-lux .content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--rose-deep);
  font-size: 1.2rem;
  line-height: 1;
}
.service-card-lux .price-btn-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.service-card-lux .price {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--taupe-dark);
}
.service-card-lux .book-btn {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--rose-deep);
  font-weight: 500;
  transition: color 0.3s ease;
}
.service-card-lux .book-btn:hover {
  color: var(--taupe-dark);
}

/* =========================================================
   ABOUT OVERLAPPING STACK
   ========================================================= */
.about-stack {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 500px;
  margin: 0 auto;
}
.about-stack-img {
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: transform 0.5s var(--ease);
}
.about-stack-img:hover {
  transform: scale(1.05);
  z-index: 5;
}
.about-stack-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-1 {
  width: 70%;
  height: 70%;
  top: 0;
  left: 0;
  z-index: 1;
}
.about-img-2 {
  width: 65%;
  height: 65%;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 10px solid var(--cream);
}
@media (max-width: 768px) {
  .about-stack {
    height: 400px;
  }
}

/* =========================================================
   EDITORIAL SERVICES
   ========================================================= */
.services-editorial {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.editorial-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.editorial-item:nth-child(even) {
  direction: rtl;
}
.editorial-item:nth-child(even) > * {
  direction: ltr;
}
.editorial-img {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  border-radius: 4px;
}
.editorial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.editorial-item:hover .editorial-img img {
  transform: scale(1.05);
}
.editorial-content {
  padding: 40px;
}
.editorial-content h3 {
  font-size: 2.8rem;
  margin-bottom: 24px;
}
.editorial-content p {
  font-size: 1.1rem;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 44ch;
}
.editorial-content ul {
  margin-bottom: 40px;
}
.editorial-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--taupe);
}
.editorial-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 1px;
  background: var(--rose-deep);
}
@media (max-width: 900px) {
  .services-editorial { gap: 80px; }
  .editorial-item, .editorial-item:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }
  .editorial-img { height: 50vh; min-height: 400px; }
  .editorial-content { padding: 0 20px; }
  .editorial-content h3 { font-size: 2.2rem; }
}

/* =========================================================
   LIGHTBOX MODAL
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(251,246,242,0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  padding: 40px;
}
.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  font-size: 3.5rem;
  color: var(--taupe-dark);
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}
.lightbox-close:hover {
  color: var(--rose-deep);
}
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.2);
  transform: scale(0.95);
  transition: transform 0.4s var(--ease);
}
.lightbox.active .lightbox-img {
  transform: scale(1);
}



/* =========================================================
   INNER PAGE BANNER (about/services/portfolio)
   ========================================================= */
.page-banner{
  position:relative;
  padding:200px 0 90px;
  background:linear-gradient(160deg, var(--taupe-dark) 0%, #1a1513 100%);
  color:var(--cream);
  overflow:hidden;
  text-align: center;
}
.page-banner .container{
  position: relative;
  z-index: 10;
}
.page-banner::before{
  content:"";
  position:absolute;
  width:600px;height:600px;
  right:-100px;top:-150px;
  border-radius:50%;
  border:1px solid rgba(251,248,242,.08);
  background: radial-gradient(circle at center, rgba(255,192,203,0.05) 0%, transparent 70%);
  animation: slow-spin 25s linear infinite;
  border-right-color: rgba(255,192,203,0.4);
}
.page-banner::after{
  content:"";
  position:absolute;
  width:400px;height:400px;
  right:0px;top:-50px;
  border-radius:50%;
  border:1px solid rgba(255,192,203,.15);
  background: radial-gradient(circle at center, rgba(255,192,203,0.08) 0%, transparent 60%);
  animation: slow-spin-reverse 20s linear infinite;
  border-left-color: rgba(251,248,242,.3);
}
@keyframes slow-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes slow-spin-reverse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}
.page-banner h1{color:var(--white);font-size:clamp(2.4rem,5vw,3.6rem); margin-top:10px;}
.page-banner .eyebrow{color:var(--blush);}
.page-banner p{color:var(--cream-deep);max-width:46ch; margin:18px auto 0; line-height:1.8;}
