/* ========== HOME PAGE CSS ========== */

/* ---- HERO ---- */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(130deg, var(--bg) 0%, var(--bg2) 50%, var(--bg3) 100%);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.5;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(253,250,242,0.20) 0%,
    rgba(240,232,218,0.15) 40%,
    rgba(228,216,200,0.08) 75%,
    rgba(228,216,200,0.02) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 4rem;
  max-width: 900px;
}
.hero-tag {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 2rem;
  padding: 0.4rem 1rem;
  background: rgba(140,107,61,0.09);
  border-radius: 20px;
  width: fit-content;
}
.tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(140,107,61,0.5); }
  50% { box-shadow: 0 0 0 7px rgba(140,107,61,0); }
}

.hero-title {
  display: flex; flex-direction: column; gap: 0;
  overflow: hidden;
}
.hero-title .line {
  display: block;
  font-size: clamp(5rem, 10vw, 12rem);
  line-height: 0.9;
  transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  color: var(--white);
}
.hero-title .line:nth-child(1) { animation-delay: 0.1s; }
.hero-title .line:nth-child(2) {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 7rem);
  font-style: italic;
  color: var(--gold);
  animation-delay: 0.2s;
}
.hero-title .line:nth-child(3) { animation-delay: 0.3s; }
@keyframes slideUp { to { transform: translateY(0); } }

.hero-sub {
  margin-top: 2rem;
  font-size: 1rem; line-height: 1.8;
  color: var(--white-dim); max-width: 520px;
  opacity: 0; animation: fadeIn 0.8s ease 0.7s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

.hero-actions {
  display: flex; align-items: center; gap: 2rem; margin-top: 2.5rem;
  opacity: 0; animation: fadeIn 0.8s ease 0.9s forwards;
}
.play-circle {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid rgba(26,24,20,0.22);
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.play-circle svg { width: 14px; fill: var(--white); margin-left: 2px; }
.play-btn:hover .play-circle { border-color: var(--gold); background: rgba(140,107,61,0.1); }

.hero-scroll {
  position: absolute; bottom: 3rem; right: 4rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  opacity: 0; animation: fadeIn 1s ease 1.2s forwards;
}
.hero-scroll span {
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--white-dim); writing-mode: vertical-lr;
}

.hero-stats {
  position: absolute; bottom: 3rem; left: 4rem; z-index: 2;
  display: flex; gap: 0;
  opacity: 0; animation: fadeIn 1s ease 1.1s forwards;
  background: var(--bg2);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--white-faint);
}
.stat-item {
  display: flex; flex-direction: column; gap: 0.2rem;
  padding: 1.2rem 2rem;
  border-right: 1px solid var(--white-faint);
}
.stat-item:last-child { border-right: none; }
.stat-item > * { line-height: 1; }
.stat-num { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); }
.stat-suffix { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold); display: inline; }
.stat-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white-dim); margin-top: 0.3rem; }

/* ---- INTRO SPLIT ---- */
.intro-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; padding: 8rem 4rem;
  max-width: 1400px; margin: 0 auto;
  align-items: center;
}
.intro-text .eyebrow { margin-bottom: 0.75rem; }
.intro-text h2 { margin-bottom: 1.5rem; }
.intro-text p { color: var(--white-dim); line-height: 1.9; font-size: 1rem; margin-bottom: 2rem; }

.img-stack { position: relative; height: 550px; }
.img-back {
  position: absolute; width: 75%; height: 80%;
  object-fit: cover; bottom: 0; right: 0;
  border-radius: 16px;
  filter: brightness(0.92);
}
.img-front {
  position: absolute; width: 55%; height: 65%;
  object-fit: cover; top: 0; left: 0;
  border-radius: 16px;
  border: 4px solid var(--bg);
  box-shadow: var(--shadow-lg);
}
.img-badge {
  position: absolute; bottom: 2rem; left: -1rem; z-index: 2;
  background: var(--gold); color: #fff;
  padding: 1.5rem 2rem; border-radius: 14px;
  display: flex; flex-direction: column; gap: 0.2rem;
  box-shadow: var(--shadow-accent);
  animation: float 5s ease-in-out infinite;
}
.badge-num { font-family: var(--font-display); font-size: 3rem; line-height: 1; }
.badge-text { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }

