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

html {
  -webkit-text-size-adjust: 100%;
}

.profile-landing {
  margin: 0;
  background: #faf8f4;
  color: #1c1a17;
  font-family: "Source Sans 3", system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
}

.site-header .nav {
  position: sticky;
  top: 16px;
  z-index: 100;
  padding: 0 16px;
}
.site-header .nav__container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .nav__logo {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1c1a17;
  text-decoration: none;
}
.site-header .nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
@media (min-width: 700px) {
  .site-header .nav__toggle {
    display: none;
  }
}
.site-header .nav__toggle-bar {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #1c1a17;
  display: block;
}
.site-header .nav__close {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  font-size: 28px;
  line-height: 1;
}
.site-header .nav__close--open {
  display: block;
}
@media (min-width: 700px) {
  .site-header .nav__close {
    display: none !important;
  }
}
.site-header .nav__list {
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  position: absolute;
  top: calc(100% + 8px);
  left: 16px;
  right: 16px;
  background: #fff;
  border: 1px solid #e7e2d8;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(28, 26, 23, 0.1);
}
.site-header .nav__list--open {
  display: flex;
}
@media (min-width: 700px) {
  .site-header .nav__list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    position: static;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
}
.site-header .nav__link {
  padding: 8px 14px;
  border-radius: 20px;
  color: #6b6459;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
}
.site-header .nav__link:hover {
  background: rgba(54, 105, 255, 0.1);
  color: #3669ff;
}
.site-header .nav__link--cta {
  background: #3669ff;
  color: #fff;
}
.site-header .nav__link--cta:hover {
  background: #2858e6;
  color: #fff;
}

.profile-landing .hero {
  padding: 64px 20px 40px;
}
.profile-landing .hero__container {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
@media (min-width: 700px) {
  .profile-landing .hero__container {
    flex-direction: row;
    text-align: left;
    gap: 48px;
  }
}
.profile-landing .hero__media {
  flex-shrink: 0;
}
.profile-landing .hero__image {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 6px 20px rgba(28, 26, 23, 0.12);
}
.profile-landing .hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media (min-width: 700px) {
  .profile-landing .hero__content {
    align-items: flex-start;
  }
}
.profile-landing .hero__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3669ff;
  font-weight: 600;
}
.profile-landing .hero__name {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.1rem;
  font-weight: 600;
  color: #1c1a17;
}
.profile-landing .hero__tagline {
  margin: 0 0 8px;
  color: #6b6459;
  max-width: 46ch;
}
.profile-landing .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
@media (min-width: 700px) {
  .profile-landing .hero__actions {
    justify-content: flex-start;
  }
}
.profile-landing .hero__button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
}
.profile-landing .hero__button--primary {
  background: #3669ff;
  color: #fff;
}
.profile-landing .hero__button--primary:hover {
  background: rgb(23.4, 82.1641791045, 255);
}
.profile-landing .hero__button--ghost {
  border-color: #e7e2d8;
  color: #1c1a17;
}
.profile-landing .hero__button--ghost:hover {
  border-color: #3669ff;
  color: #3669ff;
}

