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

:root {
  --black: #1a1a1a;
  --yellow: #f5c518;
  --yellow-dark: #d4a90e;
  --gold-gradient: linear-gradient(135deg, #f5c518 0%, #e0a800 50%, #f5d442 100%);
  --gray-light: #f5f5f5;
  --gray: #666;
  --white: #fff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

/* HEADER */

.header {
  background:
    radial-gradient(ellipse at 85% 10%, rgba(245, 197, 24, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 90%, rgba(245, 197, 24, 0.03) 0%, transparent 40%),
    var(--black);
  color: var(--white);
  text-align: center;
  padding: 2rem 1rem 2.5rem;
}

.header__name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  letter-spacing: 0.06em;
}

.header__subtitle {
  font-size: 0.95rem;
  color: var(--yellow);
  font-weight: 400;
  margin-bottom: 0.15rem;
}

.header__role {
  font-size: 0.8rem;
  color: #999;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-gradient);
  color: var(--black);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(245, 197, 24, 0.5), 0 2px 8px rgba(245, 197, 24, 0.3);
  transition: box-shadow 0.2s, filter 0.2s;
}

.cta-phone:hover {
  filter: brightness(0.92);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(245, 197, 24, 0.6), 0 2px 12px rgba(245, 197, 24, 0.45);
}

.cta-phone svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.header__availability {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #bbb;
}

/* SECTIONS */

.section {
  padding: 2.5rem 1rem;
  border-top: 1px solid rgba(245, 197, 24, 0.18);
}

.section--alt {
  background: var(--gray-light);
}

.section__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.section__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

/* O NAS */

.about__img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  border: 1.5px solid rgba(245, 197, 24, 0.45);
}

.about__text {
  max-width: 600px;
  color: #333;
}

/* PHOTO BREAK */

.section--photo {
  padding: 0;
  text-align: center;
  border-top: none;
}

.photo-break {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 8px;
  margin: 2.5rem auto;
  display: block;
  border: 1.5px solid rgba(245, 197, 24, 0.45);
}

/* OBSZAR */

.area__main {
  color: #333;
  margin-bottom: 1rem;
}

.area__towns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.area__tag {
  background: var(--white);
  border: 1px solid #ddd;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  font-size: 0.85rem;
  white-space: nowrap;
}

.section--alt .area__tag {
  background: var(--white);
}

.area__extra {
  color: var(--gray);
  font-size: 0.9rem;
}

/* KONTAKT */

.contact__list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.contact__list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.contact__list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact__list .contact__icon--gold {
  color: var(--yellow);
}

.contact__list a:hover {
  color: var(--yellow-dark);
}

/* FOOTER */

.footer {
  background: var(--black);
  color: #999;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.8rem;
}

/* CONTAINER */

.container {
  max-width: 720px;
  margin: 0 auto;
}

/* TABLET+ */

@media (min-width: 600px) {
  .header {
    padding: 3rem 2rem 3.5rem;
  }

  .header__name {
    font-size: 2rem;
  }

  .cta-phone {
    font-size: 1.4rem;
    padding: 1rem 2.5rem;
  }

  .section {
    padding: 3rem 2rem;
  }

  .section__title {
    font-size: 1.4rem;
  }

  .about {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
  }

  .about__img {
    width: 280px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .about__text {
    max-width: none;
  }
}
