/* ============================================================
   BLISSFUL MOMENTS — Page & Section Styles
   ============================================================ */

/* ================= HERO (centered, high-contrast) ================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  will-change: transform;
}
/* Strong readable overlay: darker navy vignette so ivory text pops */
.hero__media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(90% 90% at 50% 45%, rgba(15,29,58,0.30) 0%, rgba(15,29,58,0.62) 100%),
    linear-gradient(180deg, rgba(15,29,58,0.55) 0%, rgba(15,29,58,0.35) 45%, rgba(15,29,58,0.75) 100%);
}
.hero__canvas { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  padding: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__eyebrow {
  color: var(--gold-soft);
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.hero__eyebrow span { display: inline-block; }
.hero__title {
  color: #FFFFFF;
  font-size: clamp(2.9rem, 1.8rem + 5.4vw, 6.4rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.015em;
  max-width: 16ch;
  text-shadow: 0 2px 40px rgba(15,29,58,0.55), 0 1px 3px rgba(15,29,58,0.4);
}
.hero__title .ln { display: block; overflow: hidden; }
.hero__title .ln > span { display: block; }
.hero__title em { font-style: italic; color: var(--gold-soft); }
.hero__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.8rem, 4vw, 2.6rem);
  margin-top: clamp(1.8rem, 4vw, 2.6rem);
}
.hero__desc {
  color: rgba(255,255,255,0.92);
  max-width: 52ch;
  font-size: var(--step-0);
  text-shadow: 0 1px 20px rgba(15,29,58,0.6);
}
.hero__cta { display: flex; justify-content: center; }
.hero__scroll {
  position: absolute;
  bottom: clamp(1.5rem, 4vw, 2.5rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: rgba(247,243,236,0.7);
  font-size: var(--step--1);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 54px;
  background: linear-gradient(var(--gold-soft), transparent);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content:''; position:absolute; top:0; left:0; width:100%; height:40%;
  background: var(--gold);
  animation: scrollPulse 2.2s var(--ease-lux) infinite;
}
@keyframes scrollPulse { 0%{transform:translateY(-100%)} 60%,100%{transform:translateY(260%)} }

/* rotating badge in hero corner */
.hero__badge {
  position: absolute;
  top: clamp(6rem, 14vw, 9rem);
  right: var(--gutter);
  z-index: 2;
  width: clamp(90px, 12vw, 128px);
  aspect-ratio: 1;
}
.hero__badge svg { width: 100%; height: 100%; animation: spin 22s linear infinite; }
.hero__badge text { fill: rgba(247,243,236,0.7); font-family: var(--font-sans); font-size: 8.6px; letter-spacing: 3px; text-transform: uppercase; }
.hero__badge .badge-mark { animation: none; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 760px){ .hero__badge { display: none; } }

/* ================= MARQUEE ================= */
.marquee {
  background: var(--ink);
  color: var(--ivory);
  padding-block: clamp(1.2rem, 2.5vw, 1.9rem);
  overflow: hidden;
  border-block: 1px solid rgba(201,169,106,0.2);
}
.marquee__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}
.marquee__track span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  display: inline-flex; align-items: center; gap: 3rem;
}
.marquee__track span::after { content: '✦'; color: var(--gold); font-style: normal; font-size: 0.7em; }

/* ================= INTRO / STORY ================= */
.intro { background: var(--ivory); }
.intro__eyebrow { text-align: center; margin-bottom: 1.6rem; }
.intro__lead {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--step-3);
  line-height: 1.18;
  text-align: center;
  max-width: 20ch;
  margin-inline: auto;
  letter-spacing: -0.015em;
}
.intro__lead em { font-style: italic; color: var(--gold-deep); }
/* word-by-word reveal target */
.reveal-words .word { display: inline-block; opacity: 0.12; transition: opacity 0.1s; }

