/* ============================================================
   TÉTHYS — sobre-mim.css
   Estilos específicos da página Sobre Mim
   ============================================================ */

.about-page {
  background: var(--sand);

  --about-story-columns: minmax(0, 1.5fr) minmax(0, 1.25fr) minmax(0, 1.25fr);
  --about-text-padding-y: var(--section-copy-padding-y);
  --about-story-padding-y: var(--about-text-padding-y);
  --about-story-padding-x: clamp(2.5rem, 6vw, 6rem);
  --about-story-column-gap: clamp(2.5rem, 6vw, 6rem);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 3fr);
  height: clamp(390px, 46vw, 600px);
}

.about-hero-photo {
  grid-column: auto;
}

.about-hero-panel {
  grid-column: auto;
}

.about-hero-photo,
.about-story-photo,
.about-work-photo,
.about-event {
  overflow: hidden;
}

.about-hero-photo img,
.about-story-photo img,
.about-work-photo img,
.about-event img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-hero-photo img {
  object-position: center;
  transform: scaleX(-1);
}

.about-hero-panel {
  background: #805259;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(2.4rem, 5vw, 5rem);
}

.about-hero-inner {
  width: min(100%, 22rem);
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.about-hero-kicker {
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,242,225,0.32);
  margin-bottom: 1.15rem;
}

.about-hero-panel h1 {
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--cream);
  letter-spacing: 0.01em;
  margin-top: auto;
  margin-bottom: auto;
}

.about-quote {
  background: #9b6153;
  color: var(--cream);
  text-align: center;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-quote-mark {
  font-size: clamp(3rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 0.55;
  color: rgba(250,242,225,0.95);
  margin-bottom: 0.75rem;
}

.about-quote blockquote {
  font-family: var(--font-d);
  font-size: var(--section-title-size);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  margin: 0 auto 0.75rem;
  max-width: 56rem;
}

.about-quote p {
  font-family: var(--font-b);
  font-size: clamp(0.68rem, 0.75vw, 0.75rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,242,225,0.55);
}

.about-story {
  display: grid;
  grid-template-columns: var(--about-story-columns);
  background: #9a656f;
  color: var(--cream);
  height: auto;
  overflow: hidden;
}

.about-story-photo {
  grid-column: 1;
}

.about-story-photo,
.about-work-photo {
  position: relative;
  min-height: 0;
}

.about-story-content {
  grid-column: 2 / 4;
}

.about-story-photo img,
.about-work-photo img {
  position: absolute;
  inset: 0;
}

.about-story-photo img {
  object-position: center 28%;
  transform: scale(1.12);
}

.about-story-content {
  padding: 0 var(--about-story-padding-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-kicker {
  grid-column: 1 / -1;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(250,242,225,0.42);
  margin-bottom: clamp(1rem, 1.6vw, 1.5rem);
}

.about-story h2,
.about-work h2,
.about-focus p {
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.about-story h2 {
  grid-column: 1 / -1;
  max-width: none;
  font-size: var(--section-title-size);
  line-height: 1.4;
  margin-bottom: clamp(1.5rem, 2.2vw, 2rem);

}

.about-text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: var(--about-story-column-gap);
}

.about-text-grid p,
.about-work p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.about-work {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: auto;
  background: #dac7ba;
  overflow: hidden;
}

@media (min-width: 901px) {
  .about-story,
  .about-work {
    min-height: clamp(420px, 34vw, 560px);
  }
}

.about-work-text {
  color: #9f6374;
  padding: 0 clamp(2rem, 5vw, 5rem);
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.about-work h2 {
  font-size: var(--section-title-size);
  line-height: 1.4;
  max-width: 30rem;
  margin-bottom: clamp(1.5rem, 2.2vw, 2rem);
}

.about-work p {
  max-width: 30rem;
  margin-bottom: 0.85rem;
}

.about-work p:last-child {
  margin-bottom: 0;
}

.about-work-photo img {
  object-position: 42% 58%;
  transform: scale(1.08);
}

.about-focus {
  background: var(--sand);
  color: var(--cream);
  text-align: center;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-focus p {
  max-width: 86rem;
  margin: 0 auto;
  font-family: var(--font-d);
  font-size: var(--section-title-size);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
}

.about-event {
  position: relative;
  height: clamp(260px, 24vw, 380px);
  border-top: 3px solid var(--cream);
  border-bottom: 3px solid var(--cream);
  background: #6f3a42;
}

.about-event img {
  object-position: center 55%;
  filter: saturate(0.96);
}

.about-event-card {
  position: absolute;
  inset: 0 auto 0 clamp(3.5rem, 8vw, 6.5rem);
  width: clamp(15rem, 22vw, 25rem);
  background: rgba(151,91,82,0.72);
  color: var(--cream);
  padding: clamp(1.75rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-event-card h2 {
  font-family: var(--font-b);
  font-size: clamp(1rem, 1.4vw, 1.45rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.about-event-card p {
  font-size: clamp(0.72rem, 0.85vw, 0.85rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin-bottom: 1.4rem;
}

.about-event-card a {
  align-self: flex-start;
  background: var(--cream);
  color: #8a5560;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.55rem 0.85rem;
  border-radius: 6px;
}


@media (max-width: 900px) {
  .about-hero,
  .about-story,
  .about-work {
    grid-template-columns: 1fr;
  }

  .about-hero {
    height: auto;
  }

  .about-story,
  .about-work {
    height: auto;
  }

  .about-hero-photo {
    height: clamp(360px, 105vw, 560px);
  }

  .about-hero-panel {
    grid-column: auto;
    padding: 2rem;
  }

  .about-hero-photo,
  .about-story-photo,
  .about-story-content {
    grid-column: auto;
  }

  .about-story-photo,
  .about-work-photo {
    height: clamp(330px, 96vw, 520px);
  }

  .about-story-content,
  .about-work-text {
    padding: 0 2rem;
  }

  .about-story-content,
  .about-work-text {
    text-align: left;
    align-items: flex-start;
  }

  .about-story-content {
    display: flex;
    flex-direction: column;
  }

  .about-text-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .about-event-card {
    left: 1.5rem;
  }
}

@media (max-width: 768px) {
  .about-hero-panel h1 {
    font-size: 22px;
    line-height: 1.35;
  }

  .about-quote,
  .about-focus {
    padding: 0 2rem;
  }

  .about-story h2,
  .about-work h2 {
    font-size: clamp(1.25rem, 4.5vw, 1.4rem);
  }

}

@media (max-width: 480px) {
  .about-hero-photo {
    height: clamp(360px, 105vw, 560px);
  }

  .about-story-photo,
  .about-work-photo {
    height: clamp(330px, 96vw, 520px);
  }

  .about-event {
    height: 340px;
  }

  .about-event-card {
    inset: auto 1rem 1rem 1rem;
    width: auto;
    min-height: 210px;
  }

  .footer-col-title {
    font-size: 0.78rem;
    margin-bottom: 0.85rem;
  }

  .footer-links {
    gap: 0.4rem;
  }

  .footer-links a {
    font-size: 1rem;
    line-height: 1.35;
  }

  .about-contact-links a {
    width: min(100%, 18rem);
    justify-content: flex-start;
  }

}

@media (max-width: 360px) {
  .about-footer-grid {
    grid-template-columns: 1fr;
  }
}