.profile-landing .social {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  gap: 10px;
  justify-content: center;
}
@media (min-width: 700px) {
  .profile-landing .social--hero {
    justify-content: flex-start;
  }
}
.profile-landing .social--footer {
  margin-top: 20px;
}
.profile-landing .social__link {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e7e2d8;
  color: #6b6459;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.profile-landing .social__link:hover {
  background: #3669ff;
  border-color: #3669ff;
  color: #fff;
}
.profile-landing .social__icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.profile-landing .about-me {
  padding: 32px 20px;
}
.profile-landing .about-me__container {
  max-width: 1080px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e7e2d8;
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(28, 26, 23, 0.04);
}
@media (min-width: 700px) {
  .profile-landing .about-me__container {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 40px;
    gap: 40px;
  }
}
.profile-landing .about-me__media {
  flex-shrink: 0;
  position: relative;
}
.profile-landing .about-me__media::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px solid #3669ff;
  border-radius: 50%;
  opacity: 0.35;
}
.profile-landing .about-me__image {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
.profile-landing .about-me__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
@media (min-width: 700px) {
  .profile-landing .about-me__content {
    align-items: flex-start;
  }
}
.profile-landing .about-me__eyebrow {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3669ff;
  font-weight: 600;
}
.profile-landing .about-me__description {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #1c1a17;
  max-width: 46ch;
}
.profile-landing .about-me__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
@media (min-width: 700px) {
  .profile-landing .about-me__badges {
    justify-content: flex-start;
  }
}
.profile-landing .about-me__badge {
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
}

.profile-landing .skills {
  padding: 24px 20px 40px;
}
.profile-landing .skills__container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.profile-landing .skills__eyebrow {
  margin: 0 0 6px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3669ff;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 700px) {
  .profile-landing .skills__eyebrow {
    text-align: left;
  }
}
.profile-landing .skills__heading {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #1c1a17;
  margin: 0 0 24px;
  text-align: center;
}
@media (min-width: 700px) {
  .profile-landing .skills__heading {
    text-align: left;
  }
}
.profile-landing .skills__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
@media (min-width: 700px) {
  .profile-landing .skills__list {
    justify-content: flex-start;
  }
}
.profile-landing .skills__item {
  background: #fff;
  border: 1px solid #e7e2d8;
  border-radius: 12px;
  padding: 16px 20px;
  flex: 1 1 260px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.profile-landing .skills__item:hover {
  box-shadow: 0 6px 18px rgba(28, 26, 23, 0.08);
  transform: translateY(-2px);
}
.profile-landing .skills__item-title {
  font-weight: 700;
  color: #1c1a17;
  font-size: 0.95rem;
}
.profile-landing .skills__item-desc {
  margin: 0;
  color: #6b6459;
  font-size: 0.86rem;
  line-height: 1.55;
}

.profile-landing .services {
  padding: 24px 20px 64px;
  background: #fff;
}
.profile-landing .services__container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.profile-landing .services__eyebrow {
  margin: 0 0 6px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3669ff;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 700px) {
  .profile-landing .services__eyebrow {
    text-align: left;
  }
}
.profile-landing .services__heading {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: #1c1a17;
  margin: 0 0 24px;
  text-align: center;
}
@media (min-width: 700px) {
  .profile-landing .services__heading {
    text-align: left;
  }
}
.profile-landing .services__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
@media (min-width: 700px) {
  .profile-landing .services__list {
    justify-content: flex-start;
  }
}
.profile-landing .services__card {
  border: 1px solid #e7e2d8;
  border-radius: 14px;
  padding: 24px;
  flex: 1 1 240px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.profile-landing .services__card:hover {
  box-shadow: 0 8px 22px rgba(28, 26, 23, 0.08);
  transform: translateY(-3px);
}
.profile-landing .services__icon {
  font-size: 1.6rem;
}
.profile-landing .services__card-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #1c1a17;
}
.profile-landing .services__card-desc {
  margin: 0;
  font-size: 0.88rem;
  color: #6b6459;
  line-height: 1.55;
}

.profile-landing .contact {
  padding: 56px 20px 72px;
}
.profile-landing .contact__container {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(28, 26, 23, 0.08);
}
@media (min-width: 700px) {
  .profile-landing .contact__container {
    flex-direction: row;
  }
}
.profile-landing .contact__intro {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 40px 28px;
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  color: #faf8f4;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 700px) {
  .profile-landing .contact__intro {
    flex: 0 0 38%;
    align-items: flex-start;
    padding: 48px 40px;
    text-align: left;
  }
}
.profile-landing .contact__intro::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  top: -80px;
  right: -80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.profile-landing .contact__intro .social__icon {
  color: #faf8f4;
}
.profile-landing .contact__eyebrow {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.profile-landing .contact__heading {
  position: relative;
  margin: 0;
  color: #faf8f4;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
}
.profile-landing .contact__desc {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}
.profile-landing .contact__email {
  position: relative;
  margin-top: 6px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #faf8f4;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}
.profile-landing .contact__email:hover {
  border-color: #faf8f4;
}
.profile-landing .contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 24px;
  background: #faf8f4;
}
@media (min-width: 700px) {
  .profile-landing .contact__form {
    flex: 1;
    padding: 48px 40px;
  }
}
.profile-landing .contact__row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 700px) {
  .profile-landing .contact__row {
    flex-direction: row;
  }
}
.profile-landing .contact__field {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.profile-landing .contact__label {
  color: #1c1a17;
  font-size: 0.8rem;
  font-weight: 600;
}
.profile-landing .contact__input, .profile-landing .contact__textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #e7e2d8;
  border-radius: 10px;
  background: #fff;
  color: #1c1a17;
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.profile-landing .contact__input::-moz-placeholder, .profile-landing .contact__textarea::-moz-placeholder {
  color: #6b6459;
  opacity: 0.7;
}
.profile-landing .contact__input::placeholder, .profile-landing .contact__textarea::placeholder {
  color: #6b6459;
  opacity: 0.7;
}
.profile-landing .contact__input:focus, .profile-landing .contact__textarea:focus {
  outline: none;
  border-color: #2858e6;
  background: #faf8f4;
  box-shadow: 0 0 0 3px rgba(40, 88, 230, 0.12);
}
.profile-landing .contact__textarea {
  min-height: 130px;
  resize: vertical;
}
.profile-landing .contact__submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 12px 26px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  color: #faf8f4;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.profile-landing .contact__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(40, 88, 230, 0.3);
}
.profile-landing .contact__submit-icon {
  font-size: 0.8rem;
  transition: transform 0.15s ease;
}
.profile-landing .contact__submit:hover .profile-landing .contact__submit-icon {
  transform: translateX(3px);
}