/* ============================================================
   ENREGINA — HOME PAGE COMPONENTS
   ============================================================ */

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ivory);
  padding-top: 72px;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 120px) clamp(24px, 3vw, 48px) clamp(48px, 8vw, 120px) var(--section-pad-x);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--forest);
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 480px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

/* ── HERO IMAGE PANEL ────────────────────────────────────── */
.hero-image {
  position: relative;
  overflow: hidden;
  background: var(--forest);
}

.hero-image-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--forest) 0%, #1d3329 50%, #0e1f18 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 60px 48px;
}

.hero-image-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(191,162,106,0.08) 0%, transparent 60%),
    radial-gradient(circle at 75% 75%, rgba(191,162,106,0.05) 0%, transparent 50%);
}

.hero-image-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-image-lines::before {
  content: '';
  position: absolute;
  top: -20%; left: 55%;
  width: 1px; height: 140%;
  background: linear-gradient(to bottom, transparent, rgba(191,162,106,0.3), transparent);
  transform: rotate(-12deg);
}

.hero-image-lines::after {
  content: '';
  position: absolute;
  top: 10%; left: 30%;
  width: 1px; height: 80%;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.06), transparent);
  transform: rotate(-12deg);
}

.hero-quote {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(247,244,239,0.9);
  line-height: 1.5;
  max-width: 340px;
}

.hero-quote::before {
  content: '"';
  position: absolute;
  top: -20px; left: -8px;
  font-size: 5rem;
  color: rgba(191,162,106,0.3);
  font-family: var(--serif);
  line-height: 1;
}

/* ── SCROLL INDICATOR ────────────────────────────────────── */
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: scrollBounce 2.4s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── POSITIONING STRIP ───────────────────────────────────── */
.positioning {
  background: var(--forest);
  padding: clamp(48px, 7vw, 100px) var(--section-pad-x);
  text-align: center;
}

.positioning-statement {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto 32px;
}

.positioning-statement strong {
  font-style: normal;
  font-weight: 500;
  color: var(--gold-light);
}

.positioning-sub {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(247,244,239,0.6);
  text-transform: uppercase;
}

/* ── FOUR PILLARS ────────────────────────────────────────── */
.pillars {
  background: var(--white);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  border: 1px solid var(--ivory-dark);
}

.pillar-card {
  padding: 48px 36px;
  border-right: 1px solid var(--ivory-dark);
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
  cursor: default;
}

.pillar-card:last-child {
  border-right: none;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.pillar-card:hover {
  background: var(--forest-pale);
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-number {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(44, 74, 62, 0.1);
  line-height: 1;
  margin-bottom: 24px;
  transition: color var(--transition);
}

.pillar-card:hover .pillar-number {
  color: rgba(44, 74, 62, 0.18);
}

.pillar-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.3;
}

.pillar-desc {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pillar-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-fast), color var(--transition-fast);
  cursor: pointer;
}

.pillar-link::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.pillar-card:hover .pillar-link {
  gap: 14px;
  color: var(--gold);
}

/* ── PHILOSOPHY ──────────────────────────────────────────── */
.philosophy {
  background: var(--ivory);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}

.philosophy-visual {
  position: relative;
  height: 560px;
}

.philosophy-box-main {
  position: absolute;
  top: 0; left: 0;
  width: 80%; height: 82%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.philosophy-circle {
  width: 160px; height: 160px;
  border: 1px solid rgba(191,162,106,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.philosophy-circle::before {
  content: '';
  position: absolute;
  width: 120px; height: 120px;
  border: 1px solid rgba(191,162,106,0.2);
  border-radius: 50%;
}

.philosophy-circle-text {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold-light);
  text-align: center;
  line-height: 1.5;
}

.philosophy-box-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 42%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.philosophy-accent-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--white);
  text-align: center;
  line-height: 1.5;
}

.philosophy-stat {
  position: absolute;
  bottom: 8%; left: 2%;
  background: var(--white);
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
}

.philosophy-stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--forest);
}

.philosophy-stat-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

.philosophy-principles {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.principle {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ivory-dark);
}

.principle:last-child {
  border-bottom: none;
}

.principle-num {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.6;
  min-width: 28px;
  line-height: 1.2;
}

.principle-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 6px;
}

