/* ===== HOME PAGE STYLES ===== */

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(150deg, #e5ac52 0%, #10477a 25%, #072c51 55%, #021122 85%, #5d1017 100%);
  overflow: hidden;
  padding-top: 72px;
}


.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(184, 145, 58, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(44, 74, 53, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-ornament {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border: 1px solid rgba(184, 145, 58, 0.06);
  border-radius: 50%;
}



.hero-ornament::before {
  content: '';
  position: absolute;
  top: 8%;
  left: 8%;
  right: 8%;
  bottom: 8%;
  border: 1px solid rgba(184, 145, 58, 0.04);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 8rem;
}

.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(184, 145, 58, 0.64);
  border-radius: 100px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.65);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid rgba(219, 200, 156, 0.18);
  border-radius: 4px;
  max-width: 640px;
  margin: 0 auto;
  background: rgba(84, 135, 255, 0.03);
  backdrop-filter: blur(8px);
}

.stat {
  padding: 1.2rem 2rem;
  text-align: center;
  flex: 1;
}

.stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.stat span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(184, 145, 58, 0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(184, 145, 58, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

/* TAGLINE BAND */
.tagline-band {
  background: linear-gradient(to right, #efcb7d 0%, #c25f47 100%);
  padding: 1.5rem 0;
  border-top: 1px solid #e19d2cc9;
  border-bottom: 1px solid #e19d2cc9;
  text-align: center;
}

.tagline-band p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #031120a3;
}

.tagline-band em {
  font-style: italic;
  color: #42101a;
}

/* SERVICES INTRO */
.services-intro {
  padding: 7rem 0;
}

.services-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.services-intro-text p {
  color: var(--slate);
  line-height: 1.8;
}

.services-intro-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 4px;
  padding: 2rem;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}

.service-card:hover {
  box-shadow: var(--shadow-med);
  border-color: rgba(184, 145, 58, 0.3);
  transform: translateY(-3px);
}

.service-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.service-card a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s;
}

.service-card a:hover {
  color: var(--gold-light);
}

/* PROCESS */
.process {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.process-bg {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(150deg, #e5ac52 0%, #10477a 25%, #072c51 55%, #021122 85%, #5d1017 100%); */
  background: linear-gradient(150deg, #1879b3 0%, #10477a 25%, #173a5d 55%, #193c63 85%, #0c1732 100%);
  z-index: 0;
}

.process .container {
  position: relative;
  z-index: 1;
}

.process-header {
  text-align: center;
  margin-bottom: 4rem;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.process-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 2rem 1rem;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(216, 163, 46, 0.7);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.7rem;
  font-weight: 600;
}

.process-step p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.process-connector {
  flex: 0 0 auto;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 145, 58, 0.3), rgba(184, 145, 58, 0.1));
  margin-top: 3.5rem;
}

/* PACKAGES TEASER */
.packages-teaser {
  padding: 7rem 0;
  background: var(--parchment);
}

.pt-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pt-header .section-subtitle {
  margin-top: 0.75rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pkg-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}

.pkg-card:hover {
  box-shadow: var(--shadow-med);
  transform: translateY(-4px);
}

.pkg-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-soft);
}

.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pkg-type {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.pkg-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.pkg-card>p {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.pkg-card ul {
  list-style: none;
  margin-bottom: 1.8rem;
}

.pkg-card ul li {
  font-size: 0.88rem;
  color: var(--slate);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--mist);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pkg-card ul li::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
}

/* QUOTE BAND */
.quote-band {
  background: linear-gradient(150deg, #1879b3 0%, #10477a 25%, #173a5d 55%, #193c63 85%, #0c1732 100%);
  padding: 5rem 0;
}

.quote-band blockquote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.quote-band blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.quote-band blockquote cite {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* CTA SECTION */
.cta-section {
  padding: 7rem 0;
  background: var(--cream);
}

.cta-box {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 8px;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  max-width: 760px;
  margin: 0 auto;
}

.cta-box p {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 1rem auto 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-contact {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--slate);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .process-connector {
    display: none;
  }

  .process-steps {
    gap: 1rem;
  }

  .hero-stats {
    max-width: 100%;
  }

  .stat-divider {
    display: none;
  }

  .stat {
    padding: 1rem;
  }
}