/* ============================================================
   SetUp Stories — home.css (index page styles)
   ============================================================ */

/* ── Hero — Split Editorial Layout ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: none; }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: none; }
}
@keyframes floatUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

/* ── Left text panel ── */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(7rem, 10vw, 9rem) clamp(2rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem) var(--gutter);
  background: var(--charcoal);
  position: relative;
  z-index: 2;
  animation: slideInLeft 1s var(--ease-out) 0.3s both;
}

/* Subtle grain texture on left panel */
.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.6;
}

.hero-left-inner { position: relative; z-index: 1; }

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 2rem;
  display: flex; align-items: center; gap: 0.75rem;
  animation: fadeUp 0.7s var(--ease-out) 0.8s both;
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--rose);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 6.5vw, 7.2rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  animation: fadeUp 1s var(--ease-out) 1s both;
}
.hero-headline em {
  font-style: italic;
  color: var(--champagne);
  display: inline-block;
  /* subtle underline flourish */
  background: linear-gradient(to right, var(--rose) 0%, var(--blush) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-divider {
  width: 48px; height: 1.5px;
  background: linear-gradient(to right, var(--rose), transparent);
  margin-bottom: 1.5rem;
  animation: fadeIn 0.6s var(--ease-out) 1.4s both;
}

.hero-sub {
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  color: rgba(245,230,200,0.6);
  max-width: 340px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.9s var(--ease-out) 1.3s both;
}

.hero-ctas {
  display: flex; flex-direction: column; gap: 1rem;
  align-items: flex-start;
  animation: fadeUp 0.8s var(--ease-out) 1.6s both;
}

.hero-btn-book {
  background: var(--rose);
  color: var(--ivory);
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.6rem;
  transition: all 0.35s var(--ease-out);
  box-shadow: 0 8px 24px rgba(201,146,122,0.3);
}
.hero-btn-book:hover {
  background: var(--blush);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(201,146,122,0.45);
}
.hero-btn-book svg { transition: transform 0.3s; }
.hero-btn-book:hover svg { transform: translateX(4px); }

.hero-ghost-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(245,230,200,0.45);
  font-weight: 400;
  transition: color 0.25s, gap 0.3s;
}
.hero-ghost-link:hover { color: var(--champagne); gap: 0.75rem; }

/* Stat pill — normal flow, clearly below CTAs */
.hero-stat-pill {
  position: relative;
  align-self: flex-start;
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex; align-items: center; gap: 1rem;
  background: rgba(245,230,200,0.06);
  border: 1px solid rgba(245,230,200,0.12);
  backdrop-filter: blur(10px);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  animation: floatUp 0.9s var(--ease-out) 2s both;
}
.pill-num {
  font-family: var(--serif);
  font-size: 1.6rem; font-weight: 300;
  color: var(--champagne); line-height: 1;
}
.pill-label {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(245,230,200,0.5); max-width: 90px; line-height: 1.5;
}

/* ── Right image collage panel ── */
.hero-right {
  position: relative;
  overflow: hidden;
  animation: slideInRight 1s var(--ease-out) 0.3s both;
}

.hero-img {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.hero-right:hover .hero-img-main img { transform: scale(1.04); }

/* Main tall image — left side of right panel */
.hero-img-main {
  top: 0; left: 0;
  width: 62%; height: 100%;
  border-radius: 0;
  animation: fadeIn 1.2s var(--ease-out) 0.5s both;
}
.hero-img-main img { object-position: center 20%; }

/* Top-right accent */
.hero-img-accent-top {
  top: 0; right: 0;
  width: 35%;
  height: 48%;
  border-radius: 0 0 var(--radius-lg) 0;
  animation: slideInRight 0.9s var(--ease-out) 1s both;
}

/* Bottom-right accent */
.hero-img-accent-bot {
  bottom: 0; right: 0;
  width: 35%;
  height: 48%;
  border-radius: var(--radius-lg) 0 0 0;
  animation: slideInRight 0.9s var(--ease-out) 1.2s both;
}

/* Image category tags */
.hero-img-tag {
  position: absolute; bottom: 0.85rem; left: 0.85rem;
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--champagne);
  background: rgba(42,40,37,0.65);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
}

/* Floating testimonial card */
.hero-review-card {
  position: absolute;
  bottom: 2.5rem; left: -1.5rem;
  background: var(--ivory);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  max-width: 220px;
  box-shadow: 0 20px 50px rgba(42,40,37,0.2);
  animation: floatUp 1s var(--ease-out) 1.8s both;
  z-index: 5;
}
.review-stars {
  font-size: 0.72rem; color: var(--rose);
  letter-spacing: 0.06em; margin-bottom: 0.5rem;
}
.hero-review-card p {
  font-family: var(--serif);
  font-size: 0.92rem; font-style: italic;
  line-height: 1.5; color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.hero-review-card span {
  font-size: 0.72rem; color: var(--muted);
  letter-spacing: 0.06em;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 10;
  animation: fadeIn 0.8s var(--ease-out) 2.4s both;
}
.hero-scroll-cue span:last-child {
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245,230,200,0.35); writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(245,230,200,0.35));
}

