/* Sojey About Page */
:root {
  --sojey-about-text: #205451;
  --sojey-about-text-soft: rgba(32, 84, 81, 0.92);
  --sojey-about-line: rgba(32, 84, 81, 0.10);
  --sojey-about-line-strong: rgba(32, 84, 81, 0.16);
  --sojey-about-teal: #205451;
  --sojey-about-mint: #6AD3BC;
  --sojey-about-sage: #99C6B9;
  --sojey-about-coral: #F55A29;
  --sojey-about-coral-soft: #FF8A66;
  --sojey-about-shadow: 0 18px 42px rgba(32, 84, 81, 0.08);
  --sojey-about-radius-xl: 36px;
  --sojey-about-radius-lg: 28px;
  --sojey-about-radius-md: 22px;
  --sojey-about-max-width: 1140px;
}

.sojey-about-page {
  background:
    radial-gradient(circle at 0% 14%, rgba(255, 138, 102, 0.10), transparent 24%),
    radial-gradient(circle at 100% 62%, rgba(153, 198, 185, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfdfc 42%, #ffffff 100%);
  color: var(--sojey-about-text);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.sojey-about-page * {
  box-sizing: border-box;
}

.sojey-about-container {
  width: min(100% - 40px, var(--sojey-about-max-width));
  margin-inline: auto;
}

.sojey-about-page section {
  position: relative;
  padding-block: clamp(42px, 6vw, 84px);
}

.sojey-about-page h1,
.sojey-about-page h2,
.sojey-about-page h3 {
  margin: 0;
  color: var(--sojey-about-text);
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 0.98;
}

.sojey-about-page p {
  margin: 0;
  color: var(--sojey-about-text-soft);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.03rem;
  font-weight: 500;
  line-height: 1.8;
}

.sojey-about-stack {
  display: grid;
  gap: 26px;
}

.sojey-about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sojey-about-coral);
}

.sojey-about-heading {
  display: grid;
  gap: 12px;
}

.sojey-about-heading h2 {
  font-size: clamp(2.55rem, 4.9vw, 4.15rem);
}

.sojey-about-heading h2::after,
.sojey-about-heading--center h2::after,
.sojey-about-hero__meta::before {
  content: '';
  display: block;
  width: 56px;
  height: 2px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--sojey-about-coral) 0%, var(--sojey-about-coral-soft) 100%);
}

.sojey-about-heading--center {
  justify-items: center;
  text-align: center;
}

.sojey-about-hero {
  padding-top: clamp(36px, 4.5vw, 56px);
  padding-bottom: clamp(18px, 2vw, 26px);
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.10) 42%, rgba(255,255,255,0.00) 100%),
    url('https://alas.sojeyfernandez.com/wp-content/uploads/2026/08/Background-light.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.sojey-about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(26px, 3.6vw, 52px);
  align-items: center;
}

.sojey-about-hero__content {
  display: grid;
  gap: 18px;
  align-content: center;
}

.sojey-about-hero__content h1 {
  font-size: clamp(3.45rem, 7vw, 5.9rem);
}

.sojey-about-hero__lead {
  max-width: 430px;
}

.sojey-about-hero__meta {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(32, 84, 81, 0.94);
}

.sojey-about-hero__meta::before {
  margin-top: 0;
  margin-bottom: 12px;
}

.sojey-about-hero__visual {
  display: flex;
  justify-content: center;
}

.sojey-about-hero__photo-wrap,
.sojey-about-story__portrait-card,
.sojey-about-method__poster {
  width: 100%;
  border-radius: var(--sojey-about-radius-xl);
  padding: 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255,255,255,0.95);
  box-shadow: var(--sojey-about-shadow);
}

.sojey-about-hero__photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--sojey-about-radius-xl) - 12px);
}

.sojey-about-story {
  padding-top: clamp(18px, 2vw, 26px);
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(248,252,251,0.98) 100%);
}

.sojey-about-story__grid,
.sojey-about-method__grid,
.sojey-about-bio__grid {
  display: grid;
  gap: clamp(26px, 4vw, 60px);
  align-items: center;
}

.sojey-about-story__grid {
  grid-template-columns: minmax(380px, 0.98fr) minmax(0, 1.02fr);
  grid-template-areas: 'visual content';
}

.sojey-about-story__visual {
  grid-area: visual;
}

.sojey-about-story__content {
  grid-area: content;
}

.sojey-about-method__grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.96fr);
  grid-template-areas: 'content visual';
}

.sojey-about-method__content {
  grid-area: content;
}

.sojey-about-method__visual {
  grid-area: visual;
}

.sojey-about-bio__grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.84fr);
  align-items: start;
}

.sojey-about-story__content,
.sojey-about-method__content,
.sojey-about-bio__main {
  display: grid;
  gap: 22px;
}

.sojey-about-story__body,
.sojey-about-method__copy,
.sojey-about-bio__copy,
.sojey-about-bio__more-content {
  display: grid;
  gap: 16px;
}