/* ---- THREE CATEGORY SHOWCASE ---- */
.cat-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 700px;
  background: var(--white);
}
.cat-feature {
  position: relative; overflow: hidden; cursor: none;
}
.cat-feature-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cat-feature:hover .cat-feature-img { transform: scale(1.06); }
.cat-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 3rem;
  background: linear-gradient(to top, rgba(26,24,20,0.88) 0%, rgba(26,24,20,0.3) 50%, rgba(26,24,20,0.05) 100%);
  transition: background var(--transition);
}
.cat-feature:hover .cat-overlay {
  background: linear-gradient(to top, rgba(26,24,20,0.95) 0%, rgba(26,24,20,0.6) 60%, rgba(26,24,20,0.2) 100%);
}
.cat-tag {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.75rem;
  transform: translateY(8px); opacity: 0.7;
  transition: transform var(--transition), opacity var(--transition);
}
.cat-feature:hover .cat-tag { transform: translateY(0); opacity: 1; }
.cat-overlay h3 {
  font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #fff; letter-spacing: 0.06em; line-height: 1; margin-bottom: 1rem;
}
.cat-overlay p {
  font-size: 0.9rem; color: rgba(253,250,242,0.75); line-height: 1.7;
  max-width: 280px;
  transform: translateY(20px); opacity: 0;
  transition: transform var(--transition) 0.05s, opacity var(--transition) 0.05s;
}
.cat-feature:hover .cat-overlay p { transform: translateY(0); opacity: 1; }
.cat-cta {
  display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 1.5rem;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  transform: translateY(20px); opacity: 0;
  transition: transform var(--transition) 0.08s, opacity var(--transition) 0.08s, gap var(--transition-fast);
}
.cat-cta:hover { gap: 1rem; }
.cat-feature:hover .cat-cta { transform: translateY(0); opacity: 1; }
.cat-cta svg { width: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ---- REEL SECTION ---- */
.reel-section { padding: 5rem 4rem; background: var(--bg2); }
.reel-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.reel-inner h2 { margin-bottom: 3rem; }
.video-frame {
  position: relative; width: 100%; padding-top: 56.25%; overflow: hidden;
  border-radius: 20px; box-shadow: var(--shadow-lg);
}
.reel-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(to top, rgba(253,250,242,0.92), transparent);
  text-align: left; border-radius: 0 0 20px 20px;
}
.video-caption span { font-size: 0.8rem; color: var(--white-dim); letter-spacing: 0.05em; }

/* ---- SERVICES PREVIEW ---- */
.services-preview { padding: 8rem 4rem; }
.sp-header { text-align: center; margin-bottom: 4rem; }
.sp-header h2 { margin-top: 0.5rem; }
.sp-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  max-width: 1400px; margin: 0 auto 3rem;
}
.sp-card {
  background: var(--bg); text-decoration: none;
  display: flex; flex-direction: column;
  overflow: hidden; position: relative;
  border-radius: 16px;
  border: 1.5px solid var(--white-faint);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.sp-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(140,107,61,0.28); }
.sp-card-img { overflow: hidden; aspect-ratio: 4/3; }
.sp-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.sp-card:hover .sp-card-img img { transform: scale(1.08); }
.sp-card-body {
  padding: 1.5rem; flex: 1;
  border-top: 1px solid var(--white-faint);
  position: relative;
}
.sp-num {
  display: block; font-family: var(--font-display);
  font-size: 3rem; line-height: 1; color: var(--white-faint);
  margin-bottom: 0.5rem;
  transition: color var(--transition-fast);
}
.sp-card:hover .sp-num { color: rgba(140,107,61,0.15); }
.sp-card-body h3 { font-size: 1.4rem; margin-bottom: 0.5rem; color: var(--white); }
.sp-card-body p { font-size: 0.85rem; color: var(--white-dim); line-height: 1.6; }
.sp-arrow {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  font-size: 1.2rem; color: var(--white-faint);
  transition: color var(--transition-fast), transform var(--transition-fast);
}
.sp-card:hover .sp-arrow { color: var(--gold); transform: translate(3px, -3px); }
.sp-footer { text-align: center; }

/* ---- HORIZONTAL GALLERY ---- */
.h-gallery-section { padding: 5rem 0 5rem 4rem; overflow: hidden; position: relative; background: var(--bg2); }
.h-gallery-label {
  display: flex; justify-content: space-between; align-items: center;
  padding-right: 4rem; margin-bottom: 2rem;
}
.h-gallery-label p { font-size: 0.8rem; color: var(--white-dim); letter-spacing: 0.1em; }
.h-gallery-track {
  display: flex; gap: 1.5rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; cursor: grab;
  padding-right: 4rem; padding-bottom: 0.5rem;
}
.h-gallery-track::-webkit-scrollbar { display: none; }
.h-gallery-track:active { cursor: grabbing; }
.h-gallery-item {
  flex: 0 0 380px; height: 500px;
  position: relative; overflow: hidden;
  scroll-snap-align: start; border-radius: 16px;
}
.h-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.h-gallery-item:hover img { transform: scale(1.05); }
.gal-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(26,24,20,0.8), transparent);
  font-size: 0.85rem; font-weight: 600; color: #fff;
  letter-spacing: 0.05em;
  transform: translateY(100%); transition: transform var(--transition);
  border-radius: 0 0 16px 16px;
}
.h-gallery-item:hover .gal-caption { transform: translateY(0); }