/* keep this for btn-outline-light used in other sections */
.btn-outline-light {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(250,247,242,0.5);
  color: var(--ivory);
  transition: all 0.35s var(--ease-out);
}
.btn-outline-light:hover { background: rgba(250,247,242,0.1); border-color: var(--ivory); }

/* ── Hero responsive ── */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto 52vw;
    min-height: unset;
  }
  .hero-left {
    padding: 8rem var(--gutter) 3rem;
    animation: fadeUp 0.9s var(--ease-out) 0.3s both;
  }
  .hero-headline { font-size: clamp(3rem, 10vw, 5.5rem); }
  .hero-right { height: 52vw; min-height: 320px; }
  .hero-review-card { left: 1rem; bottom: 1rem; max-width: 180px; }
  .hero-stat-pill { margin-top: 1.75rem; }
  .hero-ctas { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 580px) {
  .hero-right { height: 72vw; }
  .hero-img-accent-top, .hero-img-accent-bot { width: 38%; }
  .hero-review-card { display: none; }
}

/* ── Marquee ── */
.marquee-wrapper {
  background: var(--charcoal);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 1.5rem;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,230,200,0.55);
  font-weight: 400;
}
.marquee-track .dot { color: var(--rose); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Story Intro ── */
.story-intro { padding: var(--section-pad) 0; background: var(--warm-white); }
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.story-text { display: flex; flex-direction: column; gap: 1.5rem; }
.story-text .section-heading { margin: 0; }
.story-images {
  position: relative; height: 560px;
}
.story-img-main {
  position: absolute; top: 0; left: 0; right: 10%;
  height: 75%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.story-img-accent {
  position: absolute; bottom: 0; right: 0;
  width: 52%; height: 42%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid var(--warm-white);
}
.story-img-main img, .story-img-accent img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.story-img-main:hover img, .story-img-accent:hover img { transform: scale(1.04); }

/* ── Stats Band ── */
.stats-band {
  background: var(--charcoal);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: 0.4rem; }
.stat-item strong {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--champagne);
  line-height: 1;
}
.stat-item span { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,230,200,0.5); }

/* ── Experiences ── */
.experiences { padding: var(--section-pad) 0; }
.section-header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-header.centered { text-align: center; }
.section-header.centered .eyebrow { justify-content: center; }
.section-header.centered .section-heading, .section-header.centered .section-sub { margin-left: auto; margin-right: auto; }
.section-header .section-heading { margin-top: 0.6rem; }
.section-header .section-sub { margin-top: 1rem; }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.exp-card {
  display: flex; flex-direction: column;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.4s;
  cursor: pointer;
}
.exp-card:hover { box-shadow: 0 20px 50px rgba(42,40,37,0.12); }
.exp-img {
  height: 260px; overflow: hidden;
}
.exp-img img {
  height: 100%; transition: transform 0.7s var(--ease-out);
}
.exp-card:hover .exp-img img { transform: scale(1.06); }
.exp-info {
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  flex: 1;
}
.exp-num {
  font-family: var(--serif);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--rose);
}
.exp-info h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--charcoal);
}
.exp-info p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
  flex: 1;
}
.exp-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--rose); font-weight: 500;
  margin-top: 0.5rem;
  transition: gap 0.3s;
}
.exp-card:hover .exp-link { gap: 0.7rem; }
.exp-more { text-align: center; margin-top: 3rem; }

/* ── Portfolio Mosaic ── */
.portfolio-preview { padding: var(--section-pad) 0; }
.portfolio-header { margin-bottom: clamp(2rem, 4vw, 3rem); }
.port-header-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.portfolio-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.mosaic-item {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  cursor: pointer;
}
.mosaic-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.mosaic-item:hover img { transform: scale(1.05); }
.mosaic-tall { grid-row: 1 / 3; height: 580px; }
.mosaic-col { display: flex; flex-direction: column; gap: 1rem; }
.mosaic-col .mosaic-item { height: 280px; }
.mosaic-wide { height: 280px; }
.mosaic-label {
  position: absolute; bottom: 1rem; left: 1rem;
  background: rgba(42,40,37,0.7);
  backdrop-filter: blur(8px);
  color: var(--champagne);
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.4rem 0.85rem; border-radius: var(--radius-pill);
}