/* ================= FEATURE (image + text) ================= */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}
.feature--rev .feature__media { order: 2; }
.feature__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
}
.feature__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); will-change: transform; }
.feature__tag {
  position: absolute; top: 1.2rem; left: 1.2rem;
  background: rgba(247,243,236,0.9);
  color: var(--ink);
  padding: 0.5em 1.2em;
  font-size: var(--step--1);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 100px;
}
.feature__title { font-size: var(--step-3); margin-bottom: 1.4rem; }
.feature__title em { font-style: italic; color: var(--gold-deep); }
.feature .eyebrow { margin-bottom: 1.2rem; display: block; }
@media (max-width: 820px){
  .feature { grid-template-columns: 1fr; }
  .feature--rev .feature__media { order: 0; }
}

/* ================= SERVICES ================= */
.services { background: var(--cream); }
.services__head { text-align: center; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.services__head h2 { font-size: var(--step-4); }
.services__head h2 em { font-style: italic; color: var(--gold-deep); }
.svc-list { border-top: 1px solid var(--line); }
.svc-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-block: clamp(1.6rem, 3.5vw, 2.6rem);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  overflow: hidden;
}
.svc-item__num {
  font-family: var(--font-sans);
  font-size: var(--step--1);
  letter-spacing: 0.2em;
  color: var(--gold-deep);
}
.svc-item__name {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 300;
  transition: transform 0.6s var(--ease-lux), color 0.4s;
}
.svc-item__name em { font-style: italic; }
.svc-item__arrow { transition: transform 0.6s var(--ease-lux); color: var(--gold-deep); }
.svc-item__bg {
  position: absolute; inset: 0; z-index: -1;
  opacity: 0;
  transition: opacity 0.6s var(--ease-lux);
}
.svc-item__bg img { width:100%; height:100%; object-fit: cover; filter: brightness(0.55) sepia(0.15); }
.svc-item:hover .svc-item__name { transform: translateX(1.2rem); color: var(--cream); }
.svc-item:hover .svc-item__num,
.svc-item:hover .svc-item__desc { color: rgba(247,243,236,0.8); }
.svc-item:hover .svc-item__arrow { transform: translateX(0.6rem); color: var(--gold-soft); }
.svc-item:hover .svc-item__bg { opacity: 1; }
.svc-item__desc {
  grid-column: 2;
  font-size: var(--step--1);
  color: var(--fg-soft);
  max-width: 40ch;
  margin-top: 0.4rem;
}
@media (max-width: 640px){
  .svc-item { grid-template-columns: auto 1fr; }
  .svc-item__arrow { display: none; }
  .svc-item__desc { display: none; }
}

/* ================= GALLERY / PORTFOLIO ================= */
.gallery { background: var(--ivory); }
.gallery__head { display:flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; margin-bottom: clamp(2rem,5vw,3.5rem); }
.gallery__head h2 { font-size: var(--step-4); }
.gallery__head h2 em { font-style: italic; color: var(--gold-deep); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.8rem, 1.6vw, 1.4rem);
}
.gcard { position: relative; overflow: hidden; border-radius: var(--radius); }
.gcard img { width:100%; height:100%; object-fit: cover; transition: transform 1.1s var(--ease-lux); }
.gcard:hover img { transform: scale(1.06); }
.gcard__cap {
  position: absolute; left: 1.1rem; bottom: 1.1rem;
  color: var(--cream);
  z-index: 2;
  transform: translateY(8px);
  opacity: 0;
  transition: 0.5s var(--ease-lux);
}
.gcard::after { content:''; position:absolute; inset:0; background: linear-gradient(transparent 45%, rgba(42,37,33,0.6)); opacity: 0; transition: opacity 0.5s; }
.gcard:hover::after { opacity: 1; }
.gcard:hover .gcard__cap { transform: translateY(0); opacity: 1; }
.gcard__cap h4 { font-family: var(--font-display); font-style: italic; font-size: var(--step-1); font-weight: 300; }
.gcard__cap span { font-size: var(--step--1); letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-soft); }
/* editorial spans */
.g-tall  { grid-column: span 5; aspect-ratio: 3/4.4; }
.g-wide  { grid-column: span 7; aspect-ratio: 7/5.2; }
.g-half  { grid-column: span 6; aspect-ratio: 6/5; }
.g-third { grid-column: span 4; aspect-ratio: 4/5; }
.g-full  { grid-column: span 12; aspect-ratio: 12/5; }
@media (max-width: 820px){
  .g-tall,.g-wide,.g-half,.g-third { grid-column: span 6; aspect-ratio: 4/5; }
  .g-full { grid-column: span 12; aspect-ratio: 4/3; }
}
@media (max-width: 520px){
  .gallery__grid > * { grid-column: span 12 !important; aspect-ratio: 4/5; }
}