/* ---- WHY US STRIP ---- */
.why-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--white-faint);
  border-bottom: 1px solid var(--white-faint);
}
.why-item {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--white-faint);
  transition: background var(--transition);
}
.why-item:last-child { border-right: none; }
.why-item:hover { background: var(--bg2); }
.why-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.why-item h4 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.why-item p { font-size: 0.85rem; color: var(--white-dim); line-height: 1.7; }

/* ---- PROCESS ---- */
.process-section { padding: 8rem 4rem; background: var(--bg2); }
.process-header { text-align: center; margin-bottom: 5rem; }
.process-header h2 { margin-top: 0.5rem; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1400px; margin: 0 auto; }
.process-step {
  position: relative; padding: 2.5rem 2rem;
  background: var(--bg);
  border-radius: 16px;
  border: 1.5px solid var(--white-faint);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.process-step:hover {
  border-color: rgba(140,107,61,0.28);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.step-num {
  font-family: var(--font-display); font-size: 4.5rem;
  color: rgba(140,107,61,0.12); line-height: 1;
  margin-bottom: 1rem;
}
.step-line {
  width: 40px; height: 3px; background: var(--gold);
  margin-bottom: 1.5rem; position: relative;
  border-radius: 2px; overflow: hidden;
}
.step-line::after {
  content: ''; position: absolute; left: -100%; top: 0; width: 100%; height: 100%;
  background: var(--gold-light);
  animation: lineFlow 3s ease infinite;
  border-radius: 2px;
}
@keyframes lineFlow { to { left: 100%; } }
.step-content { padding-top: 0.5rem; }
.step-content h3 { font-size: 1.4rem; margin-bottom: 0.75rem; }
.step-content p { font-size: 0.9rem; color: var(--white-dim); line-height: 1.8; }

/* ---- TESTIMONIALS ---- */
.testimonials { padding: 8rem 4rem; }
.testimonials h2 { margin: 0.5rem 0 4rem; }
.testi-grid { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 1.5rem; max-width: 1300px; margin: 0 auto; }
.testi-card {
  background: var(--bg2); border: 1.5px solid var(--white-faint);
  border-radius: 20px;
  padding: 2.5rem; position: relative;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  will-change: transform;
}
.testi-card:hover { border-color: rgba(140,107,61,0.28); transform: translateY(-5px); box-shadow: var(--shadow); }
.testi-card.featured {
  background: var(--bg3);
  border-color: rgba(140,107,61,0.22);
  transform: translateY(-12px);
  box-shadow: var(--shadow);
}
.testi-card.featured:hover { transform: translateY(-18px); box-shadow: var(--shadow-lg); }
.testi-quote {
  font-family: var(--font-serif); font-size: 5rem; line-height: 0.8;
  color: var(--gold); margin-bottom: 1.5rem; opacity: 0.3;
}
.testi-card p { font-size: 0.9rem; line-height: 1.9; color: var(--white-dim); margin-bottom: 2rem; }
.testi-author { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.testi-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testi-author strong { display: block; font-size: 0.9rem; font-weight: 600; }
.testi-author span { font-size: 0.75rem; color: var(--white-dim); }
.testi-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.1em; }

/* =========== RESPONSIVE =========== */
@media (max-width: 1200px) {
  .cat-showcase { grid-template-columns: 1fr 1fr; min-height: 500px; }
  .cat-feature:last-child { grid-column: 1 / -1; max-height: 380px; }
}
@media (max-width: 1100px) {
  .sp-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; max-width: 600px; }
  .testi-card.featured { transform: translateY(0); }
  .testi-card.featured:hover { transform: translateY(-5px); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .why-strip { grid-template-columns: repeat(2, 1fr); }
  .why-item:nth-child(2) { border-right: none; }
  .why-item:nth-child(3) { border-right: none; border-top: 1px solid var(--white-faint); }
  .why-item:nth-child(4) { border-top: 1px solid var(--white-faint); }
}
@media (max-width: 900px) {
  .intro-split { grid-template-columns: 1fr; gap: 4rem; }
  .img-stack { height: 400px; }
  .cat-showcase { grid-template-columns: 1fr; }
  .cat-feature:last-child { grid-column: auto; max-height: none; }
  .cat-feature { min-height: 400px; }
}
@media (max-width: 768px) {
  .hero-content { padding: 0 1.5rem; }
  .hero-stats { left: 1.5rem; bottom: 2rem; }
  .hero-scroll { right: 1.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .intro-split, .reel-section, .services-preview, .process-section, .testimonials { padding: 5rem 1.5rem; }
  .sp-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .h-gallery-section { padding: 5rem 0 5rem 1.5rem; }
  .h-gallery-label { padding-right: 1.5rem; }
  .h-gallery-item { flex: 0 0 280px; height: 380px; }
  .why-strip { grid-template-columns: 1fr; }
  .why-item { border-right: none; border-top: 1px solid var(--white-faint); }
  .why-item:first-child { border-top: none; }
}