/* ── Process ── */
.process { padding: var(--section-pad) 0; background: var(--beige); }
.process-steps {
  display: flex; align-items: flex-start; gap: 0;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.process-step {
  flex: 1; text-align: center;
  padding: 2.5rem 2rem;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  position: relative;
}
.process-connector {
  flex-shrink: 0; width: clamp(1.5rem, 3vw, 3rem);
  height: 2px; background: var(--blush);
  margin-top: 5rem;
  align-self: flex-start;
}
.step-num {
  font-family: var(--serif);
  font-size: 0.75rem; letter-spacing: 0.15em;
  color: var(--rose); margin-bottom: 1rem;
}
.step-icon {
  width: 56px; height: 56px;
  background: var(--champagne);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.step-icon svg { stroke: var(--rose); }
.process-step h3 {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 400;
  margin-bottom: 0.75rem;
}
.process-step p { font-size: 0.9rem; line-height: 1.7; color: var(--muted); }

/* ── Testimonials ── */
.testimonials {
  position: relative; padding: var(--section-pad) 0;
  overflow: hidden;
}
.testimonials-bg {
  position: absolute; inset: 0; z-index: 0;
}
.testimonials-bg img { width: 100%; height: 100%; object-fit: cover; }
.testimonials-overlay {
  position: absolute; inset: 0;
  background: rgba(42,40,37,0.82);
}
.testimonials .container { position: relative; z-index: 1; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: rgba(250,247,242,0.07);
  border: 1px solid rgba(245,230,200,0.12);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
}
.quote-mark {
  font-family: var(--serif); font-size: 4rem; line-height: 1;
  color: var(--rose); margin-bottom: 0.5rem; display: block;
}
.testimonial-card p {
  font-size: 1rem; line-height: 1.75; color: rgba(245,230,200,0.85);
  font-style: italic;
}
.testimonial-author { margin-top: 1.5rem; }
.testimonial-author strong { display: block; color: var(--champagne); font-size: 0.9rem; }
.testimonial-author span { font-size: 0.78rem; letter-spacing: 0.08em; color: var(--rose); }

/* section-heading light & eyebrow light */
.section-heading.light { color: var(--champagne); }
.eyebrow.light { color: var(--blush); }
.eyebrow.light::before { background: var(--blush); }

/* ── FAQ ── */
.faq { padding: var(--section-pad) 0; }
.faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(3rem, 7vw, 6rem); align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--beige);
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  text-align: left; padding: 1.4rem 0;
  font-size: 1rem; font-weight: 400; color: var(--charcoal);
  gap: 1rem; cursor: pointer;
  transition: color 0.25s;
}
.faq-question:hover { color: var(--rose); }
.faq-question svg {
  flex-shrink: 0; stroke: var(--rose);
  transition: transform 0.35s var(--ease-out);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
}
.faq-answer p {
  padding-bottom: 1.25rem;
  font-size: 0.92rem; line-height: 1.8; color: var(--muted);
}

/* ── Final CTA ── */
.final-cta {
  position: relative; padding: clamp(5rem, 14vw, 10rem) 0;
  overflow: hidden;
}
.final-cta-media {
  position: absolute; inset: 0; z-index: 0;
}
.final-cta-media img { width: 100%; height: 100%; object-fit: cover; }
.final-cta-overlay {
  position: absolute; inset: 0;
  background: rgba(42,40,37,0.75);
}
.final-cta-content {
  position: relative; z-index: 1;
  max-width: 580px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-images { height: 380px; margin-bottom: 2rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .process-connector { width: 2px; height: clamp(1.5rem, 3vw, 2rem); margin: 0 auto; }
  .faq-layout { grid-template-columns: 1fr; }
  .portfolio-mosaic { grid-template-columns: 1fr 1fr; }
  .mosaic-tall { height: 300px; }
  .mosaic-wide { display: none; }
}
@media (max-width: 680px) {
  .exp-grid { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
  .hero-headline { font-size: clamp(2.8rem, 13vw, 5rem); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-mosaic { grid-template-columns: 1fr; }
  .mosaic-tall { height: 280px; }
  .mosaic-col { flex-direction: row; }
  .mosaic-col .mosaic-item { flex: 1; height: 200px; }
}