/* ================= STATS ================= */
.stats { background: var(--mauve-deep); color: var(--ivory); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 4vw, 3rem); text-align: center; }
.stat__num { font-family: var(--font-display); font-weight: 300; font-size: var(--step-4); line-height: 1; color: var(--gold-soft); }
.stat__label { font-size: var(--step--1); letter-spacing: 0.24em; text-transform: uppercase; margin-top: 0.8rem; color: rgba(247,243,236,0.75); }
@media (max-width: 640px){ .stats__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1rem;} }

/* ================= TESTIMONIAL ================= */
.quote { background: var(--ivory); text-align: center; }
.quote__mark { font-family: var(--font-display); font-size: clamp(4rem,12vw,9rem); color: var(--gold-soft); line-height: 0.5; height: 0.4em; }
.quote__text {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: var(--step-3);
  line-height: 1.3;
  max-width: 24ch;
  margin: 1.5rem auto 2rem;
}
.quote__author { font-size: var(--step--1); letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-deep); }

/* ============ TESTIMONIALS CAROUSEL (auto-rotating) ============ */
.quotes { position: relative; background: var(--navy); color: var(--cream); text-align: center; overflow: hidden; }
.quotes__glow { position: absolute; inset: 0; background: radial-gradient(60% 70% at 50% 30%, rgba(194,161,91,0.18), transparent 68%); }
.quotes__inner { position: relative; z-index: 2; }
.quotes .eyebrow { color: var(--gold-soft); display: block; }
.quotes__head { font-size: var(--step-3); font-weight: 300; margin: 1rem 0 2.5rem; }
.quotes__head em { font-style: italic; color: var(--gold-soft); }
.quotes__stage {
  position: relative;
  max-width: 46ch;
  margin-inline: auto;
  padding-top: 3.5rem;
  min-height: clamp(20rem, 40vw, 24rem);
  display: flex; align-items: flex-start; justify-content: center;
}
.quotes__mark {
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 7rem);
  line-height: 0.4;
  color: var(--gold-soft);
  opacity: 0.28;
  z-index: 0;
  pointer-events: none;
  position: absolute; top: 0.35em; left: 50%; transform: translateX(-50%);
}
.qslide {
  position: absolute;
  top: 3.5rem; left: 0; right: 0; bottom: 0;
  z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  gap: 1.4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 0.9s var(--ease-lux), transform 0.9s var(--ease-lux);
}
.qslide.is-active { opacity: 1; visibility: visible; transform: translateY(0); }
.qslide__text {
  font-family: var(--font-display);
  font-weight: 300; font-style: italic;
  font-size: var(--step-1);
  line-height: 1.4;
  color: var(--cream);
}
.qslide__author { display: flex; flex-direction: column; gap: 0.3rem; }
.qslide__name { font-family: var(--font-sans); font-size: var(--step--1); letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-soft); }
.qslide__place { font-size: var(--step--1); letter-spacing: 0.14em; color: rgba(247,243,236,0.6); }
.quotes__dots { position: absolute; bottom: -2.6rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.6rem; z-index: 3; }
.qdot { width: 8px; height: 8px; border-radius: 50%; background: rgba(247,243,236,0.28); transition: all 0.5s var(--ease-lux); }
.qdot.is-active { background: var(--gold); width: 22px; border-radius: 100px; }
.qdot:hover { background: rgba(247,243,236,0.6); }
@media (max-width: 640px){ .qslide__text { font-size: var(--step-1); } }