.sojey-about-story__body p,
.sojey-about-method__copy p,
.sojey-about-method__verse,
.sojey-about-method__signature {
  font-size: 1rem;
}

.sojey-about-story__portrait-card {
  max-width: 520px;
  margin-right: auto;
}

.sojey-about-story__portrait-card img,
.sojey-about-method__poster img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: calc(var(--sojey-about-radius-xl) - 12px);
  object-fit: cover;
}

.sojey-about-story__portrait-card img {
  aspect-ratio: 0.88;
  object-position: center top;
}

.sojey-about-method {
  background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.98) 62%, rgba(247, 252, 251, 0.92) 100%);
}

.sojey-about-method__poster {
  max-width: 560px;
  margin-left: auto;
}

.sojey-about-method__poster img {
  aspect-ratio: 0.86;
  object-position: center 18%;
}

.sojey-about-method__highlight {
  padding: 18px 20px;
  border-radius: 18px;
  background: #ffffff;
  border-left: 3px solid var(--sojey-about-coral);
  box-shadow: 0 12px 24px rgba(32, 84, 81, 0.06);
}

.sojey-about-method__highlight strong {
  font-size: 0.99rem;
  line-height: 1.7;
}

.sojey-about-method__verse,
.sojey-about-method__signature {
  color: rgba(32, 84, 81, 0.94);
}

.sojey-about-bio {
  padding-top: clamp(36px, 5vw, 56px);
}

.sojey-about-bio__copy p strong,
.sojey-about-bio__more-content p strong,
.sojey-about-info-card p strong {
  color: var(--sojey-about-text);
}

.sojey-about-bio__more {
  display: grid;
  gap: 16px;
}

.sojey-about-bio__more--desktop {
  display: block;
}

.sojey-about-bio__more--mobile {
  display: none;
}

.sojey-about-bio__more summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  list-style: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 11px 18px;
  background: rgba(106, 211, 188, 0.14);
  color: var(--sojey-about-teal);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sojey-about-bio__more summary::-webkit-details-marker {
  display: none;
}

.sojey-about-bio__more summary::after {
  content: '+';
  font-size: 1rem;
  line-height: 1;
}

.sojey-about-bio__more[open] summary::after {
  content: '−';
}

.sojey-about-bio__tagline {
  color: var(--sojey-about-text);
}

.sojey-about-bio__cards {
  display: grid;
  gap: 0;
  padding: 18px 22px;
  border-radius: 30px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(32, 84, 81, 0.08);
  box-shadow: 0 20px 46px rgba(32, 84, 81, 0.08);
}

.sojey-about-info-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(32, 84, 81, 0.08);
}

.sojey-about-info-card:last-child {
  border-bottom: 0;
}

.sojey-about-info-card__icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--sojey-about-teal);
  margin-top: 2px;
}

.sojey-about-info-card__icon svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.sojey-about-info-card__icon--briefcase {
  background: rgba(106, 211, 188, 0.20);
  color: var(--sojey-about-teal);
}

.sojey-about-info-card__icon--heart {
  background: rgba(255, 138, 102, 0.18);
  color: var(--sojey-about-coral);
}

.sojey-about-info-card__icon--wing {
  background: rgba(153, 198, 185, 0.22);
  color: var(--sojey-about-teal);
}

.sojey-about-info-card__icon--mic {
  background: rgba(106, 211, 188, 0.22);
  color: var(--sojey-about-teal);
}

.sojey-about-info-card__icon--globe {
  background: rgba(153, 198, 185, 0.22);
  color: var(--sojey-about-teal);
}

.sojey-about-info-card h3 {
  font-size: 1.18rem;
  line-height: 1.08;
  margin-bottom: 6px;
}

.sojey-about-info-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.sojey-about-featured {
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(68px, 8vw, 94px);
}

.sojey-about-featured__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.sojey-about-featured__chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--sojey-about-line);
  color: var(--sojey-about-text);
  font-size: 0.78rem;
  font-weight: 600;
}

.sojey-about-featured__action {
  display: flex;
  justify-content: center;
}

