@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&display=swap");

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

body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, sans-serif;
  color: #1b1b1f;
  background: #f7f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

a {
  color: #7a1f2a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.hero {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: 4rem 6vw;
  background: #f1e8e1;
}

.hero__content {
  max-width: 560px;
}

.hero__content h1 {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  font-weight: 600;
  color: #7a1f2a;
}

.section {
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 6vw;
  align-items: start;
}

.about {
  background: #fff;
}

.section__content {
  max-width: 720px;
}

.about .section__media img {
  max-width: 360px;
  margin: 0 auto;
}

.experience {
  background: #f7f4f1;
}

.performance {
  background: #fff;
}

.experience__list {
  display: grid;
  gap: 1.75rem;
}

.experience__item {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(27, 27, 31, 0.08);
}

.experience__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.experience__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 90px;
}

.experience__header h3 {
  margin-bottom: 0.35rem;
}

.experience__logo img {
  height: 52px;
  width: auto;
  padding: 0.35rem;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(27, 27, 31, 0.08);
  object-fit: contain;
}

.experience__link {
  display: inline-block;
  font-weight: 600;
}

.experience__item ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
}

@media (min-width: 700px) {
  .experience__item ul {
    margin-left: calc(90px + 1rem);
  }
}

.experience__meta {
  margin: 0 0 0.25rem;
  color: #5b4c45;
  font-weight: 600;
}

.experience .section__content {
  max-width: 100%;
}

.reviews .section__content {
  max-width: 100%;
}

.reviews .elfsight-app-3cb01021-8d60-4dec-bb97-09d02b714777 {
  width: 100%;
  min-height: 420px;
}

.reviews {
  background: #f7f4f1;
}

.contact {
  background: #fff;
}

.contact__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer {
  text-align: center;
  padding: 2rem 6vw 3rem;
  background: #f1e8e1;
  color: #5b4c45;
}

@media (min-width: 900px) {
  .hero,
  .section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews {
    grid-template-columns: minmax(0, 1fr);
  }

  .experience {
    grid-template-columns: minmax(0, 1fr);
  }
}