/* ================= CTA BAND ================= */
.cta-band { position: relative; background: var(--ink); color: var(--cream); text-align: center; overflow: hidden; }
.cta-band__glow { position:absolute; inset:0; background: radial-gradient(60% 80% at 50% 100%, rgba(201,169,106,0.22), transparent 70%); }
.cta-band__inner { position: relative; z-index: 2; }
.cta-band h2 { font-size: var(--step-4); margin-bottom: 1.6rem; }
.cta-band h2 em { font-style: italic; color: var(--gold-soft); }
.cta-band p { max-width: 46ch; margin: 0 auto 2.4rem; color: rgba(247,243,236,0.8); }

/* ================= PAGE HEADER (inner pages) ================= */
.page-head {
  position: relative;
  padding-top: clamp(9rem, 18vw, 14rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  text-align: center;
}
.page-head__glow { position:absolute; inset:0; background: radial-gradient(70% 60% at 50% 20%, rgba(201,169,106,0.2), transparent 65%); }
.page-head__inner { position: relative; z-index: 2; }
.page-head .eyebrow { color: var(--gold-soft); }
.page-head h1 { font-size: var(--step-5); font-weight: 300; margin-top: 1.2rem; line-height: 0.95; }
.page-head h1 em { font-style: italic; color: var(--gold-soft); }
.page-head p { max-width: 52ch; margin: 1.6rem auto 0; color: rgba(247,243,236,0.8); }

/* breadcrumb */
.crumb { display:flex; gap: 0.6rem; justify-content: center; font-size: var(--step--1); letter-spacing: 0.16em; text-transform: uppercase; color: rgba(247,243,236,0.6); margin-top: 1.6rem; }
.crumb a:hover { color: var(--gold-soft); }

/* ================= ABOUT ================= */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.grid-2--wide { grid-template-columns: 0.9fr 1.1fr; }
@media (max-width: 860px){ .grid-2, .grid-2--wide { grid-template-columns: 1fr; } }
.about-intro { background: var(--ivory); }
.about-portrait { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius); }
.about-portrait img { width:100%;height:100%;object-fit:cover; }
.about-sign { font-family: var(--font-script); font-size: clamp(2.4rem,6vw,4rem); color: var(--gold-deep); line-height: 0.9; }
.values { background: var(--cream); }
.values__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.5rem,4vw,3rem); }
.value { border-top: 1px solid var(--line); padding-top: 1.6rem; }
.value__num { font-family: var(--font-display); font-size: var(--step-2); color: var(--gold-soft); font-style: italic; }
.value h3 { font-size: var(--step-1); margin: 1rem 0 0.8rem; }
.value p { font-size: var(--step-0); color: var(--fg-soft); }
@media (max-width: 760px){ .values__grid { grid-template-columns: 1fr; } }

/* ================= PROCESS TIMELINE ================= */
.process { background: var(--ivory); }
.timeline { position: relative; max-width: 780px; margin-inline: auto; }
.timeline__line { position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: var(--line); }
.timeline__line span { position:absolute; top:0; left:0; width:100%; height:0; background: var(--gold); }
.tstep { position: relative; padding-left: clamp(2.5rem, 6vw, 4.5rem); padding-block: clamp(1.5rem, 4vw, 2.5rem); }
.tstep::before {
  content:''; position: absolute; left: -4px; top: clamp(1.9rem,4.4vw,2.9rem);
  width: 9px; height: 9px; border-radius: 50%; background: var(--ivory); border: 1px solid var(--gold);
}
.tstep__num { font-family: var(--font-sans); font-size: var(--step--1); letter-spacing: 0.24em; color: var(--gold-deep); }
.tstep h3 { font-size: var(--step-2); margin: 0.5rem 0 0.8rem; }
.tstep h3 em { font-style: italic; }
.tstep p { color: var(--fg-soft); max-width: 48ch; }

