* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  background: #fff;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand__name {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand__tagline {
  font-size: 12px;
  color: #666;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__link {
  text-decoration: none;
  color: #111;
  font-size: 13px;
  letter-spacing: 0.8px;
}

.nav__link:hover {
  text-decoration: underline;
}

.nav__button {
  margin-left: 6px;
  text-decoration: none;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #111;
  color: #111;
}

/* HERO */
.hero {
  padding: 70px 0 40px;
}

.hero__inner {
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero__title {
  font-size: clamp(22px, 3.2vw, 38px);
  font-weight: 700;
  max-width: 900px;
  line-height: 1.2;
}

/* SECTIONS */
.section {
  padding: 50px 0;
}

.section__title {
  margin: 0 0 14px;
  font-size: 24px;
}

.section__text {
  margin: 0;
  color: #444;
}

/* CARDS SLIDER */
.cards-viewport {
  overflow: hidden;
  margin-top: 20px;
}

.cards {
  display: flex;
  transition: transform 600ms ease;
  will-change: transform;
}

.cards-page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.card__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #f6f6f6;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__title {
  margin: 14px 16px 6px;
  font-size: 16px;
  letter-spacing: 0.6px;
}

.card__text {
  margin: 0 16px 18px;
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

/* SLIDER DOTS */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f2c59c;
  opacity: 0.35;
  cursor: pointer;
  transition: opacity 200ms ease, transform 200ms ease;
}

.slider-dot.active {
  opacity: 1;
  transform: scale(1.35);
}

/* CONTACT FORM */
.contact {
  max-width: 700px;
}

.form {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.form__row {
  display: grid;
  gap: 6px;
}

.form__label {
  font-size: 13px;
  color: #333;
}

.form__input {
  padding: 12px 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
}

.form__button {
  padding: 12px 14px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cards-page {
    grid-template-columns: 1fr;
  }

  .nav {
    gap: 12px;
  }

  .nav__link {
    display: none;
  }
}