.sojey-about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sojey-about-coral-soft) 0%, var(--sojey-about-coral) 100%);
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  .sojey-about-page section {
    padding-block: 42px;
  }

  .sojey-about-hero__grid,
  .sojey-about-bio__grid {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  .sojey-about-story__grid,
  .sojey-about-method__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .sojey-about-story__content,
  .sojey-about-method__content {
    order: 1;
    width: 100%;
    text-align: center;
    justify-items: center;
  }

  .sojey-about-story__visual,
  .sojey-about-method__visual {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0;
  }

  .sojey-about-hero__content,
  .sojey-about-bio__main,
  .sojey-about-heading {
    text-align: center;
    justify-items: center;
  }

  .sojey-about-hero__lead,
  .sojey-about-story__body,
  .sojey-about-method__copy,
  .sojey-about-bio__copy,
  .sojey-about-bio__more-content {
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
  }

  .sojey-about-story__body,
  .sojey-about-method__copy {
    gap: 14px;
  }

  .sojey-about-hero__meta {
    align-items: center;
  }

  .sojey-about-heading h2::after,
  .sojey-about-heading--center h2::after,
  .sojey-about-hero__meta::before {
    margin-inline: auto;
  }

  .sojey-about-story__portrait-card,
  .sojey-about-method__poster,
  .sojey-about-hero__photo-wrap {
    width: 100%;
    max-width: 620px;
    margin-inline: auto;
  }

  .sojey-about-bio__cards {
    max-width: 760px;
    margin-inline: auto;
  }

  .sojey-about-bio__more--desktop {
    display: none;
  }

  .sojey-about-bio__more--mobile {
    display: grid;
  }
}

@media (max-width: 640px) {
  .sojey-about-container {
    width: min(100% - 24px, var(--sojey-about-max-width));
  }

  .sojey-about-page section {
    padding-block: 36px;
  }

  .sojey-about-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  .sojey-about-story__grid,
  .sojey-about-method__grid {
    gap: 18px;
  }

  .sojey-about-story__body p,
  .sojey-about-method__copy p {
    font-size: 0.98rem;
    line-height: 1.74;
  }

  .sojey-about-hero__photo-wrap,
  .sojey-about-story__portrait-card,
  .sojey-about-method__poster {
    padding: 10px;
    border-radius: 24px;
  }

  .sojey-about-story__portrait-card,
  .sojey-about-method__poster {
    max-width: min(100%, 470px);
  }

  .sojey-about-hero__photo,
  .sojey-about-story__portrait-card img,
  .sojey-about-method__poster img {
    border-radius: 16px;
  }

  .sojey-about-info-card {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .sojey-about-info-card__icon {
    width: 38px;
    height: 38px;
  }

  .sojey-about-bio__cards {
    padding: 14px 16px;
    border-radius: 24px;
  }

  .sojey-about-featured__chips span {
    width: calc(50% - 6px);
    min-height: 40px;
    text-align: center;
  }
}

/* Modal for Solicitar Conferencia */
.sojey-about-modal[hidden] {
  display: none !important;
}
.sojey-about-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  padding: 24px;
}
.sojey-about-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(32, 84, 81, 0.72);
  backdrop-filter: blur(8px);
}
.sojey-about-modal__dialog {
  position: relative;
  width: min(100%, 640px);
  max-height: min(90vh, 760px);
  overflow: auto;
  background: #fff;
  color: var(--sojey-about-text);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 30px 90px rgba(32, 84, 81, 0.24);
  border-radius: var(--sojey-about-radius-lg);
}
.sojey-about-modal__dialog h2 {
  margin: 0 44px 20px 0;
  color: var(--sojey-about-teal);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.05;
}
.sojey-about-modal__close {
  position: absolute;
  right: 18px;
  top: 16px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--sojey-about-teal);
  color: white;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s ease, transform .2s ease;
}
.sojey-about-modal__close:hover {
  background: var(--sojey-about-coral);
  transform: translateY(-1px);
}
.sojey-about-modal-open {
  overflow: hidden;
}
@media (max-width: 640px) {
  .sojey-about-modal {
    padding: 14px;
    align-items: start;
  }
  .sojey-about-modal__dialog {
    max-height: calc(100vh - 28px);
    padding: 24px 20px;
  }
}

/* Fluent Form styling inside the modal */
.sojey-about-modal__form .ff-el-group,
.sojey-about-modal__form label {
  color: var(--sojey-about-text);
  font-size: 0.95rem;
}
.sojey-about-modal__form input[type="text"],
.sojey-about-modal__form input[type="email"],
.sojey-about-modal__form textarea,
.sojey-about-modal__form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--sojey-about-line-strong);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fbfdfc;
  transition: border-color 0.2s;
}
.sojey-about-modal__form input:focus,
.sojey-about-modal__form textarea:focus,
.sojey-about-modal__form select:focus {
  outline: none;
  border-color: var(--sojey-about-mint);
}
.sojey-about-modal__form .ff-btn-submit,
.sojey-about-modal__form button[type="submit"] {
  width: 100% !important;
  min-height: 48px;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--sojey-about-coral-soft) 0%, var(--sojey-about-coral) 100%) !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  font-size: 0.76rem !important;
  font-weight: 800 !important;
  box-shadow: 0 10px 20px rgba(245, 90, 41, 0.16) !important;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.sojey-about-modal__form .ff-btn-submit:hover,
.sojey-about-modal__form button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(245, 90, 41, 0.24) !important;
}

/* Ensure Fluent Forms Flatpickr datepicker calendar displays above the modal dialogues */
.flatpickr-calendar {
  z-index: 999999999 !important;
}