/* ================= SERVICE PRICING CARDS ================= */
.packages { background: var(--cream); }
.pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.2rem, 3vw, 2rem); }
.pkg {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  transition: transform 0.6s var(--ease-lux), box-shadow 0.6s;
}
.pkg:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -30px rgba(42,37,33,0.25); }
.pkg--feature { background: var(--ink); color: var(--cream); border-color: var(--gold); }
.pkg--feature .pkg__price, .pkg--feature h3 { color: var(--cream); }
.pkg--feature .pkg__feat li { color: rgba(247,243,236,0.8); border-color: rgba(247,243,236,0.14); }
.pkg__tag { font-size: var(--step--1); letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-deep); }
.pkg h3 { font-size: var(--step-2); margin: 0.6rem 0; font-weight: 300; }
.pkg__price { font-family: var(--font-display); font-size: var(--step-2); color: var(--gold-deep); margin-bottom: 1.4rem; }
.pkg__price small { font-family: var(--font-sans); font-size: var(--step--1); letter-spacing: 0.1em; color: var(--fg-soft); }
.pkg__feat { flex: 1; margin-bottom: 1.8rem; }
.pkg__feat li { padding-block: 0.7rem; border-bottom: 1px solid var(--line); font-size: var(--step-0); }
@media (max-width: 820px){ .pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* service feature bullet list */
.svc-feats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.6rem 2rem; margin-top: clamp(1.6rem, 3vw, 2.4rem);
  max-width: 780px;
}
.svc-feats li {
  position: relative; padding-left: 1.6rem;
  font-size: var(--step-0); color: var(--fg-soft);
  padding-block: 0.5rem; border-bottom: 1px solid var(--line);
}
.svc-feats li::before {
  content: ''; position: absolute; left: 0; top: 1.1rem;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}

/* ================= CONTACT ================= */
.contact { background: var(--ivory); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); }
.contact__info h2 { font-size: var(--step-3); margin-bottom: 1.6rem; }
.contact__info h2 em { font-style: italic; color: var(--gold-deep); }
.contact__detail { margin-bottom: 1.8rem; }
.contact__detail .lbl { font-size: var(--step--1); letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-deep); display:block; margin-bottom: 0.4rem; }
.contact__detail a, .contact__detail p { font-family: var(--font-display); font-size: var(--step-1); font-weight: 300; }
.field { position: relative; margin-bottom: 1.8rem; }
.field label { position: absolute; left: 0; top: 0.9rem; font-size: var(--step-0); color: var(--fg-soft); pointer-events: none; transition: 0.4s var(--ease-lux); letter-spacing: 0.04em; }
.field input, .field textarea, .field select {
  width: 100%;
  background: transparent;
  border: none; border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
  font-family: var(--font-sans); font-size: var(--step-0); color: var(--ink);
  transition: border-color 0.4s;
}
.field select { cursor: pointer; }
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field input:focus + label, .field textarea:focus + label,
.field input:not(:placeholder-shown) + label, .field textarea:not(:placeholder-shown) + label,
.field select:valid + label {
  top: -0.7rem; font-size: var(--step--1); letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep);
}
.form-note { font-size: var(--step--1); color: var(--fg-soft); margin-top: 1rem; }
.form-status { margin-top: 1rem; font-size: var(--step-0); }
.form-status.ok { color: var(--gold-deep); }
.form-status.err { color: #a4442f; }
@media (max-width: 820px){ .contact__grid { grid-template-columns: 1fr; } }

/* coverage chips */
.chips { display:flex; flex-wrap:wrap; gap: 0.6rem; margin-top: 0.8rem; }
.chip { border: 1px solid var(--line); border-radius: 100px; padding: 0.45em 1.1em; font-size: var(--step--1); letter-spacing: 0.1em; }

/* Generic reveal helpers used by GSAP */
.fade-up { opacity: 0; transform: translateY(40px); }
.fade-in { opacity: 0; }
.clip-up { opacity: 0; transform: translateY(24px); }