.principle-text {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ── SIGNATURE FRAMEWORK ─────────────────────────────────── */
.framework {
  background: var(--black);
}

.framework .section-headline { color: var(--ivory); }
.framework .section-body { color: rgba(247,244,239,0.65); max-width: 580px; }

.framework-model {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
}

.framework-cell {
  padding: 52px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.framework-cell:nth-child(3n)  { border-right: none; }
.framework-cell:nth-child(4),
.framework-cell:nth-child(5),
.framework-cell:nth-child(6)   { border-bottom: none; }

.framework-cell-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(191,162,106,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.framework-cell-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 14px;
}

.framework-cell-text {
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(247,244,239,0.5);
}

.framework-cell-num {
  position: absolute;
  bottom: 20px; right: 24px;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(191,162,106,0.08);
  line-height: 1;
}

/* ── CLIENT JOURNEY ──────────────────────────────────────── */
.journey {
  background: var(--ivory-dark);
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 72px;
  position: relative;
}

.journey-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.journey-dot {
  width: 72px; height: 72px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--forest);
  background: var(--ivory-dark);
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  transition: background var(--transition), color var(--transition);
}

.journey-step:hover .journey-dot {
  background: var(--forest);
  color: var(--ivory);
}

.journey-step-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 10px;
}

.journey-step-text {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-top: 64px;
  background: var(--ivory-dark);
}

.testimonial-card {
  background: var(--white);
  padding: 48px 40px;
}

.testimonial-quote-mark {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 0.8;
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  color: var(--black);
  margin-bottom: 28px;
}

.testimonial-author { display: flex; flex-direction: column; gap: 4px; }

.testimonial-name {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--black);
}

.testimonial-role {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ── INSIGHTS PREVIEW ────────────────────────────────────── */
.insights { background: var(--ivory); }

.insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  margin-top: 64px;
}

.insight-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.insight-image {
  height: 220px;
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
}

.insight-image-fill {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.insight-card:hover .insight-image-fill {
  transform: scale(1.04);
}

/* Insight image colour variants */
.insight-image-1 { background: linear-gradient(135deg, #2C4A3E 0%, #1a3028 100%); }
.insight-image-2 { background: linear-gradient(135deg, #3d3028 0%, #2a1e18 100%); }
.insight-image-3 { background: linear-gradient(135deg, #1e2c3a 0%, #0e1820 100%); }

.insight-category {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.insight-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 14px;
  transition: color var(--transition-fast);
}

.insight-card:hover .insight-title {
  color: var(--forest);
}

.insight-excerpt {
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 20px;
}

.insight-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ── SHOP PREVIEW ────────────────────────────────────────── */
.shop-preview {
  background: var(--forest);
  padding: clamp(72px, 10vw, 120px) var(--section-pad-x);
}

.shop-preview .section-eyebrow { color: var(--gold-light); }
.shop-preview .section-eyebrow::before { background: var(--gold-light); }
.shop-preview .section-headline { color: var(--ivory); }
.shop-preview .section-body { color: rgba(247,244,239,0.65); }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.shop-card {
  background: rgba(247,244,239,0.06);
  border: 1px solid rgba(191,162,106,0.2);
  padding: 36px 28px;
  transition: background var(--transition), border-color var(--transition);
  cursor: pointer;
}

.shop-card:hover {
  background: rgba(247,244,239,0.10);
  border-color: rgba(191,162,106,0.45);
}

.shop-icon { font-size: 1.6rem; margin-bottom: 20px; }

.shop-card-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 10px;
}

.shop-card-desc {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(247,244,239,0.5);
  margin-bottom: 20px;
}

.shop-card-price {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold-light);
}

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  background: var(--ivory-dark);
  text-align: center;
  padding: clamp(80px, 12vw, 160px) var(--section-pad-x);
}

.cta-section .section-headline { margin-bottom: 20px; }
.cta-section .section-body { margin: 0 auto 48px; text-align: center; }
.cta-section .section-eyebrow { justify-content: center; }
.cta-section .section-eyebrow::before { display: none; }

/* ── NEWSLETTER STRIP ────────────────────────────────────── */
.newsletter-strip {
  background: var(--gold);
  padding: clamp(32px, 5vw, 56px) var(--section-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.newsletter-strip-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 4px;
}

.newsletter-strip-sub {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
}

.newsletter-form {
  display: flex;
  gap: 0;
  flex: 0 0 auto;
}

.newsletter-input {
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.4);
  border-right: none;
  padding: 14px 20px;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--white);
  outline: none;
  width: 260px;
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.6);
}

.newsletter-btn {
  background: var(--white);
  color: var(--forest);
  padding: 14px 24px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.newsletter-btn:hover { background: var(--ivory); }
.newsletter-btn:disabled { opacity: 0.6; cursor: default; }

.newsletter-input-error {
  border-color: #e07070;
  background: rgba(224,112,112,0.15);
}

.newsletter-success {
  text-align: center;
  width: 100%;
}
