/* =============================================
   ESSENZA — THE FOUNDER
   css/founder.css
   ============================================= */

.founder-page {
  background: var(--color-warm-white);
}

/* =============================================
   HERO
   ============================================= */
#founder-hero {
  padding-top: 72px;
  background: var(--color-cream);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.founder-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 3rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 7rem;
  align-items: center;
}

/* Foto */
.founder-photo-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.founder-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.founder-photo-wrap::before {
  content: '';
  position: absolute;
  top: -18px;
  left: -18px;
  right: 18px;
  bottom: 18px;
  border: 1px solid var(--color-stone);
  z-index: 0;
  pointer-events: none;
}

.founder-photo-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(12%) contrast(1.03);
}

.founder-photo-caption {
  padding-left: 0.2rem;
}

.caption-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-charcoal);
  margin-bottom: 0.2rem;
}

.caption-role {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-taupe);
  margin-bottom: 0.15rem;
}

.caption-brand {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--color-gold);
}

/* Texto hero */
.founder-hero-text {
  animation: fadeUp 1s 0.3s both;
}

.founder-label {
  display: block;
  margin-bottom: 1.8rem;
}

.founder-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--color-charcoal);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.founder-hero-title em {
  font-style: italic;
  color: var(--color-taupe);
}

.founder-hero-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 300;
  color: var(--color-taupe);
  line-height: 1.75;
  max-width: 520px;
}

/* =============================================
   STORY
   ============================================= */
#founder-story {
  padding: 8rem 0;
  background: var(--color-warm-white);
}

.founder-story-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.story-block {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 2rem;
  padding-bottom: 3.5rem;
}

.story-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: 6px;
}

.marker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
}

.marker-line {
  width: 1px;
  flex: 1;
  background: linear-gradient(to bottom, var(--color-stone), transparent);
  margin-top: 6px;
}

.story-content {
  padding-top: 0;
}

.story-text {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--color-charcoal);
  line-height: 2;
}

/* Destaque central */
.story-highlight {
  position: relative;
  padding: 3rem 0 3.5rem 2.5rem;
  margin: 0 0 0 32px;
}

.highlight-border-left {
  position: absolute;
  left: 0;
  top: 3rem;
  bottom: 3.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-gold), var(--color-gold-light));
}

.highlight-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--color-charcoal);
  line-height: 1.35;
  font-style: normal;
}

.highlight-quote em {
  font-style: italic;
  color: var(--color-gold);
}

/* =============================================
   SEÇÃO COLEÇÃO
   ============================================= */
#founder-collection {
  padding: 8rem 0;
  background: var(--color-cream);
  overflow: hidden;
}

.founder-collection-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 7rem;
  align-items: center;
}

.collection-image {
  position: relative;
  overflow: hidden;
}

.collection-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s ease;
}

.collection-image:hover img {
  transform: scale(1.03);
}

.collection-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(44, 37, 32, 0.7) 0%, transparent 100%);
}

.overlay-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-cream);
  letter-spacing: 0.05em;
}

.overlay-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(232, 224, 212, 0.7);
  margin-top: 0.3rem;
}

.collection-text .label {
  display: block;
  margin-bottom: 1.5rem;
}

.collection-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--color-charcoal);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.collection-text h2 em {
  font-style: italic;
  color: var(--color-taupe);
}

.collection-tagline {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--color-gold);
  margin-bottom: 2rem;
}

.collection-text p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--color-taupe);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.founder-cta {
  display: inline-block;
  margin-top: 1rem;
}

/* =============================================
   MANIFESTO
   ============================================= */
#founder-manifesto {
  padding: 0;
  background: var(--color-espresso);
  overflow: hidden;
}

.founder-manifesto-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 70vh;
}

.manifesto-content {
  padding: 7rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.manifesto-label {
  color: var(--color-sand);
  display: block;
  margin-bottom: 2.5rem;
}

.manifesto-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: var(--color-cream);
  line-height: 1.5;
  font-style: normal;
  margin-bottom: 2.5rem;
}

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

.manifesto-divider {
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  margin-bottom: 2rem;
}

.manifesto-body {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(232, 224, 212, 0.6);
  margin-bottom: 3rem;
  line-height: 1.6;
}

/* Assinatura */
.manifesto-signature {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.signature-photo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(176, 144, 96, 0.4);
  flex-shrink: 0;
}

.signature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%);
}

.sig-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-cream);
  margin-bottom: 0.15rem;
}

.sig-role {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201, 185, 154, 0.6);
  margin-bottom: 0.1rem;
}

.sig-brand {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--color-gold);
}

/* Imagem do manifesto */
.manifesto-image {
  overflow: hidden;
  position: relative;
}

.manifesto-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.75) contrast(1.05);
  transition: transform 0.8s ease;
}

.manifesto-image:hover img {
  transform: scale(1.03);
}

/* =============================================
   CTA FINAL
   ============================================= */
#founder-cta-section {
  padding: 8rem 0;
  background: var(--color-mist);
  text-align: center;
}

.founder-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
}

.founder-cta-inner .label {
  display: block;
  margin-bottom: 1.5rem;
}

.founder-cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
}

.founder-cta-inner p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-taupe);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Link ativo na nav */
.nav-active {
  color: var(--color-charcoal) !important;
  opacity: 1 !important;
}

.nav-active::after {
  width: 100% !important;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1000px) {
  .founder-hero-inner {
    gap: 4rem;
    padding: 5rem 2rem;
  }
  .founder-collection-inner {
    gap: 4rem;
    padding: 0 2rem;
  }
  .manifesto-content {
    padding: 5rem 3rem;
  }
}

@media (max-width: 820px) {
  #founder-hero {
    min-height: auto;
  }

  .founder-hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 2rem 5rem;
    text-align: center;
  }

  .founder-photo-col {
    align-items: center;
  }

  .founder-photo-wrap {
    max-width: 280px;
  }

  .founder-photo-wrap::before {
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
  }

  .founder-hero-lead {
    margin: 0 auto;
  }

  .founder-collection-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .collection-image img {
    height: 400px;
  }

  .founder-manifesto-inner {
    grid-template-columns: 1fr;
  }

  .manifesto-image {
    height: 300px;
    order: -1;
  }

  .manifesto-content {
    padding: 4rem 2rem;
  }

  .founder-story-inner {
    padding: 0 1.5rem;
  }
}

@media (max-width: 580px) {
  .founder-hero-inner {
    padding: 3rem 1.5rem 4rem;
  }

  .story-block {
    grid-template-columns: 20px 1fr;
    gap: 1.2rem;
  }

  .story-highlight {
    margin-left: 20px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn-primary,
  .cta-actions .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1.5rem;
  }
}
