*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Urbanist', sans-serif;
  font-weight: 400;
  color: #1a1a1a;
  background-color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

footer a { color: #555; text-decoration: none; }

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2.5rem;
  border-bottom: 1px solid #d0d0d0;
}

.header__title {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.header__email {
  font-size: 0.875rem;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 400;
}

.header__email:hover {
  text-decoration: underline;
}

/* Main Content */
.content {
  display: flex;
  flex: 1;
  border-bottom: 1px solid #d0d0d0;
}

.content__text {
  flex: 0 0 35%;
  max-width: 35%;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #d0d0d0;
}

.content__body {
  flex: 1;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content__body p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.content__quote {
  border-top: 1px solid #d0d0d0;
  padding: 2rem;
}

.content__quote p {
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.content__quote cite {
  font-size: 0.875rem;
  font-style: normal;
}

.content__image {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.content__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Footer */
.footer {
  padding: 1.25rem 2.5rem;
  text-align: right;
}

.footer p {
  font-size: 0.75rem;
  color: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem 1.5rem;
    text-align: center;
  }

  .header__title {
    font-size: 1.25rem;
  }

  .content {
    flex-direction: column;
  }

  .content__text {
    flex: none;
    max-width: 100%;
    border-right: none;
    border-bottom: 1px solid #d0d0d0;
    order: 2;
  }

  .content__image {
    order: 1;
  }

  .content__body {
    padding: 1.5rem;
  }

  .content__image {
    padding: 0;
  }

  .content__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .content__quote {
    padding: 1.5rem;
  }

  .footer {
    padding: 1rem 1.5rem;
    text-align: center;
  }
}
