/* ============================================================
   Sanaazluxury — Founder's Note (editorial portrait)
   ============================================================ */

#founder.sz-founder,
.sz-founder.sz-band-light {
  background: linear-gradient(180deg, #ffffff 0%, #f6f3ee 50%, #fcf9f5 100%) !important;
}

.sz-founder {
  --fn-bg: #fcf9f5;
  --fn-surface: #ffffff;
  --fn-ink: #121212;
  --fn-muted: #6b6864;
  --fn-gold: #c9a962;
  --fn-gold-light: #a88b3d;
  --fn-ease: cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  padding: clamp(5rem, 10vw, 7.5rem) 0;
  background: radial-gradient(ellipse 70% 55% at 15% 0%, rgba(201, 169, 98, 0.1) 0%, transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f6f3ee 48%, var(--fn-bg) 100%);
  color: var(--fn-ink);
  overflow: hidden;
}

.sz-founder--about {
  padding-top: clamp(4rem, 8vw, 6rem);
}

/* Ambient */
.sz-founder-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.sz-founder-grain {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.sz-founder-glow {
  position: absolute;
  width: 45%;
  height: 65%;
  border-radius: 50%;
  filter: blur(90px);
}

.sz-founder-glow--left {
  top: 15%;
  left: -12%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.14) 0%, transparent 70%);
}

.sz-founder-glow--right {
  bottom: 0;
  right: -8%;
  background: radial-gradient(circle, rgba(244, 240, 232, 0.95) 0%, transparent 65%);
}

.sz-founder-watermark {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--sz-font-display, "Cormorant Garamond", serif);
  font-size: clamp(6rem, 14vw, 11rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 98, 0.14);
  user-select: none;
  white-space: nowrap;
}

/* Stage layout */
.sz-founder-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

/* Portrait column */
.sz-founder-visual {
  margin: 0;
  position: relative;
}

.sz-founder-portrait {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.sz-founder-portrait-ring {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(201, 169, 98, 0.35);
  border-radius: 2px;
  pointer-events: none;
  animation: sz-founder-ring-pulse 6s var(--fn-ease) infinite;
}

.sz-founder-portrait-ring--delay {
  inset: -28px;
  border-color: rgba(201, 169, 98, 0.12);
  animation-delay: -3s;
}

@keyframes sz-founder-ring-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.01); }
}

.sz-founder-portrait-inner {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--fn-surface);
  box-shadow:
    0 0 0 1px rgba(201, 169, 98, 0.28),
    0 24px 56px rgba(18, 18, 18, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.sz-founder-portrait-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(18, 18, 18, 0.06) 82%,
    rgba(18, 18, 18, 0.28) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.sz-founder-portrait-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(201, 169, 98, 0.12) 0%, transparent 50%),
    linear-gradient(160deg, #f6f3ee 0%, #ebe6de 100%);
  z-index: 0;
}

.sz-founder-monogram {
  font-family: var(--sz-font-display, "Cormorant Garamond", serif);
  font-size: clamp(4rem, 12vw, 6.5rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(201, 169, 98, 0.45);
  line-height: 1;
}

.sz-founder-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0;
  transition: transform 1.2s var(--fn-ease), filter 0.6s ease, opacity 0.55s var(--fn-ease);
}

.sz-founder-portrait-inner.is-photo-loaded .sz-founder-photo {
  opacity: 1;
}

.sz-founder-portrait-inner.is-photo-loaded .sz-founder-portrait-fallback {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--fn-ease), visibility 0.5s;
}

.sz-founder-portrait-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 3;
  padding: 0.35rem 0.75rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--fn-gold);
}

.sz-founder-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-top: 1.25rem;
  text-align: center;
}

.sz-founder-caption-name {
  font-family: var(--sz-font-display, "Cormorant Garamond", serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--fn-ink);
}

.sz-founder-caption-role {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fn-gold);
}

/* Letter column */
.sz-founder-letter {
  position: relative;
  padding-left: clamp(0rem, 2vw, 1.5rem);
}

.sz-founder-letter::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(201, 169, 98, 0.45) 20%,
    rgba(201, 169, 98, 0.45) 80%,
    transparent
  );
}

.sz-founder-kicker {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fn-gold);
  margin-bottom: 1.25rem;
}

.sz-founder-title {
  font-family: var(--sz-font-display, "Cormorant Garamond", serif);
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-weight: 300;
  line-height: 1.12;
  margin: 0 0 1.75rem;
  max-width: 18ch;
  color: var(--fn-ink);
}

.sz-founder-title em {
  font-style: italic;
  color: var(--fn-gold-light);
}

.sz-founder-body p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--fn-muted);
  margin: 0 0 1.15rem;
  max-width: 52ch;
}

.sz-founder-lead {
  font-size: 1.08rem !important;
  color: #4a4744 !important;
}

.sz-founder-lead::first-letter {
  float: left;
  font-family: var(--sz-font-display, "Cormorant Garamond", serif);
  font-size: 3.75rem;
  line-height: 0.85;
  padding: 0.08em 0.12em 0 0;
  color: var(--fn-gold-light);
  font-weight: 400;
}

.sz-founder-pull {
  position: relative;
  margin: 1.75rem 0 0;
  padding: 1.25rem 0 1.25rem 1.5rem;
  border-left: 2px solid var(--fn-gold);
  font-family: var(--sz-font-display, "Cormorant Garamond", serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-style: italic;
  line-height: 1.55;
  color: rgba(246, 243, 238, 0.88);
  max-width: 48ch;
}

.sz-founder-pull-mark {
  position: absolute;
  left: -0.15rem;
  top: -0.35rem;
  font-size: 3rem;
  line-height: 1;
  color: rgba(201, 169, 98, 0.35);
  font-style: normal;
}

.sz-founder-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(201, 169, 98, 0.28);
}

.sz-founder-signature-name {
  display: block;
  font-family: var(--sz-font-display, "Cormorant Garamond", serif);
  font-size: 1.65rem;
  font-style: italic;
  color: var(--fn-gold-light);
}

.sz-founder-signature-line {
  display: block;
  width: 120px;
  height: 1px;
  margin-top: 0.5rem;
  background: linear-gradient(90deg, var(--fn-gold), transparent);
}

.sz-founder-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.sz-founder-ig {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--fn-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.sz-founder-ig:hover {
  color: var(--fn-gold-light);
}

.sz-founder-visual:hover .sz-founder-photo {
  transform: scale(1.04);
  filter: saturate(1.05);
}

/* Responsive */
@media (max-width: 991px) {
  .sz-founder-stage {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .sz-founder-letter {
    padding-left: 0;
  }

  .sz-founder-letter::before {
    display: none;
  }

  .sz-founder-title {
    max-width: none;
  }

  .sz-founder-watermark {
    display: none;
  }

  .sz-founder-portrait {
    max-width: 340px;
  }
}

@media (max-width: 575px) {
  .sz-founder-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sz-founder-portrait-ring {
    animation: none;
  }

  .sz-founder-visual:hover .sz-founder-photo {
    transform: none;
  }
}
